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

:root {
  --green-dark:  #2c4a2e;
  --green-mid:   #4a7c59;
  --green-light: #7aab87;
  --cream:       #f5f0e8;
  --cream-dark:  #e8e0d0;
  --amber:       #c8860a;
  --amber-light: #e8a020;
  --text-dark:   #1a2e1c;
  --text-body:   #3a4e3c;
  --white:       #ffffff;
  --radius:      6px;
  --shadow:      0 4px 24px rgba(44,74,46,0.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

nav .logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
}

nav ul { list-style: none; display: flex; gap: 0.25rem; }

nav ul a {
  display: block;
  padding: 0.45rem 0.9rem;
  color: var(--cream-dark);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

nav ul a:hover { background: var(--green-mid); color: var(--white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 810px) {
  .nav-hamburger { display: flex; }

  nav ul {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--green-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  }

  nav ul.open { max-height: 400px; }

  nav ul a {
    padding: 0.9rem 1.5rem;
    border-radius: 0;
    font-size: 0.85rem;
  }
}

/* ── HERO ── */
#home {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(260px, 38vw, 420px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
}

#home picture { display: contents; }

#home .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  background: var(--green-mid);
}

#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,38,20,0.50) 0%,
    rgba(28,48,28,0.32) 50%,
    rgba(20,38,20,0.68) 100%
  );
  z-index: 1;
  pointer-events: none;
}

#home > *:not(.hero-bg) { position: relative; z-index: 2; }

#home h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
  animation: fadeUp 0.9s ease both;
}

#home p {
  max-width: 560px;
  color: rgba(245,240,232,0.95);
  font-weight: 300;
  margin-bottom: 0.4rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  animation: fadeUp 0.9s ease 0.15s both;
  font-size: clamp(0.82rem, 2.4vw, 1.05rem);
  line-height: 1.4;
}

.btn {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  margin-top: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

.btn:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTION SHARED ── */
section { padding: 2.5rem 2rem; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 0.4rem;
}

.section-rule {
  background: var(--amber);
  border-radius: 2px;
  text-align: center;

}

/* ── ABOUT ── */
#about { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 0 auto 0.5rem;
}

@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
}

.box {
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(44,74,46,0.18);
}

.box-body { padding: 1.1rem 1.2rem 1.3rem; }

.box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
  text-align: center;
}

.box p { font-size: 0.875rem; color: var(--text-body); line-height: 1.6; }

.site-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.chip {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  padding: 0.2rem 0.6rem;
  font-size: 0.77rem;
  color: var(--text-body);
  white-space: nowrap;
}

/* ── BOOKING INTRO ── */
.booking-intro {
  max-width: 520px;
  margin: 0 auto 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-intro p {
  font-size: 0.95rem;
  margin: 0 0 0.6rem;
}

.booking-intro p:last-child { margin-bottom: 0; }

.booking-intro-note {
  font-size: 0.85rem;
  color: #767676;
  line-height: 1.6;
}

.test-card {
  display: inline-block;
  font-family: 'Lato', monospace;
  background: var(--cream-dark);
  border-radius: 4px;
  padding: 0.05rem 0.4rem;
  letter-spacing: 0.03em;
  color: var(--text-dark);
}

/* ── BOOKING FORM (reuses the site's #contact form pattern) ── */
.contact-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 2.4rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  border: 1px solid var(--cream-dark);
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}

.required { color: var(--amber); }
.optional { color: #767676; font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 0.8rem; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(74,124,89,0.18);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 85px; }

.date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.date-row .date-field label {
  font-size: 0.76rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: #595959;
  margin-bottom: 0.25rem;
}

@media (max-width: 480px) {
  .date-row { grid-template-columns: 1fr; }
}

.form-btn {
  width: 100%;
  background: var(--amber);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.85rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 0.4rem;
  transition: background 0.2s, transform 0.15s;
  min-height: 44px;
}

.form-btn:hover:not(:disabled) { background: var(--amber-light); transform: translateY(-1px); }
.form-btn:disabled { background: var(--cream-dark); color: #8a8a8a; cursor: not-allowed; }

#msg {
  text-align: center;
  margin-top: 1rem;
  font-weight: 700;
  min-height: 1.4em;
  font-size: 0.95rem;
}

/* Honeypot — kept in the DOM and excluded from tab order, but visually and
   programmatically off-screen. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── FOOTER ── */
footer {
  background: #1a2e1c;
  color: rgba(245,240,232,0.75);
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.85rem;
  line-height: 2;
}

footer a { color: var(--amber-light); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 810px) {
  nav { padding: 0 1.2rem; }
  nav .logo { font-size: 0.95rem; }
  section { padding: 2rem 1.2rem; }
  .contact-wrap { padding: 1.6rem 1.3rem; }
}

@media (max-width: 520px) {
  #home { height: clamp(240px, 55vw, 320px); }
}