/* ==================================================================
 * Giannadakis — design system
 * Syne (display) + Didact Gothic (body), gold accent, industrial warmth
 * ================================================================== */

:root {
  --brand-gold: #ce9233;
  --brand-gold-dark: #b07721;
  --brand-gold-light: #e3b35d;
  --brand-gold-soft: rgba(206, 146, 51, 0.08);

  --ink: #111111;
  --ink-soft: #3b3b3b;
  --ink-body: #4a4a4a;
  --muted: #7a7a7a;
  --paper: #ffffff;
  --cream: #f6f1e7;
  --cream-deep: #ede5d3;
  --rule: #e4dfd2;
  --charcoal: #171717;

  --font-body: "Didact Gothic", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Syne", "Didact Gothic", "Helvetica Neue", Arial, sans-serif;

  --shadow-sm: 0 2px 10px rgba(0,0,0,.05);
  --shadow-md: 0 18px 40px rgba(0,0,0,.08);
  --shadow-lg: 0 30px 60px rgba(0,0,0,.14);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--ink-body);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Display typography (Syne) ===== */
h1, h2, h3, h4, h5, h6, .display {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.1;
  font-weight: 600;
  margin: 0;
  overflow-wrap: break-word;
}

h1 { font-weight: 700; letter-spacing: 0; }

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--brand-gold); }

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

::selection { background: var(--brand-gold); color: #fff; }

/* ===== Containers ===== */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1360px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px;  margin: 0 auto; padding: 0 24px; }

/* ==================================================================
 * Top contact bar
 * ================================================================== */
.topbar {
  background: var(--charcoal);
  color: #c9c4b8;
  font-size: 13px;
  letter-spacing: .02em;
}
.topbar a { color: #c9c4b8; }
.topbar a:hover { color: var(--brand-gold); }
.topbar i { color: var(--brand-gold); margin-right: 6px; font-size: 15px; vertical-align: -1px; }

/* Hide topbar on mobile — lang switcher moves into mobile menu, contact info lives in footer */
@media (max-width: 767px) {
  .topbar { display: none; }
}

.lang-switch a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 6px 10px;
  margin-left: 4px;
  color: #7a7568;
  border-bottom: 2px solid transparent;
}
.lang-switch a.active { color: var(--brand-gold); border-color: var(--brand-gold); }
.lang-switch a:hover { color: var(--brand-gold); }

/* ==================================================================
 * Header / nav
 * ================================================================== */
.site-header {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .logo img {
  max-height: 72px;
  width: auto;
  transition: transform .3s var(--ease);
}
.site-header .logo:hover img { transform: scale(1.02); }

.nav-list > li > a {
  display: inline-block;
  padding: 32px 18px;
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 600;
  color: #ece6d6;
  position: relative;
}
.nav-list > li > a:hover,
.nav-list > li.active > a { color: var(--brand-gold); }
.nav-list > li > a::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 24px;
  height: 2px;
  background: var(--brand-gold);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.nav-list > li > a:hover::before,
.nav-list > li.active > a::before { transform: scaleX(1); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px;
  background: #fff;
  border-top: 3px solid var(--brand-gold);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: all .3s var(--ease);
  z-index: 50;
  padding: 8px 0;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: block;
  padding: 13px 22px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-soft);
  border-left: 3px solid transparent;
  transition: all .2s var(--ease);
}
.dropdown a:hover { color: var(--brand-gold); background: var(--cream); border-left-color: var(--brand-gold); }

/* Mobile nav */
.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 28px;
  color: #fff;
  background: transparent;
  border: 0;
  padding: 8px;
}
.mobile-menu {
  display: none;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #ece6d6;
}
.mobile-menu a:hover { color: var(--brand-gold); }
.mobile-menu .sub a { padding-left: 44px; font-size: 12px; color: #a59e8d; letter-spacing: .08em; }

/* Lang switcher row inside mobile menu */
.mobile-menu .lang-row {
  display: flex;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu .lang-row a {
  flex: 1;
  padding: 10px 14px !important;
  text-align: center;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-bottom: 1px solid rgba(255,255,255,.14) !important;
  font-size: 12px;
  letter-spacing: .18em;
  color: #a59e8d;
}
.mobile-menu .lang-row a.active {
  color: var(--brand-gold);
  border-color: var(--brand-gold) !important;
  background: rgba(206,146,51,.06);
}

/* Contact block at the bottom of mobile menu */
.mobile-menu .contact-row {
  padding: 20px 24px 28px;
  background: rgba(0,0,0,.35);
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu .contact-row p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #a59e8d;
  margin: 0 0 8px;
  padding-left: 22px;
  position: relative;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.5;
}
.mobile-menu .contact-row p i {
  position: absolute;
  left: 0; top: 3px;
  color: var(--brand-gold);
  font-size: 14px;
}
.mobile-menu .contact-row a {
  color: #ece6d6;
  display: inline;
  padding: 0;
  border: 0;
  font-size: 13.5px;
  letter-spacing: normal;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 400;
}
.mobile-menu .contact-row a:hover { color: var(--brand-gold); }

@media (max-width: 1023px) {
  .desktop-nav { display: none !important; }
  .mobile-toggle { display: block; }
  .site-header .logo img { max-height: 56px; }
  .nav-list > li > a { padding: 20px 12px; }
}

/* ==================================================================
 * Hero slider (Swiper)
 * ================================================================== */
.hero-swiper {
  position: relative;
  height: clamp(520px, 78vh, 780px);
  overflow: hidden;
  background: var(--charcoal);
}
.hero-swiper .swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide { height: 100%; }

/* Film-grain noise texture overlay (metallic warmth) */
.hero-swiper::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.8 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.45) 100%);
}
.hero-slide::after {
  content: "";
  position: absolute;
  right: -8%; top: -12%;
  width: 55%; height: 60%;
  background: radial-gradient(circle at center, rgba(206,146,51,.22) 0%, rgba(206,146,51,0) 60%);
  pointer-events: none;
}

.hero-slide .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
.hero-slide .kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brand-gold);
  padding: 8px 0;
  position: relative;
  margin-bottom: 20px;
}
.hero-slide .kicker::before {
  content: "";
  display: inline-block;
  width: 40px; height: 2px;
  background: var(--brand-gold);
  margin-right: 16px;
  vertical-align: middle;
}
.hero-slide h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 84px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
  max-width: 18ch;
}
.hero-slide h1 .accent {
  display: block;
  color: var(--brand-gold);
  font-style: italic;
  font-weight: 600;
  font-size: 0.72em;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 6px;
}
.hero-slide .lede {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 18px);
  max-width: 52ch;
  opacity: .9;
  margin: 20px 0 34px;
  line-height: 1.55;
}

/* Entrance animation (runs on active slide) */
.hero-slide .kicker,
.hero-slide h1,
.hero-slide .lede,
.hero-slide .btn-hero { opacity: 0; transform: translateY(24px); transition: all .8s var(--ease); }
.swiper-slide-active .hero-slide .kicker     { opacity: 1; transform: none; transition-delay: .15s; }
.swiper-slide-active .hero-slide h1          { opacity: 1; transform: none; transition-delay: .30s; }
.swiper-slide-active .hero-slide .lede       { opacity: 1; transform: none; transition-delay: .55s; }
.swiper-slide-active .hero-slide .btn-hero   { opacity: 1; transform: none; transition-delay: .75s; }

/* Swiper navigation */
.hero-dots {
  position: absolute;
  left: 40px; bottom: 40px;
  z-index: 3;
  display: flex; gap: 10px;
}
.hero-dots .dot {
  width: 42px; height: 3px;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .3s var(--ease);
  border: 0;
}
.hero-dots .dot.active { background: var(--brand-gold); width: 72px; }

.hero-counter {
  position: absolute;
  right: 40px; bottom: 40px;
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 13px;
  letter-spacing: .2em;
}
.hero-counter .current { font-size: 24px; color: var(--brand-gold); }

/* ==================================================================
 * Buttons
 * ================================================================== */
.btn-hero, .btn-solid, .btn-ghost, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s var(--ease);
  border: 2px solid transparent;
  position: relative;
}
.btn-hero {
  background: var(--brand-gold);
  color: #fff;
  border-color: var(--brand-gold);
  box-shadow: 0 10px 30px rgba(206,146,51,.35);
}
.btn-hero:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255,255,255,.1);
}
.btn-hero::after {
  content: "\2192";
  font-size: 16px;
  transition: transform .3s var(--ease);
}
.btn-hero:hover::after { transform: translateX(4px); }

.btn-solid {
  background: var(--brand-gold);
  color: #fff;
  border-color: var(--brand-gold);
}
.btn-solid:hover {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-gold);
  border-color: var(--brand-gold);
  padding: 12px 26px;
}
.btn-ghost:hover {
  background: var(--brand-gold);
  color: #fff;
}
.btn-ghost::after {
  content: "\2192";
  transition: transform .3s var(--ease);
}
.btn-ghost:hover::after { transform: translateX(4px); }

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

/* ==================================================================
 * Page hero (interior pages)
 * ================================================================== */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 150px 0 140px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.7) 100%);
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.2;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.8 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.page-hero .crumb {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .85;
}
.page-hero .crumb a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 1px; }
.page-hero .crumb a:hover { color: var(--brand-gold); border-color: var(--brand-gold); }

/* ==================================================================
 * Sections & titles
 * ================================================================== */
.section { padding: 110px 0; }
.section-tight { padding: 70px 0; }

.sec-title { text-align: center; margin-bottom: 64px; }
.sec-title .eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-gold);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sec-title .eyebrow::before,
.sec-title .eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--brand-gold);
  margin: 0 14px;
}
.sec-title h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4.5vw, 46px);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.08;
  word-break: break-word;
  overflow-wrap: break-word;
}
.sec-title h2 .accent { color: var(--brand-gold); font-style: italic; font-weight: 600; text-transform: none; letter-spacing: -0.01em; }

/* ==================================================================
 * Welcome block (home)
 * ================================================================== */
.welcome-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .welcome-grid { grid-template-columns: 1fr; gap: 50px; } }

.welcome-text { min-width: 0; }
.welcome-text .sec-title { text-align: left; margin-bottom: 28px; }
.welcome-text .sec-title .eyebrow { padding-left: 0; }
.welcome-text .sec-title .eyebrow::before { margin-left: 0; }
.welcome-text .sec-title h2 { text-align: left; }
.welcome-text p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.values-row .value {
  text-align: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}
.values-row .value i {
  display: block;
  color: var(--brand-gold);
  font-size: 32px;
  margin-bottom: 12px;
  transition: transform .3s var(--ease);
}
.values-row .value:hover i { transform: translateY(-4px); }
@media (max-width: 767px) {
  .values-row { grid-template-columns: repeat(3, 1fr); gap: 24px 12px; }
  .values-row .value { font-size: 10px; letter-spacing: .08em; }
  .values-row .value i { font-size: 28px; }
}
@media (max-width: 420px) {
  .values-row { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .values-row .value { font-size: 11px; letter-spacing: .12em; }
}

.welcome-images {
  position: relative;
  min-height: 600px;
}
.welcome-images figure { margin: 0; }

.welcome-images .wi-main {
  position: relative;
  width: 80%;
  height: 100%;
  margin-left: auto;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.welcome-images .wi-main::before {
  content: "";
  position: absolute;
  top: -24px; right: -24px;
  width: 130px; height: 130px;
  background: var(--brand-gold);
  z-index: -1;
}
.welcome-images .wi-main img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  display: block;
}

.welcome-images .wi-inset {
  position: absolute;
  left: 0; bottom: 50px;
  width: 46%;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
  border: 8px solid #fff;
  z-index: 2;
  overflow: hidden;
}
.welcome-images .wi-inset img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .welcome-images { min-height: 0; }
  .welcome-images .wi-main {
    width: 100%;
  }
  .welcome-images .wi-main img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
  /* Hide decorative gold accent on mobile — would overflow the viewport */
  .welcome-images .wi-main::before { display: none; }
  .welcome-images .wi-inset {
    position: static;
    width: 80%;
    margin: -60px 0 0 auto;
    aspect-ratio: 4 / 3;
  }
}

/* ==================================================================
 * Service cards (home + services hub)
 * ================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  overflow: hidden;
  transition: all .4s var(--ease);
  display: flex; flex-direction: column;
  position: relative;
  border: 1px solid var(--rule);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
  z-index: 2;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card .img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--charcoal);
}
.service-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease), opacity .7s var(--ease);
}
.service-card:hover .img-wrap img { transform: scale(1.08); opacity: .9; }

.service-card .content { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 6px;
  line-height: 1.15;
}
.service-card h3 .accent {
  display: block;
  font-size: 13px;
  color: var(--brand-gold);
  letter-spacing: .1em;
  margin-top: 6px;
  font-weight: 600;
  font-style: italic;
  text-transform: none;
}
.service-card p {
  color: var(--ink-body);
  margin: 16px 0 24px;
  flex: 1;
  font-size: 15.5px;
  line-height: 1.6;
}

/* ==================================================================
 * CTA / facts block (image bg)
 * ================================================================== */
.cta-block {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 130px 24px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.75) 100%);
  z-index: 1;
}
.cta-block::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.2;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.8 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}
.cta-block > * { position: relative; z-index: 2; }
.cta-block .eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  color: var(--brand-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cta-block .eyebrow::before,
.cta-block .eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--brand-gold);
  margin: 0 14px;
}
.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.cta-block h2 .accent { color: var(--brand-gold); font-style: italic; font-weight: 600; text-transform: none; letter-spacing: -0.01em; }
.cta-block p {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: 18px;
  opacity: .9;
  line-height: 1.6;
}

@media (max-width: 900px) { .cta-block { background-attachment: scroll; padding: 90px 24px; } }

/* Gold strip CTA — brushed metal finish */
.cta-strip {
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
  text-align: center;
  color: #fff;
  background:
    /* horizontal brushed-grain hairlines (very fine) */
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.04) 0px,
      rgba(255,255,255,.04) 1px,
      rgba(0,0,0,.05) 1px,
      rgba(0,0,0,.05) 2px
    ),
    /* top-down polished sheen — brighter top, darker bottom for depth */
    linear-gradient(
      180deg,
      rgba(255,255,255,.12) 0%,
      rgba(0,0,0,.04) 45%,
      rgba(0,0,0,.16) 100%
    ),
    var(--brand-gold);
}
.cta-strip::before {
  content: "";
  position: absolute;
  top: -60%; right: -8%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,255,255,.22) 0%, transparent 65%);
  pointer-events: none;
}
.cta-strip::after {
  content: "";
  position: absolute;
  bottom: -50%; left: -8%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0,0,0,.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip > * { position: relative; z-index: 2; }
.cta-strip h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 22px;
  line-height: 1.15;
  color: #fff;
}
.cta-strip .btn-solid {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.cta-strip .btn-solid:hover { background: #fff; color: var(--brand-gold); border-color: #fff; }

/* ==================================================================
 * Partners strip
 * ================================================================== */
.partners {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
}
.partners-row img {
  max-height: 72px;
  width: auto;
  opacity: .55;
  filter: grayscale(100%);
  transition: all .3s var(--ease);
}
.partners-row img:hover { opacity: 1; filter: none; transform: translateY(-2px); }

/* ==================================================================
 * Service detail rich-text
 * ================================================================== */
.rich-text { max-width: 920px; margin: 0 auto; }
.rich-text p {
  font-size: 18px;
  color: var(--ink-body);
  margin-bottom: 22px;
  line-height: 1.75;
}
.rich-text p strong { color: var(--ink); font-weight: 700; }
.rich-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 64px 0 24px;
  line-height: 1.12;
}
.rich-text h2 .accent {
  display: inline-block;
  color: var(--brand-gold);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-left: 6px;
}
.rich-text h2 .accent.block { display: block; margin-left: 0; margin-top: 4px; }
.rich-text h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 48px 0 18px;
  color: var(--brand-gold);
}
.rich-text h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 32px 0 10px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
}
.rich-text h4::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 2px;
  background: var(--brand-gold);
}
.rich-text ul { margin: 14px 0 36px 4px; list-style: none; padding: 0; }
.rich-text ul li {
  font-size: 17px;
  color: var(--ink-body);
  padding-left: 30px;
  margin-bottom: 14px;
  position: relative;
  line-height: 1.65;
}
.rich-text ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 14px; height: 2px;
  background: var(--brand-gold);
}

/* Image compositions */
.img-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 50px 0;
}
.img-duo img {
  width: 100%; height: 380px; object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease);
}
.img-duo img:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
@media (max-width: 767px) { .img-duo { grid-template-columns: 1fr; } .img-duo img { height: 280px; } }

.img-solo { margin: 50px 0; position: relative; }
.img-solo img {
  width: 100%; max-height: 540px; object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* ==================================================================
 * Service page modules (editorial)
 * ================================================================== */

/* ----- Stat band (charcoal with big numbers) ----- */
.stat-band {
  background: var(--charcoal);
  color: #fff;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.stat-band::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.8 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}
.stat-band .stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.stat-band .stat { text-align: center; position: relative; padding: 0 20px; }
.stat-band .stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 20%;
  width: 1px; height: 60%;
  background: rgba(255,255,255,.1);
}
.stat-band .stat .num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  color: var(--brand-gold);
  letter-spacing: -0.02em;
}
.stat-band .stat .label {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: #ece6d6;
}
@media (max-width: 700px) {
  .stat-band .stats { grid-template-columns: 1fr; gap: 40px; }
  .stat-band .stat + .stat::before { display: none; }
  .stat-band .stat + .stat { padding-top: 40px; border-top: 1px solid rgba(255,255,255,.08); }
}

/* ----- Intro with big numbered applications ----- */
.intro-numbered { padding: 110px 0; }
.intro-numbered .intro-lead {
  max-width: 860px;
  margin: 0 auto 80px;
  text-align: center;
}
.intro-numbered .intro-lead .eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 20px;
}
.intro-numbered .intro-lead .eyebrow::before,
.intro-numbered .intro-lead .eyebrow::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--brand-gold);
  margin: 0 14px;
}
.intro-numbered .intro-lead h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}
.intro-numbered .intro-lead h2 .accent {
  color: var(--brand-gold);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
}
.intro-numbered .intro-lead p {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.numbered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.numbered-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .numbered-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px)  { .numbered-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px)  { .numbered-grid.cols-4 { grid-template-columns: 1fr; } }

.num-card {
  position: relative;
  padding: 48px 30px 36px;
  background: #fff;
  border: 1px solid var(--rule);
  transition: all .4s var(--ease);
  overflow: hidden;
}
.num-card::before {
  content: attr(data-num);
  position: absolute;
  top: -10px; right: 20px;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  color: rgba(206, 146, 51, 0.14);
  z-index: 0;
  transition: color .4s var(--ease), opacity .4s var(--ease);
}
.num-card:hover::before { color: rgba(206, 146, 51, 0.26); }
.num-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.num-card > * { position: relative; z-index: 1; }
.num-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 14px;
  line-height: 1.2;
}
.num-card h3 .accent {
  display: block;
  font-size: 13px;
  color: var(--brand-gold);
  letter-spacing: .05em;
  margin-top: 4px;
  font-weight: 600;
  font-style: italic;
  text-transform: none;
}
.num-card p {
  color: var(--ink-body);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ----- Feature split (alternating text + image, 50/50) ----- */
.feature-split { padding: 110px 0; }
.feature-split .split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}
.feature-split.alt-left .split-text { order: 2; }
.feature-split.alt-left .split-image { order: 1; }
@media (max-width: 900px) {
  .feature-split .split-grid { grid-template-columns: 1fr; gap: 50px; }
  .feature-split.alt-left .split-text,
  .feature-split.alt-left .split-image { order: initial; }
  /* Hide decorative gold accent block on mobile — would overflow */
  .split-image::before { display: none; }
}

.split-text .eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 20px;
}
.split-text .eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--brand-gold);
  margin-right: 14px;
}
.split-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 20px;
}
.split-text h2 .accent {
  color: var(--brand-gold);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  display: inline-block;
  margin-left: 4px;
}
.split-text .lede {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 28px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 30px;
  margin-top: 32px;
}
@media (max-width: 500px) { .benefit-grid { grid-template-columns: 1fr; } }
.benefit {
  padding-top: 18px;
  border-top: 2px solid var(--brand-gold);
  position: relative;
}
.benefit .b-num {
  position: absolute;
  top: 18px; right: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-gold);
  letter-spacing: .08em;
}
.benefit h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.3;
}
.benefit p {
  font-size: 14.5px;
  color: var(--ink-body);
  line-height: 1.6;
  margin: 0;
}

.split-image {
  position: relative;
}
.split-image figure { margin: 0; position: relative; overflow: hidden; box-shadow: var(--shadow-md); }
.split-image figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.split-image figure:hover img { transform: scale(1.04); }
.split-image::before {
  content: "";
  position: absolute;
  top: -24px; left: -24px;
  width: 130px; height: 130px;
  background: var(--brand-gold);
  z-index: -1;
}
.feature-split.alt-left .split-image::before { left: auto; right: -24px; }

/* ----- Full-bleed image pair ----- */
.image-bleed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
}
.image-bleed figure { margin: 0; overflow: hidden; position: relative; }
.image-bleed figure img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.image-bleed figure:hover img { transform: scale(1.03); }
.image-bleed figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.3) 100%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .image-bleed { grid-template-columns: 1fr; }
  .image-bleed figure img { height: 360px; }
}

/* ----- Feature list with checkmarks (2-col) ----- */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  margin: 24px 0 32px;
  list-style: none;
  padding: 0;
}
@media (max-width: 600px) { .feature-list { grid-template-columns: 1fr; } }
.feature-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  font-size: 15.5px;
  color: var(--ink-body);
  line-height: 1.55;
  border-bottom: 1px solid var(--rule);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M3 9.5l3.8 3.8L15 5' stroke='%23ce9233' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.feature-list li strong {
  color: var(--ink);
  font-weight: 700;
  display: inline;
}

/* ----- Pull section (full-bleed image with floating overlay card) ----- */
.pull-section {
  position: relative;
  min-height: 820px;
  padding: 130px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.pull-section::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.4) 60%, rgba(0,0,0,.2) 100%);
}
.pull-section::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.8 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}
.pull-section .pull-card {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin-left: 6vw;
  padding: 54px 46px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--brand-gold);
}
.pull-section .pull-card .eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 16px;
}
.pull-section .pull-card .eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--brand-gold);
  margin-right: 14px;
}
.pull-section .pull-card h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}
.pull-section .pull-card h2 .accent {
  display: block;
  color: var(--brand-gold);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.pull-section .pull-card p {
  font-size: 16px;
  color: var(--ink-body);
  line-height: 1.7;
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  .pull-section { min-height: 640px; padding: 100px 0; }
  .pull-section .pull-card { margin: 0 24px; padding: 40px 30px; }
  .pull-section::before { background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.65) 100%); }
}

/* ==================================================================
 * Service chips navigation
 * ================================================================== */
.service-chips {
  padding: 60px 0;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.chip {
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--rule);
  color: var(--ink);
  transition: all .25s var(--ease);
}
.chip:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
}
.chip.active {
  background: var(--brand-gold);
  color: #fff;
  border-color: var(--brand-gold);
}

/* ==================================================================
 * Contact page
 * ================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 40px 24px;
  text-align: center;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}
.contact-card:hover::before { transform: scaleX(1); transform-origin: left; }
.contact-card .icon {
  width: 72px; height: 72px;
  background: var(--brand-gold-soft);
  color: var(--brand-gold);
  border-radius: 50%;
  font-size: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all .3s var(--ease);
}
.contact-card:hover .icon {
  background: var(--brand-gold);
  color: #fff;
  transform: rotate(-8deg);
}
.contact-card h4 {
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 700;
}
.contact-card p,
.contact-card a {
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}
.contact-card a:hover { color: var(--brand-gold); }

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: #fff;
  box-shadow: var(--shadow-md);
}
@media (max-width: 900px) { .contact-form-wrap { grid-template-columns: 1fr; } }

.form-column { padding: 50px; background: var(--cream); }
.form-column h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 28px;
  letter-spacing: 0;
  line-height: 1.15;
  color: var(--ink);
}
.form-column h3 .accent {
  color: var(--brand-gold);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-left: 4px;
}
.form-column h3 .accent { color: var(--brand-gold); }
.form-column input,
.form-column textarea {
  width: 100%;
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 16px;
  border: 1px solid var(--rule);
  background: #fff;
  margin-bottom: 16px;
  color: var(--ink);
  transition: border-color .3s var(--ease);
}
.form-column input:focus,
.form-column textarea:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px var(--brand-gold-soft);
}
.form-column textarea { min-height: 140px; resize: vertical; }
.form-column .honeypot {
  position: absolute;
  left: -9999px; width: 1px; height: 1px;
  opacity: 0;
}

.form-msg {
  padding: 16px 18px;
  margin-bottom: 22px;
  font-size: 15px;
  border-left: 4px solid transparent;
}
.form-msg.ok  { background: #ecf7ee; color: #1e6b2e; border-color: #1e6b2e; }
.form-msg.err { background: #fdecea; color: #9a1c12; border-color: #9a1c12; }

.map-column {
  display: flex;
  flex-direction: column;
}
.map-column iframe {
  width: 100%;
  flex: 1;
  min-height: 440px;
  border: 0;
  display: block;
  filter: grayscale(.15);
}
.map-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--charcoal);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .3s var(--ease), color .3s var(--ease);
  border-top: 3px solid var(--brand-gold);
}
.map-cta:hover {
  background: var(--brand-gold);
  color: #fff;
}
.map-cta i {
  font-size: 18px;
  color: var(--brand-gold);
  transition: color .3s var(--ease);
}
.map-cta:hover i { color: #fff; }

/* ==================================================================
 * Footer
 * ================================================================== */
.site-footer {
  background: var(--charcoal);
  color: #a59e8d;
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-gold) 50%, transparent 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 50px;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h5 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 24px;
  font-weight: 700;
  position: relative;
  padding-bottom: 14px;
}
.site-footer h5::after {
  content: "";
  display: block;
  width: 32px; height: 2px;
  background: var(--brand-gold);
  position: absolute;
  bottom: 0; left: 0;
}
.site-footer a { color: #a59e8d; transition: all .25s var(--ease); }
.site-footer a:hover { color: var(--brand-gold); padding-left: 4px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li {
  padding: 6px 0;
  font-size: 14.5px;
}
.footer-col ul li a { position: relative; padding-left: 14px; }
.footer-col ul li a::before {
  content: "\203A";
  position: absolute;
  left: 0; top: 0;
  color: var(--brand-gold);
}
.footer-col ul li a:hover { padding-left: 18px; }

.footer-col p { font-size: 14.5px; line-height: 1.75; margin-bottom: 14px; }
.footer-contact p { padding-left: 24px; position: relative; }
.footer-contact p i {
  color: var(--brand-gold);
  position: absolute;
  left: 0; top: 4px;
}
.footer-logo img {
  max-height: 72px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 26px 0;
  text-align: center;
  font-size: 13px;
  color: #6c6458;
  letter-spacing: .04em;
}

/* ==================================================================
 * Scroll-reveal
 * ================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: .15s; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: .25s; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: .35s; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: .45s; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: .55s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-slide .kicker,
  .hero-slide h1,
  .hero-slide .lede,
  .hero-slide .btn-hero,
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* utilities */
.bg-cream { background: var(--cream); }
.bg-ink { background: var(--charcoal); color: #fff; }
.center { text-align: center; }
