/* ═══════════════════════════════════════════════════════════════
   ATHENA — COMPONENT STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  transition: all 0.6s var(--ease);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 2rem;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.6s var(--ease);
}
.nav.scrolled {
  background: rgba(8, 8, 12, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav.scrolled .nav-inner { height: 70px; }
.nav.scrolled::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gild-line);
}
.nav-logo img {
  height: 56px; width: auto;
  transition: all 0.6s var(--ease);
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.6));
}
.nav.scrolled .nav-logo img { height: 44px; }
.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-link {
  position: relative;
  padding: 0.6rem 1.2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-muted);
  text-decoration: none;
  transition: color 0.35s var(--ease);
}
.nav-link:hover { color: var(--silver-bright); }
.nav-link::after {
  content: '';
  position: absolute; bottom: 0.35rem; left: 50%; transform: translateX(-50%) scaleX(0);
  width: 16px; height: 1px; background: var(--gild);
  transition: transform 0.35s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-cta {
  margin-left: 0.8rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-decoration: none;
  border: 1px solid rgba(201,163,94,0.4);
  transition: all 0.4s var(--ease);
}
.nav-cta:hover { background: rgba(201,163,94,0.1); border-color: var(--gold-bright); color: var(--gold-pale); }
.nav-toggle { display: none; background: none; border: none; color: var(--gold); cursor: pointer; padding: 0.5rem; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(8,8,12,0.96);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300;
  color: var(--silver); text-decoration: none;
  padding: 0.6rem 2rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-bright); }
.mobile-close { position: absolute; top: 2rem; right: 2rem; background: none; border: none; color: var(--gold); cursor: pointer; }

/* ═══════════════ HERO (pinned, scroll-scrubbed) ═══════════════ */
.hero-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 70% 35%, rgba(42,80,143,0.18), transparent 60%),
    radial-gradient(80% 70% at 20% 80%, rgba(201,163,94,0.06), transparent 70%),
    var(--obsidian);
}
.hero-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--vid-pos, center 14%);
  filter: brightness(0.56) saturate(0.92) contrast(1.06);
  will-change: transform;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,12,0.86) 0%, rgba(8,8,12,0.5) 38%, rgba(8,8,12,0.2) 60%, rgba(8,8,12,0.55) 100%),
    linear-gradient(to bottom, rgba(8,8,12,0.7) 0%, transparent 22%, transparent 55%, var(--obsidian) 100%);
  will-change: opacity;
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero {
  position: relative;
  z-index: 1;
  height: 260vh;
}
.hero-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0 2rem;
  will-change: opacity;
}
.hero-grid {
  width: 100%;
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  will-change: transform;
}
.hero-progress {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: rgba(201,163,94,0.12);
  z-index: 4;
}
.hero-progress span {
  display: block; height: 100%; width: 0%;
  background: var(--gild);
  box-shadow: 0 0 12px rgba(201,163,94,0.6);
}
.hero-copy { max-width: 640px; }
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.6rem;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ln > span { display: block; }
.hero-sub {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--silver-muted);
  max-width: 30rem;
  margin: 1.8rem 0 2.4rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero logo to the RIGHT */
.hero-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}
.hero-logo img {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.7)) drop-shadow(0 0 50px rgba(201,163,94,0.16));
}
.hero-logo .halo {
  position: absolute;
  width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,163,94,0.16), rgba(42,80,143,0.08) 45%, transparent 70%);
  z-index: -1;
  animation: haloPulse 7s ease-in-out infinite;
}
@keyframes haloPulse { 0%,100%{ opacity:0.6; transform:scale(1);} 50%{ opacity:1; transform:scale(1.06);} }

.scroll-cue {
  position: absolute;
  bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  z-index: 3;
}
.scroll-cue span { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.scroll-cue .track { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-cue .track::after {
  content: ''; position: absolute; top: -50%; left: 0; width: 1px; height: 50%;
  background: var(--gold-bright);
  animation: cueDrop 2.4s var(--ease) infinite;
}
@keyframes cueDrop { 0%{ top:-50%;} 60%,100%{ top:100%;} }

/* ═══════════════ STATEMENT ═══════════════ */
.statement-card {
  position: relative;
  background: linear-gradient(160deg, rgba(20,20,30,0.9), rgba(26,26,40,0.7));
  padding: clamp(2.5rem, 5vw, 5rem);
}
.statement-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 4rem; align-items: center; }
.statement-quote { border-left: 1px solid rgba(201,163,94,0.45); padding-left: 2.2rem; }
.statement-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem,2vw,1.9rem);
  font-style: italic; font-weight: 300;
  line-height: 1.4; color: var(--silver-bright);
  margin: 0;
}
.statement-quote figcaption {
  margin-top: 1.4rem; font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
}

/* Credibility cues */
.cues { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.cue { text-align: center; padding: 1.5rem 1rem; }
.cue .num { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; margin-bottom: 0.6rem; }
.cue .lbl { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver-muted); }

/* ═══════════════ SECTION HEADER ═══════════════ */
.sec-head { margin-bottom: 3.5rem; }
.sec-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin-top: 1.2rem;
  max-width: 18ch;
}
.sec-head.center { text-align: center; }
.sec-head.center h2 { margin-left: auto; margin-right: auto; }
.sec-head .lead { color: var(--silver-muted); font-size: 1rem; line-height: 1.7; max-width: 34rem; margin-top: 1.2rem; }
.sec-head.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

/* ═══════════════ SERVICES ═══════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
}
.svc {
  position: relative;
  display: block;
  text-decoration: none;
  background: linear-gradient(170deg, #0f0f17, #14141e);
  overflow: hidden;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.svc:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(0,0,0,0.5); }
.svc-img { position: relative; overflow: hidden; }
.svc-img img {
  width: 100%; height: auto;
  transition: transform 0.8s var(--ease);
}
.svc:hover .svc-img img { transform: scale(1.05); }
.svc-cap {
  padding: 0 1rem 1.4rem;
  text-align: center;
}
.svc-num { font-size: 0.6rem; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 0.5rem; }
.svc-title { font-family: var(--font-display); font-size: 1.15rem; color: var(--silver-bright); line-height: 1.15; }
.svc-glow {
  position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(circle at 50% 40%, rgba(201,163,94,0.14), transparent 60%);
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
}
.svc:hover .svc-glow { opacity: 1; }

/* ═══════════════ GALLERY ═══════════════ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.55rem 1.3rem;
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--silver-muted);
  background: transparent;
  border: 1px solid rgba(201,163,94,0.18);
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.filter-btn:hover { color: var(--gold-bright); border-color: rgba(201,163,94,0.5); }
.filter-btn.active { color: #1a1206; background: var(--gild); border-color: transparent; }

/* Elegant gilt frame wrapping the scrolling archive. The frame lives on this
   non-scrolling box (corner brackets + double hairline via .gilt) so it stays
   put while the images scroll within. */
.gallery-box {
  position: relative;
  margin-top: 2.6rem;
  padding: 1.15rem;
  background: linear-gradient(160deg, rgba(20, 20, 30, 0.55), rgba(14, 14, 20, 0.32));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 46px rgba(201, 163, 94, 0.07);
}
.gallery-box.gilt::before { border-color: rgba(201, 163, 94, 0.5); }
.gallery-box.gilt::after { border-color: rgba(201, 163, 94, 0.22); }
.gallery-box .corner { width: 20px; height: 20px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  /* Contained, scrollable region so the archive doesn't run too long */
  max-height: 68vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.4rem 0.7rem 0.4rem 0.3rem;
  scrollbar-color: var(--gold-deep) var(--obsidian);
}
.gitem {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: var(--obsidian-light);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.gitem-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.gitem-media img {
  width: 100%; height: 100%; object-fit: cover;
  /* warm gold grade */
  filter: sepia(0.22) saturate(1.05) contrast(1.02) brightness(0.92);
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}
.gitem:hover .gitem-media img { transform: scale(1.07); filter: sepia(0.1) saturate(1.1) contrast(1.04) brightness(1); }
/* gold wash overlay */
.gitem-media::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(150deg, rgba(201,163,94,0.16), transparent 45%, rgba(8,8,12,0.2)),
              linear-gradient(to top, rgba(8,8,12,0.85), transparent 50%);
  transition: opacity 0.5s var(--ease);
}
.gitem:hover .gitem-media::before { opacity: 0.7; }
/* gold frame */
.gitem-frame {
  position: absolute; inset: 11px; z-index: 3; pointer-events: none;
  border: 1px solid rgba(201,163,94,0.6);
  opacity: 0.6; transform: scale(1);
  transition: opacity 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.gitem:hover .gitem-frame {
  opacity: 1;
  border-color: var(--gold-bright);
  box-shadow: inset 0 0 20px rgba(201,163,94,0.22), 0 0 26px rgba(201,163,94,0.22);
}
.gitem-frame .corner::before, .gitem-frame .corner::after { box-shadow: 0 0 9px rgba(201,163,94,0.8); }
.gitem-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  padding: 1.4rem;
  transform: translateY(8px); opacity: 0.92;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.gitem:hover .gitem-cap { transform: none; opacity: 1; }
.gitem-cap .t { font-family: var(--font-display); font-size: 1.1rem; color: var(--silver-bright); line-height: 1.2; }
.gitem-cap .l { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 0.5rem; display:flex; align-items:center; gap:0.5rem; }
.gitem-cap .l::before { content:''; width:14px; height:1px; background: var(--gold); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(5,5,8,0.94);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
  padding: 2rem;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lb-stage { position: relative; max-width: 1000px; width: 100%; }
.lb-frame {
  position: relative;
  padding: 10px;
  box-shadow: 0 0 0 1px rgba(201,163,94,0.55), 0 0 64px rgba(201,163,94,0.22);
}
.lb-frame.gilt::before { border-color: rgba(201,163,94,0.65); }
.lb-frame.gilt::after { border-color: rgba(201,163,94,0.3); }
.lb-frame .corner::before, .lb-frame .corner::after { box-shadow: 0 0 10px rgba(201,163,94,0.85); }
.lb-frame img { width: 100%; max-height: 78vh; object-fit: contain; display:block; }
.lb-cap { text-align: center; margin-top: 1.4rem; }
.lb-cap .t { font-family: var(--font-display); font-size: 1.5rem; color: var(--silver-bright); }
.lb-cap .l { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 0.5rem; }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(201,163,94,0.1); border: 1px solid rgba(201,163,94,0.4);
  color: var(--gold-bright); width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; z-index: 5;
}
.lb-btn:hover { background: rgba(201,163,94,0.25); }
.lb-prev { left: -72px; } .lb-next { right: -72px; }
.lb-close { position: absolute; top: 1.6rem; right: 1.6rem; background: none; border: none; color: var(--gold); cursor: pointer; z-index: 6; }

/* ═══════════════ SHEETS (services / values) ═══════════════ */
.sheet {
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
}
.sheet img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,0.55));
}

/* ═══════════════ OPTION CARDS (services / values — transparent + hover) ═══════════════ */
.opt-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
  align-items: end;
}
.opt {
  position: relative;
  display: block;
  min-width: 0;
  text-decoration: none;
  transition: transform 0.55s var(--ease);
}
.opt img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.45));
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.opt:hover {
  transform: translateY(-12px);
}
.opt:hover img {
  transform: scale(1.045);
  filter: drop-shadow(0 28px 50px rgba(0,0,0,0.55)) drop-shadow(0 0 34px rgba(201,163,94,0.42));
}
.opt-glow {
  position: absolute;
  left: 50%; top: 44%;
  transform: translate(-50%, -50%);
  width: 86%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,163,94,0.26), rgba(42,80,143,0.08) 45%, transparent 66%);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease);
}
.opt:hover .opt-glow { opacity: 1; }

/* Hover-play videos inside option cards: the static _t.png shows by default,
   the video is stacked on top (gold-on-black, screen-blended) and revealed +
   played only on hover, so each icon reads as an image until it animates. */
.opt-still { position: relative; z-index: 1; transition: opacity 0.4s var(--ease); }
.opt-vid {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.6s var(--ease);
}
.opt-video.playing .opt-still { opacity: 0; }
.opt-video.playing .opt-vid { opacity: 1; }
.opt-video:hover .opt-vid { transform: scale(1.045); }

/* A clean gold frame set just outside each icon's art so every card reads as a
   distinct framed piece (the art carries its own ornate inner border, so this
   stays a simple hairline to avoid competing). Subtle at rest, lit on hover. */
.opt::before {
  content: '';
  position: absolute;
  inset: -13px -9px;
  border: 1px solid rgba(201, 163, 94, 0.34);
  z-index: 4;
  pointer-events: none;
  transition: border-color 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.opt:hover::before {
  border-color: rgba(201, 163, 94, 0.66);
  box-shadow: inset 0 0 26px rgba(201, 163, 94, 0.1), 0 0 30px rgba(201, 163, 94, 0.18);
}

/* ═══════════════ VALUES ═══════════════ */
.values-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/media/index/our_mission.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.4) saturate(0.7);
}
.values-bg::after { content:''; position:absolute; inset:0; background: linear-gradient(to bottom, var(--obsidian), rgba(8,8,12,0.6) 40%, var(--obsidian)); }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; }
.value { text-align: center; }
.value img { width: 100%; height: auto; transition: transform 0.6s var(--ease); }
.value:hover img { transform: translateY(-6px); }

/* ═══════════════ PROCESS ═══════════════ */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step {
  position: relative;
  padding: 2.6rem 2rem;
  background: linear-gradient(160deg, rgba(20,20,30,0.7), rgba(14,14,20,0.5));
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 3.4rem; line-height: 1;
  margin-bottom: 1.2rem;
}
.step h3 { font-size: 1.6rem; color: var(--silver-bright); margin-bottom: 0.8rem; }
.step p { color: var(--silver-muted); font-size: 0.92rem; line-height: 1.7; }

/* ═══════════════ INQUIRE ═══════════════ */
.inquire-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.3rem; }
.field label {
  display: block; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: rgba(8,8,12,0.6);
  border: 1px solid rgba(201,163,94,0.2);
  color: var(--silver-bright);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(201,163,94,0.6);
  box-shadow: 0 0 0 1px rgba(201,163,94,0.3), 0 0 24px rgba(201,163,94,0.08);
}
.field select option { background: var(--surface); color: var(--silver); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: var(--silver-dim); margin-top: 1rem; }
.form-success {
  display: none;
  padding: 1.2rem 1.4rem; margin-top: 1.4rem;
  border: 1px solid rgba(201,163,94,0.4);
  background: rgba(201,163,94,0.08);
  color: var(--gold-bright); font-size: 0.9rem;
}
.form-success.show { display: block; }

.contact-aside { }
.contact-item { padding: 1.4rem 0; border-bottom: 1px solid rgba(201,163,94,0.12); }
.contact-item .k { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.contact-item .v { font-family: var(--font-display); font-size: 1.3rem; color: var(--silver-bright); }
.contact-item a { color: inherit; text-decoration: none; transition: color 0.3s; }
.contact-item a:hover { color: var(--gold-bright); }

/* ═══════════════ FOOTER ═══════════════ */
.footer { position: relative; z-index: 2; background: var(--obsidian); padding: 5rem 0 2.5rem; border-top: 1px solid rgba(201,163,94,0.14); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; align-items: start; }
.footer-logo img { height: 96px; width: auto; margin-bottom: 1.4rem; }
.footer-logo p { color: var(--silver-muted); font-size: 0.9rem; line-height: 1.7; max-width: 24rem; }
.footer-col h4 { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.footer-col a { display: block; color: var(--silver-muted); text-decoration: none; font-size: 0.92rem; padding: 0.4rem 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(201,163,94,0.1); }
.footer-bottom p { font-size: 0.74rem; color: var(--silver-dim); }

/* ═══════════════ GREEK KEY STRIP (footer) ═══════════════ */
.greek-strip {
  width: 100%;
  height: 30px;
  margin-bottom: 3.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='32' viewBox='0 0 40 32'%3E%3Cg fill='none' stroke='%23c9a35e' stroke-width='3'%3E%3Cpath d='M0 28H40'/%3E%3Cpath d='M5 28V7H33V22H16V14H25'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: left center;
  background-size: 40px 32px;
  animation: greekScroll 2.6s linear infinite;
  opacity: 0.85;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
@keyframes greekScroll { from { background-position-x: 0; } to { background-position-x: -40px; } }

/* ═══════════════ FORM SUB-HEADINGS + CUSTOM DROPDOWN ═══════════════ */
.form-sub { display: flex; align-items: center; gap: 0.85rem; margin: 2.2rem 0 1.3rem; }
.form-sub:first-of-type { margin-top: 0; }
.form-sub-line { width: 30px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); flex: none; }
.form-sub-label { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.field label em { color: var(--gold); font-style: normal; }

.cdrop { position: relative; }
.cdrop-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding: 0.95rem 1.1rem;
  background: rgba(8,8,12,0.6);
  border: 1px solid rgba(201,163,94,0.2);
  color: var(--silver-dim);
  font-family: var(--font-sans); font-size: 0.92rem; text-align: left;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, color 0.3s;
}
.cdrop-btn:hover { border-color: rgba(201,163,94,0.45); }
.cdrop.open .cdrop-btn { border-color: rgba(201,163,94,0.6); box-shadow: 0 0 0 1px rgba(201,163,94,0.25); }
.cdrop-btn.filled { color: var(--silver-bright); }
.cdrop-chev { width: 14px; height: 14px; color: var(--gold); flex: none; transition: transform 0.35s var(--ease); }
.cdrop.open .cdrop-chev { transform: rotate(180deg); }
.cdrop-menu {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 30;
  list-style: none; margin: 0; padding: 5px;
  background: #11111b;
  border: 1px solid rgba(201,163,94,0.3);
  box-shadow: 0 22px 50px rgba(0,0,0,0.6);
  max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease), max-height 0.35s var(--ease);
}
.cdrop.open .cdrop-menu { max-height: 320px; overflow: auto; opacity: 1; pointer-events: auto; }
.cdrop-opt {
  padding: 0.7rem 0.9rem; font-size: 0.9rem; color: var(--silver-muted);
  cursor: pointer; border-left: 2px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.cdrop-opt:hover, .cdrop-opt.sel { color: var(--gold-bright); background: rgba(201,163,94,0.09); border-left-color: var(--gold); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-logo { display: none; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .statement-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .inquire-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-grid { grid-template-columns: 1fr; }
  .cues { grid-template-columns: 1fr; gap: 0.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .lb-prev { left: 0.5rem; } .lb-next { right: 0.5rem; }
  .section-pad { padding: 4.5rem 0; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .wrap { padding: 0 1.3rem; }
}
