/* ═══════════════════════════════════════════════════════
   Aspen Development Group — styles.css
   Palette: #1A2B3C (slate) · #C8A042 (gold) · #F7F4EF (warm white)
   Fonts: Cormorant Garamond (display) · DM Sans (body)
═══════════════════════════════════════════════════════ */

:root {
  --bg:         #F7F4EF;
  --surface:    #FFFFFF;
  --surface-2:  #F0EDE7;
  --ink:        #1A2B3C;
  --ink-2:      #3D5166;
  --muted:      #7A8899;
  --border:     #DDD9D1;
  --gold:       #C8A042;
  --gold-light: rgba(200,160,66,.12);
  --shadow-sm:  0 2px 8px rgba(26,43,60,.06);
  --shadow-md:  0 8px 28px rgba(26,43,60,.10);
  --shadow-lg:  0 20px 60px rgba(26,43,60,.14);
  --radius:     16px;
  --radius-sm:  10px;
  --max:        1160px;
  --pad:        24px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3 { margin: 0; line-height: 1.1; }
p { margin: 0; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 16px; top: 16px; width: auto; height: auto;
  background: var(--surface); border: 1px solid var(--border);
  padding: 10px 14px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); z-index: 9999;
}

/* ── Layout ── */
.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,239,.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-svg { flex-shrink: 0; }
.brand-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink);
}
.brand-text small {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: .02em;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  font-size: 13.5px;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color .18s, background .18s;
}
.site-nav a:hover {
  color: var(--ink);
  background: var(--surface-2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s, color .18s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: #253d54;
  box-shadow: 0 6px 20px rgba(26,43,60,.25);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--surface-2); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  padding: 80px 0 72px;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
}

/* Copy side */
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  border: 1px solid rgba(200,160,66,.25);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 14ch;
}
.lead {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 600px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 11px;
  border-radius: 999px;
}

/* Branded hero panel */
.hero-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--ink);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.hero-panel-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-panel-loc {
  font-size: 12px;
  color: rgba(247,244,239,.45);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════════
   SECTIONS — shared
═══════════════════════════════════════════════════════ */
.section { padding: 80px 0; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.section-header { margin-bottom: 44px; }
.section-header h2,
.section-header-split h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.02em;
  max-width: 18ch;
}
.section-header-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 44px;
}
.section-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  padding-bottom: 4px;
}

/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
.section-services {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
/* 5th card spans to center on its row */
.service-card:nth-child(4) { grid-column: 1; }
.service-card:nth-child(5) { grid-column: 2; }

.service-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .22s, transform .22s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-icon {
  width: 38px;
  height: 38px;
  color: var(--gold);
  margin-bottom: 14px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   APPROACH
═══════════════════════════════════════════════════════ */
.section-approach { background: var(--bg); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 52px;
}
.step {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.step h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.brand-statement {
  margin: 0;
  padding: 30px 36px;
  border-left: 3px solid var(--gold);
  background: var(--gold-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink-2);
  letter-spacing: -.01em;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.section-contact {
  background: var(--ink);
  border-top: none;
}
.section-contact .section-label { color: var(--gold); }
.section-contact h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--bg);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section-contact .lead {
  color: rgba(247,244,239,.7);
  font-size: 16px;
  margin-bottom: 28px;
}
.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-guidance {
  margin-bottom: 28px;
}
.guidance-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-guidance ul { display: grid; gap: 7px; }
.contact-guidance li {
  font-size: 14px;
  color: rgba(247,244,239,.65);
  padding-left: 16px;
  position: relative;
}
.contact-guidance li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: .6;
}
.contact-email-link,
.contact-phone-link {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid rgba(200,160,66,.35);
  padding-bottom: 2px;
  transition: border-color .18s;
  margin-right: 20px;
}
.contact-email-link:hover,
.contact-phone-link:hover { border-color: var(--gold); }

/* Form */
.contact-form {
  background: rgba(247,244,239,.05);
  border: 1px solid rgba(247,244,239,.1);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: grid; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(247,244,239,.75);
}
.optional {
  font-weight: 400;
  color: rgba(247,244,239,.4);
}
.field input,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(247,244,239,.14);
  background: rgba(247,244,239,.05);
  color: var(--bg);
  font: inherit;
  font-size: 14px;
  transition: border-color .18s;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(247,244,239,.3); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(200,160,66,.5);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.section-contact .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.section-contact .btn-primary:hover {
  background: #d9ae4a;
  box-shadow: 0 6px 20px rgba(200,160,66,.3);
}
.section-contact .btn-ghost {
  color: rgba(247,244,239,.75);
  border-color: rgba(247,244,239,.2);
}
.section-contact .btn-ghost:hover {
  background: rgba(247,244,239,.08);
  color: var(--bg);
}
.form-note {
  font-size: 12px;
  color: rgba(247,244,239,.4);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  background: #111e2a;
  border-top: 1px solid rgba(247,244,239,.08);
  padding: 22px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(247,244,239,.6);
}
.footer-brand strong { color: rgba(247,244,239,.85); }
.footer-copy {
  font-size: 12px;
  color: rgba(247,244,239,.35);
}
.footer-phone {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  opacity: .85;
  transition: opacity .18s;
}
.footer-phone:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-copy > * {
  animation: fadeUp .55s ease both;
}
.hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2) { animation-delay: .12s; }
.hero-copy > *:nth-child(3) { animation-delay: .20s; }
.hero-copy > *:nth-child(4) { animation-delay: .27s; }
.hero-copy > *:nth-child(5) { animation-delay: .34s; }
.hero-media {
  animation: fadeUp .7s ease .18s both;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 16/9; order: -1; }
  h1 { max-width: none; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: auto; }
  .section-header-split { grid-template-columns: 1fr; gap: 16px; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 680px) {
  .site-nav { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 48px; }
  .section { padding: 56px 0; }
  .brand-statement { padding: 22px 20px; }
}

@media (max-width: 440px) {
  .header-inner .btn-primary { display: none; }
}
