:root {
  --green-950: #314b43;
  --green-900: #465f57;
  --green-700: #6f8981;
  --emerald: #8fbdb3;
  --gold: #b9924f;
  --gold-soft: #e5cf93;
  --cream: #fffaf0;
  --warm: #f3e6cf;
  --white: #ffffff;
  --ink: #2C3E50;
  --muted: #65716c;
  --line: rgba(185, 146, 79, 0.24);
  --shadow: 0 24px 70px rgba(128, 91, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fffdf8, var(--cream));
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  color: #2C3E50;
  border: 1px solid rgba(185, 146, 79, 0.28);
  background: rgba(255, 250, 240, 0.78);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(128, 91, 32, 0.12);
}

.site-header.is-scrolled {
  color: #2C3E50;
  background: rgba(251, 248, 240, 0.88);
  border-color: rgba(185, 146, 79, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 1.04rem;
  letter-spacing: 0;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: cover;
  padding: 0;
  border: 1px solid rgba(219, 194, 140, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.brand-mark {
  width: 26px;
  height: 26px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.56;
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.82rem;
}

.nav-links a {
  opacity: 0.86;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: inherit;
  border: 1px solid rgba(185, 146, 79, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 74px;
  left: 50%;
  z-index: 19;
  width: min(100% - 24px, 680px);
  display: none;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 12px;
  color: #2C3E50;
  border: 1px solid rgba(185, 146, 79, 0.24);
  border-radius: 8px;
  background: rgba(251, 248, 240, 0.96);
  box-shadow: 0 18px 48px rgba(128, 91, 32, 0.14);
  backdrop-filter: blur(18px);
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 6px;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 1.08rem;
}

.mobile-menu a:hover {
  background: rgba(185, 146, 79, 0.12);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #2C3E50;
}

.hero-bg,
.hero-vail {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/realise-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-vail {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.9) 0%, rgba(255, 246, 225, 0.62) 40%, rgba(255, 246, 225, 0.1) 74%),
    linear-gradient(0deg, rgba(255, 250, 240, 0.84) 0%, rgba(255, 250, 240, 0) 36%),
    radial-gradient(circle at 24% 30%, rgba(229, 207, 147, 0.32), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 72px;
}

.hero-logo {
  display: block;
  width: 118px;
  height: 118px;
  margin: 0 0 26px;
  object-fit: cover;
  padding: 0;
  border: 1px solid rgba(219, 194, 140, 0.54);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  line-height: 1.16;
}

h1 {
  max-width: 820px;
  font-size: 6.4rem;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(44, 62, 80, 0.82);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--green-950);
  background: linear-gradient(135deg, #fff7dc, var(--gold-soft) 52%, #b98f44);
  box-shadow: 0 16px 34px rgba(185, 146, 79, 0.3);
}

.button-secondary {
  color: inherit;
  border: 1px solid rgba(185, 146, 79, 0.34);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(12px);
}

.hero-scroll {
  position: absolute;
  right: clamp(24px, 6vw, 72px);
  bottom: 36px;
  z-index: 3;
  width: 1px;
  height: 74px;
  background: rgba(185, 146, 79, 0.28);
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 30px;
  background: var(--gold-soft);
  animation: drift 2.2s ease-in-out infinite;
}

.section {
  position: relative;
  padding: clamp(76px, 11vw, 150px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(36px, 8vw, 96px);
}

.section-heading h2 {
  color: #2C3E50;
  font-size: 4rem;
}

.centered {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}

.about {
  background:
    linear-gradient(180deg, var(--cream), #fffdf8),
    radial-gradient(circle at 80% 0%, rgba(44, 155, 145, 0.12), transparent 32%);
}

.about .section-heading h2 {
  color: #2C3E50;
}

.about-text {
  color: #2C3E50;
  font-size: 1.28rem;
}

.about-text p {
  margin: 0 0 24px;
}

.representative {
  background:
    radial-gradient(circle at 8% 18%, rgba(219, 194, 140, 0.2), transparent 28%),
    linear-gradient(180deg, #fffdf8, #f5ecdd);
}

.representative-intro {
  margin-bottom: clamp(34px, 5vw, 52px);
}

.representative-intro h2 {
  color: #2C3E50;
  font-size: 4.6rem;
}

.representative-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 8vw, 88px);
  align-items: center;
}

.member-layout {
  margin-top: clamp(72px, 10vw, 120px);
  padding-top: clamp(54px, 7vw, 84px);
  border-top: 1px solid rgba(185, 146, 79, 0.18);
}

.representative-photo {
  position: relative;
  overflow: visible;
}

.representative-photo::before {
  content: "";
  position: absolute;
  inset: 26px -22px -22px 26px;
  border: 1px solid rgba(185, 146, 79, 0.28);
  border-radius: 8px;
}

.representative-photo img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(128, 91, 32, 0.16);
}

.member-photo img {
  transform: scale(1.42);
  transform-origin: 50% 24%;
  object-position: 50% 8%;
}

.member-photo {
  overflow: hidden;
  border-radius: 8px;
}

.member-photo::before {
  display: none;
}

.representative-copy h2 {
  color: #2C3E50;
  font-size: 4.3rem;
}

.representative-copy .lead {
  margin-top: 28px;
  color: #2C3E50;
  font-size: 1.24rem;
  font-weight: 600;
}

.representative-copy p {
  color: #2C3E50;
}

.signature {
  display: grid;
  gap: 4px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(185, 146, 79, 0.26);
}

.signature span {
  color: var(--gold);
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 0.86rem;
}

.signature strong {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  color: #2C3E50;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.24rem;
  font-weight: 500;
}

.signature small {
  color: var(--muted);
  font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
}

.profile-note {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(185, 146, 79, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.profile-note h3 {
  color: #2C3E50;
  font-size: 1.4rem;
}

.profile-note p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.pillars {
  background: #fffdf8;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pillar-card {
  position: relative;
  min-height: 430px;
  padding: 34px 28px;
  overflow: hidden;
  border: 1px solid rgba(185, 146, 79, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf8, #f6efe1);
  box-shadow: var(--shadow);
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #d5ae5e, #f1dfa9);
}

.card-number {
  color: rgba(185, 146, 79, 0.5);
  font-family: "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.pillar-card h3 {
  margin-top: 22px;
  color: #2C3E50;
  font-size: 1.82rem;
}

.jp-title {
  margin: 8px 0 22px;
  color: var(--gold);
  font-weight: 600;
}

.pillar-card ul {
  display: grid;
  gap: 6px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: #2C3E50;
}

.pillar-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
}

.pillar-card p:last-child {
  margin: 0;
  color: var(--muted);
}

.gifts {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(219, 194, 140, 0.34), transparent 26%),
    radial-gradient(circle at 90% 24%, rgba(44, 155, 145, 0.16), transparent 32%),
    linear-gradient(180deg, #f8f2e6, #fffdf8);
}

.gift-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gift-item {
  min-height: 188px;
  padding: 26px 22px;
  border: 1px solid rgba(185, 146, 79, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(128, 91, 32, 0.08);
}

.icon-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--green-900);
  border: 1px solid rgba(185, 146, 79, 0.4);
  border-radius: 50%;
  background: #fffaf0;
}

.icon-ring svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gift-item p {
  margin: 18px 0 0;
  color: #2C3E50;
  font-weight: 600;
}

.story {
  background:
    radial-gradient(circle at 50% 0%, rgba(229, 207, 147, 0.34), transparent 34%),
    linear-gradient(180deg, #fffaf0, #f1e2c5);
  color: #2C3E50;
  overflow: hidden;
}

.story .section-heading h2 {
  color: #2C3E50;
}

.story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.56), transparent 28%),
    radial-gradient(circle at 82% 74%, rgba(185, 146, 79, 0.16), transparent 30%);
  pointer-events: none;
}

.story .section-inner {
  position: relative;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-line {
  width: min(820px, 76%);
  height: 1px;
  margin: 0 auto -58px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), var(--gold), transparent);
}

.step {
  min-height: 220px;
  padding: 30px 26px;
  border: 1px solid rgba(185, 146, 79, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(12px);
}

.step span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.step h3 {
  margin: 26px 0 12px;
  font-size: 2.2rem;
}

.step p {
  margin: 0;
  color: rgba(44, 62, 80, 0.78);
}

.message {
  background: linear-gradient(180deg, #fffdf8, #fff6e2);
}

.narrow {
  max-width: 860px;
}

.message h2 {
  color: #2C3E50;
  font-size: 4.7rem;
  text-align: center;
}

.message .eyebrow {
  text-align: center;
}

.message-lead {
  max-width: 820px;
  margin: 30px auto 0;
  color: rgba(44, 62, 80, 0.82);
  font-size: 1.08rem;
  text-align: center;
}

.gifts .message-lead {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.realise-words {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.realise-words article {
  min-height: 230px;
  padding: 24px 18px;
  border: 1px solid rgba(185, 146, 79, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(128, 91, 32, 0.08);
}

.realise-words span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #2C3E50;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff7dc, var(--gold-soft));
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 1.3rem;
}

.realise-words h3 {
  margin-top: 18px;
  color: #2C3E50;
  font-size: 1.72rem;
}

.realise-words p {
  margin: 0;
  color: #6f6250;
  font-size: 0.92rem;
  line-height: 1.7;
}

.message-points {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: #6f6250;
  font-size: 1.16rem;
  text-align: center;
}

.message-points p {
  margin: 0;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(232, 205, 146, 0.86)),
    url("assets/realise-hero.png") center / cover;
}

.cta-panel {
  padding: clamp(42px, 7vw, 76px);
  color: #2C3E50;
  border: 1px solid rgba(219, 194, 140, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 246, 225, 0.52)),
    rgba(255, 250, 240, 0.62);
  backdrop-filter: blur(16px);
  box-shadow: 0 32px 90px rgba(128, 91, 32, 0.18);
}

.cta-panel h2 {
  color: #2C3E50;
  font-size: 4.8rem;
}

.contact-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(44, 62, 80, 0.78);
  font-size: 1.08rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.contact-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 26px;
  color: #2C3E50;
  border: 1px solid rgba(219, 194, 140, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(219, 194, 140, 0.55);
  background: rgba(255, 255, 255, 0.86);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--green-950);
  border-radius: 50%;
  background: linear-gradient(135deg, #fff7dc, var(--gold-soft));
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 0.92rem;
}

.contact-label {
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 1.8rem;
  line-height: 1.1;
}

.contact-text {
  color: rgba(44, 62, 80, 0.7);
  font-size: 0.94rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px max(20px, calc((100% - 1120px) / 2));
  color: #2C3E50;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--muted);
}

.legal-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(219, 194, 140, 0.2), transparent 26%),
    linear-gradient(180deg, #fffdf8, var(--cream));
}

.legal-header {
  width: min(1120px, calc(100% - 40px));
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  color: #2C3E50;
}

.legal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(185, 146, 79, 0.28);
  border-radius: 999px;
  color: #2C3E50;
  background: rgba(255, 255, 255, 0.62);
}

.legal-main {
  width: min(880px, calc(100% - 40px));
  margin: 70px auto 110px;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid rgba(185, 146, 79, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(128, 91, 32, 0.1);
}

.legal-main h1 {
  color: #2C3E50;
  font-size: 3.8rem;
}

.legal-main h2 {
  margin: 42px 0 12px;
  color: #2C3E50;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.35rem;
}

.legal-main p,
.legal-main li {
  color: #2C3E50;
}

.legal-main ul {
  margin: 12px 0 0;
  padding-left: 1.2em;
}

.legal-date {
  margin: 22px 0 34px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(42px);
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 12px;
    width: min(100% - 24px, 680px);
  }

  .nav-links {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .mobile-menu {
    display: grid;
  }

  .hero {
    min-height: 92svh;
  }

  h1 {
    font-size: 4.5rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .section-heading h2,
  .representative-intro h2,
  .representative-copy h2,
  .message h2,
  .cta-panel h2 {
    font-size: 3.2rem;
  }

  .about-text {
    font-size: 1.12rem;
  }

  .hero-vail {
    background:
      linear-gradient(90deg, rgba(255, 250, 240, 0.92), rgba(255, 246, 225, 0.62)),
      linear-gradient(0deg, rgba(255, 250, 240, 0.88) 0%, rgba(255, 250, 240, 0) 42%);
  }

  .two-column,
  .representative-layout,
  .pillar-grid,
  .gift-list,
  .contact-grid,
  .realise-words,
  .steps {
    grid-template-columns: 1fr;
  }

  .pillar-card,
  .step,
  .gift-item {
    min-height: auto;
  }

  .step-line {
    display: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
    gap: 16px 22px;
  }

  .legal-main h1 {
    font-size: 3rem;
  }
}

@media (max-width: 520px) {
  .hero-content,
  .section-inner {
    width: calc(100% - 28px);
  }

  .hero {
    min-height: 96svh;
  }

  h1 {
    font-size: 3.05rem;
  }

  .section-heading h2,
  .representative-intro h2,
  .representative-copy h2,
  .message h2,
  .cta-panel h2 {
    font-size: 2.55rem;
  }

  .hero-copy,
  .representative-copy .lead,
  .contact-lead,
  .message-lead,
  .message-points {
    font-size: 1rem;
  }

  .realise-words h3 {
    font-size: 1.58rem;
  }

  .hero-logo {
    width: 92px;
    height: 92px;
  }

  .representative-photo::before {
    inset: 18px -10px -10px 18px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
  }

  .section {
    padding: 72px 0;
  }

  .centered {
    text-align: left;
  }

  .hero-scroll {
    display: none;
  }

  .legal-header,
  .legal-main {
    width: calc(100% - 28px);
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-actions {
    justify-content: flex-start;
  }

  .legal-main {
    margin: 38px auto 72px;
    padding: 28px 20px;
  }

  .legal-main h1 {
    font-size: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
