/* =============================================
   CSS RESET & CUSTOM PROPERTIES
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream:        #f8f3ea;
  --ivory:        #fffaf1;
  --ivory-dark:   #e6dcc4;
  --navy:         #17233c;
  --navy-light:   #25375d;
  --navy-deep:    #0b1221;
  --forest:       #2e4a2d;
  --forest-light: #577646;
  --gold:         #c9972a;
  --gold-light:   #edc86b;
  --gold-pale:    #f4e4b7;
  --charcoal:     #151922;
  --charcoal-mid: #252d3d;
  --text-dark:    #17191f;
  --text-mid:     #454957;
  --text-light:   #71717a;
  --white:        #ffffff;
  --line:         rgba(26, 39, 68, 0.12);
  --paper:        rgba(255, 250, 241, 0.78);
  --paper-solid:  #fffaf1;
  --shadow-soft:  0 18px 52px rgba(26,39,68,0.13);
  --shadow-strong: 0 26px 76px rgba(10,18,33,0.28);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --section-pad: clamp(64px, 7vw, 118px);
  --container:   1160px;
  --radius:      8px;

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  scroll-padding-top: 88px;
}

body {
  background:
    linear-gradient(180deg, #fbf7ef 0%, var(--cream) 48%, #efe8da 100%);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

section {
  scroll-margin-top: 88px;
}

img { display: block; max-width: 100%; height: auto; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), #ffffff);
  box-shadow: 0 0 18px rgba(237,200,107,0.45);
  pointer-events: none;
}

/* =============================================
   SCROLLBAR
============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

::selection {
  background: rgba(201,151,42,0.22);
  color: var(--navy);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* =============================================
   UTILITY CLASSES
============================================= */
.container {
  width: min(var(--container), 100% - 2 * clamp(20px, 5vw, 60px));
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.75;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.35rem;
  letter-spacing: 0;
}

.section-body {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--text-mid);
  line-height: 1.86;
  max-width: 68ch;
}

/* Simple section divider */
.section-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,151,42,0.88), transparent);
  margin: 2rem auto;
}

.section-end-quote {
  position: relative;
  z-index: 1;
  max-width: min(940px, 100%);
  margin: clamp(42px, 5.4vw, 80px) auto 0;
  padding: clamp(24px, 3.2vw, 36px) clamp(22px, 4.2vw, 54px);
  border-top: 1px solid rgba(201,151,42,0.34);
  border-bottom: 1px solid rgba(201,151,42,0.22);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.08vw, 2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.34;
  text-align: center;
  text-wrap: balance;
  letter-spacing: 0;
}

.section-end-quote::before {
  content: '“';
  position: absolute;
  top: -0.56em;
  left: 50%;
  transform: translateX(-50%) scale(0.88);
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 7vw, 5.8rem);
  line-height: 1;
  color: var(--gold);
  opacity: 0.22;
  pointer-events: none;
  transition:
    opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}

.section-end-quote.reveal {
  transform: translateY(34px) scale(0.97);
  transition:
    opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo),
    border-color 0.9s var(--ease-out-expo);
}

.section-end-quote.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.section-end-quote.reveal.is-visible::before {
  opacity: 0.36;
  transform: translateX(-50%) scale(1);
}

.section-end-quote-light {
  color: var(--navy);
  background:
    linear-gradient(to right, rgba(250,246,239,0), rgba(255,255,255,0.55), rgba(250,246,239,0));
}

@media (max-width: 720px) {
  .section-end-quote {
    margin-top: 2.25rem;
    padding: 1.35rem 1rem;
    font-size: clamp(1.18rem, 6vw, 1.55rem);
    line-height: 1.36;
  }
}

/* =============================================
   ANIMATION BASE STATES
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.85s var(--ease-out-expo),
    transform 0.85s var(--ease-out-expo);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.35s; }
[data-delay="4"] { transition-delay: 0.5s; }
[data-delay="5"] { transition-delay: 0.65s; }
[data-delay="6"] { transition-delay: 0.8s; }

/* =============================================
   MOBILE: disable all reveal animations
============================================= */
@media (max-width: 1024px) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  [data-delay="1"],
  [data-delay="2"],
  [data-delay="3"],
  [data-delay="4"],
  [data-delay="5"],
  [data-delay="6"] {
    transition-delay: 0s !important;
  }
}

/* =============================================
   TOP NAV
============================================= */
#top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 60px;
  padding: 18px clamp(18px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:
    linear-gradient(to bottom, rgba(6, 11, 22, 0.72) 0%, rgba(6, 11, 22, 0.18) 78%, rgba(6, 11, 22, 0) 100%);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    padding 0.4s ease;
}

#top-nav.scrolled {
  background: rgba(13, 20, 35, 0.84);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
  border-bottom: 1px solid rgba(237,200,107,0.16);
  box-shadow: 0 18px 54px rgba(0,0,0,0.24);
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-brand-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}

.nav-brand {
  text-decoration: none;
  transition: opacity 0.25s, transform 0.25s var(--ease-out-expo);
  display: flex;
  align-items: center;
  width: 220px;
  flex: 0 0 220px;
}

.nav-brand:hover { opacity: 0.9; transform: translateY(-1px); }

.nav-brand img {
  width: 220px;
  height: auto;
  max-width: none;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.36));
}

.product-nav-btn {
  margin-left: 22px;
  padding: 10px 18px;
  border: 1px solid rgba(237,200,107,0.58);
  border-radius: 999px;
  background: rgba(13,20,35,0.46);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,0.24);
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    transform 0.25s var(--ease-out-expo),
    box-shadow 0.25s;
}

.product-nav-btn:hover {
  background: rgba(237,200,107,0.14);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.30);
}


.nav-links {
  display: flex;
  list-style: none;
  margin-left: auto;
  justify-content: flex-end;
}

.nav-product-mobile {
  display: none;
}

.mobile-product-link {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(237,200,107,0.20);
  background: transparent;
  color: var(--gold-light);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-links li + li {
  margin-left: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(237,200,107,0.92);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
  text-shadow: 0 1px 12px rgba(0,0,0,0.85);
  transition: color 0.25s, opacity 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out-expo);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.language-switcher {
  display: flex;
  align-items: center;
  margin-left: 24px;
  flex-shrink: 0;
}

.language-option + .language-option {
  margin-left: 7px;
}

.language-option {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(230,184,74,0.38);
  border-radius: 999px;
  background: rgba(13,20,35,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 5px 18px rgba(0,0,0,0.18);
  transition: background 0.22s, border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.language-option:hover {
  background: rgba(201,151,42,0.16);
  border-color: rgba(230,184,74,0.72);
  transform: translateY(-2px);
}

.language-option[aria-pressed="true"] {
  background: rgba(230,184,74,0.2);
  border-color: var(--gold-light);
  box-shadow:
    0 0 0 1px rgba(230,184,74,0.2),
    0 8px 24px rgba(0,0,0,0.24);
}

.flag-icon {
  width: 24px;
  height: 16px;
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.28);
  overflow: hidden;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 14px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1240px) {
  #top-nav {
    padding: 16px 42px;
    padding: 16px clamp(16px, 4vw, 42px);
  }
  .nav-brand { width: 180px; flex: 0 0 180px; }
  .nav-brand img { width: 180px; }
  .product-nav-btn {
    margin-left: 16px;
    padding: 9px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }
  .nav-links li + li {
    margin-left: 22px;
  }
  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }
  .language-switcher {
    margin-left: 18px;
  }
  .language-option + .language-option {
    margin-left: 5px;
  }
  .language-option {
    width: 34px;
    height: 34px;
  }
  .flag-icon {
    width: 22px;
    height: 15px;
  }
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .language-switcher {
    margin-left: auto;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(12,18,32,0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    padding: 20px 40px 28px;
    padding: 20px clamp(20px,5vw,40px) 28px;
    max-height: calc(100vh - 72px);
    max-height: calc(100svh - 72px);
    overflow: auto;
    border-top: 1px solid rgba(201,151,42,0.2);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    margin-left: 0;
  }
  .nav-links.open { display: flex; animation: menuDrop 0.28s var(--ease-out-expo) both; }
  .nav-links li + li {
    margin-left: 0;
    margin-top: 4px;
  }
  .nav-links a {
    font-size: 1rem;
    padding: 10px 0;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links a::after { display: none; }
}

@keyframes menuDrop {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  #top-nav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 10px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .nav-brand-group { grid-column: 1; min-width: 0; }
  .nav-brand { width: 132px; flex: 0 0 132px; }
  .nav-brand img { width: 132px; }
  .product-nav-btn {
    display: none;
  }
  .nav-product-mobile { display: block; }
  .language-switcher {
    grid-column: 2;
    justify-self: end;
    margin-left: 0;
    margin-right: 44px;
  }
  .language-option + .language-option { margin-left: 4px; }
  .language-option {
    width: 29px;
    height: 29px;
  }
  .flag-icon {
    width: 19px;
    height: 13px;
  }
  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    border: 1px solid rgba(237,200,107,0.32);
    border-radius: 999px;
    background: rgba(13,20,35,0.42);
    transform: translateY(-50%);
  }
  .nav-toggle span { width: 24px; }
}

@media (max-width: 380px) {
  #top-nav {
    padding-left: 12px;
    padding-right: 12px;
  }
  .nav-brand { width: 118px; flex: 0 0 118px; }
  .nav-brand img { width: 118px; }
  .language-option + .language-option { margin-left: 4px; }
  .language-option {
    width: 28px;
    height: 28px;
  }
  .flag-icon {
    width: 19px;
    height: 13px;
  }
  .nav-toggle span { width: 24px; }
}

@media (max-width: 330px) {
  .nav-brand { width: 112px; flex-basis: 112px; }
  .nav-brand img { width: 112px; }
  .language-option {
    width: 26px;
    height: 26px;
  }
  .flag-icon {
    width: 18px;
    height: 12px;
  }
}

/* =============================================
   HERO SECTION
============================================= */
#hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-bottom: clamp(34px, 6vh, 70px);
  background: var(--navy-deep);
}

#hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 64px;
  height: clamp(54px, 8vh, 110px);
  background: linear-gradient(to bottom, rgba(11,18,33,0), rgba(11,18,33,0.58));
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  top: -60px;
  right: 0;
  bottom: -60px;
  left: 0;
  inset: -60px 0;
  background-image: url('pictures/a.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(1.15) saturate(1.10) contrast(1.04);
  will-change: transform;
  transform: translateY(0px);
}

/* Animated grain noise overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Dark overlay for text contrast */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(16,24,42,0.18) 0%,
    rgba(14,21,37,0.42) 44%,
    rgba(7,12,22,0.80) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 80px;
  padding: 0 clamp(20px, 6vw, 80px);
  width: 100%;
  max-width: 1260px;
}

.hero-headline {
  order: 2;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 54ch;
  margin: 0 auto 2.1rem;
  text-shadow: 0 3px 24px rgba(0,0,0,0.48);
  letter-spacing: 0;
}

.hero-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: heroWordDrop 0.8s var(--ease-out-expo) both;
}

.hero-sub {
  order: 1;
  font-family: var(--font-serif);
  font-size: var(--hero-quote-size, 2.12rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  max-width: min(1280px, calc(100vw - 56px));
  margin: 0 auto 1.45rem;
  text-shadow:
    0 4px 24px rgba(0,0,0,0.52),
    0 18px 72px rgba(0,0,0,0.34);
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-out-expo) 0.6s forwards;
  text-wrap: balance;
}

.hero-sub span {
  display: block;
}

.hero-sub span + span {
  margin-top: 0.28em;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out-expo) 1.5s forwards;
}

.btn-primary {
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(201, 151, 42, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201,151,42,0.55);
}

.btn-outline {
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

.hero-scroll-hint {
  order: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out-expo) 2.0s forwards;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}

@media (max-width: 1200px) {
  .hero-content { max-width: 1000px; }
  .hero-sub { font-size: var(--hero-quote-size, 2rem); }
}

@media (max-width: 900px) {
  .hero-sub { font-size: var(--hero-quote-size, 1.68rem); }
  .hero-headline { max-width: 48ch; }
}

@media (max-height: 760px) and (min-width: 721px) {
  #hero {
    min-height: 540px;
    padding-bottom: 18px;
  }
  .hero-content { max-width: 940px; }
  .hero-sub {
    font-size: var(--hero-quote-size, 1.72rem);
    line-height: 1.08;
    margin-bottom: 0.75rem;
  }
  .hero-headline {
    max-width: 68ch;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.45;
  }
  .btn-primary,
  .btn-outline {
    padding: 10px 24px;
    font-size: 0.76rem;
  }
  .hero-scroll-hint { display: none; }
}

@media (max-height: 580px) and (min-width: 721px) {
  #hero { padding-bottom: 14px; }
  .hero-content { max-width: 940px; }
  .hero-sub {
    font-size: var(--hero-quote-size, 1.36rem);
    margin-bottom: 0.55rem;
  }
  .hero-headline {
    max-width: 76ch;
    margin-bottom: 0.85rem;
    font-size: 0.86rem;
    line-height: 1.35;
  }
  .btn-primary,
  .btn-outline {
    padding: 9px 20px;
    font-size: 0.72rem;
  }
}

@media (max-width: 720px) {
  #hero {
    height: clamp(430px, 58vh, 560px);
    height: clamp(430px, 58svh, 560px);
    min-height: 0;
    padding-bottom: clamp(14px, 4vw, 20px);
  }
  .hero-bg {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
  }
  .hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(16,24,42,0.12) 0%,
      rgba(14,21,37,0.22) 34%,
      rgba(7,12,22,0.78) 70%,
      rgba(7,12,22,0.92) 100%
    );
  }
  .hero-content {
    max-width: 520px;
    padding: 0 18px;
  }
  .hero-sub {
    font-size: var(--hero-quote-size, 1.34rem);
    line-height: 1.14;
    margin-bottom: 0.85rem;
  }
  .hero-headline {
    max-width: 36ch;
    margin-bottom: 1.15rem;
    font-size: 0.92rem;
    line-height: 1.48;
  }
  .hero-scroll-hint { display: none; }
  .btn-primary,
  .btn-outline {
    padding: 12px 20px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .hero-bg {
    background-size: cover;
  }
  .hero-sub { font-size: var(--hero-quote-size, 1.18rem); }
  .hero-headline {
    max-width: 34ch;
    font-size: 0.88rem;
  }
}

@media (max-width: 360px) {
  .hero-sub { font-size: var(--hero-quote-size, 1.03rem); }
  .hero-headline { font-size: 0.84rem; }
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-mouse::after {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: scrollBounce 1.6s infinite;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroWordDrop {
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.4; }
}

/* =============================================
   MY STORY SECTION
============================================= */
#my-story {
  padding: var(--section-pad) 0 clamp(48px, 6vw, 92px);
  background:
    linear-gradient(180deg, #f8f3ea 0%, #fffaf1 46%, #f5ecdc 100%);
  position: relative;
  overflow: hidden;
}

#my-story::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: clamp(40px, 5vh, 76px);
  background: linear-gradient(to bottom, rgba(11,18,33,0.10), rgba(248,243,234,0));
  pointer-events: none;
}

#my-story::after {
  display: none;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(44px, 6.5vw, 108px);
  align-items: stretch;
}

.story-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.story-copy-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(1.05rem, 1.65vw, 1.65rem);
}

.story-copy-body .section-body,
.story-copy-body .story-segments,
.story-copy-body .story-quote,
.story-copy-body .story-signature {
  margin-top: 0;
}

.story-segments {
  display: grid;
  gap: 0;
  margin: 0.15rem 0 0.1rem;
  border-top: 1px solid rgba(201,151,42,0.22);
  border-bottom: 1px solid rgba(201,151,42,0.18);
}

.story-segment {
  display: grid;
  grid-template-columns: minmax(112px, 0.34fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(0.72rem, 1.25vw, 0.98rem) 0;
  border-top: 1px solid rgba(201,151,42,0.14);
}

.story-segment:first-child {
  border-top: 0;
}

.story-segment span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.story-segment p {
  margin: 0;
  color: var(--text-mid);
  font-size: clamp(0.96rem, 1.08vw, 1.04rem);
  font-weight: 500;
  line-height: 1.62;
}

.story-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--navy);
  padding: 1.35rem 1.65rem;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background:
    linear-gradient(90deg, rgba(201,151,42,0.10), rgba(255,250,241,0.52));
  box-shadow: 0 14px 38px rgba(26,39,68,0.07);
  margin-top: 1.2rem;
}

#my-story .section-end-quote {
  margin-top: clamp(28px, 3.4vw, 48px);
}

.story-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 1.2rem;
}

.story-signature-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.story-signature-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-mid);
}

.story-expand {
  margin-top: auto;
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(201,151,42,0.28);
}

.story-expand-toggle {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(201,151,42,0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(26,39,68,0.96), rgba(11,18,33,0.94));
  color: var(--white);
  text-align: left;
  box-shadow: 0 18px 46px rgba(26,39,68,0.20);
  cursor: pointer;
  transition: transform 0.28s var(--ease-out-expo), border-color 0.28s ease, box-shadow 0.28s ease;
}

.story-expand-toggle strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.55vw, 1.36rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.18;
}

.story-expand-toggle small {
  display: block;
  margin-top: 5px;
  color: rgba(237,200,107,0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.story-expand-toggle:hover,
.story-expand-toggle:focus-visible {
  border-color: rgba(237,200,107,0.76);
  box-shadow: 0 24px 58px rgba(26,39,68,0.28);
  transform: translateY(-2px);
}

.story-expand-toggle:focus-visible {
  outline: 2px solid rgba(237,200,107,0.86);
  outline-offset: 4px;
}

.story-expand-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid rgba(237,200,107,0.5);
  border-radius: 999px;
  background: rgba(237,200,107,0.12);
  position: relative;
  transition: transform 0.42s var(--ease-out-expo), background 0.28s ease;
}

.story-expand-icon::before,
.story-expand-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-light);
  transform: translate(-50%, -50%);
  transition: opacity 0.28s ease, transform 0.42s var(--ease-out-expo);
}

.story-expand-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.story-expand-toggle[aria-expanded="true"] .story-expand-icon {
  transform: rotate(45deg);
}

.story-expand-toggle:hover .story-expand-icon,
.story-expand-toggle:focus-visible .story-expand-icon {
  background: rgba(237,200,107,0.2);
}

.story-expand-panel {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    height 0.62s var(--ease-out-expo),
    opacity 0.36s ease;
}

.story-expand-panel.is-open {
  opacity: 1;
}

.story-expand-content {
  padding: 0.25rem 0 0.45rem;
  color: var(--text-mid);
  font-size: clamp(1rem, 1.18vw, 1.08rem);
  line-height: 1.82;
}

.story-expand-content h3 {
  margin: clamp(1.25rem, 2.4vw, 2rem) 0 0.7rem;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(1.36rem, 2.1vw, 1.82rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.story-expand-content h3:first-child {
  margin-top: 0.35rem;
}

.story-expand-content p {
  margin: 0;
}

.story-expand-content p + p {
  margin-top: 1rem;
}

.story-expand-content ul {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.story-expand-content li {
  position: relative;
  padding-left: 1.15rem;
}

.story-expand-content li::before {
  content: '';
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,151,42,0.12);
}

.story-expand-content strong {
  color: var(--navy);
  font-weight: 700;
}

.story-timeline {
  position: relative;
  display: grid;
  align-content: start;
  align-items: start;
  justify-items: center;
  gap: clamp(18px, 2.4vw, 26px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.story-timeline::before {
  content: '';
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,151,42,0.36), transparent);
  transform: translateX(-50%);
}

.story-timeline-card {
  position: relative;
  z-index: 1;
  align-self: start;
  width: min(100%, 450px);
  padding: 10px;
  border: 1px solid rgba(201,151,42,0.16);
  border-radius: var(--radius);
  background: rgba(255,250,241,0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.story-timeline-card-now {
  margin-top: 0;
}

.story-image-inner {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ivory-dark);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.story-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 4.5s var(--ease-out-expo), filter 0.45s ease;
}

.story-image-inner:hover img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.03);
}

.story-image-caption {
  margin: 11px 2px 2px;
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .story-copy,
  .story-copy-body {
    display: block;
  }
  .story-copy-body .section-body + .section-body {
    margin-top: 1.4rem;
  }
  .story-segments {
    margin-top: 1.6rem;
  }
  .story-segment {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 1rem 0;
  }
  .story-copy-body .story-quote {
    margin-top: 2rem;
  }
  .story-copy-body .story-signature {
    margin-top: 2.5rem;
  }
  .story-expand {
    margin-top: 2.1rem;
  }
  .story-expand-toggle {
    min-height: 68px;
  }
  .story-expand-content {
    font-size: 1rem;
    line-height: 1.74;
  }
  .story-timeline {
    max-width: 520px;
    margin: 0 auto;
  }
  .story-timeline-card-old,
  .story-timeline-card-now {
    width: 100%;
  }
  .story-timeline-card-now { margin-top: 0; }
}

/* =============================================
   TURNING POINT SECTION — "A fordulópont"
============================================= */
#turning-point {
  position: relative;
  min-height: clamp(560px, 88vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--navy-deep);
  background-image: url('pictures/nevergiveup.png'), url('pictures/nevergiveup_web_full.webp');
  background-size: cover, cover;
  background-position: center top, center top;
  background-repeat: no-repeat, no-repeat;
  z-index: 0;
}

#turning-point::before,
#turning-point::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

#turning-point::before {
  top: 0;
  display: block;
  height: clamp(70px, 12vh, 150px);
  background: linear-gradient(to bottom, rgba(11,18,33,0.84), rgba(11,18,33,0));
}

#turning-point::after {
  bottom: 0;
  height: clamp(80px, 12vh, 150px);
  background: linear-gradient(to bottom, rgba(17,24,39,0), rgba(248,243,234,0.92));
}

.tp-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -24vh;
  left: 0;
  inset: 0 0 -24vh;
  z-index: -1;
  background-image: url('pictures/nevergiveup.png'), url('pictures/nevergiveup_web_full.webp');
  background-size: cover, cover;
  background-position: center top, center top;
  background-repeat: no-repeat, no-repeat;
  filter: brightness(1.05) saturate(1.08) contrast(1.02);
  will-change: transform;
  transform: translateY(0);
}

@media (max-width: 640px) {
  #turning-point { min-height: 70vh; min-height: 70svh; }
  .tp-bg { background-position: 12% top; }
}
@media (max-width: 480px) {
  #turning-point { min-height: 55vh; min-height: 55svh; }
}

/* =============================================
   SCIENCE & PATH SECTION
============================================= */
#science {
  padding: var(--section-pad) 0 var(--section-pad);
  background:
    linear-gradient(180deg, #f5ecdc 0%, #fffaf1 42%, #f4eddf 100%);
  position: relative;
  overflow: hidden;
}

#science::before,
#science::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

#science::before {
  top: 0;
  height: clamp(34px, 5vh, 68px);
  background: linear-gradient(to bottom, rgba(17,24,39,0.05), rgba(250,246,239,0));
}

#science::after {
  bottom: 0;
  height: clamp(40px, 6vh, 80px);
  background: linear-gradient(to bottom, rgba(250,246,239,0), rgba(26,39,68,0.38));
}

.science-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.86fr);
  gap: clamp(46px, 6.5vw, 108px);
  align-items: stretch;
}

.science-main {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

#science .section-title {
  font-size: clamp(2.9rem, 4.4vw, 4.55rem);
  line-height: 1.02;
}

.science-device-preview {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.68rem, 1vw, 0.92rem);
  color: var(--text-mid);
  font-size: clamp(0.98rem, 1.12vw, 1.04rem);
  line-height: 1.68;
}

.science-device-preview p {
  margin: 0;
}

.device-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.device-point {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px 10px 10px;
  border: 1px solid rgba(201,151,42,0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,250,241,0.82), rgba(255,255,255,0.46));
  box-shadow: 0 12px 34px rgba(26,39,68,0.05);
}

.device-point strong {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 0.91rem;
  line-height: 1.18;
}

.device-point span {
  color: var(--text-mid);
  font-size: 0.78rem;
  line-height: 1.38;
}

.device-caution {
  padding: 0.72rem 0.95rem;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(201,151,42,0.09);
  color: var(--navy);
  font-size: 0.91rem;
  font-weight: 600;
  line-height: 1.48;
}

.device-expand {
  margin-top: clamp(0.72rem, 1.15vw, 0.95rem);
  padding-top: clamp(0.58rem, 1vw, 0.76rem);
  border-top: 1px solid rgba(201,151,42,0.28);
}

.device-expand-toggle {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(201,151,42,0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(26,39,68,0.96), rgba(11,18,33,0.94));
  color: var(--white);
  text-align: left;
  box-shadow: 0 18px 46px rgba(26,39,68,0.20);
  cursor: pointer;
  transition: transform 0.28s var(--ease-out-expo), border-color 0.28s ease, box-shadow 0.28s ease;
}

.device-expand-toggle strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.55vw, 1.36rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.18;
}

.device-expand-toggle small {
  display: block;
  margin-top: 5px;
  color: rgba(237,200,107,0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.device-expand-toggle:hover,
.device-expand-toggle:focus-visible {
  border-color: rgba(237,200,107,0.76);
  box-shadow: 0 24px 58px rgba(26,39,68,0.28);
  transform: translateY(-2px);
}

.device-expand-toggle:focus-visible {
  outline: 2px solid rgba(237,200,107,0.86);
  outline-offset: 4px;
}

.device-expand-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid rgba(237,200,107,0.5);
  border-radius: 999px;
  background: rgba(237,200,107,0.12);
  position: relative;
  transition: transform 0.42s var(--ease-out-expo), background 0.28s ease;
}

.device-expand-icon::before,
.device-expand-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-light);
  transform: translate(-50%, -50%);
  transition: opacity 0.28s ease, transform 0.42s var(--ease-out-expo);
}

.device-expand-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.device-expand-toggle[aria-expanded="true"] .device-expand-icon {
  transform: rotate(45deg);
}

.device-expand-toggle:hover .device-expand-icon,
.device-expand-toggle:focus-visible .device-expand-icon {
  background: rgba(237,200,107,0.2);
}

.device-expand-panel {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    height 0.62s var(--ease-out-expo),
    opacity 0.36s ease;
}

.device-expand-panel.is-open {
  opacity: 1;
}

.device-expand-content {
  padding: clamp(1.2rem, 2vw, 1.7rem) 0 0.25rem;
  color: var(--text-mid);
  font-size: clamp(0.98rem, 1.14vw, 1.05rem);
  line-height: 1.78;
}

.device-expand-content h3,
.device-expand-content h4 {
  color: var(--navy);
  font-family: var(--font-serif);
  letter-spacing: 0;
  line-height: 1.2;
}

.device-expand-content h3 {
  margin: clamp(1.8rem, 3vw, 2.4rem) 0 0.85rem;
  font-size: clamp(1.46rem, 2.2vw, 1.95rem);
}

.device-expand-content h3:first-child {
  margin-top: 0;
}

.device-expand-content h4 {
  margin: clamp(1.25rem, 2vw, 1.7rem) 0 0.65rem;
  font-size: clamp(1.14rem, 1.6vw, 1.36rem);
}

.device-expand-content p {
  margin: 0;
}

.device-expand-content p + p,
.device-expand-content ul + p,
.device-expand-content p + ul {
  margin-top: 0.9rem;
}

.device-expand-content ul {
  display: grid;
  gap: 0.7rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.device-expand-content li {
  position: relative;
  padding-left: 1.1rem;
}

.device-expand-content li::before {
  content: '';
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,151,42,0.12);
}

.device-expand-content strong {
  color: var(--navy);
  font-weight: 700;
}

.science-aside {
  position: sticky;
  top: 100px;
}

.science-image-card {
  margin: 0 0 20px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,250,241,0.82);
  border: 1px solid rgba(26,39,68,0.10);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease;
}

.science-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 68px rgba(26,39,68,0.18);
}

.science-image-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  transition: transform 4.5s var(--ease-out-expo), filter 0.45s ease;
}

.science-image-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.03);
}

.science-image-card figcaption {
  padding: 14px 16px 16px;
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .science-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .science-main {
    display: block;
  }
  .device-point-grid {
    grid-template-columns: 1fr;
  }
  .device-point {
    min-height: 0;
  }
  .science-aside { position: static; }
}

/* =============================================
   CONTACT SECTION
============================================= */
#contact {
  padding: clamp(52px, 5.6vw, 82px) 0 clamp(54px, 6vw, 86px);
  background:
    linear-gradient(180deg, #17233c 0%, #111b30 56%, #0d1525 100%);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(237,200,107,0.42), transparent);
  pointer-events: none;
}

#contact::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: clamp(42px, 7vh, 84px);
  background: linear-gradient(to bottom, rgba(15,23,36,0), rgba(8,12,22,0.56));
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

#contact .section-title {
  color: var(--white);
  font-size: clamp(2.35rem, 4vw, 3.55rem);
  margin-bottom: 0.9rem;
}
#contact .section-label { color: var(--gold-light); }
#contact .section-divider { margin: 1rem auto 1.45rem !important; }

.contact-copy {
  max-width: 74ch;
  margin: 0 auto 1.65rem;
  text-align: left;
}

.contact-copy p {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,0.74);
  line-height: 1.78;
}

.contact-copy p + p {
  margin-top: 1rem;
}

.investor-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(1.1rem, 2vw, 1.45rem);
}

.investor-point-grid article {
  min-height: 126px;
  padding: 16px 16px 17px;
  border: 1px solid rgba(237,200,107,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.045);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13);
  text-align: left;
}

.investor-point-grid strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.22;
}

.investor-point-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  line-height: 1.52;
}

.contact-expand {
  max-width: 74ch;
  margin: clamp(1.35rem, 2.4vw, 2rem) auto 0;
  padding-top: clamp(0.7rem, 1.2vw, 0.95rem);
  border-top: 1px solid rgba(237,200,107,0.18);
}

.contact-expand-toggle {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  border: 1px solid rgba(237,200,107,0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(237,200,107,0.18), rgba(255,255,255,0.045));
  color: var(--white);
  text-align: left;
  box-shadow: 0 20px 52px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.28s var(--ease-out-expo), border-color 0.28s ease, box-shadow 0.28s ease;
}

.contact-expand-toggle strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.18;
}

.contact-expand-toggle small {
  display: block;
  margin-top: 5px;
  color: rgba(237,200,107,0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-expand-toggle:hover,
.contact-expand-toggle:focus-visible {
  border-color: rgba(237,200,107,0.82);
  box-shadow: 0 28px 68px rgba(0,0,0,0.28);
  transform: translateY(-2px);
}

.contact-expand-toggle:focus-visible {
  outline: 2px solid rgba(237,200,107,0.86);
  outline-offset: 4px;
}

.contact-expand-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid rgba(237,200,107,0.5);
  border-radius: 999px;
  background: rgba(237,200,107,0.12);
  position: relative;
  transition: transform 0.42s var(--ease-out-expo), background 0.28s ease;
}

.contact-expand-icon::before,
.contact-expand-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-light);
  transform: translate(-50%, -50%);
  transition: opacity 0.28s ease, transform 0.42s var(--ease-out-expo);
}

.contact-expand-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.contact-expand-toggle[aria-expanded="true"] .contact-expand-icon {
  transform: rotate(45deg);
}

.contact-expand-panel {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    height 0.62s var(--ease-out-expo),
    opacity 0.36s ease;
}

.contact-expand-panel.is-open {
  opacity: 1;
}

.contact-expand-content {
  padding: clamp(1.25rem, 2vw, 1.7rem) 0 0.25rem;
  color: rgba(255,255,255,0.72);
  text-align: left;
  font-size: clamp(0.98rem, 1.14vw, 1.06rem);
  line-height: 1.78;
}

.contact-expand-content h3 {
  margin: clamp(1.55rem, 2.6vw, 2.1rem) 0 0.75rem;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: clamp(1.34rem, 2vw, 1.78rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.contact-expand-content h3:first-child {
  margin-top: 0;
}

.contact-expand-content p {
  margin: 0;
}

.contact-expand-content p + p {
  margin-top: 1rem;
}

.contact-mail-btn {
  margin-top: clamp(1.2rem, 2vw, 1.8rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 16px 48px;
  background: linear-gradient(135deg, #d6a22f 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease-out-expo),
    box-shadow 0.3s,
    filter 0.3s;
  box-shadow: 0 12px 34px rgba(201,151,42,0.32);
}

.contact-mail-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(201,151,42,0.44);
  filter: saturate(1.08);
}

/* =============================================
   FOOTER
============================================= */
footer {
  padding: 24px clamp(20px, 5vw, 60px);
  background: #0a101d;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.9;
  letter-spacing: 0.04em;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.44);
  letter-spacing: 0.06em;
}

/* =============================================
   BACK TO TOP BUTTON
============================================= */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d6a22f, var(--gold-light));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 34px rgba(201,151,42,0.32);
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  transition:
    opacity 0.35s ease,
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s ease;
  pointer-events: none;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#back-to-top:hover {
  box-shadow: 0 18px 44px rgba(201,151,42,0.48);
  transform: translateY(-3px) scale(1.05);
}

#back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =============================================
   PRODUCT MODAL
============================================= */
.product-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  display: grid;
  place-items: center;
  padding: 48px;
  padding: clamp(18px, 4vw, 48px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(12,18,32,0.92), rgba(23,35,60,0.84) 42%, rgba(8,12,22,0.88));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.product-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(23,35,60,0.98), rgba(11,18,33,0.98));
  box-shadow: 0 28px 90px rgba(0,0,0,0.55);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.34s var(--ease-out-expo);
}

.product-modal.is-open .product-modal-panel {
  transform: translateY(0) scale(1);
}

.product-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}

.product-modal-close:hover {
  background: rgba(201,151,42,0.16);
  border-color: rgba(230,184,74,0.6);
}

.product-modal-close span {
  position: absolute;
  top: 20px;
  left: 11px;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.product-modal-close span:first-child { transform: rotate(45deg); }
.product-modal-close span:last-child { transform: rotate(-45deg); }

.product-modal-copy {
  padding: clamp(34px, 5vw, 58px) clamp(28px, 5vw, 64px) 24px;
  max-width: 760px;
}

.product-modal-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-modal-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 1rem;
}

.product-modal-copy p {
  max-width: 64ch;
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.8;
}

.product-video-frame {
  margin: 0 clamp(18px, 4vw, 48px) clamp(18px, 4vw, 48px);
  border-radius: var(--radius);
  overflow: hidden;
  background: #050914;
  aspect-ratio: 16/9;
  box-shadow: 0 18px 50px rgba(0,0,0,0.38);
}

.product-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.product-video-link {
  display: table;
  margin: -24px auto clamp(22px, 4vw, 44px);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s;
}

.product-video-link:hover {
  color: var(--white);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .investor-point-grid {
    grid-template-columns: 1fr;
  }
  .investor-point-grid article {
    min-height: 0;
  }
  .contact-expand-toggle {
    min-height: 0;
  }
  .product-modal {
    padding: 12px;
  }
  .product-modal-panel {
    border-radius: var(--radius);
  }
  .product-modal-copy {
    padding-top: 64px;
  }
}

@media (max-width: 480px) {
  #hero { padding-bottom: clamp(14px, 4vw, 20px); }
  .hero-content { padding: 0 20px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .hero-scroll-hint { margin-top: 20px; }
  .contact-mail-btn { width: 100%; }
}

@media (max-width: 720px) {
  #back-to-top {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero-sub { font-size: var(--hero-quote-size, 1.14rem); }
}

@media (max-width: 720px) and (max-height: 480px) {
  #hero {
    height: clamp(320px, 72vh, 420px);
    height: clamp(320px, 72svh, 420px);
    min-height: 0;
    padding-bottom: 12px;
  }
  .hero-bg {
    background-size: cover;
  }
  .hero-sub {
    font-size: var(--hero-quote-size, 1.03rem);
    margin-bottom: 0.4rem;
  }
  .hero-headline {
    max-width: 70ch;
    margin-bottom: 0.6rem;
    font-size: 0.72rem;
    line-height: 1.3;
  }
  .hero-cta-group { gap: 8px; }
  .btn-primary,
  .btn-outline {
    width: auto;
    padding: 8px 14px;
    font-size: 0.64rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero-bg,
  .tp-bg {
    transform: none !important;
  }
}
