:root {
  color-scheme: light;
  --ink: #17343b;
  --muted: #6a7c7e;
  --line: #d8e3df;
  --paper: #f7faf7;
  --panel: #ffffff;
  --accent: #16756e;
  --accent-dark: #0f5d58;
  --soft: #e5f1ed;
  --warm: #f1e8d7;
  font-family: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  background-image: linear-gradient(120deg, rgba(229, 241, 237, .72), transparent 38%), linear-gradient(300deg, rgba(241, 232, 215, .48), transparent 34%);
}

button, input, textarea { font: inherit; }

.page-shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 22px 0 28px; }
.site-hero { position: relative; min-height: 390px; overflow: hidden; display: flex; align-items: end; border-radius: 3px; background: linear-gradient(135deg, #205c5a, #17343b 62%, #d4a866); box-shadow: 0 20px 50px rgba(23,52,59,.14); }
.hero-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.site-hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(10,31,34,.84), rgba(10,31,34,.06) 72%); }
.hero-content { position: relative; z-index: 1; width: 100%; padding: 34px; color: #fff; }
.hero-content .eyebrow { color: #cce5d9; }
.hero-content h1 { max-width: 720px; color: #fff; }
.hero-meta { margin-top: 8px; color: #e4efea; font: 1rem Arial, sans-serif; }
.hero-footer { display: flex; align-items: end; justify-content: space-between; gap: 22px; margin-top: 40px; }
.site-hero .header-contact { justify-items: start; color: #e4efea; }
.social-links { display: flex; gap: 8px; }
.social-links a { display: grid; place-items: center; width: 37px; height: 37px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: #fff; text-decoration: none; font: 700 1.1rem Arial, sans-serif; }
.social-links a:hover { background: rgba(255,255,255,.18); }
h1, h2, h3, p { margin: 0; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 500; letter-spacing: 0; }
h2 { max-width: 700px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; font-weight: 500; }
h3 { font-size: 1.35rem; font-weight: 500; }
.eyebrow { color: var(--accent); font: 700 .72rem/1.2 Arial, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.muted { color: var(--muted); }
.intro { padding: 70px 0 38px; }
.intro .eyebrow { margin-bottom: 16px; }
.intro-copy { margin-top: 17px; color: var(--muted); font: 1rem/1.5 Arial, sans-serif; }
.booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.booking-panel { padding: 30px; border: 1px solid var(--line); background: rgba(255,255,255,.8); box-shadow: 0 18px 44px rgba(23,52,59,.07); }
.panel-heading { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 28px; }
.step { color: var(--accent); font: 700 .78rem Arial, sans-serif; }
label { display: block; margin: 20px 0 8px; font: 700 .8rem Arial, sans-serif; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 2px; padding: 12px 13px; color: var(--ink); background: #fff; outline: none; }
input:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(22,117,110,.12); }
.slots-heading { display: flex; justify-content: space-between; margin-top: 29px; padding-bottom: 10px; border-bottom: 1px solid var(--line); font: 700 .8rem Arial, sans-serif; }
.slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding-top: 14px; }
.slot { border: 1px solid var(--line); border-radius: 2px; padding: 11px 7px; color: var(--accent-dark); background: var(--soft); cursor: pointer; font: 700 .86rem Arial, sans-serif; }
.slot:hover, .slot.selected { border-color: var(--accent); color: #fff; background: var(--accent); }
.selected-label { min-height: 20px; color: var(--accent-dark); font: .9rem Arial, sans-serif; }
button { width: 100%; margin-top: 24px; border: 0; border-radius: 2px; padding: 14px 16px; color: white; background: var(--accent); cursor: pointer; font: 700 .85rem Arial, sans-serif; }
button:hover:not(:disabled) { background: var(--accent-dark); }
button:disabled { cursor: not-allowed; opacity: .45; }
.optional, .form-note { color: var(--muted); font-weight: 400; }
.form-note { margin-top: 12px; font: .73rem/1.45 Arial, sans-serif; }
.notice { margin-bottom: 20px; padding: 14px 16px; border-left: 4px solid var(--accent); background: var(--soft); font: .9rem/1.4 Arial, sans-serif; }
.notice.error { border-color: #a64c36; background: #f8e8e2; }
footer { padding-top: 30px; color: var(--muted); font: .72rem Arial, sans-serif; }

@media (max-width: 760px) {
  .page-shell { width: min(100% - 26px, 560px); padding-top: 22px; }
  .site-hero { min-height: 440px; }
  .hero-content { padding: 25px; }
  .hero-footer { align-items: start; flex-direction: column; margin-top: 34px; }
  .intro { padding: 48px 0 28px; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-panel { padding: 23px; }
  .slots { grid-template-columns: repeat(2, 1fr); }
}