/* ===== ALCANE — EDITORIAL SEASONAL STYLES (SS26-inspired) ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #f3f1ea;          /* grey-beige (greige) */
  --bg-soft: #e7e3d8;     /* deeper greige for alt sections */
  --bg-card: #faf9f4;     /* near-white neutral card */
  --ink: #1c1b18;         /* near-black */
  --ink-soft: rgba(28,27,24,0.62);
  --ink-faint: rgba(28,27,24,0.42);
  --line: rgba(28,27,24,0.14);
  --line-soft: rgba(28,27,24,0.08);
  --butter: #84846c;      /* muted khaki (accent) */
  --blue: #84846c;
  --blue-dark: #6a6a55;
  --pink: #84846c;
  --terracotta: var(--blue);       /* primary accent = khaki */
  --terracotta-dark: var(--blue-dark);
  --sage: #c2cbb2;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

/* Soft butter wash + paper grain */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(1000px 480px at 80% -10%, rgba(132,132,108,0.16), transparent 62%),
    radial-gradient(820px 460px at 0% 6%, rgba(28,27,24,0.05), transparent 58%);
  pointer-events: none; z-index: 0;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05; pointer-events: none; z-index: 0; mix-blend-mode: multiply;
}
.wrap, .nav, .hero, .stats-bar, .section, .ads-deep, .cta-band, .page-hero, .footer { position: relative; z-index: 1; }

/* ===== NAV ===== */
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 44px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0;
  background: rgba(250,244,234,0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-logo { font-family: var(--serif); font-size: 24px; font-weight: 700; letter-spacing: 0.04em; text-decoration: none; color: var(--ink); }
.nav-logo span { color: var(--pink); }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a { font-size: 13px; letter-spacing: 0.02em; color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--ink); color: var(--bg); border: none;
  padding: 12px 22px; cursor: pointer; font-weight: 500;
  text-decoration: none; border-radius: 2px; transition: background 0.2s;
}
.nav-cta:hover { background: var(--terracotta); }
.nav-links a.nav-cta, .nav-links a.nav-cta:hover { color: var(--bg); }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); font-size: 22px; cursor: pointer; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--ink); color: var(--bg); border: none; padding: 15px 30px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  cursor: pointer; text-decoration: none; display: inline-block; border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--terracotta); transform: translateY(-1px); }
.btn-ghost {
  font-size: 13px; letter-spacing: 0.04em; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--terracotta); padding-bottom: 3px; cursor: pointer;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--terracotta); }

/* ===== SHARED SECTION BITS ===== */
.section { padding: 96px 44px; border-top: 1px solid var(--line); }
.section.alt { background-color: var(--bg-soft); background-image: radial-gradient(rgba(20,18,16,0.11) 2px, transparent 2px); background-size: 28px 28px; }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.section-header { margin-bottom: 54px; max-width: 720px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 20px; font-weight: 500;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--terracotta); }
.section-title { font-family: var(--serif); font-size: clamp(28px, 4vw, 44px); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; margin-bottom: 18px; }
.section-title em { font-style: italic; color: var(--pink); }
.section-sub { font-size: 16px; color: var(--ink-soft); line-height: 1.8; }

/* ===== HERO ===== */
.hero { padding: 120px 44px 90px; }
.hero-inner { max-width: var(--maxw); margin: 0 auto; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 32px; font-weight: 500;
}
.hero-tag::before { content: ''; width: 26px; height: 1px; background: var(--terracotta); }
.hero h1 { font-family: var(--serif); font-size: clamp(46px, 7vw, 88px); font-weight: 600; line-height: 1.04; letter-spacing: -0.015em; margin-bottom: 30px; }
.hero h1 em { font-style: italic; color: var(--pink); }
.hero-sub { font-size: 18px; color: var(--ink-soft); line-height: 1.8; max-width: 560px; margin-bottom: 46px; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* ===== PAGE HERO (service pages) ===== */
.page-hero { padding: 72px 44px 80px; border-bottom: 1px solid var(--line); }
.page-hero-inner { max-width: var(--maxw); margin: 0 auto; }
.breadcrumb { font-size: 12px; letter-spacing: 0.04em; color: var(--ink-faint); margin-bottom: 36px; }
.breadcrumb a { color: var(--ink-faint); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb span { color: var(--ink-soft); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(40px, 6vw, 68px); font-weight: 600; line-height: 1.06; letter-spacing: -0.015em; margin-bottom: 24px; max-width: 880px; }
.page-hero h1 em { font-style: italic; color: var(--pink); }
.page-hero-sub { font-size: 18px; color: var(--ink-soft); line-height: 1.8; max-width: 580px; margin-bottom: 44px; }
.page-hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* ===== STATS BAR ===== */
.stats-bar { display: flex; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); flex-wrap: wrap; background-color: var(--bg-card); background-image: radial-gradient(rgba(20,18,16,0.18) 2.5px, transparent 2.5px); background-size: 24px 24px; }
.stat { flex: 1; min-width: 160px; padding: 34px 44px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-val { font-family: var(--serif); font-size: 26px; font-weight: 600; margin-bottom: 6px; }
.stat-label { font-size: 11px; color: var(--ink-faint); letter-spacing: 0.14em; text-transform: uppercase; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card { background: var(--bg-card); padding: 42px 36px; text-decoration: none; display: block; transition: background 0.25s; position: relative; }
.service-card:hover { background: var(--bg-soft); }
.service-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--pink); }
.card-icon { font-size: 26px; color: var(--pink); margin-bottom: 24px; }
.card-tag { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; }
.service-card.featured .card-tag { color: var(--terracotta); }
.card-title { font-family: var(--serif); font-size: 21px; font-weight: 600; margin-bottom: 12px; }
.card-body { font-size: 14px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 28px; }
.card-link { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); display: inline-flex; align-items: center; gap: 7px; transition: gap 0.2s, color 0.2s; }
.service-card:hover .card-link { gap: 12px; color: var(--terracotta); }
.service-card.featured .card-link { color: var(--terracotta); }

/* ===== FEATURE GRID ===== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feature { background: var(--bg-card); padding: 38px 32px; }
.feature-icon { font-size: 24px; color: var(--terracotta); margin-bottom: 20px; }
.feature h3 { font-family: var(--serif); font-size: 19px; font-weight: 600; margin-bottom: 11px; }
.feature p { font-size: 14px; color: var(--ink-soft); line-height: 1.75; }

/* ===== SPLIT ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.split-list { list-style: none; }
.split-list li { font-size: 15px; color: var(--ink-soft); padding: 16px 0; border-bottom: 1px solid var(--line-soft); display: flex; gap: 14px; align-items: flex-start; line-height: 1.65; }
.split-list li i { color: var(--terracotta); font-size: 17px; flex-shrink: 0; margin-top: 2px; }
.split-list li b { color: var(--ink); font-weight: 600; }

/* ===== STEPS ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.step { background: var(--bg-card); padding: 38px 32px; }
.step-num { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--butter); margin-bottom: 18px; }
.step-title { font-family: var(--serif); font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.step-body { font-size: 14px; color: var(--ink-soft); line-height: 1.75; }

/* ===== PRICING / TIERS ===== */
.ads-deep { padding: 96px 44px; border-top: 1px solid var(--line); background: var(--bg-soft); }
.ads-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.ads-tiers { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.ads-tier { background: var(--bg-card); padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; border-left: 3px solid transparent; transition: background 0.2s, border-color 0.2s; }
.ads-tier:hover { background: var(--bg); }
.ads-tier.active { background: var(--bg); border-left-color: var(--terracotta); }
.ads-tier-name { font-family: var(--serif); font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.ads-tier-spend { font-size: 12px; color: var(--ink-faint); }
.ads-tier-price { font-family: var(--serif); font-size: 20px; font-weight: 600; white-space: nowrap; }
.ads-tier.active .ads-tier-price { color: var(--terracotta); }
.ads-feature-title { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 20px; }
.ads-feature-list { list-style: none; margin-bottom: 30px; }
.ads-feature-list li { font-size: 14px; color: var(--ink-soft); padding: 11px 0; border-bottom: 1px solid var(--line-soft); display: flex; gap: 12px; align-items: center; }
.ads-feature-list li i { color: var(--terracotta); font-size: 15px; flex-shrink: 0; }
.ads-note { font-size: 12px; color: var(--ink-faint); border-left: 2px solid var(--butter); padding-left: 14px; line-height: 1.65; margin-bottom: 28px; }

/* ===== PRICING GRID (per service) ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.price-card { background: var(--bg-card); padding: 40px 32px; display: flex; flex-direction: column; position: relative; }
.price-card.featured { background: var(--bg-soft); }
.price-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--pink); }
.price-tier { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 16px; }
.price-amount { font-family: var(--serif); font-size: 40px; font-weight: 600; line-height: 1; margin-bottom: 6px; }
.price-amount span { font-family: var(--sans); font-size: 13px; color: var(--ink-faint); font-weight: 400; letter-spacing: 0.02em; }
.price-note { font-size: 13px; color: var(--ink-soft); margin-bottom: 26px; }
.price-list { list-style: none; margin-bottom: 30px; flex: 1; }
.price-list li { font-size: 13.5px; color: var(--ink-soft); padding: 10px 0; border-bottom: 1px solid var(--line-soft); display: flex; gap: 11px; align-items: flex-start; line-height: 1.5; }
.price-list li i { color: var(--terracotta); font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.price-card .btn-primary { text-align: center; }

/* ===== FAQ ===== */
.faq-list { border: 1px solid var(--line); background: var(--bg-card); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; background: none; border: none; color: var(--ink); text-align: left; font-family: var(--serif); font-size: 18px; font-weight: 600; padding: 24px 28px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; transition: background 0.2s; }
.faq-q:hover { background: var(--bg-soft); }
.faq-q i { color: var(--pink); font-size: 18px; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { font-size: 14px; color: var(--ink-soft); line-height: 1.8; padding: 0 28px 26px; max-width: 760px; }

/* ===== CTA BAND ===== */
.cta-band { padding: 100px 44px; border-top: 1px solid var(--line); background-color: var(--ink); background-image: radial-gradient(rgba(255,255,255,0.17) 2.5px, transparent 2.5px); background-size: 28px 28px; color: var(--bg); }
.cta-band-inner { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 48px; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); font-weight: 600; margin-bottom: 12px; line-height: 1.12; color: var(--bg); }
.cta-band h2 em { font-style: italic; color: #d9d4c4; }
.cta-band p { font-size: 16px; color: rgba(250,244,234,0.7); max-width: 440px; line-height: 1.75; }
.cta-actions { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.cta-band .btn-primary { background: #f3f1ea; color: var(--ink); }
.cta-band .btn-primary:hover { background: #e7e3d8; }
.cta-band .btn-ghost { color: var(--bg); border-bottom-color: rgba(255,255,255,0.4); }
.cta-band .btn-ghost:hover { color: #fff; }

/* ===== CONTACT ===== */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-left p { font-size: 15px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 34px; }
.contact-detail { display: flex; align-items: baseline; gap: 20px; margin-bottom: 16px; }
.contact-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); width: 70px; flex-shrink: 0; }
.contact-val { font-size: 15px; color: var(--ink-soft); }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 9px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: var(--bg-card); border: 1px solid var(--line); color: var(--ink);
  font-size: 14px; padding: 14px 16px; font-family: inherit; outline: none;
  transition: border-color 0.2s; appearance: none; border-radius: 2px;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--terracotta); }
.form-field textarea { height: 120px; resize: none; }
.form-field select option { background: var(--bg-card); }
.form-submit { width: 100%; background: var(--ink); color: var(--bg); border: none; padding: 16px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; cursor: pointer; margin-top: 6px; border-radius: 2px; transition: background 0.2s; }
.form-submit:hover { background: var(--terracotta); }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--line); background: var(--bg-soft); }
.footer-top { max-width: var(--maxw); margin: 0 auto; padding: 64px 44px 44px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px; }
.footer-brand .nav-logo { font-size: 26px; }
.footer-brand p { font-size: 14px; color: var(--ink-soft); line-height: 1.75; margin-top: 18px; max-width: 320px; }
.footer-col h4 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: var(--ink-soft); text-decoration: none; padding: 7px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--terracotta); }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding: 24px 44px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--ink-faint); }
.footer-bottom a { font-size: 12px; color: var(--ink-faint); text-decoration: none; }
.footer-bottom a:hover { color: var(--terracotta); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .split, .ads-inner, .contact-inner { grid-template-columns: 1fr; gap: 44px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav { padding: 18px 22px; }
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 8px 22px 22px; transform: translateY(-130%); transition: transform 0.3s ease; z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 15px 0; width: 100%; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
  .nav-links .nav-cta { margin-top: 14px; border-bottom: none; }
  .nav-toggle { display: block; }
  .hero { padding: 76px 22px 60px; }
  .page-hero { padding: 48px 22px 56px; }
  .stat { padding: 24px 22px; }
  .section, .ads-deep, .cta-band { padding: 68px 22px; }
  .footer-top { padding: 48px 22px 32px; }
  .footer-bottom { padding: 24px 22px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
