:root {
  --ink: #1f1a17;
  --accent: #b08d57;
  --bg: #f7f3ee;
  --paper: #fffdfa;
  --muted: #7a6f66;
  --line: #e6dfd6;
  --ok: #3f7d4e;
  --bad: #a94442;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; margin: 0 0 .4em; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.tiny { font-size: .78rem; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .04em; }
.eyebrow { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.link { border-bottom: 1px solid var(--accent); }

.site-header {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky; top: 0; z-index: 10;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-size: 1.35rem; letter-spacing: .2em; text-transform: uppercase; }
.brand-name.small { font-size: 1.05rem; }
.brand-sub { font-size: .7rem; color: var(--muted); font-style: italic; }
.site-header nav { display: flex; gap: 1.4rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.site-header nav a:hover { color: var(--accent); }

main { min-height: 60vh; }
.section { padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem); max-width: 1200px; margin: 0 auto; }
.section.narrow { max-width: 760px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

.hero {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem); max-width: 1200px; margin: 0 auto;
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-style: italic; font-weight: 400; }
.hero p { font-size: 1.1rem; max-width: 34rem; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.4rem; }
.hero-art { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.hero-art img { aspect-ratio: 3/4; object-fit: cover; border-radius: 2px; background: var(--paper); }
.hero-art img:nth-child(2) { transform: translateY(1.5rem); }

.btn {
  display: inline-block; padding: .85rem 1.6rem; background: var(--ink); color: #fff;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; border: 1px solid var(--ink);
  cursor: pointer; font-family: var(--sans); transition: background .2s, color .2s;
}
.btn:hover { background: var(--accent); border-color: var(--accent); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: #fff; }
.btn.wide { width: 100%; text-align: center; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.6rem; }
.card { background: var(--paper); border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(31, 26, 23, .08); }
.card-media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #efe8df; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.badge { position: absolute; top: .7rem; left: .7rem; background: var(--accent); color: #fff; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; padding: .3rem .6rem; }
.card-body { padding: 1rem 1.1rem 1.2rem; }
.card-body h3 { margin-bottom: .3rem; }
.price { font-size: .92rem; }

.filters { display: flex; gap: .5rem; flex-wrap: wrap; }
.chip { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .8rem; border: 1px solid var(--line); background: var(--paper); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.steps { border-top: 1px solid var(--line); }
.step-list { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.4rem; }
.step-list li { position: relative; padding-top: 2.4rem; }
.step-list li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0; font-family: var(--serif); font-size: 1.6rem; color: var(--accent);
}
.step-list.large { grid-template-columns: 1fr; gap: 1rem; }
.step-list.large li { padding-left: 3.2rem; padding-top: .2rem; }
.faq dt { font-weight: 500; margin-top: 1rem; }
.faq dd { margin: .2rem 0 0; color: var(--muted); }

.product { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); }
.product-media img#main-image { width: 100%; aspect-ratio: 4/5; object-fit: cover; background: #efe8df; }
.thumbs { display: flex; gap: .5rem; margin-top: .6rem; }
.thumbs img { width: 64px; height: 80px; object-fit: cover; cursor: pointer; border: 1px solid var(--line); }
.lead { font-family: var(--serif); font-size: 1.3rem; font-style: italic; }
.specs { display: grid; grid-template-columns: max-content 1fr; gap: .3rem 1.2rem; font-size: .92rem; margin: 1.2rem 0 1.6rem; }
.specs dt { color: var(--muted); }
.specs dd { margin: 0; }

.booking-box { background: var(--paper); border: 1px solid var(--line); padding: 1.4rem; }
.booking-box h2 { font-size: 1.4rem; }
.calendar { margin: 1rem 0 .6rem; }
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.cal-nav button { background: none; border: 1px solid var(--line); padding: .3rem .7rem; cursor: pointer; font-family: inherit; }
.cal-nav button[disabled] { opacity: .3; cursor: default; }
.cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.cal-month h4 { margin: 0 0 .4rem; font-family: var(--serif); font-weight: 500; font-size: 1.05rem; text-align: center; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-dow { font-size: .65rem; text-align: center; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; padding-bottom: .2rem; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: .82rem; border-radius: 2px; cursor: pointer; background: #eef5ea; color: #2f5b3a; user-select: none; }
.cal-day.empty { background: none; cursor: default; }
.cal-day.past, .cal-day.booked { background: #f0ebe4; color: #b8ada2; cursor: not-allowed; text-decoration: line-through; }
.cal-day.range { background: #e9dcc5; color: var(--ink); }
.cal-day.selected { background: var(--ink); color: #fff; }
.cal-day.hover { outline: 1px solid var(--accent); }
button.cal-day { border: 0; font-family: inherit; padding: 0; width: 100%; }
.cal-day:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.cal-day.no-end { background: #f6efe2; color: #a08b6a; cursor: not-allowed; }
.cal-hint { min-height: 1.2em; margin: .5rem 0 0; color: var(--ink); }
.cal-hint.error { color: var(--bad); }
.legend { display: flex; gap: 1rem; font-size: .75rem; color: var(--muted); }
.lg::before { content: ''; display: inline-block; width: 10px; height: 10px; margin-right: .35rem; vertical-align: -1px; border-radius: 2px; }
.lg.avail::before { background: #cfe3c6; }
.lg.booked::before { background: #e3dbd1; }
.lg.selected::before { background: var(--ink); }
.loading { color: var(--muted); font-style: italic; padding: 1.5rem 0; text-align: center; }

.booking-form { margin-top: 1rem; }
.summary { background: var(--bg); padding: .8rem 1rem; margin-bottom: 1rem; font-size: .95rem; display: grid; gap: .2rem; }
.fields { display: grid; gap: .8rem; }
.fields .two { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
[hidden] { display: none !important; }
label { display: grid; gap: .3rem; font-size: .85rem; }
input, select, textarea {
  font: inherit; font-size: .95rem; padding: .6rem .7rem; border: 1px solid var(--line); background: #fff; color: var(--ink); width: 100%;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }
.stack { display: grid; gap: .9rem; max-width: 420px; }
.alert { padding: .8rem 1rem; border-left: 3px solid; margin-bottom: 1rem; font-size: .95rem; }
.alert.error { border-color: var(--bad); background: #fbf0ef; }
.alert.ok { border-color: var(--ok); background: #eef5ea; }
.alert.info { border-color: var(--accent); background: #f6efe2; }
.pay-online { border: 1px solid var(--accent); padding: 1.2rem; margin: 1.5rem 0; display: grid; gap: .6rem; }
.pay-online h2 { margin: 0; }
label.check { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; }
label.check input { width: auto; margin-top: .2rem; }
.policies h2 { margin-top: 2rem; }
.policies ul { padding-left: 1.2rem; }

.confirmation .ref { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .1em; font-size: 2.2rem; margin-bottom: .3rem; }
.status { display: inline-block; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; background: var(--line); }
.status-requested { background: #fbeccb; color: #7a5300; }
.status-confirmed { background: #d8ecd0; color: #2f5b3a; }
.status-out { background: #d7e4f4; color: #23466f; }
.status-returned { background: #e6e2dd; color: #5a524b; }
.status-cancelled, .status-expired { background: #f3d9d7; color: #7a2c29; }
.confirm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 1.6rem 0; }
.confirm-item { display: flex; gap: 1rem; }
.confirm-item img { width: 110px; height: 140px; object-fit: cover; background: #efe8df; }
.totals { width: 100%; border-collapse: collapse; font-size: .95rem; }
.totals td { padding: .35rem 0; border-bottom: 1px solid var(--line); }
.totals td:last-child { text-align: right; }
.totals tr.total td { font-weight: 500; border-bottom: 2px solid var(--accent); }
.pay-box { background: var(--paper); border: 1px solid var(--accent); padding: 1.4rem; margin: 1.5rem 0; }
.pay-box h2 { font-size: 1.4rem; }
.bank { display: grid; grid-template-columns: max-content 1fr; gap: .3rem 1.4rem; margin: 1rem 0; }
.bank dt { color: var(--muted); }
.bank dd { margin: 0; font-weight: 500; }

.site-footer { border-top: 1px solid var(--line); padding: 2.5rem clamp(1rem, 4vw, 3rem); display: grid; gap: 1rem; grid-template-columns: 1fr auto; align-items: start; }
.footer-links { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; font-size: .85rem; }
.footer-links a { border-bottom: 1px solid var(--accent); }
.site-footer .tiny { grid-column: 1 / -1; }
.site-footer .credit a { border-bottom: 1px solid var(--line); }
.site-footer .credit a:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 800px) {
  .hero, .product, .confirm-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .cal-months { grid-template-columns: 1fr; }
  .site-header { flex-direction: column; align-items: flex-start; }
  .site-header nav { gap: .9rem; font-size: .72rem; letter-spacing: .1em; flex-wrap: wrap; }
  .site-header nav a { white-space: nowrap; padding: .35rem 0; }
  .fields .two { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: minmax(0, 1fr); }
}

.self-service { border-top: 1px solid var(--line); margin-top: 1.5rem; padding-top: 1rem; display: grid; gap: 1.2rem; }
.self-service summary { cursor: pointer; list-style: none; }
.self-service summary::-webkit-details-marker { display: none; }
.self-service summary h2 { display: inline; }
.self-service summary::after { content: ' +'; color: var(--accent); font-size: 1.3rem; }
.self-service[open] summary::after { content: ' −'; }
.self-service .two { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.stack { display: grid; gap: .7rem; }
.stack h3 { margin: .4rem 0 0; }
.inline-fields { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }
.inline-fields input[type=file] { flex: 1; min-width: 0; }
@media (max-width: 800px) { .self-service .two { grid-template-columns: 1fr; } }

.filter-bar { display: flex; flex-wrap: wrap; gap: .8rem; align-items: flex-end; margin: 0 0 1.5rem; }
.filter-bar label { min-width: 150px; }
.card-note { font-size: .78rem; color: var(--accent); margin-top: .3rem; letter-spacing: .04em; }
.grid.dim .card-media img { opacity: .55; }
.small-head { margin-top: 2.5rem; }

.waitlist { border-top: 1px solid var(--line); margin-top: 2rem; padding-top: 1.2rem; display: grid; gap: .8rem; }
.waitlist h2 { margin: 0; font-size: 1.3rem; }
.waitlist .two { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.product-quotes { grid-column: 1 / -1; }
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.quote { margin: 0; padding: 1.4rem; background: rgba(255,255,255,.55); border: 1px solid var(--line); }
.quote img { width: 100%; aspect-ratio: 4/3; object-fit: cover; margin-bottom: 1rem; }
.quote blockquote { margin: 0 0 .8rem; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.2rem; font-style: italic; line-height: 1.45; }
.quote figcaption { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 800px) { .waitlist .two { grid-template-columns: 1fr; } }
