*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #B8893A;
  --gold-light: #D4A85A;
  --gold-pale: #E8C98A;
  --dark: #1A1510;
  --dark-mid: #2A2018;
  --cream: #F5F0E8;
  --cream-warm: #EDE6D6;
  --text-dark: #2C2416;
  --text-mid: #6B5E4A;
  --text-light: #9A8C7A;
  --white: #FFFFFF;
  --nav-h: 80px;
  --maroon: #551516;
  --green: #02423E;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: #551516;
  box-shadow: 0 1px 0 #a7703a;
  backdrop-filter: blur(8px);
}

.nav-logo img{
  height:50px;
  width:auto;
  object-fit:contain;
  display:block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #faf9f8;
  transition: color 0.3s;
}
nav.scrolled .nav-links a { color: #a7703a; }
.nav-links a:hover { color: #551516; }

.nav-cta {
  background: #a7703a;
  color: var(--white) !important;
  padding: 12px 24px;
  font-size: 11px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--gold) !important; }

.nav-burger {
  width: 28px;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, background 0.4s;
}
nav.scrolled .nav-burger span { background: #F9F5EF; }

/* Burger open — animated X */
.nav-burger.burger-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.burger-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger.burger-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE NAV — show burger, hide links ── */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }

  .nav-burger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #551516;
    padding: 24px 32px 32px;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 99;
    border-top: 1px solid rgba(167,112,58,0.3);
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(167,112,58,0.12);
  }

  .nav-links li:last-child {
    border-bottom: none;
    padding-top: 8px;
  }

  .nav-links a {
    color: #F9F5EF !important;
    font-size: 13px !important;
    display: block;
    padding: 12px 0;
  }

  .nav-links a:hover {
    color: #a7703a !important;
  }

  .nav-cta {
    display: inline-block !important;
    text-align: center;
    width: 100%;
    padding: 14px 24px !important;
    margin-top: 4px;
  }
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,5,0.25) 0%,
    rgba(10,8,5,0.5) 55%,
    rgba(10,8,5,0.65) 100%
  );
}

#hero.loaded .hero-bg { transform: scale(1); }

.hero-content {
  position: relative;
  padding: 0 10vw;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 7vw, 90px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.5s forwards;
  margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--gold-pale); }
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}
.btn-primary {
  background: #a7703a;
  color: var(--white);
  padding: 16px 36px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: #551516; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.45);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: #551516; transform: translateY(-1px); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 10vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 1.3s forwards;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollPulse 2s 2s infinite;
}

/* Hero mobile fixes */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 32px;
  }
  .hero-title {
    font-size: clamp(38px, 10vw, 58px);
  }
  .hero-sub {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  #hero {
    justify-content: flex-end;
    padding-bottom: 80px;
  }
  .hero-content {
    padding: 0 20px;
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(34px, 11vw, 46px);
    margin-bottom: 16px;
  }
  .hero-sub {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }
  .btn-primary,
  .btn-outline {
    text-align: center;
    padding: 14px 20px;
    width: 100%;
  }
  .hero-scroll {
    display: none;
  }
  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: 0.22em;
    margin-bottom: 16px;
  }
}

/* ── VISUAL STRIP ── */
#visual-strip { width: 100%; }
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 420px;
}
.strip-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.strip-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.strip-card:hover .strip-img { transform: scale(1.07); }
.strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.75) 0%, rgba(10,8,5,0.1) 55%, transparent 100%);
}
.strip-label {
  position: absolute;
  bottom: 28px; left: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* Visual strip mobile — stack vertically */
@media (max-width: 768px) {
  .strip-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .strip-card {
    height: 240px;
  }
  .strip-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .strip-label {
    font-size: 28px;
    bottom: 20px;
    left: 20px;
  }
}

@media (max-width: 480px) {
  .strip-card {
    height: 200px;
  }
  .strip-label {
    font-size: 24px;
  }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION  — Luxury Cinematic Redesign
═══════════════════════════════════════════════════════════ */

/* ── Section shell ── */
#about {
  position: relative;
  overflow: hidden;
  padding: 90px 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
}

/* ── Video background ── */
.about-video-wrap {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.about-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: aboutVideoZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes aboutVideoZoom {
  from { transform: scale(1);    }
  to   { transform: scale(1.06); }
}

.about-overlay-base {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(2, 18, 16, 0.65) 0%,
      rgba(2, 18, 16, 0.50) 50%,
      rgba(10, 30, 28, 0.72) 100%
    );
} 

.about-overlay-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0, 0, 0, 0.10) 100%
  );
}

.about-overlay-grain {
  position: absolute;
  inset: 0;
  opacity: 0.010;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── Decorative rules (top & bottom) ── */
.about-rule-top,
.about-rule-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 64px;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.about-rule-bottom {
  margin-bottom: 0;
  margin-top: 64px;
}

#about.about-visible .about-rule-top,
#about.about-visible .about-rule-bottom {
  opacity: 1;
  transform: scaleX(1);
}

.about-rule-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 112, 58, 0.6), transparent);
}

.about-rule-diamond {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(167, 112, 58, 0.8);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Inner layout: two columns ── */
.about-inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* ── Left column ── */
.about-left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 6px;
}

.about-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #a7703a;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

#about.about-visible .about-eyebrow {
  opacity: 1;
  transform: none;
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 7vw, 90px);
  font-weight: 300;
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.35s, transform 0.8s ease 0.35s;
}

#about.about-visible .about-heading {
  opacity: 1;
  transform: none;
}

.about-vert-rule {
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, #a7703a, transparent);
  transition: height 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) 0.6s;
}

#about.about-visible .about-vert-rule {
  height: 120px;
}

/* ── Right column ── */
.about-right {
  flex: 1;
  min-width: 0;
  padding-top: 14px;
}

/* ── Story slides ── */
.about-story-wrap {
  position: relative;
  min-height: 130px;
  margin-bottom: 28px;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  pointer-events: none;
}

.about-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0.5s;
}

#about:not(.about-visible) .about-slide.active {
  opacity: 0;
  transform: translateY(18px);
}

.about-slide p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245, 245, 240, 0.92);
  letter-spacing: 0.01em;
}

/* ── Slide nav dots ── */
.about-slide-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 48px;
  opacity: 0;
  transition: opacity 0.6s ease 0.7s;
}

#about.about-visible .about-slide-nav {
  opacity: 1;
}

.about-dot {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 1px;
  transition: background 0.35s ease, width 0.35s ease;
}

.about-dot.active {
  background: #a7703a;
  width: 44px;
}

.about-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
}

/* ── Stat divider ── */
.about-stat-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  opacity: 0;
  transition: opacity 0.7s ease 0.8s;
}

#about.about-visible .about-stat-divider {
  opacity: 1;
}

.about-stat-divider span:first-child,
.about-stat-divider span:last-child {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.about-stat-divider-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(167, 112, 58, 0.8);
  white-space: nowrap;
  flex: 0 !important;
  height: auto !important;
  background: none !important;
}

/* ── Stats row ── */
.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 0.9s, transform 0.8s ease 0.9s;
}

#about.about-visible .about-stats {
  opacity: 1;
  transform: none;
}

.about-stat {
  flex: 1;
  text-align: center;
  position: relative;
}

.about-stat-sep {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

.about-stat-num {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 300;
  color: #a7703a;
  line-height: 1;
}

.about-stat-suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300;
  color: rgba(167, 112, 58, 0.75);
  vertical-align: super;
  margin-left: 2px;
}

.about-stat-label {
  display: block;
  margin-top: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.55);
}

.about-stat::after {
  content: none;
}

/* ════════════════════════════════
   RESPONSIVE — Tablet
════════════════════════════════ */
@media (max-width: 900px) {
  #about {
    padding: 100px 48px;
  }

  .about-inner {
    gap: 52px;
  }

  .about-heading {
    font-size: clamp(48px, 8vw, 70px);
  }
}

/* ════════════════════════════════
   RESPONSIVE — Mobile
════════════════════════════════ */
@media (max-width: 640px) {
  #about {
    padding: 80px 24px;
    min-height: auto;
  }

  .about-inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
  }

  .about-left {
    align-items: center;
    padding-top: 0;
  }

  .about-vert-rule {
    display: none;
  }

  .about-heading {
    font-size: clamp(52px, 16vw, 72px);
    letter-spacing: 0;
    margin-bottom: 0;
  }

  .about-story-wrap {
    min-height: 160px;
  }

  .about-slide p {
    font-size: 15px;
    line-height: 1.8;
  }

  .about-slide-nav {
    justify-content: center;
    margin-bottom: 36px;
  }

  .about-stat-divider {
    margin-bottom: 32px;
  }

  .about-stats {
    gap: 0;
    width: 100%;
  }

  .about-stat-num {
    font-size: 40px;
  }

  .about-stat-label {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .about-stat-sep {
    height: 44px;
  }

  .about-rule-top  { margin-bottom: 40px; }
  .about-rule-bottom { margin-top: 40px; }
}

/* ════════════════════════════════════════════════════════
   EXPERIENCES SECTION — Luxury v4
════════════════════════════════════════════════════════ */

/* ── Shell ── */
#experiences {
  background: #F9F5EF;
  padding: 80px 0 88px;
  overflow: hidden;
  position: relative;
  border-top: 3px solid #551516;
}

/* ── Header ── */
.exp-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 32px;
  padding: 0 60px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
#experiences.exp-in .exp-header { opacity: 1; transform: none; }

.exp-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #a7703a;
  margin-bottom: 16px;
  white-space: nowrap;
}
.exp-eyebrow-line {
  display: block;
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: #a7703a;
  opacity: 0.5;
}

.exp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 300;
  color: #0e1a18;
  line-height: 1.03;
  letter-spacing: -0.5px;
}
.exp-title-em {
  font-style: italic;
  color: #551516;
  display: block;
}

.exp-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  color: #02423e;
  line-height: 1.85;
  align-self: end;
  padding-bottom: 6px;
  border-left: 2px solid #a7703a;
  padding-left: 20px;
}

/* ── Category tab nav ── */
.exp-tabs-wrap {
  padding: 0 60px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
#experiences.exp-in .exp-tabs-wrap { opacity: 1; transform: none; }

.exp-tabs {
  display: inline-flex;
  position: relative;
  background: white;
  border: 1px solid rgba(85,21,22,0.12);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(85,21,22,0.06);
}
.exp-tab-ink {
  position: absolute;
  top: 0; bottom: 0;
  background: #551516;
  border-radius: 3px;
  transition: left 0.4s cubic-bezier(0.4,0,0.2,1), width 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
  pointer-events: none;
}
.exp-tab {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-family: 'DM Sans', sans-serif;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}
.exp-tab-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #a7703a;
  transition: color 0.3s;
  flex-shrink: 0;
}
.exp-tab-name {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #02423e;
  white-space: nowrap;
  transition: color 0.3s;
}
.exp-tab.active .exp-tab-num,
.exp-tab.active .exp-tab-name { color: #F9F5EF; }
.exp-tab:not(.active):hover .exp-tab-name { color: #551516; }

/* ── Category block ── */
.exp-category {
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.exp-category.exp-cat-in { opacity: 1; transform: none; }

/* ── Category banner ── */
.exp-cat-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: linear-gradient(135deg, #551516 0%, #6b1c1d 100%);
  position: relative;
  overflow: hidden;
}
.exp-cat-banner::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, #741d1f, transparent);
  animation: expShimmer 4s ease-in-out infinite;
}
@keyframes expShimmer {
  0%   { left: -60%; }
  60%  { left: 120%; }
  100% { left: 120%; }
}
.exp-cat-banner-left { display: flex; align-items: center; gap: 20px; }
.exp-cat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.24em;
  color: #a7703a;
  flex-shrink: 0;
}
.exp-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 300;
  color: #F9F5EF;
  line-height: 1;
  margin-bottom: 4px;
}
.exp-cat-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: rgba(249,245,239,0.5);
  font-style: italic;
  letter-spacing: 0.06em;
  display: block;
}
.exp-cat-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a7703a;
  border: 1px solid #a7703a;
  padding: 6px 14px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Slider wrapper ── */
.exp-slider-wrap { position: relative; }

/* ── Track ── */
.exp-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 24px 60px 28px;
  overflow-x: visible;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
}

.exp-track::-webkit-scrollbar { display: none; }
.exp-track.dragging { cursor: grabbing; scroll-behavior: auto; }

/* ── Card ── */
.exp-card {
  flex: none;
  width: 100%;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg);
  transition: box-shadow 0.38s ease, transform 0.1s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  position: relative;
  opacity: 0;
  animation: none;
}
.exp-category.exp-cat-in .exp-card:nth-child(1) { opacity:1; animation: expCardIn 0.55s ease 0.05s both; }
.exp-category.exp-cat-in .exp-card:nth-child(2) { opacity:1; animation: expCardIn 0.55s ease 0.15s both; }
.exp-category.exp-cat-in .exp-card:nth-child(3) { opacity:1; animation: expCardIn 0.55s ease 0.25s both; }
.exp-category.exp-cat-in .exp-card:nth-child(4) { opacity:1; animation: expCardIn 0.55s ease 0.35s both; }

@keyframes expCardIn {
  from { opacity:0; transform: perspective(1200px) translateY(20px) rotateX(4deg); }
  to   { opacity:1; transform: perspective(1200px) translateY(0) rotateX(0); }
}

.exp-card:hover {
  box-shadow: 0 20px 50px rgba(85,21,22,0.14), 0 6px 16px rgba(0,0,0,0.08);
}

.exp-card::before,
.exp-card::after {
  content: '';
  position: absolute;
  background: #551516;
  pointer-events: none;
  z-index: 5;
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
}
.exp-card::before {
  top: 0; left: 0;
  width: 3px; height: 100%;
  transform: scaleY(0);
  transform-origin: center;
}
.exp-card::after {
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  transform: scaleX(0);
  transform-origin: left;
}
.exp-card:hover::before { transform: scaleY(1); }
.exp-card:hover::after  { transform: scaleX(1); }

.exp-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: white;
}

/* ── Media ── */
.exp-media {
  position: relative;
  height: 210px;
  flex-shrink: 0;
  overflow: hidden;
  background: #c9baa0;
}
.exp-media-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.8,0.25,1);
}
.exp-card:hover .exp-media-img { transform: scale(1.06); }

.exp-card-cta {
  position: absolute;
  bottom: 14px; right: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  background: #551516;
  padding: 6px 14px;
  border-radius: 2px;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.32s, transform 0.32s;
  pointer-events: none;
}
.exp-card:hover .exp-card-cta { opacity: 1; transform: translateY(0); }

.exp-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  background: rgba(249,245,239,0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 8.5px; font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a7703a;
  padding: 4px 9px;
}

/* ── Card body ── */
.exp-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 20px 20px;
  background: white;
  position: relative;
  overflow: hidden;
}

.exp-body::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(167,112,58,0.06), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}
.exp-card:hover .exp-body::before { left: 160%; }

.exp-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 400;
  color: #0e1a18;
  line-height: 1.25;
  margin-bottom: 8px;
  transition: color 0.28s;
}
.exp-card:hover .exp-card-title { color: #551516; }

.exp-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px; font-weight: 300;
  color: #02423e;
  line-height: 1.7;
  flex: 1;
}

.exp-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a7703a;
  transition: color 0.25s, gap 0.25s;
  flex-shrink: 0;
}
.exp-link-arrow { font-size: 13px; line-height: 1; transition: transform 0.25s; }
.exp-card:hover .exp-link { color: #551516; gap: 9px; }
.exp-card:hover .exp-link-arrow { transform: translateX(3px); }

/* ── Footer row ── */
.exp-footer-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 60px 8px;
}

.exp-prog-wrap {
  flex: 1;
  height: 1.5px;
  background: rgba(85,21,22,0.1);
  border-radius: 1px;
  overflow: hidden;
}
.exp-prog-bar {
  height: 100%;
  background: linear-gradient(90deg, #551516, #a7703a);
  border-radius: 1px;
  width: 25%;
  transition: width 0.45s cubic-bezier(0.4,0,0.2,1);
}

.exp-progress {
  display: flex;
  align-items: center;
  gap: 6px;
}
.exp-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(85,21,22,0.15);
  cursor: pointer;
  transition: width 0.3s, background 0.3s, border-radius 0.3s;
}
.exp-dot.active {
  width: 18px;
  border-radius: 3px;
  background: #551516;
}

/* Mobile: circular dots, centred, no progress bar */
@media (max-width: 600px) {
  .exp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(85,21,22,0.2);
    transition: background 0.3s, transform 0.3s;
  }
  .exp-dot.active {
    width: 8px;
    border-radius: 50%;
    background: #551516;
    transform: scale(1.3);
  }
  .exp-progress {
    justify-content: center;
    gap: 8px;
  }
}

/* ── CTA ── */
.exp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  opacity: 0;
  transition: opacity 0.8s ease 0.5s;
}
#experiences.exp-in .exp-cta { opacity: 1; }

.exp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #F9F5EF;
  background: #551516;
  padding: 16px 52px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s, gap 0.3s;
  position: relative;
  overflow: hidden;
}
.exp-cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(249,245,239,0.1), transparent);
  transition: left 0.5s ease;
}
.exp-cta-btn:hover::before { left: 160%; }
.exp-cta-btn svg { width: 20px; height: 10px; flex-shrink: 0; transition: transform 0.3s; }
.exp-cta-btn:hover {
  background: #a7703a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(85,21,22,0.3);
  gap: 22px;
}
.exp-cta-btn:hover svg { transform: translateX(5px); }

/* ════════════════
   TABLET
════════════════ */
@media (max-width: 900px) {
  #experiences { padding: 64px 0 72px; }
  .exp-header { grid-template-columns: 1fr; padding: 0 40px; gap: 20px; margin-bottom: 36px; }
  .exp-intro { border-left: none; padding-left: 0; border-top: 1px solid rgba(167,112,58,0.25); padding-top: 16px; }
  .exp-tabs-wrap { padding: 0 40px; }
  .exp-cat-banner { padding: 16px 40px; }
  .exp-track {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 40px;
    padding: 20px 40px 24px;
  }
  .exp-card {
    flex: 0 0 270px;
    width: 270px;
  }
  .exp-footer-row { padding: 0 40px 8px; }
}

/* ════════════════
   MOBILE
════════════════ */
@media (max-width: 600px) {
  #experiences { padding: 56px 0 64px; border-top-width: 2px; }
  .exp-header { padding: 0 20px; margin-bottom: 28px; }
  .exp-title { font-size: clamp(32px, 10vw, 46px); }
  .exp-tabs-wrap { padding: 0 20px; overflow-x: auto; }
  .exp-tabs { min-width: max-content; }
  .exp-tab { padding: 11px 16px; }
  .exp-tab-name { font-size: 10.5px; }
  .exp-cat-banner { padding: 14px 20px; flex-wrap: wrap; gap: 10px; }
  .exp-cat-count { display: none; }

  /* Mobile: native scroll-snap — simplest, most reliable approach */
  .exp-track {
    display: flex;
    grid-template-columns: none;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 18px 0 22px;
    gap: 0;
    position: relative;
    /* Hide scrollbar visually */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .exp-track::-webkit-scrollbar { display: none; }
  .exp-card {
    /* Each card takes exactly the full viewport width */
    flex: 0 0 100vw;
    width: 100vw;
    height: 390px;
    scroll-snap-align: start;
    /* Visual inset via padding so card doesn't touch screen edges */
    padding: 0 20px;
    box-sizing: border-box;
    border-radius: 0;
    position: relative;
    overflow: visible;
  }
  /* The link inside is the actual visible card */
  .exp-card .exp-card-link {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
  }
  .exp-media { height: 200px; }
  /* Progress bar hidden on mobile — dots show position instead */
  .exp-prog-wrap { display: none; }
  .exp-footer-row { padding: 0 20px 8px; justify-content: center; }
  .exp-cta-btn { width: calc(100% - 40px); justify-content: center; padding: 16px 24px; }
  .exp-cursor { display: none; }
}

/* HERO VIDEO BACKGROUND */

.exp-hero{
height:90vh;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
position:relative;
overflow:hidden;
}

.exp-hero video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:0;
}

.exp-hero::after{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,.35);
z-index:1;
}

.exp-hero-inner{
position:relative;
z-index:2;
max-width:700px;
}
.exp-hero h1{
letter-spacing:.04em;
animation:fadeUp 1.2s ease;
}

.exp-hero img{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:0;
display:none;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(20px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* ════════════════════════════════════════════════════
   SERVICES SECTION — Luxury Redesign
════════════════════════════════════════════════════ */

#services {
  position: relative;
  background: #551516;
  padding: 88px 64px;
  overflow: hidden;
  isolation: isolate;
}

.sv-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 55% at 100% 100%, rgba(2,66,62,0.20) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 0% 0%,   rgba(0,0,0,0.16)   0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 50% 50%,  rgba(167,112,58,0.04) 0%, transparent 60%);
}

.sv-wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Header ── */
.sv-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#services.sv-in .sv-header {
  opacity: 1;
  transform: none;
}

.sv-header-left { flex-shrink: 0; }

.sv-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #a7703a;
  margin-bottom: 16px;
}

.sv-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  color: #F9F5EF;
  line-height: 1.05;
  letter-spacing: -0.3px;
}

.sv-title em {
  font-style: italic;
  color: #a7703a;
}

.sv-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(249,245,239,0.48);
  line-height: 1.8;
  max-width: 360px;
  text-align: right;
  flex-shrink: 1;
}

/* ── Decorative rule ── */
.sv-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.9s ease 0.15s, transform 0.9s ease 0.15s;
}

#services.sv-in .sv-rule {
  opacity: 1;
  transform: scaleX(1);
}

.sv-rule-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,112,58,0.4), transparent);
}

.sv-rule-diamond {
  width: 6px;
  height: 6px;
  border: 1px solid rgba(167,112,58,0.55);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Service list ── */
.sv-list {
  margin: 0;
}

.sv-divider {
  height: 1px;
  background: rgba(167,112,58,0.12);
}

/* ── Service item row ── */
.sv-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 0;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateX(-16px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    background 0.35s ease;
}

#services.sv-in .sv-item:nth-child(1) { opacity:1; transform:none; transition-delay:0.25s; }
#services.sv-in .sv-item:nth-child(3) { opacity:1; transform:none; transition-delay:0.35s; }
#services.sv-in .sv-item:nth-child(5) { opacity:1; transform:none; transition-delay:0.45s; }
#services.sv-in .sv-item:nth-child(7) { opacity:1; transform:none; transition-delay:0.55s; }

.sv-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2,66,62,0.18);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.sv-item:hover::before,
.sv-item:focus-visible::before {
  opacity: 1;
}

.sv-item-left {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 120px;
  flex-shrink: 0;
}

.sv-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(167,112,58,0.6);
  flex-shrink: 0;
  min-width: 22px;
}

.sv-icon {
  width: 28px;
  height: 28px;
  color: #a7703a;
  flex-shrink: 0;
  transition: transform 0.35s ease, color 0.35s;
}

.sv-icon svg {
  width: 100%;
  height: 100%;
}

.sv-item:hover .sv-icon {
  transform: scale(1.15) rotate(-4deg);
  color: #c4934e;
}

.sv-item-body {
  flex: 1;
  padding: 0 40px 0 16px;
  position: relative;
  z-index: 1;
}

.sv-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 400;
  color: #F9F5EF;
  line-height: 1.1;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.sv-item:hover .sv-name {
  color: #a7703a;
}

.sv-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(249,245,239,0.42);
  line-height: 1.7;
  max-width: 520px;
  transition: color 0.3s;
}

.sv-item:hover .sv-desc {
  color: rgba(249,245,239,0.62);
}

.sv-item-right {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.sv-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(167,112,58,0.25);
  border-radius: 50%;
  color: rgba(167,112,58,0.6);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
}

.sv-link svg {
  width: 18px;
  height: 9px;
  transition: transform 0.3s;
}

.sv-item:hover .sv-link {
  border-color: #a7703a;
  color: #a7703a;
  background: rgba(167,112,58,0.08);
  transform: scale(1.1);
}

.sv-item:hover .sv-link svg {
  transform: translateX(3px);
}

.sv-watermark {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(167,112,58,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: color 0.35s, opacity 0.35s;
}

.sv-item:hover .sv-watermark {
  color: rgba(167,112,58,0.07);
}

/* ── CTA ── */
.sv-cta {
  display: flex;
  justify-content: center;
  padding-top: 44px;
  opacity: 0;
  transition: opacity 0.8s ease 0.6s;
}

#services.sv-in .sv-cta {
  opacity: 1;
}

.sv-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #F9F5EF;
  background: transparent;
  border: 1px solid rgba(167,112,58,0.4);
  padding: 16px 44px;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.25s, box-shadow 0.3s;
}

.sv-cta-btn svg {
  width: 18px;
  height: 9px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.sv-cta-btn:hover {
  background: #a7703a;
  border-color: #a7703a;
  color: #F9F5EF;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(167,112,58,0.25);
}

.sv-cta-btn:hover svg {
  transform: translateX(5px);
}

/* ════════════════════════
   RESPONSIVE — Tablet
════════════════════════ */
@media (max-width: 900px) {
  #services {
    padding: 72px 40px;
  }

  .sv-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 36px;
  }

  .sv-sub {
    text-align: left;
    max-width: 100%;
  }

  .sv-item-body {
    padding: 0 20px 0 16px;
  }

  .sv-watermark {
    font-size: 60px;
    right: 50px;
  }
}

/* ════════════════════════
   RESPONSIVE — Mobile
════════════════════════ */
@media (max-width: 600px) {
  #services {
    padding: 64px 20px;
  }

  .sv-title {
    font-size: clamp(32px, 9vw, 44px);
  }

  .sv-item {
    flex-wrap: wrap;
    gap: 0;
    padding: 24px 0;
  }

  .sv-item-left {
    width: auto;
    gap: 14px;
    flex: 1;
  }

  .sv-item-body {
    flex: 0 0 100%;
    padding: 12px 0 0 0;
    order: 3;
  }

  .sv-item-right {
    order: 2;
  }

  .sv-watermark {
    display: none;
  }

  .sv-name {
    font-size: 20px;
  }

  .sv-desc {
    font-size: 12px;
  }

  .sv-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 17px 24px;
  }
}


/* ── STORIES ── */
#stories { background: var(--cream-warm); padding: 120px 80px; }
#stories .section-title { text-align: center; margin-bottom: 60px; }
.stories-inner { max-width: 1200px; margin: 0 auto; }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.story-quote {
  padding: 40px 32px;
  background: var(--white);
  position: relative;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 20px;
}
.quote-source {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Stories responsive */
@media (max-width: 1024px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  #stories {
    padding: 72px 20px;
  }
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .story-quote {
    padding: 28px 24px;
  }
  .quote-mark {
    font-size: 56px;
  }
  .quote-text {
    font-size: 18px;
  }
}

/* ════════════════════════════════════════════════════
   CONTACT SECTION — Luxury Redesign
════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --ct-green:   #02423e;
  --ct-green-d: #071a18;
  --ct-burg:    #551516;
  --ct-gold:    #a7703a;
  --ct-gold-lt: #c4934e;
  --ct-cream:   #F9F5EF;
  --ct-cream-d: #ede7dc;
  --ct-muted:   rgba(249,245,239,0.5);
  --ct-border:  rgba(167,112,58,0.22);
}

/* ── Shell ── */
#contact {
  position: relative;
  background: var(--ct-green-d);
  padding: 130px 64px;
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient gradient glow ── */
.ct-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 50%,  rgba(85,21,22,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 20%,  rgba(167,112,58,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 80% 85%,  rgba(2,66,62,0.25) 0%, transparent 65%);
}

/* ── Layout ── */
.ct-wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

/* ════════════════════════
   LEFT PANEL
════════════════════════ */
.ct-left {
  position: sticky;
  top: 80px;
}

.ct-left-inner {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

#contact.ct-in .ct-left-inner {
  opacity: 1;
  transform: none;
}

.ct-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ct-gold);
  margin-bottom: 22px;
}

.ct-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 4.8vw, 72px);
  font-weight: 300;
  color: var(--ct-cream);
  line-height: 1.0;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.ct-heading-italic {
  font-style: italic;
  color: var(--ct-gold);
}

.ct-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ct-muted);
  line-height: 1.85;
  margin-bottom: 52px;
}

.ct-info-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

.ct-info-row {
  display: block;
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(167,112,58,0.12);
  transition: padding-left 0.3s ease;
}

.ct-info-row:first-child {
  border-top: 1px solid rgba(167,112,58,0.12);
}

a.ct-info-row:hover {
  padding-left: 6px;
}

.ct-info-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ct-gold);
  margin-bottom: 5px;
  opacity: 0.8;
}

.ct-info-value {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(249,245,239,0.82);
  line-height: 1.6;
  transition: color 0.25s;
}

a.ct-info-row:hover .ct-info-value {
  color: var(--ct-cream);
}

.ct-ornament {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.ct-ornament-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--ct-gold), transparent);
  margin-left: 3px;
}

.ct-ornament-line--short {
  height: 30px;
  background: linear-gradient(to bottom, transparent, transparent);
}

.ct-ornament-diamond {
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid var(--ct-gold);
  transform: rotate(45deg);
  opacity: 0.6;
}

/* ════════════════════════
   FORM CARD
════════════════════════ */
.ct-right {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease 0.15s, transform 0.9s ease 0.15s;
}

#contact.ct-in .ct-right {
  opacity: 1;
  transform: none;
}

.ct-form-card {
  background: var(--ct-cream);
  border-radius: 4px;
  padding: 52px 52px 48px;
  position: relative;
  box-shadow:
    0 2px 0 0 var(--ct-burg),
    0 50px 100px rgba(0,0,0,0.4),
    0 10px 30px rgba(0,0,0,0.25);
}

.ct-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ct-burg), var(--ct-gold), var(--ct-burg));
}

/* ── Step bar ── */
.ct-step-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}

.ct-step-track {
  flex: 1;
  height: 1px;
  background: rgba(2,66,62,0.12);
  position: relative;
  overflow: visible;
}

.ct-step-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 50%;
  background: var(--ct-gold);
  transition: width 0.55s cubic-bezier(0.4,0,0.2,1);
}

.ct-step-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(2,66,62,0.4);
  flex-shrink: 0;
  transition: color 0.3s;
}

.ct-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--ct-green);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

.ct-step-panel {
  animation: ctSlideIn 0.45s cubic-bezier(0.4,0,0.2,1);
}

.ct-step-panel--hidden {
  display: none;
}

@keyframes ctSlideIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: none; }
}

.ct-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.ct-field {
  position: relative;
  margin-bottom: 32px;
}

.ct-field > label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(2,66,62,0.45);
  margin-bottom: 12px;
}

.ct-ast { color: var(--ct-gold); }

.ct-field input,
.ct-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(2,66,62,0.18);
  padding: 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ct-green);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: rgba(2,66,62,0.25);
}

.ct-field textarea {
  resize: none;
  min-height: 96px;
  line-height: 1.75;
  display: block;
}

.ct-line {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--ct-gold);
  transition: width 0.38s ease;
  border-radius: 0;
}

.ct-field input:focus ~ .ct-line,
.ct-field textarea:focus ~ .ct-line {
  width: 100%;
}

.ct-field input:focus,
.ct-field textarea:focus {
  border-bottom-color: transparent;
}

.ct-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 6px;
}

.ct-tile {
  padding: 14px 10px;
  background: white;
  border: 1px solid rgba(2,66,62,0.1);
  border-radius: 3px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(2,66,62,0.55);
  text-align: center;
  line-height: 1.35;
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.ct-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ct-gold);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.ct-tile:hover {
  border-color: rgba(167,112,58,0.4);
  color: var(--ct-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(167,112,58,0.12);
}

.ct-tile.ct-sel {
  border-color: var(--ct-burg);
  background: var(--ct-burg);
  color: var(--ct-cream);
  box-shadow: 0 4px 16px rgba(85,21,22,0.25);
}

.ct-tile-name { position: relative; z-index: 1; }

.ct-guests {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 0 10px;
}

.ct-g-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(2,66,62,0.2);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, background 0.25s;
  flex-shrink: 0;
}

.ct-g-btn svg {
  width: 12px;
  height: 12px;
  color: var(--ct-green);
  pointer-events: none;
}

.ct-g-btn:hover {
  border-color: var(--ct-gold);
  background: rgba(167,112,58,0.06);
}

.ct-g-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--ct-green);
  min-width: 24px;
  text-align: center;
  line-height: 1;
  transition: transform 0.18s ease;
}

.ct-g-val.ct-bump {
  transform: scale(1.25);
}

.ct-select-shell {
  position: relative;
  margin-top: 0;
}

.ct-select-shell select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(2,66,62,0.18);
  padding: 10px 24px 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ct-green);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.3s;
}

.ct-select-shell select:focus {
  border-bottom-color: var(--ct-gold);
}

.ct-select-shell select option {
  color: #0e1a18;
}

.ct-chevron {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 7px;
  color: rgba(2,66,62,0.35);
  pointer-events: none;
}

.ct-actions {
  margin-top: 8px;
  display: flex;
  align-items: center;
}

.ct-actions--right  { justify-content: flex-end; }
.ct-actions--split  { justify-content: space-between; }

.ct-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ct-cream);
  background: var(--ct-green);
  border: none;
  padding: 16px 40px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.ct-btn-next svg {
  width: 22px;
  height: 11px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.ct-btn-next:hover {
  background: #01312e;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(2,66,62,0.3);
}

.ct-btn-next:hover svg { transform: translateX(4px); }

.ct-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(2,66,62,0.4);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.25s;
}

.ct-btn-back svg {
  width: 22px;
  height: 11px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.ct-btn-back:hover {
  color: var(--ct-green);
}

.ct-btn-back:hover svg { transform: translateX(-4px); }

.ct-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ct-cream);
  background: var(--ct-burg);
  border: none;
  padding: 16px 40px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.ct-btn-submit svg {
  width: 22px;
  height: 11px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.ct-btn-submit:hover {
  background: #3e0f10;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(85,21,22,0.35);
}

.ct-btn-submit:hover svg { transform: translateX(4px); }

.ct-btn-submit.ct-loading {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

.ct-privacy {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(2,66,62,0.35);
  text-align: center;
  margin-top: 22px;
  letter-spacing: 0.02em;
}

@keyframes ctShake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-5px); }
  40%      { transform: translateX(5px); }
  60%      { transform: translateX(-3px); }
  80%      { transform: translateX(3px); }
}

.ct-field.ct-err input,
.ct-field.ct-err textarea {
  border-bottom-color: var(--ct-burg);
  animation: ctShake 0.38s ease;
}

.ct-tiles.ct-err {
  animation: ctShake 0.38s ease;
  outline: 1px solid rgba(85,21,22,0.3);
  outline-offset: 6px;
  border-radius: 2px;
}

.ct-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0 12px;
}

.ct-success.ct-show {
  display: flex;
  animation: ctFadeUp 0.6s ease;
}

@keyframes ctFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.ct-success-ring {
  width: 80px;
  height: 80px;
  margin-bottom: 28px;
}

.ct-success-ring svg {
  width: 100%;
  height: 100%;
}

.ct-check-path {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: ctCheckDraw 0.6s ease 0.3s forwards;
}

@keyframes ctCheckDraw {
  to { stroke-dashoffset: 0; }
}

.ct-success-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--ct-green);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.ct-success-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(2,66,62,0.6);
  line-height: 1.8;
  max-width: 360px;
}

/* ════════════════════════
   RESPONSIVE — Tablet
════════════════════════ */
@media (max-width: 960px) {
  #contact {
    padding: 100px 40px;
  }

  .ct-wrap {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .ct-left {
    position: static;
    text-align: center;
  }

  .ct-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .ct-info-block {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .ct-ornament {
    align-items: center;
    margin-bottom: 0;
  }

  .ct-ornament-line {
    background: linear-gradient(to bottom, transparent, var(--ct-gold), transparent);
    height: 40px;
  }
}

/* ════════════════════════
   RESPONSIVE — Mobile
════════════════════════ */
@media (max-width: 640px) {
  #contact {
    padding: 80px 20px;
  }

  .ct-form-card {
    padding: 36px 24px 32px;
  }

  .ct-heading {
    font-size: clamp(44px, 13vw, 60px);
  }

  .ct-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ct-tiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .ct-tile {
    padding: 13px 8px;
    font-size: 10.5px;
  }

  .ct-actions--split {
    flex-direction: column-reverse;
    gap: 20px;
    align-items: stretch;
  }

  .ct-btn-submit,
  .ct-btn-next {
    width: 100%;
    justify-content: center;
    padding: 17px;
  }

  .ct-btn-back {
    justify-content: center;
  }

  .ct-guests {
    justify-content: flex-start;
  }
}

/* ── SECTION COMMONS ── */
.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 20px;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.12;
  margin-bottom: 60px;
}

/* ════════════════════════════════════════════════════
   FOOTER — Luxury Redesign
════════════════════════════════════════════════════ */

footer#footer {
  background: #551516;
  padding: 0 64px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

footer#footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 100% 100%, rgba(2,66,62,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 0% 0%,     rgba(0,0,0,0.18)   0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── Top rule ── */
.ft-top-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 64px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

footer#footer.ft-in .ft-top-rule {
  opacity: 1;
  transform: scaleX(1);
}

.ft-rule-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,112,58,0.45), transparent);
}

.ft-rule-diamond {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(167,112,58,0.6);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Inner grid ── */
.ft-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
}

/* ════════════════
   BRAND COL
════════════════ */
.ft-brand {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

footer#footer.ft-in .ft-brand { opacity: 1; transform: none; }

.ft-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ft-logo-mark {
  width: 38px;
  height: 38px;
  background: #a7703a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: #F9F5EF;
  flex-shrink: 0;
}

.ft-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ft-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: #F9F5EF;
  letter-spacing: 0.04em;
  line-height: 1;
}

.ft-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 8.5px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(249,245,239,0.45);
  line-height: 1;
}

.ft-brand-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(249,245,239,0.48);
  line-height: 1.8;
  max-width: 270px;
  margin-bottom: 28px;
}

.ft-social-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #a7703a;
  margin-bottom: 12px;
  opacity: 0.85;
}

.ft-socials {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.ft-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(167,112,58,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(249,245,239,0.4);
  text-decoration: none;
  transition: border-color 0.28s, color 0.28s, background 0.28s, transform 0.22s;
  flex-shrink: 0;
}

.ft-social svg {
  width: 15px;
  height: 15px;
  pointer-events: none;
}

.ft-social:hover {
  border-color: #a7703a;
  color: #a7703a;
  background: rgba(167,112,58,0.08);
  transform: translateY(-3px);
}

.ft-handle {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: rgba(249,245,239,0.25);
  letter-spacing: 0.08em;
}

/* ════════════════
   NAV COLS
════════════════ */
.ft-col {
  opacity: 0;
  transform: translateY(18px);
}

footer#footer.ft-in .ft-col:nth-child(2) { opacity: 1; transform: none; transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s; }
footer#footer.ft-in .ft-col:nth-child(3) { opacity: 1; transform: none; transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s; }
footer#footer.ft-in .ft-col:nth-child(4) { opacity: 1; transform: none; transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s; }

.ft-col-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #a7703a;
  margin-bottom: 22px;
}

.ft-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft-list li {
  margin-bottom: 13px;
}

.ft-list li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(249,245,239,0.45);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: color 0.25s, gap 0.25s;
  position: relative;
}

.ft-list li a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: #a7703a;
  transition: width 0.3s ease;
  margin-right: 0;
  vertical-align: middle;
}

.ft-list li a:hover {
  color: #F9F5EF;
  gap: 8px;
}

.ft-list li a:hover::before {
  width: 14px;
  margin-right: 6px;
}

.ft-contact-row {
  display: block;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(167,112,58,0.1);
  transition: padding-left 0.28s;
}

.ft-contact-row:first-of-type {
  border-top: 1px solid rgba(167,112,58,0.1);
}

a.ft-contact-row:hover {
  padding-left: 5px;
}

.ft-contact-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #a7703a;
  margin-bottom: 3px;
  opacity: 0.8;
}

.ft-contact-val {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(249,245,239,0.5);
  line-height: 1.6;
  transition: color 0.25s;
}

a.ft-contact-row:hover .ft-contact-val {
  color: rgba(249,245,239,0.85);
}

.ft-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F9F5EF;
  text-decoration: none;
  border-bottom: 1px solid rgba(167,112,58,0.4);
  padding-bottom: 6px;
  transition: color 0.25s, border-color 0.25s, gap 0.25s;
}

.ft-cta svg {
  width: 18px;
  height: 9px;
  flex-shrink: 0;
  transition: transform 0.28s;
}

.ft-cta:hover {
  color: #a7703a;
  border-color: #a7703a;
  gap: 14px;
}

.ft-cta:hover svg { transform: translateX(4px); }

/* ── Bottom rule ── */
.ft-bottom-rule {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.ft-bottom-rule .ft-rule-line {
  display: block;
  height: 1px;
  background: rgba(167,112,58,0.15);
}

/* ── Bottom bar ── */
.ft-bottom {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0 28px;
}

.ft-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(249,245,239,0.22);
}

.ft-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ft-bottom-sep {
  color: rgba(249,245,239,0.15);
  font-size: 11px;
}

.ft-bottom-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(249,245,239,0.22);
  text-decoration: none;
  transition: color 0.25s;
}

.ft-bottom-links a:hover {
  color: #a7703a;
}

/* ════════════════════════
   RESPONSIVE — Tablet
════════════════════════ */
@media (max-width: 1060px) {
  footer#footer { padding: 0 40px; }

  .ft-inner {
    grid-template-columns: 1fr 1fr;
    gap: 44px 40px;
  }

  .ft-brand { grid-column: 1 / -1; }

  .ft-brand-desc { max-width: 100%; }
}

/* ════════════════════════
   RESPONSIVE — Mobile
════════════════════════ */
@media (max-width: 640px) {
  footer#footer { padding: 0 20px; }

  .ft-top-rule { padding-top: 52px; margin-bottom: 44px; }

  .ft-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 44px;
  }

  .ft-brand { grid-column: auto; }

  .ft-col-heading { margin-bottom: 16px; }

  .ft-list li { margin-bottom: 11px; }

  .ft-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 0 24px;
  }

  .ft-cta { margin-top: 20px; }

  .ft-socials { gap: 10px; }
}