:root {
  --green: #0f5132;
  --green-2: #2f7d4a;
  --green-3: #e8f5ec;
  --white: #f7fff9;
  --ink: #14251a;
  --muted: #5f7567;
  --line: rgba(15, 81, 50, 0.16);
  --sand: #efe6d8;
  --clay: #b5794a;
  --brass: #a98a54;
  --shadow-warm: rgba(92, 61, 33, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fbf6ee 0%, var(--white) 42%, var(--sand) 100%);
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background-repeat: no-repeat;
  background-size: contain;
}

body::before {
  width: 340px;
  height: 520px;
  top: 86px;
  right: -92px;
  background-image: url("data:image/svg+xml,%3Csvg width='340' height='520' viewBox='0 0 340 520' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%230f5132' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M244 18C198 126 184 275 216 502'/%3E%3Cpath d='M226 97C165 89 118 55 86 16C159 17 203 46 226 97Z' fill='%230f5132' fill-opacity='.18'/%3E%3Cpath d='M205 194C144 184 102 146 78 102C147 110 188 140 205 194Z' fill='%230f5132' fill-opacity='.18'/%3E%3Cpath d='M201 300C139 294 94 260 64 218C137 219 181 249 201 300Z' fill='%230f5132' fill-opacity='.18'/%3E%3Cpath d='M222 147C276 120 306 79 318 27C262 48 233 86 222 147Z' fill='%230f5132' fill-opacity='.18'/%3E%3Cpath d='M212 260C275 244 313 210 330 160C267 171 229 203 212 260Z' fill='%230f5132' fill-opacity='.18'/%3E%3C/g%3E%3C/svg%3E");
}

body::after {
  width: 260px;
  height: 360px;
  left: -105px;
  bottom: 80px;
  opacity: 0.08;
  transform: rotate(-10deg);
  background-image: url("data:image/svg+xml,%3Csvg width='260' height='360' viewBox='0 0 260 360' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23b5794a' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M58 340C95 232 121 126 116 20'/%3E%3Cpath d='M102 82C60 78 28 56 8 25C59 25 88 45 102 82Z' fill='%23b5794a' fill-opacity='.2'/%3E%3Cpath d='M88 168C47 164 18 143 2 112C50 114 77 134 88 168Z' fill='%23b5794a' fill-opacity='.2'/%3E%3Cpath d='M72 254C34 249 10 229 0 200C42 204 64 224 72 254Z' fill='%23b5794a' fill-opacity='.2'/%3E%3Cpath d='M111 126C166 108 204 77 230 32C172 43 136 75 111 126Z' fill='%23b5794a' fill-opacity='.2'/%3E%3Cpath d='M94 219C152 205 195 176 226 132C165 139 124 169 94 219Z' fill='%23b5794a' fill-opacity='.2'/%3E%3C/g%3E%3C/svg%3E");
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green-2);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 246, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green);
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--green);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--green-3);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 48px;
  padding: 56px 0 72px;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(32vw, 360px);
  height: min(44vw, 500px);
  right: -7vw;
  top: 4vw;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  transform: rotate(7deg);
  background: radial-gradient(circle at 48% 18%, rgba(169, 138, 84, 0.22), transparent 16%),
    url("data:image/svg+xml,%3Csvg width='360' height='500' viewBox='0 0 360 500' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%230f5132' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M188 16C168 132 179 280 232 480'/%3E%3Cpath d='M176 94C114 86 66 52 32 14C108 13 153 43 176 94Z' fill='%230f5132' fill-opacity='.16'/%3E%3Cpath d='M179 202C112 194 62 157 26 111C103 113 151 145 179 202Z' fill='%230f5132' fill-opacity='.16'/%3E%3Cpath d='M196 320C127 316 72 284 30 239C111 237 165 266 196 320Z' fill='%230f5132' fill-opacity='.16'/%3E%3Cpath d='M184 146C252 122 298 82 326 26C256 39 211 80 184 146Z' fill='%230f5132' fill-opacity='.16'/%3E%3Cpath d='M191 263C265 244 319 209 354 153C276 160 223 198 191 263Z' fill='%230f5132' fill-opacity='.16'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-2);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 14px;
  display: inline-block;
  margin-right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='28' viewBox='0 0 48 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 24C15 7 30 3 44 4C37 19 23 26 4 24Z' stroke='%23a98a54' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 23C19 19 28 14 39 6' stroke='%23a98a54' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: -2px;
}

h1,
h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  color: var(--green);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--green-2);
  border-color: var(--green-2);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--green);
}

.button.secondary:hover {
  background: var(--green-3);
  border-color: var(--green-2);
  color: var(--green);
}

.button.light {
  background: var(--white);
  border-color: var(--white);
  color: var(--green);
}

.button.light:hover {
  background: var(--green-3);
  border-color: var(--green-3);
}

.text-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-art {
  position: relative;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px var(--shadow-warm);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(239, 230, 216, 0.08), rgba(15, 81, 50, 0.14));
}

.hero-art img {
  width: 100%;
  height: clamp(420px, 58vw, 660px);
  object-fit: cover;
  object-position: center;
}

.section {
  position: relative;
  isolation: isolate;
  padding: 84px 0;
  border-top: 1px solid var(--line);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23grain)' opacity='0.55'/%3E%3C/svg%3E");
}

.section > * {
  position: relative;
  z-index: 1;
}

.section.alt {
  background: linear-gradient(135deg, var(--green-3), #f6efe4);
}

body:has(a[href="over-ons.html"][aria-current="page"]) .section.alt {
  background: var(--sand);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 44px;
  align-items: start;
}

.page-title {
  padding: 76px 0 48px;
}

.page-title .lead {
  margin-top: 18px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 32px;
}

.feature-list,
.hours-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.hours-row,
.about-note {
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.78);
  border-radius: 8px;
  padding: 18px 20px;
}

.feature-list li,
.testimonial {
  border-top: 3px solid var(--clay);
}

.feature-list strong,
.hours-row strong {
  color: var(--green);
}

.hours-list {
  max-width: 760px;
}

.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 42px;
  align-items: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 42px;
  align-items: start;
}

.booking-section {
  background: linear-gradient(135deg, #fffaf3, var(--sand));
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: start;
}

.booking-calendar,
.booking-details {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(92, 61, 33, 0.14);
  border-radius: 14px;
  background: rgba(255, 252, 247, 0.86);
  box-shadow: 0 22px 60px var(--shadow-warm);
}

.booking-calendar::before,
.booking-details::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: linear-gradient(90deg, rgba(181, 121, 74, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(181, 121, 74, 0.14) 1px, transparent 1px);
  background-size: 32px 32px;
}

.booking-calendar,
.booking-details {
  padding: 24px;
}

.booking-toolbar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  gap: 12px;
  align-items: center;
}

.booking-toolbar h3 {
  margin: 0;
  text-align: center;
  color: var(--green);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
}

.calendar-nav {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffaf3;
  color: var(--green);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.booking-weekdays,
.calendar-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.booking-weekdays {
  margin: 22px 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  min-height: 62px;
  display: grid;
  align-content: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 250, 243, 0.92);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.calendar-day span {
  font-weight: 700;
}

.calendar-day small {
  color: var(--muted);
  font-size: 0.66rem;
}

.calendar-day.is-other-month {
  opacity: 0.34;
}

.calendar-day.is-closed,
.calendar-day.is-full {
  cursor: not-allowed;
}

.calendar-day.is-available {
  border-color: rgba(15, 81, 50, 0.25);
}

.calendar-day.is-busy {
  border-color: rgba(169, 138, 84, 0.7);
  background: #fff1d8;
}

.calendar-day.is-full {
  border-color: rgba(181, 121, 74, 0.52);
  background: #f1ddd0;
  color: #7e4c30;
}

.calendar-day.is-closed {
  background: rgba(232, 229, 221, 0.8);
  color: #8b8377;
}

.calendar-day.is-selected {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

.booking-legend {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.booking-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot.available {
  background: var(--green-3);
  border: 1px solid var(--green);
}

.legend-dot.busy {
  background: #ffd98e;
}

.legend-dot.full {
  background: var(--clay);
}

.legend-dot.closed {
  background: #aaa196;
}

.booking-details {
  display: grid;
  gap: 18px;
}

.booking-field,
.booking-form {
  position: relative;
  z-index: 1;
}

.booking-field {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-weight: 700;
}

.booking-field select,
.booking-field input,
.booking-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(15, 81, 50, 0.22);
  border-radius: 8px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font: inherit;
}

.booking-field textarea {
  resize: vertical;
}

.booking-label {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 700;
}

.slot-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slot-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(15, 81, 50, 0.22);
  border-radius: 999px;
  background: #fffaf3;
  color: var(--green);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.slot-button:hover,
.slot-button.is-selected {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.booking-empty {
  margin: 0;
  color: var(--muted);
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-summary,
.booking-confirmation {
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--green);
  background: rgba(232, 245, 236, 0.82);
  font-weight: 600;
}

.booking-confirmation {
  display: none;
  margin: 0;
  background: rgba(169, 138, 84, 0.16);
}

.booking-confirmation.is-visible {
  display: block;
}

.about-copy p {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-note {
  background: linear-gradient(160deg, var(--green), #173b27);
  color: var(--white);
}

.about-note h2 {
  color: var(--white);
  font-size: 2rem;
}

.about-note p {
  color: rgba(247, 255, 249, 0.86);
}

.erika-photo {
  width: 100%;
  height: 360px;
  margin-bottom: 24px;
  object-fit: cover;
  object-position: 62% center;
  border: 1px solid rgba(247, 255, 249, 0.54);
  border-radius: 200px 200px 24px 24px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.16);
}

.photo-placeholder {
  min-height: 260px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 255, 249, 0.54);
  border-radius: 200px 200px 24px 24px;
  background: linear-gradient(145deg, var(--sand), var(--green-3));
  color: var(--green);
  font-weight: 700;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial {
  border: 1px solid var(--line);
  border-top: 3px solid var(--clay);
  border-radius: 8px;
  padding: 22px;
  background: #fffaf3;
}

.testimonial:nth-child(1) {
  transform: rotate(-0.6deg);
}

.testimonial:nth-child(2) {
  transform: rotate(0.4deg);
}

.testimonial:nth-child(3) {
  transform: rotate(-0.3deg);
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial strong {
  color: var(--green);
}

.testimonial span {
  margin-top: 6px;
  color: var(--brass);
  font-weight: 700;
}

.testimonial p {
  margin: 16px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 34px 0;
  background: var(--green);
  color: var(--white);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 820px) {
  .nav {
    min-height: 72px;
    padding: 14px 0;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    width: 100%;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0 4px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    border-radius: 8px;
  }

  .hero,
  .intro-grid,
  .about-layout,
  .contact-grid,
  .booking-panel,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hours-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .booking-calendar,
  .booking-details {
    padding: 18px;
  }

  .calendar-day {
    min-height: 54px;
    border-radius: 8px;
  }
}
