:root {
  --ink: #2C2C2C;
  --muted: #6B6B6B;
  --terracotta: #A8725F;
  --terracotta-light: #F0E8E0;
  --olive: #3D4A35;
  --cream: #FDF8F5;
  --cream-mid: #F5EDE5;
  --white: #ffffff;
  --line: rgba(44, 44, 44, 0.14);
  --shadow: 0 22px 70px rgba(44, 44, 44, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --script: "Dancing Script", cursive;
  --container: min(1120px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: 16px;
  top: 10px;
  z-index: 100;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

/* ── HEADER ──────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 245, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
}

.site-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.brand-name {
  font-family: var(--script);
  font-size: 1.75rem;
  color: var(--ink);
  line-height: 1;
}

.brand-sub {
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-family: var(--sans);
  font-weight: 500;
  margin-top: 2px;
}

.mobile-bar { display: none; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  font-family: var(--sans);
  font-size: 0.9rem;
}

.primary-nav a {
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}

.primary-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.35em;
  text-decoration-thickness: 1px;
}

.primary-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 20px;
  background: var(--olive);
  color: var(--cream) !important;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 160ms ease;
}

.primary-nav .nav-cta:hover { background: #2e3928; }

/* ── BUTTONS ─────────────────────────────── */
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 26px;
  border: 1px solid var(--olive);
  background: var(--olive);
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover { background: #2e3928; transform: translateY(-1px); }

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

.button--secondary:hover {
  background: var(--terracotta-light);
  transform: translateY(-1px);
}

/* ── HERO ────────────────────────────────── */
.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(560px, 76svh, 760px);
  padding: 72px 0;
  color: var(--white);
  isolation: isolate;
  background-position: center;
  background-size: cover;
  background-color: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(27, 24, 22, 0.78), rgba(44, 35, 28, 0.52));
  content: "";
}

.hero--home { background-color: #2a201a; }
.hero--services { background-color: #22231e; }
.hero--portfolio { background-color: #1e2018; }
.hero--about { background-color: #241e1a; }
.hero--contact { background-color: #201c18; }

.hero-content,
.section-inner,
.final-cta > div {
  width: var(--container);
  margin: 0 auto;
}

.hero-content {
  max-width: 830px;
  margin-left: max(20px, calc((100vw - 1120px) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(240, 232, 224, 0.72);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section .eyebrow { color: var(--terracotta); }

h1, h2, h3, blockquote {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3rem, 6.8vw, 6.4rem);
  line-height: 1.02;
}

.hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
}

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

/* ── SECTIONS ────────────────────────────── */
.section { padding: 92px 0; }
.section-cream-mid { background: var(--cream-mid); }
.section-white { background: var(--white); }
.intro-band { background: var(--white); }

.split,
.faq-grid,
.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.section h2,
.final-cta h2,
.simple-hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4.8vw, 4.7rem);
  line-height: 1.05;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 42px;
}

.section-heading p,
.copy-block,
.feature-card p,
.soft-list,
.faq-list p,
.enquiry-grid p,
.simple-hero p {
  color: var(--muted);
}

.copy-block p:first-child { margin-top: 0; }

/* ── CARDS ───────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.feature-card {
  min-height: 280px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: box-shadow 200ms ease;
}

.feature-card:hover { box-shadow: 0 8px 32px rgba(44, 44, 44, 0.1); }

.detail-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(44, 44, 44, 0.07);
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.feature-card h3,
.detail-card h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.15;
}

.feature-card p { margin: 14px 0 22px; }

.detail-card .eyebrow { color: var(--terracotta); }
.detail-card p { color: var(--muted); }

.price-line {
  margin: 16px 0;
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.2;
}

.detail-card h4,
.copy-block h3 {
  margin: 24px 0 12px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.text-link {
  color: var(--olive);
  font-weight: 600;
  text-underline-offset: 0.28em;
  text-decoration: underline;
}

/* ── SOFT LIST ───────────────────────────── */
.soft-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.soft-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.soft-list li::before {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  content: "";
  transform: rotate(45deg);
  opacity: 0.7;
}

/* ── ADDON PILLS ─────────────────────────── */
.addon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
  margin-top: 4px;
}

.addon-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  background: var(--cream-mid);
  border: 1px solid rgba(168, 114, 95, 0.3);
  color: var(--ink);
  font-size: 0.88rem;
}

/* ── IMAGE GRID ──────────────────────────── */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.image-grid img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--cream-mid);
  min-height: 200px;
}

/* ── FAQ ─────────────────────────────────── */
.faq-list { display: grid; gap: 10px; }

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-right: 2px solid var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  content: "";
  transform: rotate(45deg);
}

.faq-list details[open] summary::after { transform: rotate(225deg); }
.faq-list p { margin: 0; padding: 0 22px 20px; }

/* ── FORM ────────────────────────────────── */
.enquiry-form {
  display: grid;
  gap: 15px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.enquiry-form input,
.enquiry-form textarea,
.enquiry-form select {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fefcfa;
  border: 1px solid rgba(44, 44, 44, 0.22);
  border-radius: 0;
  font: inherit;
  font-size: 0.95rem;
}

.enquiry-form textarea { resize: vertical; min-height: 110px; }

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

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

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

/* ── TRAVEL BAND ─────────────────────────── */
.travel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.travel-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}

.travel-card .distance {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 8px;
}

.travel-card .fee {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ink);
}

/* ── FINAL CTA ───────────────────────────── */
.final-cta,
.simple-hero {
  padding: 104px 0;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.final-cta .eyebrow,
.simple-hero .eyebrow {
  color: rgba(240, 232, 224, 0.72);
}

.final-cta p,
.simple-hero p {
  max-width: 680px;
  margin: 22px auto 30px;
  color: rgba(255, 255, 255, 0.8);
}

/* ── SIMPLE HERO ─────────────────────────── */
.simple-hero {
  padding: 72px 0;
  text-align: left;
}

.simple-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  margin: 0;
  max-width: 720px;
}

.simple-hero p { margin: 20px 0 0; text-align: left; }

/* ── FOOTER ──────────────────────────────── */
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 54px;
  padding: 70px max(24px, calc((100vw - 1120px) / 2));
  background: var(--cream-mid);
  border-top: 1px solid var(--line);
}

.footer-brand a {
  display: inline-flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
}

.footer-brand .brand-name {
  font-family: var(--script);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: var(--ink);
  line-height: 1;
}

.footer-brand .brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  margin-top: 4px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-links h2 {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.footer-links a,
.footer-links p {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 16px;
}

/* ── PORTFOLIO EMBED ─────────────────────── */
.portfolio-embed {
  min-height: 400px;
  background: var(--cream-mid);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.portfolio-embed p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── ABOUT ───────────────────────────────── */
.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 72px);
  align-items: center;
}

.founder-photo {
  background: var(--cream-mid);
  aspect-ratio: 2 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
}

/* ── THANK YOU ───────────────────────────── */
.thankyou-section {
  min-height: 60svh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

/* ── HIDDEN NETLIFY FORM ─────────────────── */
.hidden-field { display: none; }

/* ── CONTACT METHODS ─────────────────────── */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  transition: border-color 0.18s, background 0.18s;
}

.contact-method:hover {
  background: var(--terracotta-light);
  border-color: var(--terracotta);
}

.contact-method-label {
  display: inline-block;
  min-width: 48px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1040px) {
  :root { --container: min(100% - 32px, 1120px); }
  body { font-size: 15px; }

  .header-inner { padding: 0 16px; }

  .mobile-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
    padding: 0 16px;
  }

  .mobile-brand {
    font-family: var(--script);
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--ink);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 8px 12px;
    color: var(--ink);
    background: var(--cream-mid);
    border: 1px solid var(--line);
    font-family: var(--sans);
    font-size: 0.9rem;
  }

  .menu-toggle i,
  .menu-toggle i::before,
  .menu-toggle i::after {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    content: "";
  }

  .menu-toggle i { position: relative; }
  .menu-toggle i::before, .menu-toggle i::after { position: absolute; left: 0; }
  .menu-toggle i::before { top: -6px; }
  .menu-toggle i::after { top: 6px; }

  .header-inner .site-brand { display: none; }

  .primary-nav {
    position: fixed;
    inset: 64px 0 0;
    display: none;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 0;
    height: calc(100svh - 64px);
    overflow: auto;
    padding: 12px 16px 24px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    font-size: 1.2rem;
  }

  .site-header.is-open .primary-nav { display: grid; }

  .primary-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav .nav-cta {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }

  .hero { min-height: 72svh; padding: 64px 0; }
  .hero-content { width: var(--container); margin: 0 auto; }

  h1 { font-size: clamp(2.35rem, 11vw, 3.45rem); }

  .hero-actions,
  .hero-actions .button,
  .enquiry-form .button,
  .final-cta .button {
    width: 100%;
  }

  .section { padding: 64px 0; }

  .split, .faq-grid, .enquiry-grid, .site-footer, .footer-links {
    grid-template-columns: 1fr;
  }

  .card-grid, .detail-grid, .image-grid, .travel-grid {
    grid-template-columns: 1fr;
  }

  .feature-card { min-height: auto; }
  .form-row { grid-template-columns: 1fr; }

  .founder-grid { grid-template-columns: 1fr; }

  .footer-copy { grid-column: 1; }

  .site-footer { gap: 34px; padding: 54px 16px; }
}

/* ── COOKIE BANNER ───────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--ink);
  color: var(--white);
  padding: 18px 24px;
  transition: transform 400ms ease, opacity 400ms ease;
}

.cookie-banner--hiding { transform: translateY(100%); opacity: 0; }

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  flex: 1;
  min-width: 200px;
}

.cookie-banner p a { color: var(--white); text-decoration: underline; }

.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-banner-actions .button {
  min-height: 40px;
  padding: 9px 18px;
  font-size: 0.88rem;
}

.cookie-banner-actions .button--secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.4);
}

.cookie-banner-actions .button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}
