/* ============================================================
   WEISE ANTIQUITÉS — Stylesheet
   ============================================================ */

/* Cormorant Garamond — latin */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/CormorantGaramond-Regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Cormorant Garamond — cyrillic */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/CormorantGaramond-Cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* Cormorant Garamond italic — latin */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/CormorantGaramond-Italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Cormorant Garamond italic — cyrillic */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/CormorantGaramond-Italic-Cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* Jost — latin */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/Jost-Regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Jost — cyrillic */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/Jost-Cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}


/* ============================================================
   Custom Properties
   ============================================================ */
:root {
  --navy:        #1B2A4A;
  --ivory:       #F5F0E8;
  --gold:        #B8975A;
  --black:       #1A1A1A;
  --ivory-dim:   rgba(245, 240, 232, 0.70);
  --ivory-faint: rgba(245, 240, 232, 0.12);
  --black-dim:   rgba(26, 26, 26, 0.65);
  --gold-dim:    rgba(184, 151, 90, 0.22);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', Arial, sans-serif;

  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-inout:  cubic-bezier(0.77, 0, 0.175, 1);

  --nav-height:  76px;
  --max-width:   1200px;
}


/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 19px; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background-color: var(--ivory);
  line-height: 1.75;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; }


/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(3.2rem, 8vw, 7rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
h4 { font-size: clamp(1.2rem, 1.8vw, 1.6rem); }

p {
  font-family: var(--font-body);
  font-size: clamp(0.97rem, 1.2vw, 1.08rem);
  font-weight: 300;
  line-height: 1.85;
}

.label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.label--gold { color: var(--gold); }
.label--ivory-dim { color: var(--ivory-dim); }
.label--black-dim { color: var(--black-dim); }


/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section        { padding: 9rem 0; }
.section--sm    { padding: 5.5rem 0; }
.section--navy  { background-color: var(--navy); color: var(--ivory); }
.section--ivory { background-color: var(--ivory); color: var(--black); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.8rem; margin-bottom: 2.8rem; }

.text-center { text-align: center; }
.mt-sm  { margin-top: 1.5rem; }
.mt-md  { margin-top: 3rem; }
.mt-lg  { margin-top: 5rem; }
.mb-sm  { margin-bottom: 1.5rem; }
.mb-md  { margin-bottom: 3rem; }


/* ============================================================
   Gold Accent Elements
   ============================================================ */
.gold-rule {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--gold);
}

.gold-rule--short {
  width: 48px;
}

.diamond {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.ornament__line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background-color: var(--gold);
}


/* ============================================================
   Wordmark
   ============================================================ */
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.wordmark__rule {
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--gold);
}

@keyframes goldLineExpand {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.wordmark--hero .wordmark__rule {
  transform-origin: center;
  transform: scaleX(0);
  animation: goldLineExpand 1.4s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  animation-delay: 0.3s;
}

.wordmark__name {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.32em 0.1em;
  white-space: nowrap;
}

.wordmark__city {
  font-family: var(--font-body);
  font-variant: small-caps;
  letter-spacing: 0.38em;
  color: var(--gold);
  margin-top: 0.42em;
  white-space: nowrap;
}

/* Size variants */
.wordmark--hero  .wordmark__name { font-size: clamp(1.5rem, 3.8vw, 3rem); }
.wordmark--hero  .wordmark__city { font-size: clamp(0.6rem, 1.1vw, 0.82rem); }

.wordmark--nav   .wordmark__name { font-size: clamp(0.82rem, 1.3vw, 1rem); }
.wordmark--nav   .wordmark__city { font-size: 0.56rem; }

.wordmark--footer .wordmark__name { font-size: 1.2rem; }
.wordmark--footer .wordmark__city { font-size: 0.6rem; }

/* Color variants */
.wordmark--dark  .wordmark__name { color: var(--ivory); }
.wordmark--light .wordmark__name { color: var(--navy); }


/* ============================================================
   Logo Mark (SVG fills controlled by context)
   ============================================================ */
.logo-mark { flex-shrink: 0; }
.logo-mark--on-dark .logo-fill { fill: var(--ivory); }
/* Default (navy) fills work on ivory backgrounds automatically */


/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-height);
  z-index: 200;
  display: flex;
  align-items: center;
  transition: background-color 0.45s var(--ease-out),
              box-shadow 0.45s var(--ease-out);
}

.nav__inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav__logo .logo-mark svg {
  width: 38px;
  height: 38px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s ease;
  cursor: pointer;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.35s var(--ease-out);
}

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

/* Dark nav (home) */
.nav--dark                    { background-color: var(--navy); }
.nav--dark .nav__link         { color: var(--ivory); }
.nav--dark .nav__hamburger span { background-color: var(--ivory); }

/* Light nav (interior pages) */
.nav--light                   { background-color: transparent; }
.nav--light .nav__link        { color: var(--navy); }
.nav--light .nav__hamburger span { background-color: var(--navy); }

.nav--light.nav--scrolled {
  background-color: rgba(245, 240, 232, 0.96);
  box-shadow: 0 1px 0 rgba(184, 151, 90, 0.25);
}


/* ============================================================
   Hamburger Button
   ============================================================ */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  transition: transform 0.35s var(--ease-inout),
              opacity 0.25s ease,
              background-color 0.35s ease;
}

.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================================
   Mobile Menu Overlay
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--navy);
  z-index: 199;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out),
              visibility 0.45s var(--ease-out);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--ivory);
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.32s; }

.mobile-menu__link:hover { color: var(--gold); }

.mobile-menu__tagline {
  font-family: var(--font-body);
  font-variant: small-caps;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease 0.4s;
}

.mobile-menu.is-open .mobile-menu__tagline { opacity: 1; }


/* ============================================================
   Footer
   ============================================================ */
.footer {
  background-color: var(--navy);
  color: var(--ivory);
  padding: 4.5rem 0 3rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2.5rem;
  right: 2.5rem;
  height: 1px;
  background-color: var(--gold);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
}

.footer__email {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--ivory-dim);
  transition: color 0.25s ease;
}

.footer__email:hover { color: var(--gold); }

.footer__copy {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.28);
}


/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05rem 2.8rem;
  border: 1px solid currentColor;
  background: transparent;
  transition: background-color 0.35s var(--ease-out),
              color 0.35s var(--ease-out);
}

.btn--ivory {
  color: var(--ivory);
  border-color: var(--ivory);
}
.btn--ivory:hover {
  background-color: var(--ivory);
  color: var(--navy);
}

.btn--navy {
  color: var(--navy);
  border-color: var(--navy);
}
.btn--navy:hover {
  background-color: var(--navy);
  color: var(--ivory);
}

.btn--gold {
  color: var(--gold);
  border-color: var(--gold);
}
.btn--gold:hover {
  background-color: var(--gold);
  color: var(--ivory);
}


/* ============================================================
   Arrow Link
   ============================================================ */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: gap 0.35s var(--ease-out), color 0.25s ease;
}
.link-arrow:hover { gap: 1.1rem; }
.link-arrow--navy  { color: var(--navy); }
.link-arrow--ivory { color: var(--ivory); }
.link-arrow--gold  { color: var(--gold); }


/* ============================================================
   Reference Card
   ============================================================ */
.ref-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out);
  overflow: hidden;
}
.ref-card:hover { transform: translateY(-4px); }

.ref-card__image {
  aspect-ratio: 4 / 3;
  background-color: #D4CCBC;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out);
}

.ref-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.35s ease;
}
.ref-card:hover .ref-card__image::after { border-color: var(--gold); }
.ref-card:hover .ref-card__image { transform: scale(1.04); }

.ref-card__body {
  padding: 1.3rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ref-card__category {
  font-family: var(--font-body);
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.ref-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
}

.ref-card__desc {
  font-size: 0.83rem;
  color: var(--black-dim);
  line-height: 1.65;
}

.ref-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gold-dim);
}

.badge-vendu {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  background-color: var(--navy);
  color: var(--ivory);
  padding: 0.28rem 0.75rem;
}


/* ============================================================
   Scroll-Reveal Animation
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out),
              transform 0.75s var(--ease-out);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up--d1 { transition-delay: 0.08s; }
.fade-up--d2 { transition-delay: 0.18s; }
.fade-up--d3 { transition-delay: 0.28s; }
.fade-up--d4 { transition-delay: 0.38s; }
.fade-up--d5 { transition-delay: 0.48s; }


/* ============================================================
   Hero (Home Page)
   ============================================================ */
.hero {
  min-height: 100vh;
  background-color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ivory);
  padding: var(--nav-height) 2.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 35%,
    rgba(184, 151, 90, 0.045) 0%,
    transparent 65%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
  max-width: 720px;
  width: 100%;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.4vw, 0.97rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.75;
  color: var(--ivory-dim);
  max-width: 420px;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: scrollHintFade 1.2s ease 2.8s forwards;
}

.hero__scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollBarPulse 2.2s ease-in-out 3.2s infinite;
}

@keyframes scrollBarPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

@keyframes scrollHintFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hero entrance stagger */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.hero__animate {
  opacity: 0;
  animation: heroReveal 1.1s var(--ease-out) forwards;
}
.hero__animate--1 { animation-delay: 0.15s; }
.hero__animate--2 { animation-delay: 0.55s; }
.hero__animate--3 { animation-delay: 0.95s; }
.hero__animate--4 { animation-delay: 1.35s; }
.hero__animate--5 { animation-delay: 1.75s; }


/* ============================================================
   Home — Services Overview
   ============================================================ */
.services-overview {
  padding: 9rem 0;
  background-color: var(--ivory);
}

.services-overview__intro {
  max-width: 560px;
  margin: 0 auto var(--spacing-lg, 5rem);
  text-align: center;
}

.services-overview__intro h2 { color: var(--navy); margin: 1.2rem 0 1.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--gold-dim);
  border: 1px solid var(--gold-dim);
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background-color: var(--ivory);
  padding: 4.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.service-card__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--navy);
}

.service-card__body {
  font-size: 0.93rem;
  line-height: 1.88;
  color: var(--black-dim);
  flex-grow: 1;
}

.services-overview__footer {
  text-align: center;
  margin-top: 4.5rem;
}


/* ============================================================
   Home — Quote Section
   ============================================================ */
.quote-section {
  background-color: var(--navy);
  padding: 10rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '\201C';
  position: absolute;
  top: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 32rem;
  line-height: 1;
  color: rgba(184, 151, 90, 0.038);
  pointer-events: none;
  user-select: none;
}

.quote-section__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.quote-section__ornament {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.quote-section__ornament-line {
  width: 50px;
  height: 1px;
  background-color: var(--gold);
  opacity: 0.6;
}

blockquote.quote-main {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: 0.01em;
  color: var(--ivory);
}


/* ============================================================
   Home — References Preview
   ============================================================ */
.references-preview {
  padding: 9rem 0;
  background-color: var(--ivory);
}

.references-preview__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4.5rem;
  gap: 2rem;
}

.references-preview__head h2 { color: var(--navy); }


/* ============================================================
   Interior Page — Hero Banner
   ============================================================ */
.page-banner {
  background-color: var(--ivory);
  border-bottom: 1px solid var(--gold-dim);
}

.page-banner--split {
  display: flex;
  min-height: 520px;
  padding: 0;
}

.page-banner__image {
  width: 45%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  margin-top: var(--nav-height);
}

.page-banner__image--service {
  background-image: url('../images/service-banner.jpg');
}

.page-banner__image--references {
  background-image: url('../images/references-banner.jpg');
  background-position: right center;
}

.page-banner__image--about {
  background-image: url('../images/about-banner.jpg');
  background-position: center center;
}

.page-banner__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 5rem) 2.5rem 5rem;
}

.page-banner--split .page-banner__inner {
  padding: calc(var(--nav-height) + 5rem) 4rem 5rem;
  margin: 0;
  flex: 1;
}

@media (max-width: 768px) {
  .page-banner--split {
    flex-direction: column;
  }
  .page-banner__image {
    width: 100%;
    height: 280px;
    margin-top: var(--nav-height);
  }
  .page-banner--split .page-banner__inner {
    padding: 3rem 1.5rem 3rem;
  }
}

.page-banner__eyebrow {
  margin-bottom: 1.5rem;
}

.page-banner__title {
  color: var(--navy);
  margin-bottom: 1.8rem;
}

.page-banner__intro {
  color: var(--black-dim);
  max-width: 540px;
}


/* ============================================================
   Service Page — Process Blocks
   ============================================================ */
.process-section {
  padding: 9rem 0;
  background-color: var(--ivory);
}

.process-block {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 6rem;
  align-items: start;
}

.process-block + .process-block {
  margin-top: 7rem;
  padding-top: 7rem;
  border-top: 1px solid var(--gold-dim);
}

.process-block__aside {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.process-block__tag  { margin-bottom: 1.2rem; }
.process-block__name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}
.process-block__note {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--black-dim);
}

/* Steps */
.steps { display: flex; flex-direction: column; }

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 2rem;
  padding: 2.8rem 0;
  border-bottom: 1px solid rgba(184, 151, 90, 0.15);
}
.step:first-child { padding-top: 0; }
.step:last-child  { border-bottom: none; padding-bottom: 0; }

.step__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  padding-top: 0.1em;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.7rem;
  line-height: 1.25;
}

.step__desc {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--black-dim);
}


/* ============================================================
   Service Page — Never Do
   ============================================================ */
.never-do {
  background-color: var(--navy);
  padding: 9rem 0;
}

.never-do__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.never-do__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--ivory);
  margin-bottom: 4rem;
}

.never-item {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(184, 151, 90, 0.18);
}
.never-item:first-of-type { border-top: 1px solid rgba(184, 151, 90, 0.18); }

.never-item__body {}

.never-item__claim {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.never-item__note {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--ivory-dim);
}


/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  background-color: var(--navy);
  padding: 8rem 0;
  text-align: center;
}

.cta-section__inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
}

.cta-section__text {
  font-size: 0.93rem;
  color: var(--ivory-dim);
  line-height: 1.85;
}


/* ============================================================
   References Page
   ============================================================ */
.references-intro {
  max-width: 600px;
  margin: 0 auto 5.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.references-intro__text {
  font-size: 0.93rem;
  line-height: 1.9;
  color: var(--black-dim);
}


/* ============================================================
   About Page — Story
   ============================================================ */
.about-story {
  padding: 9rem 0;
  background-color: var(--ivory);
}

.about-story__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 7rem;
  align-items: start;
}

.about-story__aside {
  position: sticky;
  top: calc(var(--nav-height) + 2.5rem);
}

.about-story__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about-story__rule {
  width: 44px;
  height: 1px;
  background-color: var(--gold);
}

.about-story__body p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 2;
  color: var(--black-dim);
}


/* ============================================================
   About Page — Values
   ============================================================ */
.values-section {
  background-color: var(--navy);
  padding: 9rem 0;
}

.values-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ivory);
  text-align: center;
  margin-bottom: 5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(184, 151, 90, 0.18);
  border: 1px solid rgba(184, 151, 90, 0.18);
}

.value-card {
  background-color: var(--navy);
  padding: 3.8rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.value-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--ivory);
}

.value-card__text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.6);
}


/* ============================================================
   Contact Page
   ============================================================ */
.contact-page {
  background-color: var(--ivory);
}

.contact-page--split {
  display: flex;
  min-height: 100vh;
}

.contact-page__video {
  position: sticky;
  top: 0;
  width: 45%;
  height: 100vh;
  flex-shrink: 0;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.contact-page__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-page__content {
  flex: 1;
  padding-top: calc(var(--nav-height) + 5.5rem);
  padding-bottom: 9rem;
}

@media (max-width: 768px) {
  .contact-page--split {
    flex-direction: column;
  }
  .contact-page__video {
    position: relative;
    width: 100%;
    height: 280px;
    margin-top: var(--nav-height);
  }
  .contact-page__content {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
}

.contact-page__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.contact-header {
  margin-bottom: 4.5rem;
}

.contact-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--navy);
  margin: 1.5rem 0 1.6rem;
  line-height: 1.08;
}

.contact-header__intro {
  font-size: 0.96rem;
  line-height: 1.88;
  color: var(--black-dim);
  max-width: 460px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-label .opt {
  color: rgba(26, 26, 26, 0.35);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.72rem;
}

.form-input,
.form-select {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 300;
  color: var(--black);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.22);
  padding: 0.85rem 0;
  width: 100%;
  outline: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.25s ease;
}

.form-input:focus,
.form-select:focus {
  border-bottom-color: var(--gold);
}

.form-input::placeholder {
  color: rgba(26, 26, 26, 0.28);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpolyline points='1,1 6,6 11,1' fill='none' stroke='%23B8975A' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 1.6rem;
}

/* Toggle for service type */
.radio-toggle {
  display: flex;
  gap: 1px;
  background-color: rgba(26, 26, 26, 0.1);
}

.radio-toggle__option {
  flex: 1;
  position: relative;
}

.radio-toggle__option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-toggle__option label {
  display: block;
  text-align: center;
  padding: 1rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  background-color: var(--ivory);
  color: rgba(26, 26, 26, 0.5);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.radio-toggle__option input[type="radio"]:checked + label {
  background-color: var(--navy);
  color: var(--ivory);
}

.form-divider {
  height: 1px;
  background-color: var(--gold-dim);
  margin: 0.4rem 0;
}

.form-submit { padding-top: 0.5rem; }

/* Thank you message */
.form-thankyou {
  display: none;
  padding: 3.5rem;
  border: 1px solid var(--gold-dim);
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.form-thankyou.is-visible { display: flex; }

.form-thankyou__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy);
}
.form-thankyou__text {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--black-dim);
}


/* ============================================================
   Responsive — Tablet (≤ 960px)
   ============================================================ */
@media (max-width: 960px) {
  .services-grid         { grid-template-columns: 1fr; }
  .grid-2                { grid-template-columns: 1fr; gap: 3rem; }
  .about-story__inner    { grid-template-columns: 1fr; gap: 3rem; }
  .about-story__aside    { position: static; }
  .process-block         { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-block__aside  { position: static; }
  .values-grid           { grid-template-columns: 1fr; }
  .grid-3                { grid-template-columns: repeat(2, 1fr); }
  .process-block + .process-block { margin-top: 5rem; padding-top: 5rem; }
}


/* ============================================================
   Responsive — Mobile (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root { --nav-height: 64px; }

  .container   { padding: 0 1.5rem; }
  .section     { padding: 5.5rem 0; }

  .nav__links  { display: none; }
  .nav__hamburger { display: flex; }

  .grid-3      { grid-template-columns: 1fr; }

  .service-card { padding: 3rem 2.2rem; }

  .references-preview__head { flex-direction: column; align-items: flex-start; gap: 1.5rem; }

  .process-block { padding: 0 1.5rem; }
  .step { grid-template-columns: 42px 1fr; gap: 1.2rem; }

  .footer::before { left: 1.5rem; right: 1.5rem; }

  .contact-page__inner { padding: 0 1.5rem; }

  blockquote.quote-main { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  .about-story__inner { gap: 2.5rem; }
  .value-card { padding: 3rem 2rem; }

  .nav__inner { padding: 0 1.5rem; }
  .mobile-menu__close-area { right: 1.5rem; }
}


/* ============================================================
   Language Switcher
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 2rem;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.1rem;
  opacity: 0.45;
  transition: opacity 0.2s;
}

.lang-btn:hover {
  opacity: 0.75;
}

.lang-btn--active {
  opacity: 1;
  color: #B8975A;
}

.lang-divider {
  font-size: 0.7rem;
  opacity: 0.3;
}

.nav--dark .lang-btn { color: #F5F0E8; }
.nav--light .lang-btn { color: #1B2A4A; }
.nav--dark .lang-btn--active { color: #B8975A; }
.nav--light .lang-btn--active { color: #B8975A; }

@media (max-width: 768px) {
  .nav__inner .lang-switcher {
    display: none;
  }
}

/* ============================================================
   Telegram Float Button
   ============================================================ */
.telegram-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #1B2A4A;
  border: 1.5px solid rgba(184, 151, 90, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  text-decoration: none;
  z-index: 189;
}

.telegram-float:hover {
  background: #B8975A;
  border-color: transparent;
}

.telegram-float svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 768px) {
  .telegram-float {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }
  .telegram-float svg {
    width: 22px;
    height: 22px;
  }
}

/* Scroll to top button */
#scroll-top {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #1B2A4A;
  border: 1.5px solid rgba(184, 151, 90, 0.5);
  border-radius: 50%;
  color: #B8975A;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  z-index: 188;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s, border-color 0.2s;
}

#scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

#scroll-top:hover {
  background: #B8975A;
  color: #F5F0E8;
  border-color: transparent;
}

@media (max-width: 768px) {
  #scroll-top {
    width: 48px;
    height: 48px;
    bottom: 76px;
    right: 16px;
    font-size: 18px;
  }
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(184, 151, 90, 0.3);
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 9000;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--ivory-dim);
  letter-spacing: 0.03em;
  margin: 0;
}

.cookie-banner__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(184, 151, 90, 0.5);
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cookie-banner__btn--accept:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ivory);
}

.cookie-banner__btn--decline:hover {
  background: transparent;
  border-color: var(--ivory-dim);
  color: var(--ivory-dim);
}

@media (max-width: 640px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1.5rem;
  }
}

/* Page slide transition */
main {
  animation: slideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  40% {
    opacity: 0.3;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

body.slide-out {
  animation: slideOut 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

body.slide-out-right {
  animation: slideOutRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-60px);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(60px);
  }
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  40% {
    opacity: 0.3;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
