/* ─── Custom Properties ─────────────────────────────────────────────────────── */
:root {
  --cream:  #F2F1ED;
  --dark:   #1A1A15;
  --olive:  #2C2B1E;
  --gold:   #B8913A;
  --muted:  #6B6A5E;
  --white:  #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;

  --nav-height: 72px;
  --section-pad: 10rem;
  --text-max: 600px;
}

/* ─── Reset & Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ─── Navigation ─────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  transition: background 0.4s ease, border-color 0.4s ease;
}

#nav.scrolled {
  background: rgba(242, 241, 237, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(26, 26, 21, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-mark {
  height: 36px;
  width: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

#nav.scrolled .nav-logo-mark {
  filter: none;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: normal;
  color: var(--white);
  transition: color 0.4s ease;
}

#nav.scrolled .nav-logo-text {
  color: var(--dark);
}

.nav-enquire {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.4s ease, opacity 0.2s ease;
  opacity: 0.85;
}

.nav-enquire:hover {
  opacity: 1;
}

#nav.scrolled .nav-enquire {
  color: var(--dark);
}

/* ─── Hero ───────────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
  z-index: 0;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.75;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-height) + 8vh) 2rem 0;
  max-width: 820px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--white);
}

/* ─── Statement ──────────────────────────────────────────────────────────────── */
#statement {
  background: var(--cream);
  padding: var(--section-pad) 2rem;
  display: flex;
  justify-content: center;
}

.statement-inner {
  max-width: var(--text-max);
  width: 100%;
}

.statement-lead {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.statement-pivot {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.statement-body {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--olive);
}

/* ─── The Object ─────────────────────────────────────────────────────────────── */
#the-object {
  width: 100%;
  line-height: 0;
}

.full-bleed-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── The Ritual ─────────────────────────────────────────────────────────────── */
#the-ritual {
  background: var(--cream);
  padding: calc(var(--section-pad) * 0.5) 0 0;
}

.ritual-caption {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0 2rem;
}

.ritual-steps-mobile {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 2rem;
}

.ritual-annotated {
  position: relative;
  width: 100%;
  line-height: 0;
}

.ritual-annotated img {
  width: 100%;
  height: auto;
  display: block;
}

.ritual-annotation-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}

/* ─── Bridge ─────────────────────────────────────────────────────────────────── */
#the-bridge {
  background: var(--cream);
  padding: calc(var(--section-pad) * 0.5) 2rem;
  text-align: center;
}

.bridge-caption {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  letter-spacing: 0.02em;
}

/* ─── The Contexts ───────────────────────────────────────────────────────────── */
#the-contexts {
  background: var(--cream);
}

.contexts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  line-height: 0;
}

.context-image {
  aspect-ratio: 3 / 4;
  background: var(--dark);
  overflow: hidden;
}

.context-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
}

.contexts-caption {
  padding: 4rem 2rem 5rem;
  text-align: center;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  letter-spacing: 0.01em;
}

/* ─── The Video ──────────────────────────────────────────────────────────────── */
#the-video {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-wrap {
  width: 100%;
  line-height: 0;
}

.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.video-caption {
  padding: 3.5rem 2rem 4rem;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(242, 241, 237, 0.7);
  letter-spacing: 0.04em;
  text-align: center;
}

/* ─── Enquire ────────────────────────────────────────────────────────────────── */
#enquire {
  background: var(--cream);
  padding: 10rem 3.5rem 8rem;
}

.enquire-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 5rem;
  letter-spacing: 0.01em;
}

.enquire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
}

.enquire-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.enquire-email {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--dark);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.enquire-email:hover {
  color: var(--gold);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.field-group {
  margin-bottom: 1.5rem;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 21, 0.2);
  padding: 0.6rem 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.25s ease;
  resize: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: rgba(26, 26, 21, 0.35);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-bottom-color: var(--gold);
}

textarea {
  display: block;
  line-height: 1.7;
}

.form-btn {
  margin-top: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  transition: opacity 0.2s ease;
}

.form-btn::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.form-btn:hover::after {
  transform: scaleX(1);
}

.form-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.form-btn:disabled::after {
  display: none;
}

.form-message {
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  min-height: 1.2em;
  color: var(--muted);
}

.form-message.success {
  color: var(--gold);
}

.form-message.error {
  color: #8B2020;
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
#footer {
  background: var(--cream);
  padding: 0 3.5rem 4rem;
  border-top: 1px solid rgba(26, 26, 21, 0.08);
}

#footer p {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 2.5rem;
}

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-pad: 6rem;
  }

  #nav {
    padding: 0 1.5rem;
  }

  .nav-logo-text {
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .enquire-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  #enquire {
    padding: 7rem 1.5rem 5rem;
  }

  .enquire-heading {
    margin-bottom: 3.5rem;
  }

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

  .context-image {
    aspect-ratio: 4 / 3;
  }

  #the-object .full-bleed-img {
    height: 63vw;
    object-fit: cover;
    object-position: 60% center;
  }

  #the-ritual {
    overflow: hidden;
  }

  .ritual-annotated {
    transform: scale(1.1);
    transform-origin: top center;
  }

  .ritual-annotation-mobile line {
    stroke-width: 6;
  }

  #footer {
    padding: 0 1.5rem 3rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
}
