:root {
  --ink: #4b332e;
  --ink-soft: #7a625c;
  --ivory: #f5e8e0;
  --paper: #fffaf7;
  --olive: #c79b8d;
  --olive-dark: #4a302b;
  --clay: #b97866;
  --gold: #b68a4a;
  --blush: #ead0c7;
  --line: rgba(75, 51, 46, 0.16);
  --white-line: rgba(255, 255, 255, 0.22);
  --display: 'Cormorant Garamond', Georgia, serif;
  --script: 'Italianno', cursive;
  --body: 'Manrope', sans-serif;
  --container: min(100% - 48px, 1320px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--paper);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.announcement {
  position: relative;
  z-index: 20;
  display: grid;
  min-height: 34px;
  place-items: center;
  color: #f7f4ed;
  background: var(--olive-dark);
}

.announcement p {
  display: flex;
  width: var(--container);
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 6px 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-align: center;
  text-transform: uppercase;
}

.announcement p span::after { margin-left: 24px; color: var(--gold); content: '·'; }
.announcement a { color: inherit; }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 86px;
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(75, 51, 46, 0.08);
  backdrop-filter: blur(3px);
  transition: min-height 300ms ease, color 300ms ease, background 300ms ease, border-color 300ms ease;
}

.site-header + .mobile-panel + main .hero { margin-top: -86px; }

.site-header.is-scrolled {
  min-height: 72px;
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 250, 247, 0.94);
  backdrop-filter: blur(16px);
}

.site-header.is-inner {
  min-height: 72px;
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 250, 247, 0.97);
  backdrop-filter: blur(16px);
}

body.admin-bar .site-header { top: 32px; }

.is-menu-open .site-header {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  line-height: 0.94;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: 1px solid rgba(182,138,74,.34);
  border-radius: 50%;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 250, 247, .96);
  box-shadow: 0 8px 30px rgba(75,51,46,.12), inset 0 0 0 3px rgba(255,255,255,.3);
}

.brand-mark picture,
.brand-mark img { width: 100%; height: 100%; }
.brand-mark img { padding: 4px; object-fit: contain; filter: drop-shadow(0 2px 3px rgba(75,51,46,.16)); }

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 25px;
  letter-spacing: 0.015em;
}

.brand-copy small {
  margin-top: 8px;
  font-family: var(--body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.desktop-nav { display: flex; gap: clamp(22px, 3vw, 48px); }

.desktop-nav a,
.booking-link {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav a::after,
.booking-link::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.desktop-nav a:hover::after,
.booking-link:hover::after,
.text-link:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 24px; }

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  place-items: center;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.icon-button svg { width: 21px; height: 21px; }

.cart-button { position: relative; }
.cart-count {
  position: absolute;
  top: 1px;
  right: 1px;
  display: grid;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  place-items: center;
  color: var(--paper);
  background: var(--clay);
  font-size: 9px;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.6);
  transition: 200ms ease;
}

.cart-count.has-items { opacity: 1; transform: scale(1); }
.menu-button { display: none; }

.mobile-panel {
  position: fixed;
  z-index: 35;
  inset: 0;
  padding: 148px 32px 40px;
  visibility: hidden;
  background: var(--paper);
  opacity: 0;
  transform: translateY(-20px);
  transition: 280ms ease;
}

.mobile-panel.is-open { visibility: visible; opacity: 1; transform: none; }
.mobile-panel nav { display: grid; }
.mobile-panel a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(30px, 9vw, 48px);
  line-height: 1.15;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(880px, calc(100vh - 34px));
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(62, 39, 34, 0.82) 0%, rgba(79, 48, 42, 0.48) 40%, rgba(79, 48, 42, 0.03) 74%),
    linear-gradient(0deg, rgba(62, 39, 34, 0.38), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 172px 0 90px;
}

.kicker {
  margin: 0 0 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 770px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 126px);
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: -0.035em;
}

.hero h1 em {
  display: inline-block;
  font-family: var(--script);
  font-size: 1.15em;
  font-weight: 400;
  letter-spacing: 0;
  line-height: .72;
}
.hero-copy { max-width: 510px; margin: 34px 0 0; font-size: clamp(16px, 1.5vw, 20px); }
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 38px; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.button svg { width: 19px; height: 19px; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: #fff; background: var(--ink); }
.button-dark:hover { color: var(--ink); border-color: var(--ink); background: var(--paper); }
.button-light { color: var(--ink); background: var(--paper); }
.button-light:hover { color: #fff; border-color: var(--paper); background: transparent; }
.button:disabled { color: rgba(255,255,255,.62); background: #77796f; cursor: not-allowed; transform: none; }

.text-link { position: relative; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-note {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 36px;
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.trust-strip {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
  padding: 14px 24px;
  color: #eae8df;
  background: var(--olive-dark);
}

.trust-strip p { margin: 0; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.trust-strip span { width: 3px; height: 3px; border-radius: 50%; background: var(--clay); }

.section { padding: 130px max(24px, calc((100vw - 1320px) / 2)); }
.section-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 70px;
}

.section-heading h2,
.method h2,
.booking h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.025em;
}

.section-heading > p { max-width: 460px; margin: 0 0 8px; color: var(--ink-soft); }
.services { background: var(--paper); }
.service-list { border-top: 1px solid var(--line); }
.service-card {
  display: grid;
  grid-template-columns: 90px 1fr 1.25fr 1.5fr 120px;
  align-items: start;
  gap: 28px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 260ms ease, background 260ms ease;
}

.service-card:hover { padding-right: 18px; padding-left: 18px; background: rgba(185, 120, 102, 0.06); }
.service-number { color: var(--clay); font-family: var(--display); font-size: 28px; }
.service-card p { margin: 0; color: var(--ink-soft); }
.service-eyebrow { padding-top: 7px; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.service-card h3 { margin: 0; font-family: var(--display); font-size: 32px; font-weight: 400; line-height: 1.15; }
.service-description small { display: block; margin-top: 10px; color: var(--clay); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.service-card a { display: flex; align-items: center; justify-content: flex-end; gap: 12px; padding-top: 7px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.service-card a svg { width: 18px; }

.method {
  display: grid;
  grid-template-columns: minmax(340px, .88fr) 1.12fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,.72), transparent 28%),
    var(--ivory);
}

.method-visual {
  position: relative;
  display: grid;
  aspect-ratio: 1.25 / 1;
  place-items: center;
  border: 1px solid rgba(182,138,74,.3);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.98), rgba(255,250,247,.5) 38%, transparent 68%),
    linear-gradient(145deg, #f7eae3, #edcfc4);
}

.method-visual::before,
.method-visual::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(182,138,74,.22);
  border-radius: 50%;
  content: '';
}

.method-visual::before { width: 78%; aspect-ratio: 1; }
.method-visual::after { width: 66%; aspect-ratio: 1; }
.method-brand-lockup { display: grid; width: min(82%, 430px); justify-items: center; padding: 24px; text-align: center; }
.method-brand-lockup picture { width: min(68%, 285px); aspect-ratio: 1; }
.method-brand-lockup img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 12px 22px rgba(91,48,39,.16)); }
.method-brand-copy { display: grid; justify-items: center; margin-top: -4px; }
.method-brand-name { font-family: var(--display); font-size: clamp(32px, 3.1vw, 48px); line-height: .92; letter-spacing: -.02em; }
.method-brand-category { margin-top: 13px; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .52em; text-transform: uppercase; }
.method-brand-tagline { margin-top: 9px; color: var(--ink-soft); font-size: 7px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; }
.method-copy .kicker { color: var(--clay); }
.method-copy .lead { max-width: 590px; margin: 30px 0 44px; color: var(--ink-soft); font-size: 17px; }
.method-copy ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.method-copy li { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.method-copy li > span { color: var(--gold); font-family: var(--display); font-size: 22px; }
.method-copy strong { display: block; margin-bottom: 4px; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.method-copy li p { margin: 0; color: var(--ink-soft); }

.shop { background: #f1e3dc; }
.sample-notice { margin: -30px 0 36px; padding: 14px 18px; border-left: 2px solid var(--clay); color: var(--ink-soft); background: rgba(255,255,255,.42); font-size: 12px; }
.sample-notice strong { color: var(--ink); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { background: var(--paper); }
.product-art { position: relative; display: grid; aspect-ratio: 4 / 4.45; place-items: center; overflow: hidden; }
.product-art::before,
.product-art::after { position: absolute; border-radius: 50%; content: ''; }
.product-art::before { width: 72%; aspect-ratio: 1; top: 10%; left: -27%; border: 1px solid rgba(255,255,255,.42); }
.product-art::after { width: 220px; height: 40px; bottom: 12%; background: rgba(24,28,21,.18); filter: blur(17px); }
.product-art.pearl { background: linear-gradient(145deg, #d9d3c5, #f5f0e6 52%, #b7b6a6); }
.product-art.clay { background: linear-gradient(145deg, #875d4c, #c69374 58%, #e1c3a9); }
.product-art.olive { background: linear-gradient(145deg, #393f33, #727a5d 55%, #bec1a4); }
.product-bottle { position: relative; z-index: 1; width: 29%; height: 49%; border-radius: 10px 10px 16px 16px; background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(223,218,205,.72)); box-shadow: 20px 25px 38px rgba(31,36,29,.16); }
.product-bottle::before { position: absolute; top: -16%; left: 25%; width: 50%; height: 18%; border-radius: 3px 3px 0 0; background: #272b25; content: ''; }
.product-bottle i { position: absolute; top: 45%; left: 23%; width: 54%; height: 1px; background: rgba(31,36,29,.3); }
.product-jar { position: absolute; z-index: 2; right: 23%; bottom: 20%; width: 29%; height: 19%; border-radius: 8px 8px 18px 18px; background: linear-gradient(90deg, #e7e1d4, #f8f5ec); box-shadow: 16px 18px 32px rgba(31,36,29,.18); }
.product-jar::before { position: absolute; top: -12%; left: -3%; width: 106%; height: 22%; border-radius: 5px; background: #373b34; content: ''; }
.art-label { position: absolute; z-index: 3; top: 50%; font-family: var(--display); font-size: 14px; letter-spacing: .1em; transform: translateY(-50%); }
.product-info { padding: 25px 24px 22px; }
.product-info > p { margin: 0 0 8px; color: var(--clay); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.product-info h3 { margin: 0 0 18px; font-family: var(--display); font-size: 29px; font-weight: 400; }
.product-info > div { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.product-info > div span { color: var(--ink-soft); font-size: 11px; }
.product-info > div strong { font-family: var(--display); font-size: 22px; }
.product-info button { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 19px 0 0; border: 0; background: transparent; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.product-info button svg { width: 18px; transition: transform 220ms ease; }
.product-info button:hover svg { transform: rotate(90deg); }

.quote-section { position: relative; display: grid; min-height: 590px; place-items: center; overflow: hidden; background: var(--paper); text-align: center; }
.quote-section blockquote { position: relative; z-index: 2; max-width: 980px; margin: 0; }
.quote-section blockquote p { margin: 0; font-family: var(--display); font-size: clamp(43px, 5.5vw, 76px); line-height: 1.06; }
.quote-section blockquote em { color: var(--clay); font-family: var(--script); font-size: 1.16em; font-weight: 400; }
.quote-section footer { margin-top: 30px; color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.quote-mark { position: absolute; top: -150px; color: rgba(173,111,84,.08); font-family: var(--display); font-size: 620px; line-height: 1; }

.booking { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 70px; color: #fff; background: var(--olive-dark); }
.booking .kicker { color: var(--blush); }
.booking-copy p:last-child { max-width: 590px; margin: 28px 0 0; color: rgba(255,255,255,.62); }
.booking-actions { display: grid; justify-items: start; gap: 24px; }
.booking-actions .text-link { color: #fff; }

.footer { padding: 80px max(24px, calc((100vw - 1320px) / 2)) 26px; color: #f5e8e0; background: #30211e; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 60px; padding-bottom: 58px; border-bottom: 1px solid var(--white-line); }
.footer-brand { display: inline-flex; width: max-content; max-width: 100%; align-items: center; gap: 16px; }
.footer-brand picture { width: 96px; height: 96px; flex: 0 0 96px; }
.footer-brand img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 15px rgba(0,0,0,.22)); }
.footer-brand-copy { display: inline-flex; flex-direction: column; align-items: center; font-family: var(--display); font-size: 30px; line-height: .94; white-space: nowrap; }
.footer-brand-copy small { margin-top: 10px; color: #d7ad8e; font-family: var(--body); font-size: 8px; font-weight: 700; letter-spacing: .5em; text-transform: uppercase; }
.footer-top > p { margin: 0; color: rgba(255,255,255,.58); }
.social-link { display: grid; width: 46px; height: 46px; border: 1px solid var(--white-line); place-items: center; }
.social-link svg { width: 19px; }
.social-placeholder { color: rgba(255,255,255,.42); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px; padding: 58px 0; }
.footer-grid p { margin: 0; color: rgba(255,255,255,.58); }
.footer-grid a { display: block; width: max-content; margin-bottom: 6px; color: rgba(255,255,255,.58); }
.footer-label { margin-bottom: 18px !important; color: #fff !important; font-size: 9px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--white-line); color: rgba(255,255,255,.42); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }

.cart-overlay { position: fixed; z-index: 70; inset: 0; visibility: hidden; background: rgba(21,24,20,.5); opacity: 0; transition: 300ms ease; }
.cart-overlay.is-open { visibility: visible; opacity: 1; }
.cart-drawer { position: fixed; z-index: 80; top: 0; right: 0; display: grid; width: min(100%, 480px); height: 100dvh; grid-template-rows: auto 1fr auto; visibility: hidden; background: var(--paper); box-shadow: -20px 0 50px rgba(20,23,19,.15); transform: translateX(102%); transition: visibility 340ms, transform 340ms cubic-bezier(.65,0,.25,1); }
.cart-drawer.is-open { visibility: visible; transform: none; }
.cart-header { display: flex; align-items: flex-start; justify-content: space-between; padding: 32px; border-bottom: 1px solid var(--line); }
.cart-header .kicker { margin-bottom: 6px; color: var(--clay); }
.cart-header h2 { margin: 0; font-family: var(--display); font-size: 42px; font-weight: 400; }
.cart-body { padding: 24px 32px; overflow: auto; }
.empty-cart { color: var(--ink-soft); }
.cart-item { display: grid; grid-template-columns: 66px 1fr auto; align-items: center; gap: 15px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.cart-thumb { display: grid; width: 66px; aspect-ratio: 1; place-items: center; color: #fff; font-family: var(--display); font-size: 13px; }
.cart-thumb.pearl { color: var(--ink); background: #d9d3c5; }
.cart-thumb.clay { background: #a66f55; }
.cart-thumb.olive { background: #59604a; }
.cart-item strong { display: block; font-family: var(--display); font-size: 19px; font-weight: 400; }
.cart-item small { color: var(--ink-soft); font-size: 10px; }
.cart-item button { padding: 4px 0; border: 0; border-bottom: 1px solid; background: transparent; font-size: 9px; text-transform: uppercase; cursor: pointer; }
.cart-footer { padding: 24px 32px 32px; border-top: 1px solid var(--line); }
.cart-footer p { margin: 0 0 17px; color: var(--ink-soft); font-size: 11px; }
.cart-footer .button { width: 100%; }

/* Live WooCommerce catalogue */
.product-image {
  display: block;
  aspect-ratio: 4 / 4.45;
  overflow: hidden;
  background: #e5dfd3;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.25,.8,.25,1);
}

.product-card:hover .product-image img { transform: scale(1.035); }
.product-info .price { font: inherit; color: inherit; }
.product-info .product-add {
  display: flex;
  width: 100%;
  min-height: 0;
  align-items: center;
  justify-content: space-between;
  padding: 19px 0 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-info .product-add:hover { color: var(--clay); background: transparent; transform: none; }
.product-info .product-add svg { width: 18px; transition: transform 220ms ease; }
.product-info .product-add:hover svg { transform: translateX(4px); }
.product-info .price-pending { color: var(--clay); font-family: var(--body); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.catalogue-empty {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  padding: clamp(38px, 6vw, 74px);
  border: 1px solid rgba(31,36,29,.13);
  background:
    radial-gradient(circle at 12% 10%, rgba(173,111,84,.17), transparent 28%),
    rgba(251,248,242,.66);
}

.catalogue-empty .kicker { color: var(--clay); }
.catalogue-empty h3 { max-width: 500px; margin: 0; font-family: var(--display); font-size: clamp(36px, 4.5vw, 64px); font-weight: 400; line-height: 1.04; }
.catalogue-empty > p { max-width: 480px; margin: 0; color: var(--ink-soft); }

/* WordPress and WooCommerce content */
.content-shell {
  min-height: 62vh;
  padding: 110px max(24px, calc((100vw - 1180px) / 2)) 130px;
  background: var(--paper);
}

.entry-header { margin-bottom: 64px; }
.entry-header .kicker { color: var(--clay); }
.entry-header h1,
.commerce-shell .woocommerce-products-header__title,
.commerce-shell .product_title,
.error-shell h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}

.entry-content { max-width: 860px; font-size: 16px; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content a { text-decoration: underline; text-decoration-color: var(--clay); text-underline-offset: 4px; }
.entry-card { padding: 34px 0; border-top: 1px solid var(--line); }
.entry-card h2 { margin: 0 0 10px; font-family: var(--display); font-size: 38px; font-weight: 400; }
.error-shell p:not(.kicker) { max-width: 540px; margin: 28px 0; color: var(--ink-soft); }

.commerce-shell { max-width: none; }
.commerce-shell .woocommerce-breadcrumb { margin: 0 0 28px; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.commerce-shell .woocommerce-products-header { margin-bottom: 58px; }
.commerce-shell .woocommerce-result-count { color: var(--ink-soft); }
.commerce-shell .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--body);
}

.commerce-shell .products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 24px;
  margin: 50px 0 0 !important;
}

.commerce-shell .products::before,
.commerce-shell .products::after { display: none !important; }
.commerce-shell ul.products li.product { float: none !important; width: auto !important; margin: 0 !important; }
.commerce-shell ul.products li.product a img { margin: 0 0 20px; background: #e5dfd3; }
.commerce-shell ul.products li.product .woocommerce-loop-product__title { padding: 0; font-family: var(--display); font-size: 29px; font-weight: 400; }
.commerce-shell ul.products li.product .price { color: var(--ink); font-size: 14px; }
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 46px;
  padding: 14px 20px;
  border-radius: 0;
  color: #fff;
  background: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover { color: #fff; background: var(--olive); }
.woocommerce-message,
.woocommerce-info { border-top-color: var(--olive); background: #f0ece3; }
.woocommerce-message::before,
.woocommerce-info::before { color: var(--olive); }
.woocommerce-error { border-top-color: var(--clay); background: #f4ece8; }

.commerce-shell div.product { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr); gap: clamp(45px, 8vw, 110px); }
.commerce-shell div.product .woocommerce-product-gallery,
.commerce-shell div.product .summary { float: none !important; width: auto !important; }
.commerce-shell div.product .summary { align-self: center; margin: 0 !important; }
.commerce-shell div.product .price { color: var(--clay) !important; font-family: var(--display); font-size: 30px !important; }
.commerce-shell div.product .price .price-pending { display: inline-flex; padding: 9px 13px; border: 1px solid rgba(185,120,102,.34); color: var(--clay); font-family: var(--body); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.commerce-shell div.product .woocommerce-product-gallery { padding: clamp(16px, 3vw, 34px); background: #f8ece8; }
.commerce-shell div.product .woocommerce-product-details__short-description { max-width: 620px; margin: 28px 0; color: var(--ink-soft); font-size: 16px; }
.commerce-shell div.product .product_meta { display: grid; gap: 5px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 11px; }
.commerce-shell .woocommerce-Tabs-panel h2 { font-family: var(--display); font-size: clamp(34px, 4vw, 54px); font-weight: 400; }
.commerce-shell .woocommerce-product-attributes { border-collapse: collapse; }
.commerce-shell .woocommerce-product-attributes th,
.commerce-shell .woocommerce-product-attributes td { padding: 15px !important; border: 1px solid var(--line) !important; }
.commerce-shell div.product .woocommerce-tabs,
.commerce-shell div.product .related { grid-column: 1 / -1; }
.commerce-shell div.product .quantity .qty { min-height: 46px; border: 1px solid var(--line); }

.woocommerce table.shop_table { border: 1px solid var(--line); border-radius: 0; }
.woocommerce table.shop_table th,
.woocommerce table.shop_table td { padding: 16px; border-color: var(--line); }
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review { padding: 26px; background: #f0ece3; }

.cart-drawer .woocommerce-mini-cart { margin: 0; padding: 0; list-style: none; }
.cart-drawer .woocommerce-mini-cart-item { position: relative; min-height: 90px; padding: 18px 28px 18px 86px !important; border-bottom: 1px solid var(--line); }
.cart-drawer .woocommerce-mini-cart-item img { position: absolute; top: 18px; left: 0; width: 66px; height: 66px; object-fit: cover; }
.cart-drawer .woocommerce-mini-cart-item a:not(.remove) { display: block; font-family: var(--display); font-size: 19px; }
.cart-drawer .woocommerce-mini-cart-item a.remove { position: absolute; top: 16px; right: 0; color: var(--clay) !important; }
.cart-drawer .quantity { display: block; color: var(--ink-soft); font: 10px var(--body); }
.cart-drawer .woocommerce-mini-cart__total { display: flex; justify-content: space-between; margin: 24px 0 16px; padding-top: 18px; border-top: 1px solid var(--line); }
.cart-drawer .woocommerce-mini-cart__buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cart-drawer .woocommerce-mini-cart__buttons a { margin: 0 !important; text-align: center; }
.cart-drawer .woocommerce-mini-cart__empty-message { color: var(--ink-soft); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 800ms ease, transform 800ms cubic-bezier(.25,.8,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.service-card:nth-child(2), .product-card:nth-child(2) { transition-delay: 90ms; }
.service-card:nth-child(3), .product-card:nth-child(3) { transition-delay: 180ms; }

:focus-visible { outline: 2px solid var(--clay); outline-offset: 4px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .booking-link { display: none; }
  .menu-button { display: grid; }
  .hero-media img { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(62,39,34,.84) 0%, rgba(79,48,42,.48) 58%, rgba(79,48,42,.1)); }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .service-card { grid-template-columns: 55px 1fr 1.4fr; }
  .service-description { grid-column: 2 / 4; }
  .service-card a { grid-column: 3; grid-row: 1; }
  .method { grid-template-columns: 1fr; }
  .method-visual { width: min(100%, 650px); margin: 0 auto; aspect-ratio: 1.25 / 1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:last-child { grid-column: 1 / 3; width: calc(50% - 12px); margin: 0 auto; }
  .booking { grid-template-columns: 1fr; align-items: start; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top > p { grid-row: 2; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .catalogue-empty { grid-template-columns: 1fr 1fr; }
  .catalogue-empty .button { grid-column: 1 / -1; justify-self: start; }
  .commerce-shell .products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .commerce-shell div.product { grid-template-columns: 1fr; }
}

@media (max-width: 660px) {
  :root { --container: min(100% - 36px, 1320px); }
  .announcement p { font-size: 8px; line-height: 1.35; letter-spacing: .1em; }
  .announcement p span { display: none; }
  .site-header { min-height: 72px; padding: 0 18px; }
  .site-header + .mobile-panel + main .hero { margin-top: -72px; }
  .brand { gap: 8px; }
  .brand-mark { width: 46px; height: 46px; flex-basis: 46px; }
  .brand-copy { align-items: flex-start; font-size: 20px; }
  .brand-copy small { margin-top: 6px; font-size: 7px; letter-spacing: .34em; }
  .header-actions { gap: 4px; }
  .hero { min-height: 760px; }
  .hero-media img { object-position: 68% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(62,39,34,.88), rgba(79,48,42,.52) 80%, rgba(79,48,42,.25)); }
  .hero-content { align-self: end; padding: 150px 0 76px; }
  .hero h1 { font-size: clamp(46px, 13vw, 62px); line-height: .94; letter-spacing: -.045em; }
  .hero-copy { max-width: 90%; font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .hero-note { display: none; }
  .trust-strip { align-items: stretch; flex-direction: column; gap: 0; padding: 10px 18px; }
  .trust-strip p { padding: 10px 0; border-bottom: 1px solid var(--white-line); }
  .trust-strip p:last-child { border: 0; }
  .trust-strip span { display: none; }
  .section { padding: 90px 18px; }
  .section-heading { margin-bottom: 46px; }
  .section-heading h2, .method h2, .booking h2 { font-size: clamp(44px, 13vw, 60px); }
  .service-card { grid-template-columns: 45px 1fr; gap: 12px; padding: 28px 0; }
  .service-card .service-eyebrow { grid-column: 2; }
  .service-card h3 { grid-column: 2; font-size: 28px; }
  .service-description { grid-column: 2; }
  .service-card a { grid-column: 2; grid-row: auto; justify-content: flex-start; }
  .method { gap: 58px; }
  .method-visual { width: 100%; margin-left: 0; aspect-ratio: 1.25 / 1; }
  .method-brand-lockup { width: 88%; padding: 18px; }
  .method-brand-lockup picture { width: min(64%, 210px); }
  .method-brand-name { font-size: 31px; }
  .method-brand-tagline { font-size: 6px; letter-spacing: .2em; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card:last-child { grid-column: auto; width: 100%; }
  .quote-section { min-height: 520px; }
  .booking { gap: 36px; }
  .footer { padding: 70px 18px 24px; }
  .footer-top { grid-template-columns: 1fr auto; gap: 28px; }
  .footer-brand picture { width: 78px; height: 78px; flex-basis: 78px; }
  .footer-brand-copy { font-size: 25px; }
  .footer-top > p { grid-column: 1 / 3; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .cart-header, .cart-body { padding-right: 22px; padding-left: 22px; }
  .cart-footer { padding: 22px; }
  body.admin-bar .site-header { top: 46px; }
  .catalogue-empty { grid-template-columns: 1fr; padding: 32px 24px; }
  .catalogue-empty .button { grid-column: auto; }
  .content-shell { padding: 76px 18px 90px; }
  .entry-header { margin-bottom: 42px; }
  .commerce-shell .products { grid-template-columns: 1fr; }
  .cart-drawer .woocommerce-mini-cart__buttons { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
