:root {
  --paper: #F7F5EF;
  --forest: #1E3A34;
  --forest-dim: #2E4E47;
  --ochre: #B98A3D;
  --ochre-dim: #A97C31;
  --ink: #22261F;
  --line: #E4E0D3;
  --panel: #EFEBDE;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--forest);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08; font-weight: 400; }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }

p { max-width: 62ch; }

a { color: inherit; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Header */

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--forest);
}

.nav { display: flex; gap: 28px; }

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

.nav a:hover { border-color: var(--ochre); }

/* Hero */

.hero { padding: 88px 0 96px; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-sub {
  color: var(--forest-dim);
  margin-top: 22px;
  font-size: 1.08rem;
}

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

.hero-art svg { width: 100%; height: auto; max-width: 320px; margin: 0 auto; display: block; }

/* Buttons */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--forest);
  color: var(--paper);
}
.btn-primary:hover { background: var(--forest-dim); }

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--paper); }

.btn-wide { width: 100%; text-align: center; }

/* Services */

.services { padding: 72px 0; border-top: 1px solid var(--line); }

.service-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.service-list li {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.service-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--forest);
}

.service-desc { color: var(--forest-dim); }

/* Hours */

.hours { padding: 72px 0; border-top: 1px solid var(--line); background: var(--panel); }

.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.hours-list { margin: 20px 0 0; }
.hours-list > div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  max-width: 380px;
}
.hours-list dt { font-weight: 500; color: var(--forest); }
.hours-list dd { margin: 0; color: var(--forest-dim); }

.address, .phone { color: var(--forest-dim); margin-top: 20px; }
.phone a { color: var(--ochre); text-decoration: none; border-bottom: 1px solid var(--ochre); }

/* Book / Enquire panels */

.book, .enquire { padding: 80px 0; border-top: 1px solid var(--line); }
.enquire { background: var(--panel); }

.book-inner, .enquire-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.book-copy p { color: var(--forest-dim); }

.panel-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.panel-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--forest);
  font-weight: 500;
}

.optional { color: var(--forest-dim); font-weight: 400; }

.panel-form input,
.panel-form textarea {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
}

.panel-form input:focus,
.panel-form textarea:focus {
  outline: 2px solid var(--ochre);
  outline-offset: 1px;
}

.form-status {
  min-height: 1.4em;
  font-size: 0.92rem;
  margin: 0;
}
.form-status.success { color: var(--forest); }
.form-status.error { color: #A5432E; }

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  font-size: 0.9rem;
  color: var(--forest-dim);
}

/* Responsive */

@media (max-width: 800px) {
  .hero-inner,
  .hours-inner,
  .book-inner,
  .enquire-inner {
    grid-template-columns: 1fr;
  }
  .hero-art { order: -1; max-width: 220px; margin: 0 auto; }
  .service-list li { grid-template-columns: 1fr; gap: 6px; }
  .form-row { grid-template-columns: 1fr; }
  .nav { gap: 16px; font-size: 0.85rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
