:root {
  color-scheme: light;
  --bg: #f6efe7;
  --surface: #fffaf4;
  --primary: #7c9e8a;
  --primary-dark: #567766;
  --text: #2f241f;
  --muted: #6e5f55;
  --border: #e7d9ca;
  --shadow: 0 16px 38px rgba(67, 43, 25, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8f1e7 0%, #f3e7db 100%);
  line-height: 1.7;
}

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

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

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

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

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-icon {
  display: block;
  width: auto;
  max-height: 3.4rem;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin-bottom: 5px;
  background: var(--text);
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

h1, h2, h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow);
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.hero-points {
  display: grid;
  gap: 0.5rem;
  padding-left: 1rem;
  color: var(--muted);
}

.hero-card,
.card,
.testimonial,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
  background: linear-gradient(145deg, #fffdfa 0%, #f4e2cf 100%);
}

.section {
  padding: 4rem 0;
}

.alt-section {
  background: #f2ebe4;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(67, 43, 25, 0.1);
}

.card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  transition: max-height 0.3s ease, opacity 0.2s ease;
}

.card-text.is-collapsed {
  display: block;
  overflow: hidden;
  line-height: 1.6;
  max-height: 4.8em;
}

.card-text.is-expanded {
  overflow: visible;
  max-height: none;
}

.card-toggle {
  margin-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(81, 110, 98, 0.3);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(124, 158, 138, 0.14), rgba(124, 158, 138, 0.06));
  color: var(--primary-dark);
  font-weight: 800;
  cursor: pointer;
  font: inherit;
  box-shadow: 0 4px 12px rgba(81, 110, 98, 0.08);
  transition: all 0.2s ease;
}

.card-toggle::after {
  content: '▾';
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.card-toggle[aria-expanded='true']::after {
  transform: rotate(180deg);
}

.card-toggle:hover,
.card-toggle:focus-visible {
  background: linear-gradient(180deg, rgba(124, 158, 138, 0.22), rgba(124, 158, 138, 0.1));
  border-color: rgba(81, 110, 98, 0.45);
  outline: none;
  transform: translateY(-1px);
}

.card-icon,
.hero-card-icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(124, 158, 138, 0.18);
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  position: relative;
  padding-left: 1.1rem;
}

.check-list li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
}

.about-grid,
.contact-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.about-image {
  border-radius: 24px;
  min-height: 100%;
  object-fit: cover;
}

.testimonial-list {
  display: grid;
  gap: 1rem;
}

.testimonial {
  padding: 1.25rem 1.4rem;
}

.contact-form {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}

.checkbox-label input {
  margin-top: 0.2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font: inherit;
  background: #fcfaf7;
}

.calendar-card,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.calendar-card {
  padding: 1.5rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.calendar-panel {
  display: grid;
  gap: 1rem;
}

.calendar-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.calendar-copy {
  color: var(--muted);
  max-width: 32rem;
  margin: 0;
  flex: 1;
}

.calendar-action-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  width: 190px;
  min-width: 190px;
}

.calendar-action-stack .button {
  width: 100%;
  min-width: 0;
}

.calendar-panel label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.calendar-panel input,
.calendar-panel select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(124, 158, 138, 0.28);
  background: linear-gradient(180deg, #fffdfa 0%, #f9f3ed 100%);
  font: inherit;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.calendar-panel input:focus,
.calendar-panel select:focus {
  outline: none;
  border-color: rgba(86, 119, 102, 0.8);
  box-shadow: 0 0 0 4px rgba(124, 158, 138, 0.14);
  transform: translateY(-1px);
}

.calendar-panel select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--primary-dark) 50%),
    linear-gradient(135deg, var(--primary-dark) 50%, transparent 50%),
    linear-gradient(to right, rgba(124, 158, 138, 0.16), rgba(124, 158, 138, 0.16));
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 13px) calc(50% - 3px),
    calc(100% - 2.5rem) 0.75rem;
  background-size: 5px 5px, 5px 5px, 1px 2.1rem;
  background-repeat: no-repeat;
  padding-right: 2.8rem;
}

.booking-message {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
  background: rgba(124, 158, 138, 0.06);
  border: 1px solid rgba(124, 158, 138, 0.12);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
}

.contact-photo {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  margin-bottom: 1.25rem;
  display: block;
  min-height: 220px;
}

.booking-summary {
  display: grid;
  gap: 1rem;
}

.calendar-embed-wrapper {
  position: relative;
  width: 100%;
  min-height: 720px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: none;
}

.calendar-embed-wrapper.is-hidden {
  display: none;
}

.calendar-embed-wrapper.is-visible {
  display: block;
}

.calendar-embed-wrapper iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
}

.summary-box {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 680px;
  margin: 0 auto;
  padding: 1.25rem 1.35rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #fffdfb 0%, #f7efe6 100%);
  border: 1px solid rgba(124, 158, 138, 0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.summary-box h3 {
  margin: 0;
  text-align: left;
  font-size: 1.1rem;
}

#selected-slot {
  width: 100%;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  min-height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.4;
}

.summary-box .small-text {
  margin: 0;
  text-align: left;
  font-size: 0.88rem;
}

.small-button {
  justify-self: center;
  width: 100%;
  min-width: 0;
  padding: 0.8rem 1rem;
}

.summary-footer-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.reserve-button {
  display: inline-flex;
  justify-self: flex-end;
  width: 100%;
  min-width: 0;
  padding: 0.8rem 1.1rem;
  font-size: 0.96rem;
  box-shadow: 0 12px 24px rgba(86, 119, 102, 0.18);
}

.reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.reservation-modal.is-hidden {
  display: none;
}

.reservation-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 19, 14, 0.42);
}

.reservation-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(38, 25, 16, 0.18);
  padding: 1.5rem;
}

.reservation-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  color: var(--muted);
  cursor: pointer;
}

.reservation-modal__dialog h3 {
  margin: 0 0 0.35rem;
}

.reservation-modal__summary {
  margin: 0 0 1rem;
  color: var(--muted);
}

.reservation-form {
  display: grid;
  gap: 1rem;
}

.reservation-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.reservation-form input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font: inherit;
  background: #fcfaf7;
}

.reservation-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 500;
}

.reservation-privacy input {
  width: auto;
  margin-top: 0.2rem;
}

.reservation-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.turnstile-wrap {
  margin: 0.2rem 0 0.25rem;
  display: flex;
  justify-content: center;
  padding: 0.8rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(124, 158, 138, 0.18);
  background: rgba(255,255,255,0.42);
}

.calendar-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--primary-dark);
  font-weight: 700;
  font: inherit;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  text-align: center;
  margin-top: 0.2rem;
}

.calendar-toggle:hover {
  background: rgba(124, 158, 138, 0.08);
  color: var(--primary);
  transform: translateY(-1px);
}

.booking-area {
  display: block;
}

.booking-disabled-message {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  text-align: center;
}

.booking-disabled-message h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.booking-disabled-message p {
  margin-bottom: 1.25rem;
  color: var(--muted);
}

.turnstile-wrap {
  margin: 0.75rem 0;
  display: flex;
  justify-content: flex-start;
}

.human-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.75rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.summary-box h3 {
  margin-top: 0;
}

.small-text {
  margin: 0;
  color: var(--muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
}

.contact-list i {
  color: var(--primary-dark);
  width: 1rem;
  text-align: center;
}

.contact-list a {
  color: var(--primary-dark);
  font-weight: 600;
}

.map-wrapper {
  margin-top: 1.5rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.credential-line {
  margin-top: 1rem;
  color: var(--primary-dark);
}

.text-link {
  color: var(--primary);
  font-weight: 700;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-content {
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .testimonials-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
