:root {
  --paper: #F7F2E9;
  --ink: #26221C;
  --clay: #96603F;
  --hairline: #DCD3C2;
  --footer-bg: #211D17;
  --cream: #F7F2E9;
  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans: 'Jost', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
}

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

a { color: var(--clay); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--ink); }

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

/* ---------- Top bar ---------- */
.topbar {
  border-bottom: 1px solid var(--hairline);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
}
.topbar__inner a { color: var(--ink); }
.topbar__inner a:hover { color: var(--clay); }

/* ---------- Masthead ---------- */
.masthead {
  text-align: center;
  padding: 44px 20px 20px;
}
.masthead__mark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 42px;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
}
.masthead__tagline {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 400;
}

/* ---------- Nav ---------- */
.site-nav {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.site-nav__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.nav-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid var(--hairline);
  padding: 9px 12px;
  cursor: pointer;
  border-radius: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 44px;
}
.nav-menu li a {
  display: block;
  padding: 16px 2px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  border-bottom: 2px solid transparent;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--clay);
  border-bottom-color: var(--clay);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  margin-top: 0;
}
.hero img {
  width: 100%;
  height: 72vh;
  min-height: 420px;
  object-fit: cover;
}
.hero__card {
  position: absolute;
  left: 4%;
  bottom: -56px;
  max-width: 460px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: 38px 42px;
}
.hero__card h1 {
  font-size: 34px;
  margin-bottom: 14px;
}
.hero__card p { margin-bottom: 18px; }
.soft-link {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--clay);
  padding-bottom: 3px;
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 0;
}
.section--tight-top { padding-top: 140px; }
.section__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 400;
  margin-bottom: 18px;
}
.section h2 { font-size: 40px; margin-bottom: 24px; }
.section h3 { font-size: 28px; margin-bottom: 14px; }
.section p { margin-bottom: 18px; max-width: 62ch; }

.hairline { border: 0; border-top: 1px solid var(--hairline); }

/* ---------- Asymmetric split ---------- */
.split {
  display: grid;
  grid-template-columns: 62% 38%;
  gap: 48px;
  align-items: center;
}
.split__figure {
  position: relative;
  padding: 0 0 34px 34px;
}
.split__figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--hairline);
  transform: translate(26px, 26px);
  z-index: 0;
}
.split__figure img {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ---------- Numbered list ---------- */
.numbered { list-style: none; border-top: 1px solid var(--hairline); }
.numbered li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.numbered__num {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 500;
  color: var(--clay);
  line-height: 1;
}
.numbered h3 { margin-bottom: 8px; }
.numbered p { margin-bottom: 0; }

/* ---------- Quote band ---------- */
.band {
  position: relative;
}
.band img {
  width: 100%;
  height: 60vh;
  min-height: 380px;
  object-fit: cover;
}
.band__quote {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(38, 34, 28, 0.38);
  padding: 24px;
}
.band__quote blockquote {
  max-width: 640px;
  text-align: center;
  color: var(--cream);
}
.band__quote blockquote p {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  max-width: none;
}
.band__quote cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ---------- Alternating rows ---------- */
.alternate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.alternate + .alternate { margin-top: 96px; }
.alternate--flip .alternate__figure { order: 2; }
.alternate__figure { border: 1px solid var(--hairline); padding: 14px; background: var(--paper); }
.alternate__figure img { width: 100%; }

/* ---------- Visit ---------- */
.visit {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.visit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.visit__grid h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.visit__grid p { font-size: 16px; margin-bottom: 6px; }
.visit__grid a { color: var(--clay); }

/* ---------- Page head (inner pages) ---------- */
.pagehead {
  text-align: center;
  padding: 76px 20px 60px;
  border-bottom: 1px solid var(--hairline);
}
.pagehead h1 { font-size: 52px; margin-bottom: 14px; }
.pagehead p {
  max-width: 56ch;
  margin: 0 auto;
  color: var(--ink);
  opacity: 0.8;
}

/* ---------- Services detail ---------- */
.service-block {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  padding: 44px 0;
  border-bottom: 1px solid var(--hairline);
}
.service-block:first-of-type { border-top: 1px solid var(--hairline); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-details p { margin-bottom: 10px; }
.contact-details .label {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 26px;
  margin-bottom: 6px;
}
.contact-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 400;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--hairline);
  border-radius: 0;
  background: #FDFBF5;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  color: var(--ink);
  padding: 13px 15px;
  margin-bottom: 22px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--clay);
}
.contact-form button {
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 38px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.contact-form button:hover { background: var(--clay); border-color: var(--clay); }
.form-note { font-size: 14px; opacity: 0.75; margin-top: 14px; }

.map-embed { width: 100%; border: 0; min-height: 360px; }

/* ---------- Policy pages ---------- */
.prose { max-width: 760px; margin: 0 auto; padding: 80px 28px; }
.prose h2 { font-size: 30px; margin: 44px 0 14px; }
.prose h2:first-of-type { margin-top: 0; }
.prose p { margin-bottom: 16px; max-width: none; }
.prose ul { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; }
.prose .updated {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 30px;
}
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 26px;
  font-size: 15px;
}
.policy-table th,
.policy-table td {
  border: 1px solid var(--hairline);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}
.policy-table th {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer-bg);
  color: var(--cream);
  margin-top: 96px;
}
.site-footer a { color: var(--cream); opacity: 0.82; }
.site-footer a:hover { opacity: 1; color: var(--cream); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 56px;
  padding: 76px 0 56px;
}
.footer-grid h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--cream);
}
.footer-grid p { font-size: 15px; opacity: 0.82; max-width: 40ch; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; font-size: 15px; }
.footer-small {
  border-top: 1px solid rgba(247, 242, 233, 0.16);
  padding: 22px 0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0.7;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--footer-bg);
  color: var(--cream);
  border-top: 1px solid var(--clay);
}
.cookie-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cookie-banner__inner p { font-size: 14px; max-width: 66ch; margin: 0; }
.cookie-banner__inner a { color: var(--cream); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; }
.cookie-btn {
  border-radius: 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 11px 26px;
  cursor: pointer;
}
.cookie-btn--accept {
  background: var(--cream);
  color: var(--footer-bg);
  border: 1px solid var(--cream);
}
.cookie-btn--accept:hover { background: var(--clay); border-color: var(--clay); color: var(--cream); }
.cookie-btn--decline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 242, 233, 0.5);
}
.cookie-btn--decline:hover { border-color: var(--cream); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split, .alternate, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .alternate--flip .alternate__figure { order: 0; }
  .visit__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__card {
    position: static;
    max-width: none;
    margin: -40px 20px 0;
  }
  .section { padding: 64px 0; }
  .section--tight-top { padding-top: 90px; }
  .alternate + .alternate { margin-top: 64px; }
  .masthead__mark { font-size: 32px; }
  .section h2 { font-size: 32px; }
  .pagehead h1 { font-size: 38px; }

  .nav-toggle { display: block; }
  .site-nav__inner { justify-content: flex-end; min-height: 54px; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
    padding: 8px 28px 16px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li a { padding: 12px 0; border-bottom: 0; }

  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-btn { width: 100%; }
}
