/* ============================================================
   SmooreGDC — Main Stylesheet
   Owns: all site-wide visual styling
   Does NOT own: layout.ejs structure, server-side logic
   ============================================================ */

/* ----- CSS Variables ----- */
:root {
  --navy: #0f1923;
  --navy-mid: #1a2738;
  --navy-light: #243347;
  --slate: #2e3f54;
  --ink: #162030;
  --gold: #c8963e;
  --gold-light: #e0b060;
  --gold-pale: #f5e8d0;
  --cream: #faf7f2;
  --warm-white: #f5f1eb;
  --text-primary: #162030;
  --text-secondary: #4a5568;
  --text-muted: #7a8899;
  --border: #e2ddd5;
  --border-dark: #c8c0b4;
  --radius: 4px;
  --radius-md: 8px;
  --shadow-sm: 0 1px 3px rgba(15, 25, 35, 0.08);
  --shadow-md: 0 4px 16px rgba(15, 25, 35, 0.12);
  --shadow-lg: 0 12px 40px rgba(15, 25, 35, 0.16);
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Satoshi', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 300;
  line-height: 1.2;
  color: var(--navy);
}

em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
}

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

/* ----- Layout ----- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ----- Typography Utilities ----- */
.section-label {
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title-sm {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 48px;
}

.section-desc-sm {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 25, 35, 0.22);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-dark);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(15, 25, 35, 0.04);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 28px;
  font-size: 0.95rem;
}

/* ----- Animation ----- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger via nth-child where needed */
.consulting-card:nth-child(2) { transition-delay: 0.08s; }
.consulting-card:nth-child(3) { transition-delay: 0.16s; }
.consulting-card:nth-child(4) { transition-delay: 0.24s; }
.design-service-item:nth-child(2) { transition-delay: 0.06s; }
.design-service-item:nth-child(3) { transition-delay: 0.12s; }
.design-service-item:nth-child(4) { transition-delay: 0.18s; }
.design-service-item:nth-child(5) { transition-delay: 0.24s; }
.design-service-item:nth-child(6) { transition-delay: 0.30s; }
.portfolio-card:nth-child(2) { transition-delay: 0.06s; }
.portfolio-card:nth-child(3) { transition-delay: 0.12s; }
.portfolio-card:nth-child(4) { transition-delay: 0.18s; }
.portfolio-card:nth-child(5) { transition-delay: 0.24s; }
.portfolio-card:nth-child(6) { transition-delay: 0.30s; }
.why-card:nth-child(2) { transition-delay: 0.08s; }
.why-card:nth-child(3) { transition-delay: 0.16s; }
.why-card:nth-child(4) { transition-delay: 0.24s; }
.why-card:nth-child(5) { transition-delay: 0.32s; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav.nav-scrolled .nav-inner {
  padding: 16px 32px;
}

.nav.nav-scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--navy); }

.nav-links .nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--navy);
  color: var(--cream);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.25s;
  transform-origin: center;
}

.nav-mobile-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 0 32px 20px;
}

.nav-mobile-menu.active {
  display: flex;
}

.mobile-link {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}

.mobile-link:last-child { border-bottom: none; }

.mobile-cta {
  margin-top: 8px;
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-inner { padding: 18px 20px; }
  .nav.nav-scrolled .nav-inner { padding: 14px 20px; }
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, #1e3148 100%);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 150, 62, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 150, 62, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
  pointer-events: none;
}

/* Soft vignette over grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, transparent 40%, rgba(15, 25, 35, 0.5) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 100px;
}

.hero-eyebrow {
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 300;
  color: #f5f0e8;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 760px;
}

.hero-headline em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(245, 240, 232, 0.72);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-actions .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.hero-actions .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 6px 20px rgba(200, 150, 62, 0.35);
}

.hero-actions .btn-ghost {
  color: rgba(245, 240, 232, 0.85);
  border-color: rgba(245, 240, 232, 0.3);
}

.hero-actions .btn-ghost:hover {
  border-color: rgba(245, 240, 232, 0.6);
  background: rgba(245, 240, 232, 0.06);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.02em;
}

.trust-divider {
  color: rgba(200, 150, 62, 0.4);
  font-size: 0.9rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(245, 240, 232, 0.35);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200, 150, 62, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(1.1); }
}

@media (max-width: 768px) {
  .hero-headline { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-trust { gap: 10px; }
  .hero-scroll-indicator { display: none; }
}


/* ============================================================
   SERVICES — CONSULTING TIER
   ============================================================ */
.consulting-tier {
  padding: 120px 0 80px;
  background: var(--cream);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.services-header .section-desc { margin-bottom: 0; }

.consulting-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 36px;
}

.consulting-card {
  background: var(--warm-white);
  padding: 36px 32px;
  transition: background 0.25s ease, transform 0.25s ease;
  position: relative;
}

.consulting-card:hover {
  background: var(--cream);
}

.consulting-card.card-featured {
  background: var(--navy);
}

.consulting-card.card-featured h3 {
  color: #f5f0e8;
}

.consulting-card.card-featured p {
  color: rgba(245, 240, 232, 0.65);
}

.consulting-card.card-featured .card-number {
  color: var(--gold);
}

.card-number {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--border-dark);
  line-height: 1;
  margin-bottom: 20px;
}

.consulting-card h3 {
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Satoshi', sans-serif;
  margin-bottom: 12px;
  color: var(--navy);
}

.consulting-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.consulting-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 18px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.note-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 900px) {
  .services-header { grid-template-columns: 1fr; gap: 16px; }
  .consulting-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .consulting-grid { grid-template-columns: 1fr; }
  .consulting-tier { padding: 80px 0 60px; }
}


/* ============================================================
   SERVICES — DESIGN TIER
   ============================================================ */
.design-tier {
  padding: 80px 0;
  background: var(--navy);
}

.design-tier .section-label {
  color: var(--gold);
}

.design-tier .section-title {
  color: #f5f0e8;
}

.design-tier .section-desc {
  color: rgba(245, 240, 232, 0.65);
}

.design-tier .services-header {
  margin-bottom: 56px;
}

.design-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.design-service-item {
  background: var(--navy-mid);
  padding: 36px 32px;
  transition: background 0.25s;
}

.design-service-item:hover {
  background: var(--navy-light);
}

.design-service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 150, 62, 0.12);
  border-radius: var(--radius);
  color: var(--gold);
  margin-bottom: 20px;
}

.design-service-item h3 {
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Satoshi', sans-serif;
  color: #f5f0e8;
  margin-bottom: 12px;
}

.design-service-item p {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.65;
}

.design-tools {
  background: rgba(200, 150, 62, 0.06) !important;
  border-top: 1px solid rgba(200, 150, 62, 0.15);
}

.tools-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tool-badge {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 12px;
  border: 1px solid rgba(200, 150, 62, 0.35);
  border-radius: 20px;
  color: var(--gold-light);
  background: rgba(200, 150, 62, 0.08);
}

.tools-note {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .design-services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .design-services-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   SERVICES — ADDITIONAL TIER
   ============================================================ */
.additional-tier {
  padding: 60px 0 80px;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
}

.additional-inner {
  max-width: 800px;
}

.additional-services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.additional-chip {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 9px 18px;
  border: 1.5px solid var(--border-dark);
  border-radius: 24px;
  color: var(--text-secondary);
  background: var(--cream);
  transition: all 0.2s;
  cursor: default;
}

.additional-chip:hover {
  border-color: var(--navy);
  color: var(--navy);
}


/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio {
  padding: 120px 0;
  background: var(--cream);
}

.portfolio-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.825rem;
  font-weight: 600;
  padding: 8px 18px;
  border: 1.5px solid var(--border-dark);
  border-radius: 20px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.portfolio-thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Distinct visual placeholders per thumb */
.thumb-1 { background: linear-gradient(135deg, #1a3a5c 0%, #0f2435 100%); }
.thumb-2 { background: linear-gradient(135deg, #1e3a2a 0%, #0d2016 100%); }
.thumb-3 { background: linear-gradient(135deg, #3a1a2a 0%, #200f1a 100%); }
.thumb-4 { background: linear-gradient(135deg, #2a3a1a 0%, #162010 100%); }
.thumb-5 { background: linear-gradient(135deg, #1a2a3a 0%, #0f1820 100%); }
.thumb-6 { background: linear-gradient(135deg, #3a2a1a 0%, #20160a 100%); }

.portfolio-thumb-inner {
  text-align: center;
  padding: 24px;
}

.thumb-label-preview {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.6);
  letter-spacing: -0.01em;
}

/* Decorative line element per card */
.portfolio-thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.portfolio-card-info {
  padding: 24px 24px 28px;
  flex: 1;
}

.portfolio-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.portfolio-card-info h3 {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.portfolio-card-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.portfolio-cta-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio { padding: 80px 0; }
}


/* ============================================================
   WHY SMOOREGDC
   ============================================================ */
.why-section {
  padding: 120px 0;
  background: var(--navy);
}

.why-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.why-text-col .section-label { color: var(--gold); }
.why-text-col .section-title { color: #f5f0e8; }

.why-text-col .section-desc {
  color: rgba(245, 240, 232, 0.6);
  max-width: 100%;
  margin-bottom: 40px;
}

.why-text-col .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.why-text-col .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 6px 20px rgba(200, 150, 62, 0.35);
}

.why-cards-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.why-card {
  display: flex;
  gap: 18px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.25s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.why-card-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(200, 150, 62, 0.1);
  border-radius: var(--radius);
  margin-top: 2px;
}

.why-card-body h3 {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f5f0e8;
  margin-bottom: 8px;
}

.why-card-body h3 em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
}

.why-card-body p {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-section { padding: 80px 0; }
}


/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: 120px 0;
  background: var(--warm-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-image-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy) 0%, var(--slate) 100%);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 150, 62, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 150, 62, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.about-image-text {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.4);
  position: relative;
}

.about-image-sub {
  font-size: 0.8rem;
  color: rgba(200, 150, 62, 0.6);
  letter-spacing: 0.08em;
  position: relative;
}

.about-text-col p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-text-col p:last-of-type { margin-bottom: 40px; }

.about-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about-stat {
  text-align: left;
}

.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image-placeholder { aspect-ratio: 3/2; }
  .about-section { padding: 80px 0; }
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 120px 0;
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text-col .section-desc { margin-bottom: 40px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-detail span:last-child {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Form */
.contact-form {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.form-group:last-of-type:not(.form-row .form-group) {
  margin-bottom: 28px;
}

label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.required { color: var(--gold); }

input[type="text"],
input[type="email"],
select,
textarea {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9rem;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 25, 35, 0.06);
}

input::placeholder, textarea::placeholder {
  color: var(--text-muted);
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Ensure form-group within .contact-form doesn't have extra margin */
.contact-form .form-group {
  margin-bottom: 0;
}

/* The standalone message group needs bottom margin */
.contact-form > .form-group {
  margin-bottom: 28px;
}

.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius);
  color: #065f46;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-error {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--radius);
  color: #991b1b;
  font-size: 0.875rem;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(245, 240, 232, 0.4);
  border-top-color: rgba(245, 240, 232, 0.9);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 960px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-section { padding: 80px 0; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-bottom: 48px;
  align-items: start;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 6px;
}

.footer-location {
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  gap: 56px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  margin-bottom: 4px;
}

.footer-nav-col a {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.55);
  transition: color 0.2s;
}

.footer-nav-col a:hover { color: rgba(245, 240, 232, 0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
}

.footer-bottom span {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.28);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav { gap: 36px; }
}
