/* ============================================================
   M.C. JEWELLER ORIGINALS — Main Stylesheet
   Design tokens, reset, layout, components
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  /* Colours */
  --dark:          #111111;
  --charcoal:      #1c1c1c;
  --dark-mid:      #2a2a2a;
  --white:         #ffffff;
  --off-white:     #f5f3ef;
  --gold:          #c9a96e;
  --gold-light:    #d9bc8a;
  --gold-muted:    #a8894a;

  /* Text */
  --text-dark:     #1e1e1e;
  --text-body:     #3a3a3a;
  --text-light:    #6e6e6e;
  --text-muted:    #9e9e9e;
  --text-white:    #ffffff;
  --text-white-70: rgba(255,255,255,0.7);

  /* Spacing */
  --space-xs:  0.5rem;   /* 8px */
  --space-sm:  1rem;     /* 16px */
  --space-md:  2rem;     /* 32px */
  --space-lg:  4rem;     /* 64px */
  --space-xl:  6rem;     /* 96px */
  --space-2xl: 9rem;     /* 144px */

  /* Max widths */
  --max-w:       1200px;
  --max-w-text:  720px;
  --max-w-wide:  1440px;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:   'DM Sans', system-ui, -apple-system, sans-serif;

  /* Borders & radius */
  --border-gold:  1px solid rgba(201,169,110,0.3);
  --radius-sm:    2px;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur-fast:     0.2s;
  --dur-base:     0.35s;
  --dur-slow:     0.6s;
  --dur-reveal:   0.9s;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-sans); font-weight: 300; font-size: 1rem; line-height: 1.65; color: var(--text-body); background: var(--dark); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: var(--font-sans); font-size: 1rem; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; font-family: var(--font-sans); font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; }

.serif     { font-family: var(--font-serif); }
.italic    { font-style: italic; }
.uppercase { text-transform: uppercase; letter-spacing: 0.12em; }
.gold      { color: var(--gold); }

/* Page-level heading (hero text) */
.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--white);
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.section-title--light {
  color: var(--white);
}
.body-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light);
  max-width: var(--max-w-text);
}
.body-text--light { color: var(--text-white-70); }
.body-text--dark  { color: var(--text-body); }

/* Gold rule divider */
.gold-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.gold-rule--center { margin-left: auto; margin-right: auto; margin-bottom: 1.5rem; }

/* ---- LAYOUT UTILITIES ---- */
.container        { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--space-md); }
.container--wide  { max-width: var(--max-w-wide); padding-inline: var(--space-md); margin-inline: auto; }
.text-center      { text-align: center; }
.text-left        { text-align: left; }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mx-auto { margin-inline: auto; }

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-reveal) var(--ease), transform var(--dur-reveal) var(--ease);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity var(--dur-reveal) var(--ease);
}
.fade-in.is-visible { opacity: 1; }

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.9em 2.4em;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all var(--dur-base) var(--ease);
  cursor: pointer;
}
.btn--ghost-white {
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
}
.btn--ghost-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn--ghost-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn--ghost-gold:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn--solid-dark {
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--dark);
}
.btn--solid-dark:hover {
  background: var(--dark-mid);
  border-color: var(--dark-mid);
}

/* ---- HEADER / NAV ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--dur-base) var(--ease), padding var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(17,17,17,0.97);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.site-header.nav-open {
  background: var(--dark);
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  z-index: 110;
}
.site-logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* Primary nav */
.nav-primary {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-primary a,
.nav-primary button {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  background: none;
}
.nav-primary a:hover,
.nav-primary a[aria-current="page"],
.nav-primary button:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.nav-primary a[aria-current="page"] {
  color: var(--gold);
  border-color: rgba(201,169,110,0.35);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(17,17,17,0.97);
  border: 1px solid rgba(255,255,255,0.08);
  min-width: 160px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  transform-origin: top center;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__menu a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  border: none !important;
}
.nav-dropdown__menu a:hover {
  color: var(--gold);
  background: rgba(201,169,110,0.06);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: all var(--dur-base) var(--ease);
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding: 6rem 2rem 3rem;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  padding: 0.4rem 1rem;
  text-align: center;
  transition: color var(--dur-fast) var(--ease);
}
.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] { color: var(--gold); }
.nav-mobile__divider {
  width: 30px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0.5rem auto;
}
.nav-mobile__social {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
}
.nav-mobile__social a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-mobile__social a:hover { color: var(--gold); }

/* ---- HERO SECTIONS ---- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero--page {
  height: 65vh;
  min-height: 420px;
}
.hero--short {
  height: 50vh;
  min-height: 340px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.04);
  transition: transform 8s var(--ease);
}
.hero__bg.is-loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.65) 100%
  );
}
.hero__overlay--subtle {
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-md);
  max-width: 900px;
}
.hero__content--left {
  text-align: left;
  margin-right: auto;
  margin-left: 0;
  padding-left: calc(var(--space-md) + 2vw);
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}
.hero__scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- SECTION LAYOUTS ---- */
.section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
.section--dark {
  background: var(--dark);
}
.section--charcoal {
  background: var(--charcoal);
}
.section--light {
  background: var(--white);
}
.section--off-white {
  background: var(--off-white);
}
.section--tight {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}
.section--xl {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

/* ---- INTRO TEXT BLOCK ---- */
.intro-block {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}
.intro-block .section-title { margin-bottom: 1.25rem; }
.intro-block .body-text { margin-inline: auto; }

/* ---- PARALLAX BAND ---- */
.parallax-band {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-band__bg {
  position: absolute;
  inset: -15%;
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
}
.parallax-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.parallax-band__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-md);
}

/* ---- FEATURE QUOTE / CALLOUT ---- */
.callout-quote {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--dark);
}
.callout-quote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.3;
  max-width: 760px;
  margin-inline: auto;
}
.callout-quote__text em { color: var(--gold); font-style: normal; }

/* ---- HOMEPAGE GALLERY PREVIEW ---- */
.gallery-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.gallery-preview__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--charcoal);
}
.gallery-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery-preview__item:hover img { transform: scale(1.04); }

/* ---- SLIDESHOW (Homepage) ---- */
.slideshow {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.slideshow__track {
  display: flex;
  transition: transform 0.7s var(--ease);
}
.slideshow__slide {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16/9;
  background: var(--charcoal);
}
.slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slideshow__controls {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.slideshow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  cursor: pointer;
  border: none;
}
.slideshow__dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}
.slideshow__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  padding: 1rem;
  cursor: pointer;
  z-index: 3;
  transition: color var(--dur-fast) var(--ease);
}
.slideshow__btn:hover { color: var(--white); }
.slideshow__btn--prev { left: 1rem; }
.slideshow__btn--next { right: 1rem; }

/* ---- TESTIMONIALS ---- */
.testimonials {
  position: relative;
  background: var(--charcoal);
  padding: var(--space-xl) 0;
}
.testimonials__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.12;
}
.testimonials__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-md);
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 2rem;
  position: relative;
}
.testimonial-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.075rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
}
.testimonial-card__quote::before {
  content: '\201C';
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.65em;
  color: var(--gold);
  margin-right: 0.15em;
  font-style: normal;
}
.testimonial-card__author {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 400;
}

/* ---- GALLERY GRID ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--dark);
}
.gallery-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--charcoal);
  cursor: zoom-in;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--dur-base) var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.05); }
.gallery-item:hover::after { background: rgba(0,0,0,0.12); }

/* ---- COLLECTION SECTION HEADER ---- */
.collection-header {
  background: var(--dark);
  text-align: center;
  padding: var(--space-lg) var(--space-md) var(--space-md);
}
.collection-header--first {
  padding-top: var(--space-xl);
}
.collection-header .section-title { color: var(--white); margin-bottom: 0.5rem; }
.collection-header .body-text { margin-inline: auto; }

/* ---- PROCESS STEPS ---- */
.process-steps {
  counter-reset: step;
}
.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  background: var(--white);
}
.process-step:nth-child(even) {
  direction: rtl;
}
.process-step:nth-child(even) > * {
  direction: ltr;
}
.process-step__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--charcoal);
}
.process-step__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.process-step:hover .process-step__image img { transform: scale(1.03); }

.process-step__content {
  padding: var(--space-xl) calc(var(--space-xl) * 0.9);
  background: var(--white);
}
.process-step__num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  margin-bottom: -1rem;
  display: block;
}
.process-step__title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.process-step__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.process-step__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
}

/* ---- ABOUT PAGE ---- */
.about-bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.about-bio__image {
  position: relative;
  overflow: hidden;
}
.about-bio__image img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.about-standards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.standard-card {
  padding: var(--space-md) var(--space-md) var(--space-lg);
  background: var(--off-white);
  border-top: 2px solid var(--gold);
}
.standard-card__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: var(--space-md);
  filter: invert(0.3);
}
.standard-card__title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.standard-card__heading {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.standard-card__body {
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--text-light);
}

/* ---- CONTACT FORM ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-lg);
  align-items: start;
}
.contact-info__address {
  margin-top: var(--space-md);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  line-height: 1.9;
  color: var(--text-light);
}
.contact-info__address strong {
  font-weight: 400;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.contact-info__social {
  margin-top: var(--space-md);
  display: flex;
  gap: var(--space-sm);
}
.contact-info__social a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--dur-fast) var(--ease);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.contact-info__social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Form */
.enquiry-form {
  display: grid;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field--full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--off-white);
  border: 1px solid transparent;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e6e6e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.25rem;
}
.form-radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-body);
}
.form-radio-label input[type="radio"] {
  width: 16px;
  height: 16px;
  appearance: none;
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--dur-fast) var(--ease);
}
.form-radio-label input[type="radio"]:checked {
  border-color: var(--gold);
}
.form-radio-label input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--gold);
  border-radius: 50%;
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-note a { color: var(--gold); border-bottom: 1px solid currentColor; }
.form-submit {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.footer-brand .site-logo img { height: 30px; }
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-nav h5, .footer-contact h5 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  transition: color var(--dur-fast) var(--ease);
}
.footer-nav a:hover { color: var(--white); }
.footer-contact p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.footer-contact a { color: var(--text-muted); transition: color var(--dur-fast) var(--ease); }
.footer-contact a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
}
.footer-social a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease);
}
.footer-social a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.footer-payment img { height: 22px; opacity: 0.5; filter: grayscale(1); }

/* ---- PAGE INTRO BAND ---- */
.page-intro {
  background: var(--white);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}
.page-intro .section-title { margin-bottom: 1.25rem; }

/* ---- VIDEO SECTION ---- */
.video-section {
  background: var(--off-white);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}
.video-wrapper {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  margin-top: var(--space-md);
}
.video-poster {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark);
  cursor: pointer;
}
.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity var(--dur-base) var(--ease);
}
.video-poster:hover img { opacity: 0.85; }
.video-poster__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-poster__play::before {
  content: '';
  width: 64px;
  height: 64px;
  border: 1.5px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  transition: background var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.video-poster__play::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 18px;
  border-color: transparent transparent transparent rgba(255,255,255,0.9);
  margin-left: 4px;
}
.video-poster:hover .video-poster__play::before {
  background: rgba(201,169,110,0.35);
  border-color: var(--gold);
}
.video-note {
  margin-top: var(--space-sm);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---- LIGHTBOX OVERRIDES ---- */
.glightbox-container .gslide-description { display: none; }
.glightbox-container .goverlay { background: rgba(0,0,0,0.92); }
.glightbox-container .gnext,
.glightbox-container .gprev { background: rgba(0,0,0,0.3); }

/* ---- UTILITY: VISUALLY HIDDEN ---- */
.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* ============================================================
   RESPONSIVE — TABLET  (≤ 960px)
   ============================================================ */
@media (max-width: 960px) {

  :root {
    --space-xl:  4rem;
    --space-2xl: 6rem;
  }

  /* Nav */
  .nav-primary     { display: none; }
  .nav-hamburger   { display: flex; }

  /* About */
  .about-bio        { grid-template-columns: 1fr; }
  .about-bio__image { max-height: 460px; }
  .about-standards  { grid-template-columns: 1fr; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* Process */
  .process-step {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }
  .process-step:nth-child(even) > * { direction: ltr; }
  .process-step__image { aspect-ratio: 16/9; }
  .process-step__content { padding: var(--space-lg) var(--space-md); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid--4col { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Slideshow */
  .slideshow__slide { aspect-ratio: 4/3; }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {

  :root {
    --space-lg:  2.5rem;
    --space-xl:  3rem;
    --space-2xl: 4.5rem;
  }

  /* Hero */
  .hero--page  { height: 55vh; }
  .hero--short { height: 45vh; }

  /* Parallax */
  .parallax-band { height: 340px; }

  /* Gallery */
  .gallery-grid         { grid-template-columns: 1fr 1fr; }
  .gallery-preview      { grid-template-columns: 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner    { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer-brand    { grid-column: 1; }
  .footer-bottom   { flex-direction: column; text-align: center; }

  /* Process */
  .process-step__num { font-size: 3.5rem; }
  .process-step__content { padding: var(--space-md) var(--space-sm); }

  /* Testimonials */
  .testimonial-card { padding: 1.75rem 1.25rem; }
}
