/* Black Silk Events - Shared Site CSS
   Extends lookbook.html design system with nav, page templates, footer
   Tokens mirror lookbook exactly: Cormorant Garamond + Montserrat, gold #c8a96e
   ───────────────────────────────────────────────────── */

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

:root {
  --gold:      #c8a96e;
  --gold-lgt:  #dfc28a;
  --gold-dim:  rgba(200,169,110,.2);
  --gold-faint:rgba(200,169,110,.08);
  --black:     #0f0d0b;
  --dark:      #0c0a08;
  --dark-2:    #181512;
  --dark-3:    #221e1a;
  --dark-4:    #141210;
  --text:      #ede9e2;
  --muted:     #a89e94;
  --muted-2:   #6e6560;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Montserrat', Arial, sans-serif;
  --pad:       clamp(4rem, 8vw, 7rem);
  --nav-h:     72px;
  --radius:    0px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.8rem); }
h4 { font-size: clamp(1rem, 1.4vw, 1.3rem); }
p  { font-size: clamp(.92rem, 1.15vw, 1.0625rem); line-height: 1.9; color: var(--muted); font-weight: 300; }
a  { color: var(--gold); text-decoration: none; transition: color .3s; }
a:hover { color: var(--gold-lgt); }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.eyebrow {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
}
.divider {
  display: block;
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin: 1.1rem 0;
}
.divider--center { margin: 1.1rem auto; }
.divider--wide   { width: 110px; }

.container { max-width: 1340px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 2rem; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .85rem 2.4rem;
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background .3s, color .3s;
  text-decoration: none;
}
.btn:hover { background: var(--gold); color: var(--black); }
.btn--gold  { background: var(--gold); color: var(--black); }
.btn--gold:hover { background: var(--gold-lgt); color: var(--black); }
.btn--sm { padding: .6rem 1.6rem; font-size: .56rem; }

/* ── ANIMATIONS ──────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: .1s; }
.fade-up.d2 { transition-delay: .2s; }
.fade-up.d3 { transition-delay: .3s; }
.fade-up.d4 { transition-delay: .4s; }
.fade-up.d5 { transition-delay: .5s; }

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(12,10,8,.96);
  border-bottom: 1px solid rgba(200,169,110,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .4s;
}
.site-nav.scrolled {
  background: rgba(8,6,4,.98);
  border-bottom-color: rgba(200,169,110,.2);
}
.nav-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav-logo img {
  height: 56px;
  width: 56px;
  filter: drop-shadow(0 0 18px rgba(200,169,110,.3));
  transition: filter .3s, transform .3s;
}
.nav-logo:hover img { filter: drop-shadow(0 0 26px rgba(200,169,110,.6)); transform: scale(1.04); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-link {
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(18,15,12,.98);
  border: 1px solid rgba(200,169,110,.18);
  min-width: 240px;
  padding: .8rem 0;
  padding-top: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  transform: translateX(-50%) translateY(-6px);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: .6rem 1.4rem;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s, background .2s;
}
.nav-dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(200,169,110,.05);
}

/* Lookbook CTA in nav */
.nav-lookbook {
  font-size: .56rem !important;
  padding: .55rem 1.2rem !important;
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8,6,4,.97);
  z-index: 999;
  padding: 2rem;
  overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile-link {
  display: block;
  padding: 1rem 0;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text);
  border-bottom: 1px solid rgba(200,169,110,.1);
  text-decoration: none;
  transition: color .3s;
}
.nav-mobile-link:hover { color: var(--gold); }
.nav-mobile-sub {
  display: block;
  padding: .6rem 1rem;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
}
.nav-mobile-sub:hover { color: var(--gold); }
.nav-mobile-label {
  font-family: var(--sans);
  font-size: .52rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1.2rem 0 .4rem;
}

/* ═══════════════════════════════════════════════
   PAGE HERO
═══════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  max-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 9s ease;
}
.page-hero-bg.loaded { transform: scale(1); }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.3) 0%,
    rgba(0,0,0,.5) 50%,
    rgba(0,0,0,.78) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 860px;
}
.page-hero-eyebrow {
  font-size: .56rem;
  letter-spacing: .32em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: .8rem;
  animation: fadeUp .8s ease .3s both;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: .03em;
  animation: fadeUp .8s ease .5s both;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-tag {
  font-size: clamp(.54rem, 1vw, .68rem);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(200,169,110,.75);
  margin-top: 1rem;
  animation: fadeUp .8s ease .7s both;
}
.page-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  animation: fadeUp .8s ease 1s both;
}
.page-hero-scroll span { font-size: .48rem; letter-spacing: .24em; color: var(--gold); text-transform: uppercase; }
.page-hero-scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, var(--gold), transparent); animation: pulse 2s ease-in-out infinite; }

@keyframes fadeUp   { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse    { 0%,100%{opacity:1;} 50%{opacity:.2;} }

/* ═══════════════════════════════════════════════
   HOMEPAGE HERO (full height)
═══════════════════════════════════════════════ */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
  transition: transform 10s ease;
}
.home-hero-bg.loaded { transform: scale(1); }
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.2) 0%,
    rgba(0,0,0,.45) 60%,
    rgba(0,0,0,.75) 100%);
}
.home-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.home-hero-logo {
  width: clamp(130px, 18vw, 220px);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 2px 28px rgba(200,169,110,.4));
  animation: fadeDown .9s ease .2s both;
}
.home-hero-eyebrow {
  font-size: .56rem;
  letter-spacing: .36em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  animation: fadeUp .9s ease .5s both;
  margin-bottom: .5rem;
}
.home-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7.5vw, 6rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: .04em;
  animation: fadeUp .9s ease .7s both;
  line-height: 1.1;
}
.home-hero h1 em { font-style: italic; color: var(--gold); }
.home-hero-tagline {
  font-size: clamp(.52rem, 1vw, .66rem);
  letter-spacing: .3em;
  color: rgba(200,169,110,.8);
  text-transform: uppercase;
  margin: 1.2rem 0 2.4rem;
  animation: fadeUp .9s ease .9s both;
}
.home-hero-cta { animation: fadeUp .9s ease 1.1s both; }
.home-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  animation: fadeUp .9s ease 1.4s both;
}
.home-hero-scroll span { font-size: .5rem; letter-spacing: .24em; color: var(--gold); text-transform: uppercase; }
.home-hero-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--gold), transparent); animation: pulse 2s ease-in-out infinite; }

/* ═══════════════════════════════════════════════
   CONTENT SECTIONS
═══════════════════════════════════════════════ */

/* Intro strip */
.intro-strip {
  background: var(--dark-3);
  padding: clamp(3rem,6vw,5rem) 2rem;
  text-align: center;
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}
.intro-strip-body {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.6vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  max-width: 820px;
  margin: 0 auto 1rem;
  line-height: 1.55;
}
.intro-strip-body strong { font-style: normal; font-weight: 500; color: var(--gold); }
.intro-strip-sub {
  font-size: clamp(.76rem, 1vw, .86rem);
  color: var(--muted);
  max-width: 640px;
  margin: .8rem auto 0;
  line-height: 1.95;
}

/* Generic section */
.section { padding: var(--pad) 0; }
.section--alt { background: var(--dark-4); }
.section--dark-2 { background: var(--dark-2); }
.section--dark-3 { background: var(--dark-3); }
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header h2 { color: #fff; }
.section-header p  { max-width: 600px; margin: 1rem auto 0; }

/* Two-column text + image layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-text h2 { color: #fff; margin-bottom: .4rem; }
.split-text h3 { color: #fff; margin-bottom: .4rem; }
.split-text p  { margin-bottom: 1.2rem; }
.split-text p:last-child { margin-bottom: 0; }

/* Image grid 2x2 */
.img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
}
.img-grid-item { overflow: hidden; }
.img-grid-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .55s ease, filter .4s ease;
  filter: brightness(.95);
}
.img-grid-item:hover img { transform: scale(1.04); filter: brightness(1.06); }

/* Single hero image */
.img-hero-wrap { overflow: hidden; }
.img-hero-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .55s ease;
}
.img-hero-wrap:hover img { transform: scale(1.03); }

/* ═══════════════════════════════════════════════
   BULLETS / LISTS
═══════════════════════════════════════════════ */
.bse-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.2rem;
}
.bse-list li {
  display: flex;
  gap: .9rem;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
}
.bse-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: .7rem;
}

/* Two-column list */
.bse-list-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem 2rem;
  margin-top: 1.2rem;
}
.bse-list-2col li {
  display: flex;
  gap: .7rem;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
}
.bse-list-2col li::before {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: .65rem;
}

/* ═══════════════════════════════════════════════
   PILLAR CARDS (Why Choose Us)
═══════════════════════════════════════════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(200,169,110,.12);
  border: 1px solid rgba(200,169,110,.12);
}
.pillar {
  background: var(--dark-4);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: background .3s;
}
.pillar:hover { background: rgba(200,169,110,.05); }
.pillar-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200,169,110,.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.pillar-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.pillar h4 {
  font-family: var(--serif);
  font-size: .95rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: .6rem;
}
.pillar p { font-size: .85rem; line-height: 1.75; }

/* ═══════════════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(10% + 10px);
  right: calc(10% + 10px);
  height: 1px;
  background: rgba(200,169,110,.25);
}
.step { text-align: center; padding: 0 1rem; position: relative; }
.step-num {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  background: var(--dark-4);
  position: relative;
  z-index: 1;
}
.step h4 {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.step p { font-size: .85rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════
   SERVICE CARDS (homepage featured 3)
═══════════════════════════════════════════════ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,169,110,.12);
}
.featured-card { position: relative; overflow: hidden; }
.featured-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
  filter: brightness(.75);
}
.featured-card:hover .featured-card-img { transform: scale(1.06); filter: brightness(.9); }
.featured-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
}
.featured-card-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: .25rem;
}
.featured-card-body p { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

/* ═══════════════════════════════════════════════
   SERVICES ICON GRID (homepage)
═══════════════════════════════════════════════ */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  background: rgba(200,169,110,.1);
  border: 1px solid rgba(200,169,110,.1);
}
.svc-item {
  flex: 1 1 calc(25% - 1px);
  max-width: calc(25% - 1px);
  box-sizing: border-box;
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--dark-2);
  transition: background .3s;
  text-decoration: none;
}
.svc-item:hover { background: rgba(200,169,110,.06); }
.svc-item-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: rgba(200,169,110,.2);
  line-height: 1;
  margin-bottom: .4rem;
}
.svc-item h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: .4rem;
  transition: color .3s;
}
.svc-item:hover h4 { color: var(--gold); }
.svc-item p { font-size: .65rem; color: var(--muted-2); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 2rem;
  text-align: center;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(.4);
}
.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
}
.cta-band-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.cta-band-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .8rem;
}
.cta-band-content h2 em { color: var(--gold); font-style: italic; }
.cta-band-content p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════
   INQUIRY FORM
═══════════════════════════════════════════════ */
.inquiry-section {
  position: relative;
  padding: clamp(5rem,10vw,9rem) 2rem;
  overflow: hidden;
}
.inquiry-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.inquiry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.92), rgba(0,0,0,.96));
}
.inquiry-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}
.inquiry-header { text-align: center; margin-bottom: 3rem; }
.inquiry-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .6rem;
}
.inquiry-header h2 em { color: var(--gold); font-style: italic; }
.inquiry-header p { font-size: .86rem; color: rgba(255,255,255,.5); max-width: 500px; margin: 0 auto; }

.contact-details-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.c-detail { text-align: center; }
.c-detail-label {
  font-size: .5rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
  font-family: var(--sans);
  font-weight: 600;
}
.c-detail-val {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: #fff;
  text-decoration: none;
  display: block;
  transition: color .3s;
}
.c-detail-val:hover { color: var(--gold); }

.inquiry-form-box {
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(200,169,110,.15);
  padding: clamp(2rem, 4vw, 3rem);
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: .5rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
  font-family: var(--sans);
  font-weight: 600;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(200,169,110,.28);
  color: #fff;
  padding: .8rem 1rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 300;
  transition: border-color .3s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-select {
  color-scheme: dark;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8a96e' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  cursor: pointer;
}
.form-select option {
  background: var(--dark-4);
  color: #fff;
}
.form-select:invalid { color: rgba(255,255,255,.25); }
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,.25); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }
.hp-field { display: none; }
.form-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.form-note { font-size: .58rem; color: rgba(255,255,255,.28); line-height: 1.7; }
#form-message {
  display: none;
  padding: .8rem 1.2rem;
  font-size: .76rem;
  margin-top: 1rem;
}
#form-message.success {
  background: rgba(200,169,110,.08);
  border: 1px solid rgba(200,169,110,.3);
  color: var(--gold);
}
#form-message.error {
  background: rgba(200,50,50,.08);
  border: 1px solid rgba(200,50,50,.3);
  color: #e88;
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE SPECIFIC
═══════════════════════════════════════════════ */
.about-intro {
  padding: clamp(4rem,8vw,7rem) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: start;
}
.about-intro-text h2 { color: #fff; margin-bottom: .4rem; }
.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.about-value {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.about-value-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: rgba(200,169,110,.25);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  text-align: right;
}
.about-value-body h4 {
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}
.about-value-body p { font-size: .82rem; }

/* ═══════════════════════════════════════════════
   CONTACT PAGE SPECIFIC
═══════════════════════════════════════════════ */
.contact-hero-text { padding: clamp(3rem,6vw,5rem) 0; text-align: center; }
.contact-hero-text h2 { color: #fff; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  background: var(--dark-3);
  padding: clamp(3rem,6vw,5rem) 2rem 2rem;
  border-top: 1px solid rgba(200,169,110,.12);
}
.footer-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,169,110,.1);
}
.footer-brand {}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.footer-logo {
  height: 54px;
  width: 54px;
  opacity: .92;
  filter: drop-shadow(0 0 14px rgba(200,169,110,.25));
  transition: opacity .3s, filter .3s;
  flex-shrink: 0;
}
.footer-logo-wrap:hover .footer-logo { opacity: 1; filter: drop-shadow(0 0 18px rgba(200,169,110,.4)); }
.footer-logo-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1.3;
  color: #fff;
  white-space: nowrap;
}
.footer-logo-text span {
  display: block;
  font-family: var(--sans);
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .26em;
  color: var(--gold);
  margin-top: .15rem;
}
.footer-tagline {
  font-family: var(--serif);
  font-size: .9rem;
  font-style: italic;
  color: rgba(255,255,255,.35);
  margin-bottom: .8rem;
}
.footer-desc { font-size: .72rem; color: var(--muted-2); line-height: 1.75; }
.footer-col-title {
  font-family: var(--sans);
  font-size: .52rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a {
  font-size: .72rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-bottom: 1rem;
}
.footer-contact-label {
  font-size: .48rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}
.footer-contact-val {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
}
.footer-contact-val:hover { color: var(--gold); }
.footer-social { display: flex; gap: .8rem; margin-top: 1rem; }
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(200,169,110,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, background .3s;
}
.footer-social a:hover { border-color: var(--gold); background: rgba(200,169,110,.08); }
.footer-social svg { width: 14px; height: 14px; fill: var(--muted); transition: fill .3s; }
.footer-social a:hover svg { fill: var(--gold); }
.footer-bottom {
  max-width: 1340px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: .58rem; color: rgba(255,255,255,.18); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .56rem; color: rgba(255,255,255,.25); text-decoration: none; transition: color .3s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   STAT ROW
═══════════════════════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200,169,110,.1);
  border: 1px solid rgba(200,169,110,.1);
  margin: clamp(3rem,6vw,5rem) 0;
}
.stat-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: var(--dark-4);
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem,4vw,3.2rem);
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); row-gap: 3rem; }
  .process-steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse { direction: ltr; }
  .featured-grid { grid-template-columns: 1fr; }
  .svc-item { flex-basis: calc(50% - 1px); max-width: calc(50% - 1px); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; }
  .cta-band-bg { background-attachment: scroll; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .bse-list-2col { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .img-grid { grid-template-columns: 1fr; }
  .img-grid .img-grid-item:nth-child(n+3) { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .svc-item { flex-basis: 100%; max-width: 100%; }
  .footer-logo-text { white-space: normal; }
}

/* ═══════════════════════════════════════════════════
   BLOG - Listing + Post Styles
   ═══════════════════════════════════════════════════ */

/* Blog listing grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}
.blog-card {
  background: var(--dark-2);
  border: 1px solid rgba(200,169,110,.1);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .3s;
}
.blog-card:hover { border-color: rgba(200,169,110,.4); transform: translateY(-4px); }
.blog-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-tag {
  position: absolute;
  top: .8rem; left: .8rem;
  background: var(--gold);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: .52rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .7rem;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .7rem; }
.blog-card-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
}
.blog-card-excerpt {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  line-height: 1.7;
  color: var(--muted);
  flex: 1;
}
.blog-card-link {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .2s;
}
.blog-card-link:hover { gap: .7rem; }
.blog-card-link::after { content: '→'; }

/* Blog category filter */
.blog-filters {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid rgba(200,169,110,.3);
  color: var(--muted);
  background: transparent;
  padding: .45rem 1rem;
  cursor: pointer;
  transition: all .2s;
}
.blog-filter-btn:hover,
.blog-filter-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Blog post article */
.blog-post-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.blog-post-header { margin-bottom: 3rem; }
.blog-post-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .8rem;
}
.blog-post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.blog-post-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  color: var(--muted);
  letter-spacing: .08em;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.blog-post-hero {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 3rem;
  border: 1px solid rgba(200,169,110,.12);
}
.blog-post-body { color: var(--text); }
.blog-post-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--text);
  margin: 2.5rem 0 .9rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(200,169,110,.15);
}
.blog-post-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold-lgt);
  margin: 1.8rem 0 .6rem;
}
.blog-post-body p {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.blog-post-body ul, .blog-post-body ol {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  line-height: 1.85;
  color: var(--muted);
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
}
.blog-post-body li { margin-bottom: .4rem; }
.blog-post-body strong { color: var(--text); font-weight: 600; }
.blog-post-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* Blog post pull quote */
.blog-pullquote {
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.8rem;
  margin: 2.5rem 0;
  background: var(--dark-2);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

/* Blog post CTA block */
.blog-cta {
  background: var(--dark-3);
  border: 1px solid rgba(200,169,110,.2);
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
}
.blog-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: .6rem;
}
.blog-cta p {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Related posts in blog */
.blog-related {
  border-top: 1px solid rgba(200,169,110,.15);
  padding-top: 3rem;
  margin-top: 4rem;
}
.blog-related-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.blog-related-item {
  background: var(--dark-2);
  border: 1px solid rgba(200,169,110,.1);
  padding: 1.2rem;
  text-decoration: none;
  display: block;
  transition: border-color .2s;
}
.blog-related-item:hover { border-color: var(--gold); }
.blog-related-item-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: .55rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .4rem;
}
.blog-related-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.35;
}

/* Services hub grid */
.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}
.services-hub-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.services-hub-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.services-hub-card:hover img { transform: scale(1.06); }
.services-hub-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,.9) 0%, rgba(10,8,6,.2) 60%, transparent 100%);
}
.services-hub-label {
  position: absolute;
  bottom: 1.4rem; left: 1.2rem; right: 1.2rem;
}
.services-hub-label span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .55rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.services-hub-label h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
}

/* Services hub process teaser */
.services-hub-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}
.services-hub-why-item { text-align: center; padding: 2rem 1.5rem; }
.services-hub-why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(200,169,110,.25);
  line-height: 1;
  margin-bottom: .5rem;
}
.services-hub-why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .6rem;
}
.services-hub-why-text {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  line-height: 1.75;
  color: var(--muted);
}

/* Blog responsive */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .services-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .services-hub-why { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .services-hub-grid { grid-template-columns: 1fr 1fr; }
  .services-hub-why { grid-template-columns: 1fr; }
  .blog-related-grid { grid-template-columns: 1fr; }
}
