:root {
  --ink: #183033;
  --ink-soft: #4d5f61;
  --deep: #153b3a;
  --deep-2: #0f302f;
  --accent: #c89457;
  --paper: #fbfaf7;
  --soft: #f1efe9;
  --white: #ffffff;
  --line: #dfe2dc;
  --success: #dff4e6;
  --danger: #f8dddd;
  --shadow: 0 24px 70px rgba(17, 48, 47, 0.10);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 20px; top: -100px; z-index: 9999;
  background: var(--white); padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { top: 20px; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(24, 48, 51, 0.08);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px; display: inline-grid; place-items: center;
  border: 1px solid rgba(24, 48, 51, .22); border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif; font-size: 20px;
}
.brand-text { font-size: 13px; letter-spacing: .16em; white-space: nowrap; }
.brand-text strong { font-weight: 700; }
.desktop-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; }
.desktop-nav a { text-decoration: none; color: var(--ink-soft); font-weight: 600; }
.desktop-nav a:hover { color: var(--deep); }
.nav-cta { padding: 10px 17px; border: 1px solid var(--deep); border-radius: 999px; color: var(--deep) !important; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px; }
.mobile-nav { padding: 4px 20px 20px; border-top: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 12px 0; text-decoration: none; font-weight: 600; }

.hero { padding: 108px 0 96px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.55fr .75fr; gap: 96px; align-items: end; }
.eyebrow {
  margin: 0 0 18px; font-size: 12px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent);
}
.hero h1, .section-heading h2, .about-copy h2, .contact-copy h2, .legal-hero h1 {
  font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(54px, 7.2vw, 96px); line-height: .98; margin: 0; max-width: 860px; }
.hero h1 span { color: var(--deep); }
.hero-text { max-width: 720px; font-size: clamp(18px, 2vw, 21px); color: var(--ink-soft); margin: 32px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 22px;
  border-radius: 999px; text-decoration: none; font-weight: 750; border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--deep); color: var(--white); }
.button-primary:hover { background: var(--deep-2); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.55); }
.experience-card { border-top: 1px solid var(--line); padding: 24px 0; display: flex; gap: 20px; align-items: baseline; }
.experience-number { font-family: Georgia, "Times New Roman", serif; font-size: 48px; line-height: 1; color: var(--deep); }
.experience-label { color: var(--ink-soft); max-width: 180px; }
.aside-note { margin: 8px 0 0; font-weight: 700; color: var(--deep); }

.section { padding: 104px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading h2, .about-copy h2, .contact-copy h2 { font-size: clamp(38px, 5vw, 62px); line-height: 1.05; margin: 0; }
.section-heading > p:last-child { font-size: 18px; color: var(--ink-soft); margin: 20px 0 0; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.service-card { padding: 34px 38px 36px 0; border-bottom: 1px solid var(--line); }
.service-card:nth-child(even) { padding-left: 38px; border-left: 1px solid var(--line); }
.service-number { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--accent); }
.service-card h3 { font-size: 24px; margin: 14px 0 8px; }
.service-card p { margin: 0; color: var(--ink-soft); max-width: 470px; }

.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.package-card {
  position: relative; background: rgba(255,255,255,.68); border: 1px solid rgba(24,48,51,.10);
  border-radius: var(--radius); padding: 34px; min-height: 390px; display: flex; flex-direction: column;
}
.package-featured { background: var(--deep); color: var(--white); transform: translateY(-10px); box-shadow: var(--shadow); }
.package-badge { position: absolute; top: 16px; right: 16px; padding: 7px 10px; border-radius: 999px; font-size: 11px; font-weight: 800; background: rgba(255,255,255,.12); }
.package-kicker { color: var(--accent); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 800; margin: 0 0 8px; }
.package-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 34px; font-weight: 400; margin: 0 0 10px; }
.package-price { margin: 0 0 20px; font-size: 32px; line-height: 1; font-weight: 800; color: var(--deep); }
.package-featured .package-price { color: var(--white); }
.package-card ul { margin: 0; padding: 0; list-style: none; }
.package-card li { padding: 12px 0 12px 25px; border-top: 1px solid rgba(24,48,51,.10); position: relative; }
.package-featured li { border-color: rgba(255,255,255,.14); }
.package-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.text-link { margin-top: auto; padding-top: 28px; font-weight: 800; text-decoration: none; }
.text-link span { display: inline-block; transition: transform .18s ease; }
.text-link:hover span { transform: translateX(4px); }
.package-note { margin: 26px 0 0; color: var(--ink-soft); font-size: 14px; }

.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 86px; align-items: center; }
.photo-frame { position: relative; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); background: #e8e7e1; }
.photo-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-copy .lead { font-size: 21px; color: var(--deep); margin-top: 28px; }
.about-copy p { color: var(--ink-soft); }
.about-signature { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-direction: column; }
.about-signature strong { font-size: 18px; }
.about-signature span { color: var(--ink-soft); font-size: 14px; }

.contact-section { background: var(--deep); color: var(--white); padding: 110px 0; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.eyebrow-light { color: #e0b681; }
.contact-copy p { color: rgba(255,255,255,.72); max-width: 520px; }
.contact-email { display: inline-block; margin-top: 18px; color: var(--white); font-weight: 800; text-underline-offset: 4px; }
.form-card { background: var(--paper); color: var(--ink); border-radius: 28px; padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid #d8dcd7; border-radius: 12px; background: var(--white); color: var(--ink);
  padding: 13px 14px; outline: none; transition: border-color .18s, box-shadow .18s;
}
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--deep); box-shadow: 0 0 0 3px rgba(21,59,58,.10); }
.privacy-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ink-soft); margin: 4px 0 20px; }
.privacy-check input { margin-top: 4px; }
.submit-button { background: var(--deep); color: var(--white); width: 100%; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-status { border-radius: 12px; padding: 12px 14px; margin-bottom: 18px; font-weight: 700; font-size: 14px; }
.form-status.success { background: var(--success); }
.form-status.error { background: var(--danger); }

.site-footer { padding: 46px 0; background: #0b2928; color: rgba(255,255,255,.78); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 20px 40px; align-items: start; }
.footer-brand { color: var(--white); }
.footer-brand .brand-mark { border-color: rgba(255,255,255,.28); }
.site-footer p { margin: 14px 0 0; font-size: 14px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; font-size: 14px; }
.footer-links a { color: inherit; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.copyright { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.10); padding-top: 20px; }

/* Legal pages */
.legal-main { min-height: 70vh; }
.legal-hero { padding: 80px 0 36px; }
.legal-hero h1 { font-size: clamp(42px, 6vw, 68px); margin: 0; }
.legal-content { padding: 10px 0 100px; }
.legal-card { max-width: 860px; background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 38px; }
.legal-card h2 { margin-top: 34px; font-size: 24px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 { margin-top: 26px; }
.legal-card p, .legal-card li { color: var(--ink-soft); }
.placeholder-warning { background: #fff0cf; border: 1px solid #edd39b; padding: 14px 16px; border-radius: 12px; color: #5f4a22 !important; font-weight: 700; }
.placeholder { background: #fff0cf; border-radius: 4px; padding: 0 4px; color: #654a15; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .text-link span { transition: none; }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero { padding: 80px 0 70px; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-aside { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .aside-note { grid-column: 1 / -1; }
  .package-grid { grid-template-columns: 1fr; }
  .package-featured { transform: none; }
  .about-grid { max-width: 720px; }
  .photo-frame { max-width: 540px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 68px; }
  .brand-text { font-size: 11px; letter-spacing: .12em; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { padding-top: 64px; }
  .hero h1 { font-size: clamp(46px, 14vw, 66px); }
  .hero-aside { grid-template-columns: 1fr; gap: 0; }
  .aside-note { grid-column: auto; }
  .section, .contact-section { padding: 78px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(even) { padding: 28px 0; border-left: 0; }
  .package-card { min-height: auto; padding: 28px; }
  .about-grid, .contact-grid { gap: 42px; }
  .form-card { padding: 24px; border-radius: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 10px; }
  .copyright { grid-column: auto; }
  .legal-card { padding: 24px; }
}
