/* Wright's Clean & Shine shared design system.
   Palette: black, white, beige. Boutique, minimal, warm. */

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

:root {
  --ink: #191510;        /* warm near-black */
  --ink-soft: #2c261d;
  --body: #52493c;       /* warm body text */
  --faint: #8d8371;
  --bg: #ffffff;
  --cream: #f7f2ea;      /* page tint */
  --cream-deep: #f1e9db;
  --beige: #ece1cf;      /* panels / bands */
  --sand: #ddceb2;       /* borders on beige */
  --line: #e9e0d1;
  --line-strong: #dccdb2;
  --gold: #b18f5f;       /* whisper accent, used sparingly for "shine" */
  --gold-soft: #e7dcc6;
  --radius: 4px;
  --radius-lg: 10px;
  --wrap: 1120px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  color: var(--ink);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.1rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { max-width: 40em; }
strong { color: var(--ink); font-weight: 600; }

a { color: var(--ink); text-decoration-color: var(--sand); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--gold); }

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

:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }
.narrow { max-width: 760px; }

/* ---------- Eyebrow / kicker ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.kicker::before {
  content: ""; width: 22px; height: 1px; background: var(--gold); opacity: 0.7;
}
.kicker.center::after {
  content: ""; width: 22px; height: 1px; background: var(--gold); opacity: 0.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em;
  padding: 15px 30px;
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--ink); border-radius: var(--radius);
  text-decoration: none; cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { background: var(--ink-soft); transform: translateY(-1px); color: #fff; }
.btn svg { flex: none; }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--sand); }
.btn-light {
  background: var(--cream); color: var(--ink); border-color: var(--cream);
}
.btn-light:hover { background: #fff; color: var(--ink); }
.btn-outline-light {
  background: transparent; color: var(--cream); border: 1px solid rgba(247,242,234,0.35);
}
.btn-outline-light:hover { background: rgba(247,242,234,0.08); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 18px 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
}
.brand .mark { flex: none; }
.brand .name {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.16rem;
  letter-spacing: -0.01em; line-height: 1; color: var(--ink);
}
.brand .name small {
  display: block; font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--faint); margin-top: 5px;
}
.nav { display: flex; align-items: center; gap: 34px; }
.nav a.link {
  font-size: 0.9rem; font-weight: 500; color: var(--body);
  text-decoration: none; letter-spacing: 0.01em;
  position: relative; padding: 4px 0;
}
.nav a.link:hover { color: var(--ink); }
.nav a.link[aria-current="page"] { color: var(--ink); }
.nav a.link[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1.5px; background: var(--gold);
}
.nav .btn { padding: 11px 20px; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--ink);
}
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 4px; padding: 92px 30px 40px;
    background: var(--cream); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform 0.32s var(--ease);
    box-shadow: -20px 0 60px rgba(25,21,16,0.12);
  }
  .nav.open { transform: translateX(0); }
  .nav a.link { font-size: 1.05rem; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav a.link[aria-current="page"]::after { display: none; }
  .nav .btn { margin-top: 18px; width: 100%; }
  .nav-toggle { display: inline-flex; z-index: 60; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 92%);
  position: relative; overflow: hidden;
}
.hero-inner { padding: 92px 0 88px; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr);
  gap: 64px; align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero h1 { margin: 22px 0 0; }
.hero .lede { font-size: 1.2rem; margin: 26px 0 34px; color: var(--body); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta {
  margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px 30px; align-items: center;
}
.hero-meta span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.86rem; font-weight: 500; color: var(--body);
}
.hero-meta svg { flex: none; color: var(--gold); }

/* Hero visual / framed image */
.frame {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--beige);
  border: 1px solid var(--line-strong);
  aspect-ratio: 4 / 5;
}
.frame.wide { aspect-ratio: 4 / 3; }
.frame.tall { aspect-ratio: 3 / 4; }
.frame > img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Placeholder image blocks (swap for Sarah's real photos) ---------- */
.ph-img {
  width: 100%; height: 100%; position: relative;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 90% at 80% 15%, var(--cream) 0%, transparent 55%),
    repeating-linear-gradient(135deg, var(--beige) 0 22px, var(--cream-deep) 22px 44px);
  color: var(--ink);
}
.ph-img .ph-inner { text-align: center; padding: 24px; }
.ph-img .ph-spark { color: var(--gold); margin-bottom: 12px; }
.ph-img .ph-label {
  font-family: 'Inter', sans-serif; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
}
.ph-img .ph-sub { font-size: 0.8rem; color: var(--faint); margin-top: 6px; max-width: 22em; }

/* small dashed "placeholder" pill used inline */
.ph-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-soft);
  border: 1px dashed var(--gold); border-radius: 999px;
  padding: 4px 12px; line-height: 1.4;
}

/* ---------- Sections & bands ---------- */
section { padding: 92px 0; }
.band { background: var(--cream); }
.band-beige { background: var(--beige); }
.band-ink { background: var(--ink); color: var(--cream); }
.band-ink h1, .band-ink h2, .band-ink h3 { color: #fff; }
.band-ink p { color: rgba(247,242,234,0.82); }

.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 16px 0 14px; }
.section-head p { color: var(--body); }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Service / feature cards ---------- */
.cards {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px 30px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.band .card, .band-beige .card { background: var(--bg); }
.card:hover {
  transform: translateY(-3px); border-color: var(--line-strong);
  box-shadow: 0 14px 40px -22px rgba(25,21,16,0.4);
}
.card .ic {
  width: 48px; height: 48px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); color: var(--ink);
  border: 1px solid var(--line); margin-bottom: 20px;
}
.card h3 { margin-bottom: 9px; }
.card p { font-size: 0.96rem; color: var(--body); }
.card .tag {
  display: inline-block; margin-top: 16px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Steps (how it works / walkthrough) ---------- */
.steps { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); counter-reset: step; }
.step { position: relative; padding-top: 22px; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.05em;
}
.step h3 { margin: 12px 0 8px; font-size: 1.18rem; }
.step p { font-size: 0.95rem; }
.step .bar { position: absolute; top: 0; left: 0; width: 40px; height: 2px; background: var(--gold); }

/* ---------- Split (about / image + copy) ---------- */
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.1fr); gap: 60px; align-items: center; }
.split.reverse { grid-template-columns: minmax(0,1.1fr) minmax(0,1fr); }
.split.reverse .split-media { order: 2; }
@media (max-width: 880px) { .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; } .split.reverse .split-media { order: 0; } }
.split-copy p + p { margin-top: 16px; }
.split-copy h2 { margin: 16px 0 20px; }

/* ---------- Prose (about copy, policy body) ---------- */
.prose p { margin-bottom: 20px; color: var(--body); font-size: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 { margin: 34px 0 12px; }
.prose ul { margin: 0 0 20px; padding-left: 0; list-style: none; }
.prose ul li {
  position: relative; padding: 6px 0 6px 28px; color: var(--body);
}
.prose ul li::before {
  content: ""; position: absolute; left: 4px; top: 15px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}

/* ---------- Definition rows (services detail, payments) ---------- */
.rows { border-top: 1px solid var(--line); }
.row {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.6fr); gap: 30px;
  padding: 26px 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
@media (max-width: 640px) { .row { grid-template-columns: 1fr; gap: 8px; } }
.row .row-k { font-family: 'Fraunces', serif; font-size: 1.25rem; color: var(--ink); font-weight: 500; }
.row .row-v { color: var(--body); }
.row .row-v .ph-pill { margin-left: 6px; }

/* ---------- Pill list / chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 0.86rem; font-weight: 500; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 8px 16px;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 56px; align-items: start; }
@media (max-width: 840px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-item:first-child { padding-top: 0; }
.contact-item .label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 8px;
}
.contact-item a.value, .contact-item .value {
  font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--ink);
  text-decoration: none; overflow-wrap: anywhere;
}
.contact-item a.value:hover { color: var(--gold); }
.socials { display: flex; gap: 12px; margin-top: 4px; }
.social {
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); color: var(--ink);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.social:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

/* ---------- Forms ---------- */
form.quote {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px 30px; display: grid; gap: 20px;
}
form.quote .two { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { form.quote .two { grid-template-columns: 1fr; } }
form.quote label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: 0.02em; }
form.quote input, form.quote select, form.quote textarea {
  width: 100%; font: inherit; font-size: 0.98rem; color: var(--ink);
  padding: 13px 15px; background: var(--cream);
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
form.quote input:focus, form.quote select:focus, form.quote textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
}
form.quote textarea { resize: vertical; min-height: 130px; }
form.quote .note { font-size: 0.82rem; color: var(--faint); }

/* ---------- Callout / info panel ---------- */
.callout {
  background: var(--beige); border: 1px solid var(--sand);
  border-radius: var(--radius-lg); padding: 32px 30px;
}
.callout h3 { margin-bottom: 10px; }
.callout p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { margin: 0 auto 30px; color: rgba(247,242,234,0.82); }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- Booking policy graphic (shareable poster) ---------- */
.policy-poster {
  max-width: 460px; margin: 0 auto; aspect-ratio: 4 / 5;
  background:
    radial-gradient(130% 80% at 50% 0%, #221d16 0%, var(--ink) 60%);
  color: var(--cream); border-radius: var(--radius-lg);
  padding: 44px 40px; display: flex; flex-direction: column;
  border: 1px solid #000; position: relative; overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(25,21,16,0.55);
}
.policy-poster .poster-mark { display: flex; align-items: center; gap: 10px; color: var(--gold); }
.policy-poster .poster-mark span { font-family: 'Fraunces', serif; font-size: 0.95rem; color: var(--cream); letter-spacing: 0.02em; }
.policy-poster h3 { color: #fff; font-size: 1.9rem; margin: 26px 0 4px; }
.policy-poster .poster-sub { font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.policy-poster ul { list-style: none; margin: 24px 0 0; display: grid; gap: 14px; }
.policy-poster li { display: flex; gap: 12px; font-size: 0.92rem; color: rgba(247,242,234,0.9); line-height: 1.45; }
.policy-poster li svg { flex: none; color: var(--gold); margin-top: 3px; }
.policy-poster .poster-foot { margin-top: auto; padding-top: 26px; font-size: 0.78rem; color: rgba(247,242,234,0.6); letter-spacing: 0.04em; }
.policy-poster::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(177,143,95,0.25) 0%, transparent 70%);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(247,242,234,0.7); padding: 70px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(247,242,234,0.12); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.site-footer .brand .name { color: var(--cream); }
.site-footer .brand .name small { color: rgba(247,242,234,0.5); }
.site-footer p { color: rgba(247,242,234,0.62); font-size: 0.92rem; margin-top: 16px; max-width: 30em; }
.footer-col h4 { color: var(--cream); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(247,242,234,0.72); text-decoration: none; font-size: 0.94rem; padding: 5px 0; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 26px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(247,242,234,0.45); margin: 0; }
.footer-bottom .socials .social { border-color: rgba(247,242,234,0.22); color: var(--cream); }
.footer-bottom .socials .social:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--cream); border-bottom: 1px solid var(--line); padding: 74px 0 66px; }
.page-hero .kicker { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { font-size: 1.14rem; color: var(--body); margin-top: 20px; }

/* ---------- Utility ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 44px; }
.divider { height: 1px; background: var(--line); border: none; margin: 0; }
