@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

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

:root {
  --bg:       #0f1012;
  --bg-2:     #181a1b;
  --bg-3:     #202325;
  --cream:    #ece9e1;
  --cream-2:  #aba596;
  --cream-3:  #74716a;
  --orange:   #c4621a;
  --orange-h: #d9722a;
  --border:   rgba(236,233,225,0.10);
  --border-2: rgba(236,233,225,0.22);
  --glass:        rgba(20,22,24,0.5);
  --glass-border: rgba(236,233,225,0.14);
  --nav-h:    76px;
  --max:      1320px;
  --pad:      clamp(24px, 5vw, 80px);
  --section:  clamp(80px, 10vw, 140px);
}

html { scroll-behavior: smooth; }

/* Film grain — subtle tactile texture over everything for a printed, high-end feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body {
  background-color: var(--bg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Layout ─────────────────────────────── */
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--section); }
.section--dark  { background: var(--bg); }
.section--mid   { background: var(--bg-2); }
.section--card  { background: var(--bg-3); }

/* ─── Type ────────────────────────────────── */
.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--orange);
}
.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.display em { font-style: italic; }

/* ─── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.22,1,0.36,1), transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.35s, color 0.35s, box-shadow 0.35s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-h); transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(196,98,26,0.7); }
.btn-ghost   { background: transparent; color: var(--cream); border: 1px solid var(--border-2); }
.btn-ghost:hover { border-color: var(--cream); background: rgba(236,233,225,0.04); transform: translateY(-2px); }
.btn-orange-outline { background: transparent; color: var(--orange); border: 1px solid var(--orange); }
.btn-orange-outline:hover { background: var(--orange); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 11px; }

/* ─── Navigation ─────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: var(--pad);
  gap: 32px;
  transition: background 0.35s, border-color 0.35s;
}
.nav--scrolled {
  background: rgba(15,16,18,0.55);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex: 1;
  justify-content: flex-end;
}
.nav__links a {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-2);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active { color: var(--cream); }
.nav__cta {
  background: var(--orange);
  color: #fff;
  padding: 11px 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--orange-h); }
.nav__cart-btn {
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--cream-2);
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.nav__cart-btn:hover { color: var(--cream); border-color: var(--cream); }

/* ─── Fade-in ─────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ─── Hero ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(18,16,14,0.96) 0%,
    rgba(18,16,14,0.5) 50%,
    rgba(18,16,14,0.15) 100%
  );
}
/* Ambient orange glow — breathing, behind the ink */
.ambient-glow {
  position: fixed;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(58% 46% at 82% 14%,  rgba(196,98,26,0.22), transparent 70%),
    radial-gradient(52% 50% at 10% 78%,  rgba(196,98,26,0.16), transparent 72%),
    radial-gradient(46% 42% at 50% 106%, rgba(217,114,42,0.14), transparent 70%);
  will-change: transform, opacity;
  animation: glowBreathe 16s ease-in-out infinite;
}
@keyframes glowBreathe {
  0%, 100% { transform: scale(1)    translate3d(0, 0, 0);        opacity: 0.8; }
  50%      { transform: scale(1.13) translate3d(2.5%, -2%, 0);   opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .ambient-glow { animation: none; }
}

/* Fluid ink background — fixed, behind all content, glows on the dark page */
.fluid-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.5;             /* subtle undertone */
}
/* Let the ink show through content sections on every page */
.section--dark,
.section--mid {
  background: transparent;
}
.cta-band {
  background: rgba(27, 24, 19, 0.5);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-inline: var(--pad);
  max-width: 920px;
}
.hero__eyebrow { margin-bottom: 18px; }
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(56px, 8.8vw, 116px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-shadow: 0 2px 60px rgba(0,0,0,0.45);
}
.hero__title em { font-style: italic; }
.hero__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--cream-2);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* ─── Section header ─────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header--center {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 56px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-top: 12px;
  text-wrap: balance;
}
.section-sub {
  color: var(--cream-2);
  font-size: 16px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ─── Portfolio ──────────────────────────── */
.filter-tabs { display: flex; gap: 4px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-tab {
  padding: 10px 22px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream-3);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab.active { border-color: var(--orange); color: var(--orange); background: rgba(196,98,26,0.09); }
.filter-tab:hover:not(.active) { border-color: var(--border-2); color: var(--cream-2); }
.portfolio-grid { columns: 3; column-gap: 10px; }
.portfolio-grid__item {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.portfolio-grid__item img {
  width: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.portfolio-grid__item:hover img { transform: scale(1.05); }
.portfolio-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18,16,14,0);
  transition: background 0.3s;
}
.portfolio-grid__item:hover::after { background: rgba(18,16,14,0.3); }

/* ─── FAQ Accordion ──────────────────────── */
.faq-list { max-width: 860px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 400;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  cursor: pointer;
  line-height: 1.3;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--cream-2); }
.faq-icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 26px;
  height: 26px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--orange);
  transition: transform 0.35s;
}
.faq-icon.open { transform: rotate(45deg); }
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-body.open { max-height: 600px; padding-bottom: 28px; }
.faq-body p, .faq-body li {
  color: var(--cream-2);
  font-size: 15.5px;
  line-height: 1.75;
}
.faq-body ul { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }

/* ─── Enquiry wizard ─────────────────────── */
.wizard-steps {
  display: flex;
  align-items: flex-start;
  margin-bottom: 52px;
  position: relative;
}
.wizard-steps::before {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 1px;
  background: var(--border);
}
.wizard-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.wizard-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  background: var(--bg-2);
  transition: all 0.35s;
}
.wizard-dot.active { border-color: var(--orange); color: var(--orange); background: rgba(196,98,26,0.12); }
.wizard-dot.done   { border-color: var(--orange); background: var(--orange); color: #fff; }
.wizard-label {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-3);
  text-align: center;
}
.wizard-label.active { color: var(--orange); }

.form-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-col    { grid-column: 1 / -1; }
.form-field  { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--cream-3); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--orange); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select option { background: var(--bg-2); }
.form-note { font-size: 13px; color: var(--cream-3); margin-top: 4px; }

.pill-group { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  padding: 9px 18px;
  font-size: 12.5px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--cream-2);
  cursor: pointer;
  transition: all 0.2s;
}
.pill.selected { border-color: var(--orange); color: var(--orange); background: rgba(196,98,26,0.09); }
.pill:hover:not(.selected) { border-color: var(--border-2); color: var(--cream); }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.upload-zone {
  border: 1px dashed var(--border-2);
  padding: 36px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
  background: var(--bg-3);
}
.upload-zone:hover { border-color: var(--orange); }
.upload-zone input { display: none; }
.upload-zone p { color: var(--cream-3); font-size: 14px; margin-top: 8px; }

/* ─── Shop ────────────────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.product-card:hover { border-color: var(--border-2); transform: translateY(-3px); }
.product-img {
  aspect-ratio: 1 / 1;
  background: var(--bg-3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.product-body { padding: 22px; }
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
}
.product-desc { font-size: 13.5px; color: var(--cream-2); margin-bottom: 18px; line-height: 1.55; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
}
.add-to-cart {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.add-to-cart:hover { background: var(--orange-h); }
.add-to-cart.in-cart { background: var(--bg-3); color: var(--orange); border: 1px solid var(--orange); }

/* Cart drawer */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(18,16,14,0.65);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 100%;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  z-index: 201;
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: none; }
.cart-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; }
.cart-close { background: none; border: none; color: var(--cream-2); font-size: 22px; cursor: pointer; transition: color 0.2s; }
.cart-close:hover { color: var(--cream); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-item {
  display: grid; grid-template-columns: 60px 1fr auto;
  gap: 14px; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img { width: 60px; height: 60px; object-fit: cover; background: var(--bg-3); }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; }
.cart-item-price { color: var(--cream-2); font-size: 13px; margin-top: 4px; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn { background: var(--bg-3); border: 1px solid var(--border); color: var(--cream-2); width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; transition: all 0.2s; }
.qty-btn:hover { color: var(--cream); border-color: var(--border-2); }
.qty-num { font-size: 14px; min-width: 20px; text-align: center; }
.cart-remove { background: none; border: none; color: var(--cream-3); font-size: 20px; cursor: pointer; transition: color 0.2s; align-self: flex-start; }
.cart-remove:hover { color: var(--cream); }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--cream-3); }
.cart-footer { padding: 24px 28px; border-top: 1px solid var(--border); }
.cart-subtotal { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; color: var(--cream-2); }
.cart-total { display: flex; justify-content: space-between; font-family: 'Cormorant Garamond', serif; font-size: 30px; margin-bottom: 20px; }

/* Stripe modal */
.stripe-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.82); z-index: 300; display: flex; align-items: center; justify-content: center; padding: 24px; }
.stripe-card { background: var(--bg-2); border: 1px solid var(--border); width: 100%; max-width: 460px; padding: 40px; }
.stripe-brand { font-size: 12px; color: var(--cream-3); letter-spacing: 0.05em; display: flex; align-items: center; gap: 8px; }
.stripe-brand span { color: #635BFF; font-weight: 600; }
.stripe-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.stripe-modal-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; }
.stripe-total-line { font-size: 14px; color: var(--cream-2); margin-bottom: 32px; }
.stripe-field { margin-bottom: 16px; }
.stripe-field label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-3); margin-bottom: 8px; }
.stripe-field input { width: 100%; background: var(--bg-3); border: 1px solid var(--border); color: var(--cream); padding: 13px 15px; font-size: 15px; outline: none; transition: border-color 0.2s; }
.stripe-field input:focus { border-color: #635BFF; }
.stripe-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stripe-note { font-size: 12px; color: var(--cream-3); text-align: center; margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.stripe-success { text-align: center; padding: 20px 0; }
.stripe-success-icon { font-size: 48px; margin-bottom: 16px; }
.stripe-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; margin-bottom: 12px; }
.stripe-success p { color: var(--cream-2); font-size: 15px; }

/* ─── Trust strip ─────────────────────────── */
.trust-strip {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.trust-track {
  display: flex;
  width: max-content;
  gap: 40px;
  padding-left: 40px;        /* keeps first item off the fade on load */
  animation: trustScroll 42s linear infinite;
}
.trust-strip:hover .trust-track { animation-play-state: paused; }
@keyframes trustScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }   /* track holds 2 copies → seamless loop */
}
@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; }
}
.trust-item { display: flex; align-items: center; gap: 9px; flex-shrink: 0; font-size: 12.5px; color: var(--cream-2); letter-spacing: 0.04em; white-space: nowrap; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ─── Home — Positioning ─────────────────── */
.positioning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.positioning-img  { aspect-ratio: 3/4; overflow: hidden; }
.positioning-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.6s ease; }
.positioning-img:hover img { transform: scale(1.03); }
.positioning-body { display: flex; flex-direction: column; gap: 24px; }
.positioning-body p { color: var(--cream-2); font-size: 16px; line-height: 1.8; }

/* ─── Home — Experience strip ─────────────── */
.exp-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.exp-strip > .fade-in { height: 100%; }
.exp-strip-card { background: var(--glass); backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2); padding: 36px 28px; height: 100%; border: 1px solid var(--glass-border); transition: border-color 0.35s, transform 0.35s, background 0.35s; }
.exp-strip-card:hover { border-color: var(--border-2); transform: translateY(-4px); }
.exp-strip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); margin-bottom: 20px; }
.exp-strip-title { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 400; margin-bottom: 10px; }
.exp-strip-text  { font-size: 13.5px; color: var(--cream-2); line-height: 1.65; }

/* ─── Home — How it works ─────────────────── */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.steps-row > .fade-in { height: 100%; }
.step-card { background: var(--glass); backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2); padding: 48px; height: 100%; border: 1px solid var(--glass-border); transition: border-color 0.35s, transform 0.35s; }
.step-card:hover { border-color: var(--border-2); transform: translateY(-4px); }
.step-num  { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: var(--orange); opacity: 0.35; line-height: 1; margin-bottom: 14px; }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; margin-bottom: 12px; }
.step-text  { color: var(--cream-2); font-size: 15px; line-height: 1.75; }

/* ─── CTA band ────────────────────────────── */
.cta-band { background: var(--bg-2); border-top: 1px solid var(--border); padding: var(--section) var(--pad); text-align: center; }
.cta-band__title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(38px, 5vw, 66px); margin-bottom: 18px; }
.cta-band__sub   { color: var(--cream-2); font-size: 17px; margin-bottom: 36px; max-width: 460px; margin-inline: auto; }

/* ─── About page ──────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-sticky { position: sticky; top: calc(var(--nav-h) + 32px); }
.about-img { aspect-ratio: 3/4; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about-body { display: flex; flex-direction: column; gap: 24px; }
.about-body p { color: var(--cream-2); font-size: 16px; line-height: 1.85; }
.about-sign { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: var(--cream); }
.about-credentials { border-top: 1px solid var(--border); padding-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.about-cred { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--cream-2); }
.about-cred-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 7px; }

/* ─── Experience page ─────────────────────── */
.exp-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; width: 100%; }
.exp-detail-grid > .fade-in { height: 100%; }
.exp-detail-card { background: var(--glass); backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2); padding: clamp(24px, 3.5vw, 48px); display: flex; flex-direction: column; gap: 14px; min-width: 0; overflow: hidden; height: 100%; border: 1px solid var(--glass-border); transition: border-color 0.35s, transform 0.35s; }
.exp-detail-card:hover { border-color: var(--border-2); transform: translateY(-4px); }
.exp-detail-icon { color: var(--orange); width: 28px; height: 28px; }
.exp-detail-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; }
.exp-detail-text  { color: var(--cream-2); font-size: 15px; line-height: 1.75; }
.studio-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: top center; margin-block: 2px; }

/* ─── Conventions page ────────────────────── */
.conv-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 88px);
}
.conv-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-2);
  margin-bottom: 4px;
}
.conv-list-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 3vw, 34px); font-weight: 400; }
.conv-list-note  { color: var(--cream-3); font-size: 13.5px; letter-spacing: 0.02em; }
.conv-list { display: flex; flex-direction: column; }
.conv-row {
  display: grid;
  grid-template-columns: 1.1fr 2fr 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 4px;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s;
}
.conv-row:hover { background: rgba(196,98,26,0.05); }
.conv-row__city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  display: flex; align-items: center; gap: 14px;
}
.conv-row__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.conv-row__venue { color: var(--cream-2); font-size: 14.5px; line-height: 1.5; }
.conv-row__dates { color: var(--cream); font-size: 15px; letter-spacing: 0.01em; white-space: nowrap; }
.conv-pill {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border-2);
  color: var(--cream-2);
  white-space: nowrap;
}
.conv-pill--open    { border-color: var(--orange); color: var(--orange); background: rgba(196,98,26,0.10); }
.conv-pill--limited { border-color: #c99a3a; color: #d9b15a; background: rgba(201,154,58,0.10); }
.conv-pill--full    { color: var(--cream-3); border-color: var(--border); }
.conv-pill--tbc     { color: var(--cream-3); border-color: var(--border); border-style: dashed; }
.conv-row__action { text-align: right; }
.conv-enquire {
  background: none;
  border: none;
  color: var(--orange);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}
.conv-enquire:hover { color: var(--orange-h); }
.conv-enquire--muted { color: var(--cream-3); cursor: default; }

.conv-info-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2px; }
.conv-info-card {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--glass-border);
  padding: clamp(28px, 4vw, 52px);
  display: flex; flex-direction: column; gap: 16px;
}
.conv-info-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 3vw, 34px); font-weight: 400; }
.conv-info-text  { color: var(--cream-2); font-size: 15.5px; line-height: 1.8; }
.conv-included { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.conv-included li { display: flex; align-items: flex-start; gap: 13px; color: var(--cream-2); font-size: 15px; line-height: 1.6; }
.conv-included__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 9px; }
.conv-aside {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--cream-2);
  font-size: 14px;
  line-height: 1.75;
}
.conv-aside strong { color: var(--cream); font-weight: 600; }

/* ─── Home: signature image row ───────────── */
.signature-imgs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.signature-img { aspect-ratio: 3/4; overflow: hidden; cursor: pointer; }
.signature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.signature-img:hover img { transform: scale(1.05); }

/* ─── Home: experience feature image pair ─── */
.exp-feature-imgs { display: grid; grid-template-rows: 1fr 1fr; gap: 10px; height: 100%; }
.exp-feature-img { aspect-ratio: 4/5; }
.exp-feature-imgs .positioning-img { aspect-ratio: auto; height: 100%; min-height: 220px; }

/* ─── Home: conventions teaser ────────────── */
.conv-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,80px); align-items: start; }
.conv-teaser__img { aspect-ratio: 4/5; overflow: hidden; }
.conv-teaser__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.conv-teaser__img:hover img { transform: scale(1.04); }

/* ─── Home: portfolio teaser grid ─────────── */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.teaser-item { aspect-ratio: 3/4; overflow: hidden; cursor: pointer; }
.teaser-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.teaser-item:hover img { transform: scale(1.05); }

/* ─── Reviews / Kind words ────────────────── */
.reviews-rating { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; font-size: 14px; color: var(--cream-2); }
.reviews-stars { color: var(--orange); letter-spacing: 0.12em; font-size: 16px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review-card { background: var(--glass); backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2); border: 1px solid var(--glass-border); padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; gap: 18px; height: 100%; transition: border-color 0.35s, transform 0.35s; }
.review-card:hover { border-color: var(--border-2); transform: translateY(-4px); }
.review-stars { color: var(--orange); letter-spacing: 0.14em; font-size: 15px; }
.review-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 1.6vw, 21px); font-weight: 300; font-style: italic; line-height: 1.5; color: var(--cream); }
.review-author { display: flex; flex-direction: column; gap: 3px; margin-top: auto; }
.review-author > span:first-child { font-size: 14px; font-weight: 600; letter-spacing: 0.04em; color: var(--cream); }
.review-source { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-3); }

/* ─── Aftercare ───────────────────────────── */
.aftercare-steps { display: flex; flex-direction: column; }
.aftercare-step { display: grid; grid-template-columns: 140px 1fr; gap: clamp(20px,4vw,56px); padding: clamp(32px,4vw,48px) 0; border-top: 1px solid var(--border); align-items: start; }
.aftercare-step:last-child { border-bottom: 1px solid var(--border); }
.aftercare-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px,6vw,84px); font-weight: 300; color: var(--orange); opacity: 0.4; line-height: 0.9; }
.aftercare-step__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px,3vw,36px); font-weight: 400; margin-bottom: 16px; }
.aftercare-step__body p { color: var(--cream-2); font-size: 15.5px; line-height: 1.8; margin-bottom: 14px; }
.aftercare-step__body p:last-child { margin-bottom: 0; }
.aftercare-lower { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.aftercare-donts, .aftercare-expect { background: var(--glass); backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2); border: 1px solid var(--glass-border); padding: clamp(28px,3.5vw,48px); }
.aftercare-donts ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.aftercare-donts li { display: flex; align-items: flex-start; gap: 14px; color: var(--cream-2); font-size: 15px; line-height: 1.6; }
.aftercare-x { color: var(--orange); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.aftercare-expect { display: flex; flex-direction: column; gap: 16px; }
.aftercare-expect p { color: var(--cream-2); font-size: 15.5px; line-height: 1.8; }

/* ─── Contact ─────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px,5vw,72px); align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 32px; }
.contact-inline-link { background: none; border: none; color: var(--orange); font: inherit; cursor: pointer; padding: 0; }
.contact-inline-link:hover { color: var(--orange-h); }
.contact-block { border-top: 1px solid var(--border); padding-top: 24px; }
.contact-address { font-style: normal; color: var(--cream-2); font-size: 15.5px; line-height: 1.9; margin-bottom: 12px; }
.contact-link { color: var(--orange); font-size: 14px; }
.contact-link:hover { color: var(--orange-h); }
.contact-email { color: var(--orange); font-size: 16px; display: inline-block; margin-bottom: 16px; }
.contact-email:hover { color: var(--orange-h); }
.contact-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-socials a { padding: 9px 16px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--border); color: var(--cream-2); transition: all 0.2s; }
.contact-socials a:hover { color: var(--cream); border-color: var(--cream); }
.contact-map { aspect-ratio: 4/3; border: 1px solid var(--border); overflow: hidden; background: var(--bg-2); position: sticky; top: calc(var(--nav-h) + 32px); }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.5) invert(0.92) hue-rotate(180deg) contrast(0.9); }

/* ─── Booking embed ───────────────────────── */
.booking-embed { border: 1px solid var(--border); background: var(--bg-2); overflow: hidden; height: 760px; max-height: 86vh; }
.booking-embed iframe { width: 100%; height: 100%; border: 0; }
.booking-fallback { text-align: center; color: var(--cream-3); font-size: 13.5px; margin-top: 16px; }
.booking-fallback a { color: var(--orange); }
.booking-fallback a:hover { color: var(--orange-h); }

/* ─── Legal pages ─────────────────────────── */
.legal-body { max-width: 760px; }
.legal-intro { color: var(--cream-2); font-size: 16px; line-height: 1.8; margin-bottom: 48px; }
.legal-section { margin-bottom: 40px; }
.legal-h { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px,2.6vw,32px); font-weight: 400; margin-bottom: 16px; }
.legal-p { color: var(--cream-2); font-size: 15.5px; line-height: 1.85; margin-bottom: 14px; }
.legal-foot { border-top: 1px solid var(--border); padding-top: 28px; margin-top: 48px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--cream-3); }
.legal-foot__links { display: flex; gap: 22px; flex-wrap: wrap; }
.legal-foot__links button { background: none; border: none; color: var(--orange); font: inherit; cursor: pointer; padding: 0; letter-spacing: 0.02em; }
.legal-foot__links button:hover { color: var(--orange-h); }

/* ─── Page hero (interior) ────────────────── */
.page-hero {
  padding-top: var(--nav-h);
  min-height: 44vh;
  display: flex; align-items: flex-end;
  padding-inline: var(--pad);
  padding-bottom: clamp(40px, 5vw, 72px);
  position: relative; overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center top; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,16,14,0.95) 0%, rgba(18,16,14,0.5) 60%, rgba(18,16,14,0.2) 100%); }
.page-hero__content { position: relative; z-index: 1; }

/* ─── Footer ──────────────────────────────── */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: clamp(60px,8vw,100px) var(--pad) 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 72px; }
.footer-mark {
  width: 72px; margin-bottom: 18px;
  filter: invert(1) sepia(0.15) brightness(0.85);
  mix-blend-mode: screen;
  opacity: 0.55;
}
.footer-tagline { color: var(--cream-2); font-size: 15px; line-height: 1.7; margin-bottom: 24px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { padding: 9px 16px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--border); color: var(--cream-2); transition: all 0.2s; }
.footer-social a:hover { color: var(--cream); border-color: var(--cream); }
.footer-col-title { font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-links a { color: var(--cream-2); font-size: 15px; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-address { color: var(--cream-2); font-size: 14.5px; line-height: 1.9; }
.footer-email { margin-top: 14px; }
.footer-email a { color: var(--orange); font-size: 14px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 12.5px; color: var(--cream-3); }
.footer-bottom a:hover { color: var(--cream-2); }

/* ─── Lightbox ────────────────────────────── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 300; display: flex; align-items: center; justify-content: center; padding: 32px; cursor: zoom-out; }
.lightbox img { max-height: 90vh; max-width: 100%; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--cream-2); font-size: 28px; cursor: pointer; transition: color 0.2s; }
.lightbox-close:hover { color: var(--cream); }

/* ─── Enquiry success ─────────────────────── */
.enquiry-success { text-align: center; padding: 80px 20px; }
.enquiry-success-mark { width: 80px; margin: 0 auto 28px; filter: invert(1) sepia(0.2); mix-blend-mode: screen; opacity: 0.6; }
.enquiry-success h2 { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; margin-bottom: 16px; }
.enquiry-success p  { color: var(--cream-2); font-size: 16px; line-height: 1.7; max-width: 440px; margin-inline: auto; }

/* ─── Responsive ──────────────────────────── */
@media (max-width: 1100px) {
  .portfolio-grid { columns: 2; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-strip { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr; gap: 2px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; gap: 2px; }
}
@media (max-width: 860px) {
  .positioning-grid { grid-template-columns: 1fr; gap: 48px; }
  .positioning-img  { aspect-ratio: 4/3; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-sticky { position: static; }
  .about-img { aspect-ratio: 4/3; }
  .exp-detail-grid { grid-template-columns: 1fr; }
  .conv-intro { grid-template-columns: 1fr; gap: 32px; }
  .conv-info-grid { grid-template-columns: 1fr; }
  .conv-teaser { grid-template-columns: 1fr; gap: 36px; }
  .conv-teaser__img { aspect-ratio: 16/10; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-map { position: static; aspect-ratio: 16/10; }
  .aftercare-lower { grid-template-columns: 1fr; gap: 2px; }
  .exp-feature-imgs { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .exp-feature-imgs .positioning-img { min-height: 0; aspect-ratio: 3/4; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  .portfolio-grid { columns: 1; }
  .shop-grid { grid-template-columns: 1fr; }
  .exp-strip { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-row .step-card { padding: 32px; }
  .signature-imgs { grid-template-columns: 1fr 1fr; }
  .teaser-grid { grid-template-columns: 1fr 1fr; }
  .aftercare-step { grid-template-columns: 1fr; gap: 8px; }
  .aftercare-num { font-size: 56px; }
  .booking-embed { height: 640px; }
  /* Conventions: collapse table rows into stacked cards */
  .conv-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      'city   status'
      'venue  venue'
      'dates  action';
    gap: 10px 16px;
    row-gap: 12px;
  }
  .conv-row__city   { grid-area: city; }
  .conv-row__status { grid-area: status; justify-self: end; align-self: center; }
  .conv-row__venue  { grid-area: venue; }
  .conv-row__dates  { grid-area: dates; align-self: center; }
  .conv-row__action { grid-area: action; }
}
