:root {
  --limestone: #f4efe6;
  --limestone-dark: #e8dfce;
  --terracotta: #a8724e;
  --olive: #6b6a4f;
  --ink: #2d2a22;
  --ink-soft: #4a4438;
  --gold: #b8945a;
  --gold-dark: #9a7842;
  --paper: #fbf9f4;
  --line: #d8cfbd;
  --shadow: rgba(45, 42, 34, 0.08);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; color: var(--ink); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 18px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo svg { width: 38px; height: 38px; }
.logo-text { font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0.02em; }
.logo-text span { color: var(--gold-dark); }
.nav-links { display: flex; gap: 38px; list-style: none; align-items: center; }
.nav-links a { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); transition: color 0.25s; font-weight: 500; }
.nav-links a:hover { color: var(--gold-dark); }
.nav-cta {
  background: var(--ink);
  color: var(--limestone) !important;
  padding: 12px 26px;
  border-radius: 2px;
  font-size: 0.78rem !important;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--gold-dark); color: #fff !important; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.burger span { width: 26px; height: 2px; background: var(--ink); transition: 0.3s; }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(244,239,230,0.97) 0%, rgba(244,239,230,0.78) 48%, rgba(244,239,230,0.25) 100%),
    url('https://images.unsplash.com/photo-1523217582562-09d0def993a6?auto=format&fit=crop&w=1600&q=70') center/cover;
}
.hero-inner { max-width: 660px; padding: 80px 0; }
.hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); margin-bottom: 26px; }
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero p { font-size: 1.18rem; color: var(--ink-soft); margin-bottom: 38px; max-width: 540px; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 2px;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.btn-primary { background: var(--ink); color: var(--limestone); }
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--limestone); }

/* Sections */
section { padding: 100px 0; }
.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section-alt { background: var(--limestone); }

/* Trust bar */
.trust { background: var(--ink); padding: 38px 0; }
.trust .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; }
.trust-item { text-align: center; flex: 1; min-width: 140px; }
.trust-item strong { display: block; font-family: var(--serif); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.trust-item span { color: var(--limestone-dark); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* Services */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px 34px;
  transition: transform 0.35s, box-shadow 0.35s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px var(--shadow); }
.card .num { font-family: var(--serif); font-size: 1.1rem; color: var(--gold-dark); border-bottom: 1px solid var(--gold); display: inline-block; padding-bottom: 4px; margin-bottom: 22px; }
.card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.card p { color: var(--ink-soft); font-size: 0.96rem; }

/* About split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split img { width: 100%; height: 540px; object-fit: cover; border-radius: 2px; }
.split-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 22px; }
.split-text p { color: var(--ink-soft); margin-bottom: 18px; }
.split-list { list-style: none; margin-top: 28px; }
.split-list li { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; gap: 14px; align-items: baseline; }
.split-list li::before { content: '—'; color: var(--gold-dark); font-weight: 700; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { padding-top: 26px; border-top: 2px solid var(--gold); }
.step .step-num { font-family: var(--serif); font-size: 3rem; color: var(--limestone-dark); line-height: 1; }
.step h4 { font-size: 1.25rem; margin: 12px 0 10px; }
.step p { color: var(--ink-soft); font-size: 0.92rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 46px 38px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured { background: var(--ink); border-color: var(--ink); }
.price-card.featured h3, .price-card.featured .price, .price-card.featured .price-period, .price-card.featured li { color: var(--limestone); }
.price-card.featured .price-features li::before { color: var(--gold); }
.badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold-dark); color: #fff; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 6px 18px; border-radius: 2px; font-weight: 600; }
.price-card h3 { font-size: 1.7rem; margin-bottom: 8px; }
.price-card .tier-desc { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 26px; min-height: 40px; }
.price-card.featured .tier-desc { color: var(--limestone-dark); }
.price { font-family: var(--serif); font-size: 3rem; color: var(--ink); line-height: 1; }
.price-period { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 30px; display: block; margin-top: 6px; }
.price-features { list-style: none; margin-bottom: 34px; flex-grow: 1; }
.price-features li { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; display: flex; gap: 12px; align-items: baseline; }
.price-card.featured .price-features li { border-color: rgba(255,255,255,0.12); }
.price-features li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; }
.price-note { text-align: center; color: var(--ink-soft); font-size: 0.9rem; margin-top: 40px; }

/* Testimonial */
.quote-block { max-width: 820px; margin: 0 auto; text-align: center; }
.quote-block .mark { font-family: var(--serif); font-size: 5rem; color: var(--gold); line-height: 0.5; }
.quote-block blockquote { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); font-style: italic; color: var(--ink); margin: 24px 0 30px; }
.quote-block cite { font-style: normal; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
.contact-info h2 { font-size: 2.4rem; margin-bottom: 22px; }
.contact-info p { color: var(--ink-soft); margin-bottom: 30px; }
.contact-detail { margin-bottom: 24px; }
.contact-detail .label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; margin-bottom: 5px; }
.contact-detail .value { font-family: var(--serif); font-size: 1.25rem; }
.form-card { background: var(--paper); border: 1px solid var(--line); padding: 46px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-dark); }
.field textarea { resize: vertical; min-height: 110px; }
.checkbox-field { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 26px; }
.checkbox-field input { width: auto; margin-top: 4px; }
.checkbox-field label { text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 0.85rem; color: var(--ink-soft); }
.checkbox-field a { color: var(--gold-dark); text-decoration: underline; }
.form-msg { margin-top: 18px; padding: 14px; border-radius: 2px; font-size: 0.9rem; display: none; }
.form-msg.show { display: block; }
.form-msg.success { background: #e8efe2; color: #4a5e3a; border: 1px solid #b9cca5; }
.form-msg.error { background: #f3e2e0; color: #8a4434; border: 1px solid #d8b0a8; }

/* CTA band */
.cta-band { background: var(--limestone); text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.cta-band p { color: var(--ink-soft); max-width: 560px; margin: 0 auto 34px; font-size: 1.08rem; }

/* Footer */
footer { background: var(--ink); color: var(--limestone-dark); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand .logo-text { color: var(--limestone); }
.footer-brand p { font-size: 0.92rem; margin-top: 18px; max-width: 320px; color: #b3a98f; }
.footer-col h4 { color: var(--limestone); font-size: 1.1rem; margin-bottom: 18px; font-family: var(--serif); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 0.9rem; color: #b3a98f; transition: color 0.25s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 0.82rem; color: #8c826b; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--limestone-dark);
  padding: 24px 32px;
  z-index: 200;
  display: none;
  box-shadow: 0 -6px 30px rgba(0,0,0,0.25);
}
.cookie-banner.show { display: block; }
.cookie-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.cookie-inner p { font-size: 0.9rem; flex: 1; min-width: 280px; }
.cookie-inner p a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; }
.cookie-btns .btn { padding: 12px 26px; font-size: 0.76rem; }
.cookie-btns .btn-outline { color: var(--limestone); border-color: var(--limestone); }
.cookie-btns .btn-outline:hover { background: var(--limestone); color: var(--ink); }

/* Legal pages */
.legal-hero { background: var(--limestone); padding: 90px 0 60px; }
.legal-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.legal-hero p { color: var(--ink-soft); margin-top: 12px; }
.legal-content { padding: 70px 0; max-width: 820px; }
.legal-content h2 { font-size: 1.6rem; margin: 40px 0 14px; }
.legal-content h3 { font-size: 1.2rem; margin: 26px 0 10px; }
.legal-content p, .legal-content li { color: var(--ink-soft); margin-bottom: 14px; font-size: 0.98rem; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content a { color: var(--gold-dark); text-decoration: underline; }
.legal-content .updated { font-size: 0.85rem; color: var(--olive); font-style: italic; margin-bottom: 30px; }

/* Responsive */
@media (max-width: 920px) {
  .grid-3, .pricing-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split img { height: 380px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 720px) {
  .container { padding: 0 22px; }
  section { padding: 70px 0; }
  .nav-links { position: fixed; top: 78px; right: 0; bottom: 0; width: 76%; background: var(--paper); flex-direction: column; padding: 40px 32px; gap: 26px; transform: translateX(100%); transition: transform 0.35s; box-shadow: -10px 0 40px var(--shadow); }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .burger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-card { padding: 30px 24px; }
}
