/* ============================================================
   LEGACY LIFTS — Global Stylesheet
   Light Theme | White Background | Black Contrasts
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600;700&family=Raleway:wght@400;500;600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --bg:          #ffffff;
  --bg-alt:      #f5f4f2;
  --bg-card:     #f0eeeb;
  --border:      #dddad5;
  --border-lt:   #eeebe6;
  --accent:      #111111;
  --accent-warm: #7a6040;
  --text:        #111111;
  --text-muted:  #666666;
  --text-dim:    #999999;
  --white:       #ffffff;
  --nav-h:       80px;
  --max-w:       1240px;
  --rad:         3px;
  --shadow:      0 8px 32px rgba(0,0,0,0.08);
  --shadow-md:   0 16px 48px rgba(0,0,0,0.12);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Page fade-in ──────────────────────────────────────── */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
body { animation: pageFadeIn 0.5s ease both; }

/* ── Scroll reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background 0.4s, box-shadow 0.4s;
  background: transparent;
}
.nav--hero { background: transparent; }
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
}
/* On non-hero pages, always show white nav */
.nav--solid {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav__logo img {
  height: 36px;
  width: auto;
}
.nav__logo img.logo-dark  { display: block; }
.nav__logo img.logo-light { display: none; }
.nav--hero:not(.scrolled) .nav__logo img.logo-dark  { display: none; }
.nav--hero:not(.scrolled) .nav__logo img.logo-light { display: block; }

.nav__brand {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
}
.nav--hero:not(.scrolled) .nav__brand { color: #fff; }

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.nav__links > li {
  position: relative;
}
.nav__links > li > a,
.nav__links > li > span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav--hero:not(.scrolled) .nav__links > li > a,
.nav--hero:not(.scrolled) .nav__links > li > span {
  color: rgba(255,255,255,0.9);
}
.nav__links > li > a:hover,
.nav__links > li > span:hover,
.nav__links > li > a.active {
  color: var(--accent-warm);
}
.nav--hero:not(.scrolled) .nav__links > li > a:hover,
.nav--hero:not(.scrolled) .nav__links > li > span:hover {
  color: #fff;
}

/* No dropdown — all nav items are direct links */

/* CTA Button */
.nav__cta {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1.5px solid var(--text);
  color: var(--text);
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.nav--hero:not(.scrolled) .nav__cta {
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}
.nav__cta:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}
.nav--hero:not(.scrolled) .nav__burger span { background: #fff; }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 20px 28px 32px;
  gap: 0;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav__mobile > a,
.mobile-parent {
  display: block;
  padding: 14px 0;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border-lt);
  cursor: pointer;
}
.mobile-sub {
  padding: 6px 0 6px 16px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border-lt);
}
.mobile-sub a {
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
}
.mobile-cta {
  margin-top: 20px;
  background: var(--text);
  color: #fff !important;
  text-align: center;
  padding: 14px 0 !important;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none !important;
}

/* ─────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.btn-primary:hover {
  background: var(--accent-warm);
  border-color: var(--accent-warm);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--text);
}

/* ─────────────────────────────────────────────────────────
   HERO — HOME PAGE
   ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.1s ease-out;
  transform-origin: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.2) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  padding-top: var(--nav-h);
}
.hero__eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: rgba(255,255,255,0.5);
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 28px;
  max-width: 640px;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
}
.hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero__scroll svg {
  width: 20px; height: 20px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ─────────────────────────────────────────────────────────
   PAGE HERO (inner pages)
   ───────────────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 40px 64px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero__label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero__label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--border);
}
.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
  max-width: 600px;
}
.page-hero__title em { font-style: italic; font-weight: 300; }
.page-hero__sub {
  margin-top: 20px;
  max-width: 640px;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─────────────────────────────────────────────────────────
   SECTION HELPERS
   ───────────────────────────────────────────────────────── */
.section {
  padding: 96px 40px;
}
.section--alt { background: var(--bg-alt); }
.section--border { border-top: 1px solid var(--border); }

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--border);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}
.section-title em { font-style: italic; font-weight: 300; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

/* ─────────────────────────────────────────────────────────
   INTRO STRIP (HOME)
   ───────────────────────────────────────────────────────── */
.intro { padding: 100px 40px; }
.intro__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro__label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.intro__label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--border);
}
.intro__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 20px;
}
.intro__heading em { font-style: italic; font-weight: 300; }
.intro__text {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.intro__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 12px;
}
.intro__pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-lt);
}
.intro__pillar:last-child { border-bottom: none; padding-bottom: 0; }
.intro__pillar-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text);
}
.intro__pillar-icon svg { width: 18px; height: 18px; }
.intro__pillar-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--text);
}
.intro__pillar-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────
   SERVICE CARDS (HOME)
   ───────────────────────────────────────────────────────── */
.services { padding: 0 40px 100px; }
.services__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  cursor: pointer;
}
.service-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.20) 50%,
    rgba(0,0,0,0.0) 100%
  );
  transition: background 0.4s;
}
.service-card:hover .service-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.40) 60%,
    rgba(0,0,0,0.1) 100%
  );
}
.service-card:hover .service-card__img { transform: scale(1.04); }
.service-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  color: #fff;
}
.service-card__num {
  font-family: 'Raleway', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 8px;
}
.service-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-card__desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.service-card:hover .service-card__desc {
  max-height: 100px;
  opacity: 1;
}
.service-card__link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}
.service-card__link svg { width: 16px; height: 16px; }
.service-card:hover .service-card__link {
  color: #fff;
  gap: 12px;
}

/* ─────────────────────────────────────────────────────────
   WHY CHOOSE US
   ───────────────────────────────────────────────────────── */
.why { padding: 100px 40px; background: var(--bg-alt); }
.why__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.why__item {
  padding: 36px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.why__item:hover {
  border-color: var(--text);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why__icon {
  width: 32px; height: 32px;
  color: var(--text);
  margin-bottom: 20px;
  stroke-width: 1.5;
}
.why__item-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--text);
}
.why__item-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────
   CTA BANNER
   ───────────────────────────────────────────────────────── */
.cta-banner {
  padding: 80px 40px;
  background: var(--text);
  color: #fff;
}
.cta-banner__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cta-banner__eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.cta-banner__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}
.cta-banner__title em { font-style: italic; font-weight: 300; }
.cta-banner__sub {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}
.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────
   PRODUCT SECTION (inner pages)
   ───────────────────────────────────────────────────────── */
.product-section { padding: 80px 40px; }
.product-section--alt { background: var(--bg-alt); }
.product-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-layout--reverse { }
.product-layout--reverse .product-layout__text { order: 2; }
.product-layout--reverse .product-layout__media { order: 1; }

.product-layout__text {}
.product-num {
  font-family: 'Raleway', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}
.product-title em { font-style: italic; font-weight: 300; }
.product-text {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.product-features {
  margin: 20px 0;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-lt);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.product-features li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text);
  flex-shrink: 0;
  margin-top: 7px;
}
.product-docs {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1.5px solid var(--border);
  color: var(--text);
  transition: all 0.2s;
}
.doc-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.doc-link:hover {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}

.product-layout__media { }
.product-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 4px;
}
.product-gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.product-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-gallery__item:hover img { transform: scale(1.06); }

/* ─────────────────────────────────────────────────────────
   CONTACT PAGE
   ───────────────────────────────────────────────────────── */
.contact-section { padding: 80px 40px; }
.contact-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info {}
.contact-info__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}
.contact-info__text {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-lt);
}
.contact-detail:first-child { border-top: 1px solid var(--border-lt); }
.contact-detail__icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 16px; height: 16px; }
.contact-detail__label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.contact-detail__value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 400;
}
.contact-detail__value a { color: var(--text); transition: color 0.2s; }
.contact-detail__value a:hover { color: var(--accent-warm); }

/* Form */
.contact-form {}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.94rem;
  font-weight: 300;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--text);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  background: var(--text);
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover { background: var(--accent-warm); }
.form-submit svg { width: 16px; height: 16px; }

/* ─────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 64px 40px 32px;
}
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__logo img { height: 32px; filter: brightness(0) invert(1); }
.footer__brand {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.88rem;
  color: #fff;
}
.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__contact a:hover { color: #fff; }
.footer__col-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__links a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer__copy a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__copy a:hover { color: #fff; }
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ─────────────────────────────────────────────────────────
   THANK YOU
   ───────────────────────────────────────────────────────── */
.thankyou {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
}
.thankyou__inner { max-width: 520px; margin: 0 auto; }
.thankyou__icon {
  width: 64px; height: 64px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--text);
}
.thankyou__icon svg { width: 28px; height: 28px; }
.thankyou__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
}
.thankyou__text {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ─────────────────────────────────────────────────────────
   PRIVACY PAGE
   ───────────────────────────────────────────────────────── */
.privacy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 40px;
}
.privacy-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 36px 0 12px;
  color: var(--text);
}
.privacy-content p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .intro__inner { grid-template-columns: 1fr; gap: 48px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .product-layout { grid-template-columns: 1fr; }
  .product-layout--reverse .product-layout__text { order: 1; }
  .product-layout--reverse .product-layout__media { order: 2; }
  .contact-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .section { padding: 64px 24px; }
  .services { padding: 0 24px 64px; }
  .intro { padding: 64px 24px; }
  .why { padding: 64px 24px; }
  .cta-banner { padding: 60px 24px; }
  .page-hero { padding: calc(var(--nav-h) + 40px) 24px 48px; }
  .product-section { padding: 56px 24px; }
  .contact-section { padding: 56px 24px; }
  footer { padding: 48px 24px 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .hero__content { padding: 0 24px; padding-top: var(--nav-h); }
  .hero__actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .product-gallery { grid-template-columns: repeat(2, 1fr); }
  .section-header { flex-direction: column; align-items: flex-start; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}
