/* ============================================================
   THE BRAND BLUEPRINT — Main Stylesheet v2
   ============================================================ */

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

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary:   #2C0A1E;
  --bg-secondary: #350C22;
  --gold:         #D4AF37;
  --champagne:    #F7E7CE;
  --white:        #F8F8F8;
  --gold-faint:   rgba(212,175,55,0.12);
  --gold-border:  rgba(212,175,55,0.32);
  --gold-hover:   rgba(212,175,55,0.55);
  --transition:   0.35s ease;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: 48px;  font-weight: 600; }
h2 { font-size: 36px;  font-weight: 300; }
h3 { font-size: 26px;  font-weight: 600; }
h4 { font-size: 20px;  font-weight: 600; }
h5 { font-size: 16px;  font-weight: 600; }

p  { font-weight: 300; color: var(--champagne); font-size: 14px; line-height: 1.9; }

.tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── LAYOUT ── */
.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

section { padding: 100px 0; }

/* ── DIVIDER ── */
.gold-divider {
  width: 70px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.gold-divider.left { margin-left: 0; }

/* ── ORNAMENT ── */
.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.45;
  letter-spacing: 8px;
  margin: 0.5rem 0;
}

/* ── SCROLL FADE-IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(44,10,30,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-border);
  padding: 8px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  padding: 8px 0;
  flex-shrink: 0;
}
.nav-logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links > li > a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--champagne);
  position: relative;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

/* Animated underline */
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }

/* Caret */
.caret {
  font-size: 9px;
  transition: transform var(--transition);
  opacity: 0.75;
}
.nav-item:hover > a .caret { transform: rotate(180deg); }

.sub-caret {
  font-size: 10px;
  margin-left: auto;
  padding-left: 8px;
  opacity: 0.6;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── DROPDOWN ── */
.nav-item { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -24px;
  min-width: 230px;
  background: rgba(44,10,30,0.98);
  border: 0.5px solid var(--gold-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 200;
}

.nav-item:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown > li {
  position: relative;
  border-bottom: 0.5px solid rgba(212,175,55,0.1);
}
.dropdown > li:last-child { border-bottom: none; }

.dropdown > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--champagne);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.dropdown > li > a::after { display: none; } /* remove underline animation */
.dropdown > li:hover > a { color: var(--gold); background: rgba(212,175,55,0.07); }

/* ── SUBDROPDOWN ── */
.subdropdown {
  position: absolute;
  top: -1px;
  left: 100%;
  min-width: 200px;
  background: rgba(44,10,30,0.99);
  border: 0.5px solid var(--gold-border);
  box-shadow: 20px 0 50px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 201;
}

.has-subdropdown:hover > .subdropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.has-subdropdown:hover > a .sub-caret {
  transform: translateX(3px);
  opacity: 1;
}

.subdropdown li { border-bottom: 0.5px solid rgba(212,175,55,0.08); }
.subdropdown li:last-child { border-bottom: none; }
.subdropdown li a {
  display: block;
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247,231,206,0.75);
  transition: color var(--transition), background var(--transition), padding-left var(--transition);
  white-space: nowrap;
}
.subdropdown li a::after { display: none; }
.subdropdown li a:hover {
  color: var(--gold);
  background: rgba(212,175,55,0.07);
  padding-left: 24px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 15px 38px;
  border-radius: 0;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-primary);
  border: 1px solid var(--gold);
  font-weight: 500;
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  background-color: var(--bg-primary);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,10,30,0.88);
  z-index: 0;
}

/* Radial glow accent */
.hero-glow {
  position: absolute;
  top: -15%;
  right: -8%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero > .container { position: relative; z-index: 2; }

.hero-inner { text-align: center; }

.hero h1 {
  font-weight: 600;
  font-size: 48px;
  max-width: 760px;
  margin: 0 auto;
  font-style: italic;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }

/* Scroll-down indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  cursor: pointer;
}
.scroll-indicator span {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%   { opacity: 1; transform: scaleY(1); }
  50%  { opacity: 0.4; transform: scaleY(0.6); }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 0 80px;
  background-color: var(--bg-secondary);
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 1px;
  background: var(--gold);
}

/* ══════════════════════════════════════
   STATS
══════════════════════════════════════ */
.stats { background-color: var(--bg-secondary); padding: 70px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.stat-item {
  text-align: center;
  padding: 44px 24px;
  border: 0.5px solid var(--gold-border);
  transition: background var(--transition);
}
.stat-item:hover { background: rgba(212,175,55,0.05); }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: 0.85;
}

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-bottom: 0; }
.section-header p  { max-width: 540px; margin: 1rem auto 0; }

/* ══════════════════════════════════════
   SERVICE CARDS (home preview)
══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--bg-secondary);
  border: 0.5px solid var(--gold-border);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}

/* Shimmer sweep on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, transparent 30%, rgba(212,175,55,0.06) 50%, transparent 70%);
  transition: left 0.65s ease;
  pointer-events: none;
}
.service-card:hover::before { left: 110%; }
.service-card:hover {
  border-color: var(--gold-hover);
  background: rgba(212,175,55,0.04);
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
  opacity: 0.9;
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card > p { font-size: 13px; margin-bottom: 1.5rem; }

.cluster-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1.25rem;
}
.cluster-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 14px;
  border: 0.5px solid var(--gold-border);
  transition: background var(--transition), border-color var(--transition);
}
.cluster-item:hover { background: var(--gold-faint); border-color: var(--gold-hover); }

/* ══════════════════════════════════════
   ABOUT PREVIEW
══════════════════════════════════════ */
.about-preview { background-color: var(--bg-primary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border: 0.5px solid var(--gold-border);
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 0.5px solid var(--gold-border);
  pointer-events: none;
  opacity: 0.4;
}

/* Fallback placeholder */
.photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--bg-secondary);
  border: 0.5px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(212,175,55,0.3);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  max-height: 480px;
}

.about-text h2 { font-style: italic; font-weight: 300; margin-bottom: 1.25rem; }
.about-text p  { margin-bottom: 1.25rem; }

/* ══════════════════════════════════════
   TESTIMONIAL
══════════════════════════════════════ */
.testimonial {
  background-color: var(--bg-secondary);
  text-align: center;
  padding: 90px 0;
}
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--champagne);
  max-width: 820px;
  margin: 0 auto 1.75rem;
  line-height: 1.55;
}
.testimonial blockquote::before { content: '\201C'; color: var(--gold); opacity: 0.4; }
.testimonial blockquote::after  { content: '\201D'; color: var(--gold); opacity: 0.4; }
.testimonial cite {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ══════════════════════════════════════
   BLOG CARDS
══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.blog-card {
  background: var(--bg-secondary);
  border: 0.5px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.blog-card:hover {
  border-color: var(--gold-hover);
  transform: translateY(-4px);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.03); }

.blog-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.blog-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.blog-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 2px;
  color: rgba(247,231,206,0.4);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.blog-excerpt {
  font-size: 13px;
  line-height: 1.85;
  flex: 1;
  margin-bottom: 1.5rem;
  color: var(--champagne);
  opacity: 0.85;
}
.read-more {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.read-more:hover { gap: 0.9rem; }
.read-more::after { content: '→'; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background-color: var(--bg-primary);
  border-top: 0.5px solid var(--gold-border);
  padding: 60px 0;
  text-align: center;
}
.footer-logo {
  display: block;
  margin: 0 auto 1rem;
  text-align: center;
}
.footer-logo img {
  height: 40px;
  width: auto;
  margin: 0 auto;
  display: block;
  transition: opacity 0.35s ease;
}
.footer-logo:hover img { opacity: 0.8; }
.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--champagne);
  opacity: 0.5;
  margin-bottom: 2rem;
  font-style: italic;
}
.footer-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: 0.55;
  transition: opacity var(--transition), color var(--transition);
}
.footer-nav a:hover { opacity: 1; color: var(--gold); }
.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: var(--champagne);
  opacity: 0.3;
  letter-spacing: 1.5px;
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.bio-photo { position: sticky; top: 110px; }
.bio-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border: 0.5px solid var(--gold-border);
}
.bio-photo .photo-placeholder { height: 560px; max-height: unset; aspect-ratio: unset; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}
.approach-item {
  padding: 36px 28px;
  border: 0.5px solid var(--gold-border);
  transition: background var(--transition);
}
.approach-item:hover { background: rgba(212,175,55,0.04); }
.approach-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.approach-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; margin-bottom: 0.75rem; }
.approach-item p  { font-size: 13px; }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.skill-group h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}
.skill-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.skill-pill {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 0.5px solid var(--gold-border);
  color: var(--champagne);
  transition: background var(--transition), border-color var(--transition);
}
.skill-pill:hover { background: var(--gold-faint); border-color: var(--gold-hover); }

/* ══════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════ */
.service-section { padding: 100px 0; }

.service-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.service-section-grid.reverse { direction: rtl; }
.service-section-grid.reverse > * { direction: ltr; }

.service-clusters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.cluster-card {
  background: var(--bg-secondary);
  border: 0.5px solid var(--gold-border);
  padding: 28px 22px;
  transition: background var(--transition), border-color var(--transition);
}
.cluster-card:hover { background: var(--gold-faint); border-color: var(--gold-hover); }

/* h5 in cluster cards on light pages gets dark color */
.cluster-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gold);
}
.cluster-card p { font-size: 13px; opacity: 0.85; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: -1.5rem;
}
.service-info .tag  { margin-bottom: 0.6rem; }
.service-info h2    { margin-bottom: 0.75rem; }
.service-info p     { margin-bottom: 1.5rem; font-size: 14px; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--bg-secondary);
  padding: 100px 0;
  text-align: center;
}
.cta-section h2 { font-style: italic; font-weight: 300; margin-bottom: 0.75rem; }
.cta-section p  { max-width: 500px; margin: 0 auto 2.5rem; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-secondary);
  border: 0.5px solid var(--gold-border);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(247,231,206,0.3); }
.form-group textarea { resize: vertical; min-height: 150px; }
.form-group select option { background: var(--bg-primary); }

.contact-details h3 { font-style: italic; font-weight: 300; margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid var(--gold-border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.contact-item-text .label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-item-text .value { font-size: 13px; color: var(--champagne); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 0.5px solid var(--gold-border);
  padding: 1.75rem 0;
}
.faq-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--champagne); margin-bottom: 0.75rem; }
.faq-item p  { font-size: 13px; }

/* ── UTILITIES ── */
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ══════════════════════════════════════
   LIGHT SECTIONS
══════════════════════════════════════ */
.section-light { background-color: #FAF7F2; }

.section-light h2,
.section-light h3,
.section-light h4 { color: #2C0A1E; }

.section-light p,
.section-light .section-header p { color: #4a2535; }

.section-light .section-header h2 { color: #2C0A1E; }

/* Service cards on light bg */
.section-light .service-card {
  background: #FFFFFF;
  border: 0.5px solid rgba(212,175,55,0.35);
  padding: 0;
  overflow: hidden;
}
.section-light .service-card::before { display: none; }
.section-light .service-card:hover {
  border-color: var(--gold);
  background: #FFFFFF;
  box-shadow: 0 10px 48px rgba(44,10,30,0.12);
  transform: translateY(-4px);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-body { padding: 32px 28px 36px; }
.section-light .service-icon { color: var(--gold); }
.section-light .service-card h3 { color: #2C0A1E; margin-bottom: 0.75rem; }
.section-light .service-card-body p { color: #4a2535; font-size: 13px; margin-bottom: 1.5rem; }
.section-light .cluster-item {
  color: #2C0A1E;
  border-color: rgba(212,175,55,0.35);
}
.section-light .cluster-item:hover { background: rgba(212,175,55,0.12); border-color: var(--gold); }
.section-light .btn-outline { border-color: #2C0A1E; color: #2C0A1E; }
.section-light .btn-outline:hover { background: #2C0A1E; color: var(--gold); }

/* Blog preview on light bg */
.section-light .blog-card {
  background: #FFFFFF;
  border-color: rgba(212,175,55,0.3);
}
.section-light .blog-card:hover { border-color: var(--gold); }
.section-light .blog-card h4 { color: #2C0A1E; }
.section-light .blog-excerpt { color: #4a2535; opacity: 1; }

/* Stats section subtitle */
.stats-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}
.stats-intro p {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: 0.55;
}

/* Hero welcome eyebrow */
.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 3px;
  color: var(--champagne);
  opacity: 0.75;
  display: block;
  margin-bottom: 0.75rem;
}

/* Animated scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-arrow span {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.scroll-arrow-icon {
  width: 28px;
  height: 28px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
  animation: arrowBounce 1.8s ease-in-out infinite;
  opacity: 0.7;
}
@keyframes arrowBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.7; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ══════════════════════════════════════
   CASE STUDY PAGE
══════════════════════════════════════ */
.casestudy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.casestudy-card {
  background: #FFFFFF;
  border: 0.5px solid rgba(212,175,55,0.3);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.casestudy-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 14px 52px rgba(44,10,30,0.14);
}
.casestudy-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}
.casestudy-card:hover .casestudy-card-img { transform: scale(1.04); }
.casestudy-card-body { padding: 32px 28px 36px; }
.casestudy-industry {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.casestudy-card h3 { color: #2C0A1E; font-size: 20px; margin-bottom: 1.25rem; line-height: 1.3; }
.casestudy-meta-row {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(212,175,55,0.22);
}
.casestudy-meta-row:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.casestudy-meta-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2C0A1E;
  margin-bottom: 0.3rem;
}
.casestudy-meta-row p { color: #4a2535; font-size: 13px; margin: 0; line-height: 1.7; }
.casestudy-results {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}
.casestudy-result-item { text-align: center; }
.casestudy-result-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.casestudy-result-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4a2535;
  display: block;
  margin-top: 0.2rem;
}

@media (max-width: 960px) {
  .casestudy-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .casestudy-grid { grid-template-columns: 1fr; }
  .scroll-arrow { display: none; }
}

/* ══════════════════════════════════════
   RESPONSIVE — 960px
══════════════════════════════════════ */
@media (max-width: 960px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }

  .services-grid,
  .blog-grid { grid-template-columns: 1fr 1fr; }

  .about-grid,
  .bio-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .bio-photo { position: static; }
  .bio-photo img,
  .bio-photo .photo-placeholder { height: 360px; }

  .service-section-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-section-grid.reverse { direction: ltr; }

  .stats-grid { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 360px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — 768px (mobile nav)
══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Mobile nav drawer */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(44,10,30,0.99);
    padding: 1.5rem 5%;
    gap: 0;
    border-bottom: 0.5px solid var(--gold-border);
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { border-bottom: 0.5px solid rgba(212,175,55,0.08); }
  .nav-links > li:last-child { border-bottom: none; }
  .nav-links > li > a {
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .nav-links > li > a::after { display: none; }

  .hamburger { display: flex; }

  /* Mobile dropdowns: accordion */
  .dropdown, .subdropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 1px solid var(--gold-border);
    max-height: 0;
    overflow: hidden;
    background: transparent;
    transition: max-height 0.35s ease;
  }
  .nav-item.mobile-open > .dropdown { max-height: 500px; }
  .has-subdropdown.mobile-open > .subdropdown { max-height: 300px; }

  .dropdown > li > a { padding: 10px 16px; }
  .subdropdown li a  { padding: 9px 28px; }

  .services-grid,
  .blog-grid { grid-template-columns: 1fr; }

  .approach-grid { grid-template-columns: 1fr; }
  .skills-grid   { grid-template-columns: 1fr; }
  .service-clusters { grid-template-columns: 1fr; }

  .hero { background-attachment: scroll; } /* disable fixed on mobile */
  .scroll-indicator { display: none; }
}

/* ══════════════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════════════ */
@media (max-width: 480px) {
  section { padding: 70px 0; }
  h1 { font-size: 30px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 260px; text-align: center; }
  .nav-logo img { height: 44px; }
}
