/* MONOSPACE EVENTS — Global Stylesheet v3 */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --gold:   #C4973A;
  --text:   #111111;
  --muted:  #888888;
  --card:   #F2F2F2;
  --ph:     #E4E4E4;   /* image placeholder */
  --pad:    clamp(1.5rem, 5vw, 6rem);
  --nav-h:  max(5vh, 52px);
  --nav-top: 0.75rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* Image placeholder */
.ph {
  background: var(--ph);
  display: block;
  width: 100%; height: 100%;
}

/* ============================
   NAVIGATION — floating pill
   ============================ */
.nav {
  position: fixed;
  top: var(--nav-top);
  left: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2vw 0 0.5rem;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 10px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
  transition: background 0.35s ease, box-shadow 0.3s;
}
.nav:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }

.nav.transparent {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}
.nav.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  flex: 1;
}
.nav-right { justify-content: flex-end; }

.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.nav-link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4em;
  cursor: pointer;
}
.nav-link:hover { opacity: 0.5; }

.nav-chevron {
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
}

.nav-cta {
  border: 1px solid var(--text);
  padding: 0.48em 1.3em;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.5em;
  transition: all 0.22s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--text); color: #fff; }

@media (max-width: 900px) {
  .nav-cta {
    padding: 0.38em 0.85em;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
  }
}

/* ============================
   DROPDOWN — full 100vw panel
   ============================ */
.nav-item { position: relative; }

.nav-dropdown {
  position: fixed;
  top: calc(var(--nav-top) + var(--nav-h));
  left: 0;
  right: 0;
  height: 40vh;
  background: transparent;
  padding: 0.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(6px);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
}
.nav-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dd-card {
  position: relative;
  aspect-ratio: unset;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  background: var(--ph);
  border-radius: 10px;
  display: block;
}
.dd-card:hover .dd-card-overlay { background: rgba(0,0,0,0.55); }

.dd-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  transition: background 0.3s;
}
.dd-card-sub {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.25rem;
}
.dd-card-label {
  font-family: 'Instrument Serif', serif;
  font-size: 1rem;
  color: #fff;
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  height: 95vh;
  min-height: 520px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)), url('../assets/products/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--pad);
  padding-bottom: clamp(2rem, 4vh, 3.5rem);
  z-index: 1;
}

.hero-content { max-width: 680px; }

.hero-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* ============================
   UTILITIES
   ============================ */
.section-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
}

.arrow-btn {
  width: 34px; height: 34px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.2s;
}

.value-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.2s;
}
.value-cta:hover { opacity: 0.6; }

/* ============================
   VALUE STATEMENT
   ============================ */
.value-section {
  padding: clamp(5rem, 11vh, 10rem) var(--pad);
  text-align: center;
}
.value-inner { max-width: 880px; margin: 0 auto; }

.value-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.75rem, 3.8vw, 3.4rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 2.5rem;
}

/* ============================
   SERVICE CARDS — outcome/service focus, WHITE bg
   ============================ */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 0 var(--pad) clamp(4rem, 8vh, 7rem);
}

.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  cursor: pointer;
  border: 1px solid #EBEBEB;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: #D8D8D8;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.service-img-wrap {
  aspect-ratio: 4/3.45;
  overflow: hidden;
  background: var(--ph);
}

.service-card-foot {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.service-card-tag {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.service-card-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.service-card-desc {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.6;
}

.service-card:hover .arrow-btn { background: var(--gold); color: #fff; }

/* ============================
   WHY SECTION
   ============================ */
.why-section {
  background: #fff;
  padding: clamp(4rem, 9vh, 9rem) var(--pad);
}

.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.why-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
}

.why-subtitle {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-left: auto;
  max-width: 380px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Cards 30% taller via pb + image placeholder on top */
.why-card {
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
  transition: background 0.2s;
}
.why-card:hover { background: #EAEAEA; }


.why-card-body {
  padding: 1.5rem 1.5rem 2rem;
}

.why-card-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.why-card-text {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================
   HOW IT WORKS
   ============================ */
.how-section {
  padding: clamp(4rem, 9vh, 9rem) var(--pad);
}

.how-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.how-step {
  background: var(--card);
  border-radius: 10px;
  padding: 1.5rem;
  min-height: 35vh;
  display: flex;
  flex-direction: column;
}

.how-step-num {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: auto;
  padding-bottom: 1rem;
}

.how-step-title {
  font-family: 'Instrument Serif', serif;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.how-step-text {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================
   LIVE EXPERIENCE
   ============================ */
.live-section {
  padding: clamp(4rem, 9vh, 9rem) var(--pad);
}

.live-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.live-visual {
  position: relative;
  aspect-ratio: 4/4;
  border-radius: 10px;
  overflow: hidden;
  background: var(--ph);
}
.live-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}

.live-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4em 0.9em;
  border-radius: 4px;
  font-weight: 600;
}

.live-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.22;
  margin: 0.75rem 0 1.25rem;
}

.live-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.live-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 2rem;
}

.live-stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.live-stat-label {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ============================
   PRICING — left / right split
   ============================ */
.pricing-section {
  padding: clamp(4rem, 9vh, 9rem) var(--pad);
  background: #F9F9F9;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

/* LEFT column */
.pricing-left { }

.pricing-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0.4rem 0 1.5rem;
}

.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.pricing-inc-item {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.84rem;
  color: var(--text);
}

.pricing-inc-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pricing-note-sm {
  font-size: 0.72rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.75rem;
}

/* RIGHT column — vertical stack */
.pricing-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Top: big price */
.pricing-price-top {
  margin-bottom: 0.4rem;
}

.price-big {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-note {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.price-extra-inline {
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

/* Package rows — same style as capacity-example */
.pricing-packages {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pkg-row {
  background: var(--card);
  border-radius: 8px;
  padding: 0.9rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.pkg-row:hover { background: #E8E8E8; }

.pkg-row.featured {
  background: var(--text);
}
.pkg-row.featured:hover { background: #222; }

.pkg-row-left {}

.pkg-row-hrs {
  font-size: 0.84rem;
  color: var(--text);
}
.pkg-row.featured .pkg-row-hrs { color: #fff; }

.pkg-row-items {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.1rem;
}
.pkg-row.featured .pkg-row-items { color: rgba(255,255,255,0.4); }

.pkg-row-price {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  color: var(--text);
  white-space: nowrap;
}
.pkg-row.featured .pkg-row-price { color: var(--gold); }

.pricing-total-note {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 2rem;
  align-items: center;
}

.pricing-total-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  grid-column: 1 / -1;
  margin-bottom: 0.25rem;
}

.pricing-total-formula {
  font-family: 'Instrument Serif', serif;
  font-size: 1rem;
  color: var(--text);
}

.pricing-total-example {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Keep these for services page compat */
.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.includes-list li {
  font-size: 0.84rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.65em;
}

.includes-list li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================
   ABOUT STRIP
   ============================ */
.about-strip {
  padding: clamp(4rem, 8vh, 7rem) var(--pad);
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-visual {
  aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
  background: var(--ph);
}
.about-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-strip-body {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

/* ============================
   GALLERY MARQUEE
   ============================ */
.gallery-section {
  padding: clamp(4rem, 8vh, 8rem) 0;
  overflow: hidden;
}

.gallery-header {
  padding: 0 var(--pad) 2.5rem;
}

.gallery-track-wrap { overflow: hidden; }

.gallery-track {
  display: flex;
  gap: 1.25rem;
  animation: marquee 45s linear infinite;
  width: max-content;
  align-items: flex-start;
  will-change: transform;
}
.gallery-track.paused { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.gallery-item {
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ph);
}

/* ============================
   FOOTER
   ============================ */
.footer { background: #F8F8F8; }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 4rem var(--pad);
}

.footer-brand-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-email-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.footer-form {
  display: flex;
  max-width: 300px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.footer-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  outline: none;
  color: var(--text);
}

.footer-form button {
  padding: 0.75rem 1.1rem;
  background: var(--text);
  color: #fff;
  border: none;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.footer-form button:hover { background: #000; }

.footer-col-title {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col-links a { font-size: 0.85rem; color: var(--text); transition: opacity 0.2s; }
.footer-col-links a:hover { opacity: 0.5; }

/* Full-width wordmark — centered */
.footer-wordmark-wrap {
  overflow: hidden;
  line-height: 0.82;
  padding: 0;
  text-align: center;
}

.footer-wordmark {
  font-family: 'Instrument Serif', serif;
  font-size: 15.5vw;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1.5px #D0D0D0;
  white-space: nowrap;
  user-select: none;
  letter-spacing: -0.02em;
  display: inline-block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem var(--pad);
  background: #F8F8F8;
}

.footer-copy { font-size: 0.72rem; color: var(--muted); }

.footer-legal { display: flex; gap: 2rem; list-style: none; }
.footer-legal a { font-size: 0.72rem; color: var(--muted); transition: opacity 0.2s; }
.footer-legal a:hover { opacity: 0.6; }

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  padding: calc(var(--nav-top) + var(--nav-h) + 4rem) var(--pad) 3.5rem;
}

.page-hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-hero-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  max-width: 780px;
}

.page-hero-subtitle {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}

/* Services page — full-width hero image placeholder */
.services-hero-image {
  width: 100%;
  height: 55vh;
  min-height: 320px;
  background: var(--ph);
  overflow: hidden;
}

/* Book Now form page */
.book-hero {
  padding: calc(var(--nav-top) + var(--nav-h) + 4rem) var(--pad) 3rem;
  border-bottom: 1px solid #EBEBEB;
  max-width: 680px;
}

.book-form-wrap {
  padding: 3rem var(--pad) 6rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.book-sidebar { }

.book-sidebar-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.book-sidebar-text {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.book-contact-item {
  font-size: 0.84rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.book-contact-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.2rem;
}

.book-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  background: #fff;
  border: 1px solid #DCDCDC;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--text); }

.form-field textarea { resize: vertical; min-height: 100px; }

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-full { grid-column: 1 / -1; }

.form-submit {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

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

/* Checkbox group */
.check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.check-pill {
  display: flex;
  align-items: center;
  gap: 0.4em;
  cursor: pointer;
}

.check-pill input[type="checkbox"] { display: none; }

.check-pill-label {
  font-size: 0.75rem;
  padding: 0.35em 0.9em;
  background: var(--card);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
  letter-spacing: 0.04em;
}

.check-pill input:checked + .check-pill-label {
  background: var(--text);
  color: #fff;
}

/* ============================
   SERVICES PAGE — What We Help You Achieve
   ============================ */
.achieve-section {
  padding: clamp(3rem, 7vh, 6rem) var(--pad);
}

.achieve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.achieve-card {
  background: var(--card);
  border-radius: 10px;
  padding: 2rem;
  transition: background 0.2s;
}
.achieve-card:hover { background: #EAEAEA; }

.achieve-num {
  font-family: 'Instrument Serif', serif;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.achieve-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.achieve-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Materials section (services page) */
.materials-section {
  padding: clamp(3rem, 7vh, 6rem) var(--pad);
  background: #F9F9F9;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.material-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.material-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }

.material-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ph);
}

.material-card-body { padding: 1.5rem; }

.material-card-tag {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.material-card-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.material-card-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.material-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.material-card-features li {
  font-size: 0.76rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.material-card-features li::before {
  content: '';
  display: inline-block;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Capacity */
.capacity-section {
  padding: clamp(4rem, 9vh, 9rem) var(--pad);
}

.capacity-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.capacity-num {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.capacity-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.capacity-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

.capacity-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.capacity-examples {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.capacity-example {
  background: var(--card);
  border-radius: 8px;
  padding: 0.9rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.capacity-example:hover { background: #EAEAEA; }

.capacity-example-label { font-size: 0.8rem; color: var(--muted); }
.capacity-example-val {
  font-family: 'Instrument Serif', serif;
  font-size: 0.95rem;
  color: var(--text);
}

/* Personalisation */
.personalisation-section { padding: clamp(4rem, 9vh, 9rem) var(--pad); background: #F9F9F9; }

.personalisation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.personalisation-visual {
  aspect-ratio: 5/4;
  border-radius: 10px;
  overflow: hidden;
  background: var(--ph);
}

.finishing-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.finishing-opt {
  background: var(--card);
  border-radius: 8px;
  padding: 1.1rem;
  text-align: center;
  transition: background 0.2s;
}
.finishing-opt:hover { background: #EAEAEA; }

.finishing-opt-name {
  font-family: 'Instrument Serif', serif;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}
.finishing-opt-sub { font-size: 0.68rem; color: var(--muted); }

/* FAQ */
.faq-section { padding: clamp(4rem, 9vh, 9rem) var(--pad); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-grid { margin-top: 2.5rem; }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 0;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid #EBEBEB;
  text-align: left;
  font-size: 0.95rem;
  font-family: 'Instrument Serif', serif;
  color: var(--text);
  gap: 1.5rem;
}
.faq-item:first-child .faq-question { border-top: 1px solid #EBEBEB; }

.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

.faq-item.open .faq-question { border-bottom-color: transparent; }
.faq-item.open .faq-icon { background: var(--text); color: #fff; transform: rotate(45deg); }

.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 0 1.5rem; }
.faq-answer-inner p { font-size: 0.86rem; color: var(--muted); line-height: 1.85; }
.faq-answer-inner p + p { margin-top: 0.65rem; }

/* ============================
   CATALOG PAGE
   ============================ */
.catalog-header {
  padding: calc(var(--nav-top) + var(--nav-h) + 5rem) var(--pad) 4rem;
}

.catalog-header-inner {
  max-width: 52vw;
}

.catalog-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.filter-btn {
  padding: 0.42em 1.2em;
  background: var(--card);
  border: none;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--text); color: #fff; }

.catalog-section-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 2.5rem var(--pad) 0;
}

.catalog-grid {
  padding: 1.5rem var(--pad) clamp(3rem, 6vh, 5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Product card — image placeholder grey, footer white */
.product-card {
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.product-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.product-card[hidden] { display: none !important; }

.product-img-wrap {
  aspect-ratio: 1;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

.product-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: rgba(255,255,255,0.9);
  color: var(--text);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 0.65em;
  border-radius: 4px;
}

/* White footer */
.product-card-foot {
  background: #fff;
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.75rem;
}

.product-name {
  font-family: 'Instrument Serif', serif;
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.product-sub { font-size: 0.7rem; color: var(--muted); margin-bottom: 0.5rem; }

.product-colors {
  display: flex;
  gap: 4px;
  margin-top: 0.5rem;
}

.color-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.15s;
  flex-shrink: 0;
}
.color-dot:hover { transform: scale(1.25); }

.product-card:hover .arrow-btn { background: var(--gold); color: #fff; }

/* Catalog info strip */
.catalog-info-strip {
  padding: clamp(2.5rem, 5vh, 4rem) var(--pad);
  background: #F9F9F9;
}

.catalog-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.catalog-info-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.75rem;
}

.catalog-info-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.catalog-info-text { font-size: 0.8rem; color: var(--muted); line-height: 1.75; }

/* ============================
   BUTTONS
   ============================ */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  background: var(--text);
  color: #fff;
  padding: 0.9em 2.2em;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-dark:hover { background: #000; }

/* ============================
   MOBILE HAMBURGER & MENU
   ============================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: 0.5rem;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.25s;
}

/* Full-screen overlay */
.mob-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mob-menu.open { transform: translateX(0); }

.mob-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  flex-shrink: 0;
}

.mob-close {
  font-size: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

.mob-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.mob-spacer { width: 36px; }

.mob-nav {
  flex: 1;
  padding: 1rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.mob-nav a {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 8vw, 2.8rem);
  color: var(--text);
  text-decoration: none;
  padding: 0.65rem 0;
  display: block;
  border-bottom: 1px solid #EBEBEB;
  transition: opacity 0.2s;
  line-height: 1.2;
}
.mob-nav a:first-child { border-top: 1px solid #EBEBEB; }
.mob-nav a:hover { opacity: 0.45; }

.mob-nav .mob-book {
  margin-top: 1.5rem;
  border: none;
  background: var(--text);
  color: #fff;
  padding: 1em 2em;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 8px;
  display: block;
}
.mob-nav .mob-book:hover { background: #000; opacity: 1; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(3, 1fr); }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .achieve-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-left { display: flex; }
  .nav-left .nav-link { display: none; }   /* hide text links, keep hamburger */
  .nav-hamburger { display: flex; }
  .nav-right .nav-link:not(.nav-cta) { display: none; }
  .nav-cta { display: flex; }              /* show Book Now on right */
  .service-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .live-inner, .about-strip-inner, .pricing-inner, .capacity-inner, .personalisation-inner { grid-template-columns: 1fr; }
  .why-header { grid-template-columns: 1fr; }
  .materials-grid, .achieve-grid { grid-template-columns: 1fr; }
  .catalog-header-inner { max-width: 100%; }
}

@media (max-width: 680px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; }
  .how-step { min-height: unset; }
  .pricing-layout { grid-template-columns: 1fr; }
  .book-form-wrap { grid-template-columns: 1fr; }     /* top-to-bottom */
  .live-stats { grid-template-columns: 1fr; gap: 1rem; }
  .finishing-options { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }     /* 2 columns */
  .footer-top > div:first-child { grid-column: 1 / -1; } /* brand full width */
  .why-grid { grid-template-columns: 1fr; }
  .catalog-info-grid { grid-template-columns: 1fr; }
  .hero-links { flex-direction: column; gap: 1rem; }
}
