/* ================================================
   BESPOKE PAGE
   ================================================ */

.nav__link--active { color: #fff !important; }

/* ------------------------------------------------
   HERO
   ------------------------------------------------ */

.bespoke-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #fffdf6 35%,
    #f8f0d4 70%,
    #ECE6C6 100%
  );
}

.bespoke-hero__bg {
  position: absolute;
  inset: 0;
  background: none;
}

.bespoke-hero__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 1rem;
  max-width: 700px;
}

.bespoke-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #590303;
  margin: 0.75rem 0 0.85rem;
  line-height: 1.05;
}

.bespoke-hero__sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 560px;
  margin: 0;
}

/* ------------------------------------------------
   PROCESS
   ------------------------------------------------ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.process-step {
  background: var(--cream);
  padding: 2.5rem 2rem;
}

.process-step__num {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.process-step h3 {
  font-size: 1.2rem;
  color: #590303;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.8;
}

/* ------------------------------------------------
   VIDEO SECTION
   ------------------------------------------------ */

.bespoke-video-section { background: #E4DDB5; }

.bespoke-video-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.bespoke-video-text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 1rem 0 1.5rem;
}

.bespoke-video-text p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.bespoke-video-player {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(38,15,1,0.2);
  aspect-ratio: 9/16;
  max-height: 70vh;
  margin: 0 auto;
}

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

/* ------------------------------------------------
   BESPOKE FORM
   ------------------------------------------------ */

.bespoke-form {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bespoke-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.field__opt {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  font-weight: 300;
  text-transform: none;
}

.field--stone-other[hidden] {
  display: none !important;
}

/* Upload zone */
.upload-zone {
  position: relative;
  border: 1.5px dashed rgba(89,3,3,0.3);
  background: #FAF7EE;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--gold);
  background: #F5EFE0;
}

.upload-zone__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.upload-zone__ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2.5rem;
  color: var(--muted);
  pointer-events: none;
}

.upload-zone__ui svg { opacity: 0.5; }

.upload-zone__label {
  font-size: 0.875rem;
  color: var(--muted);
}

.upload-zone__label span {
  color: var(--gold);
  text-decoration: underline;
  cursor: pointer;
}

.upload-zone__hint {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.7;
}

.upload-zone__previews {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0 1rem 1rem;
}

.upload-zone__previews:empty { display: none; }

.upload-preview {
  position: relative;
  width: 80px;
  height: 80px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.upload-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-preview__remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bespoke-form__note {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.04em;
}

/* Form success state */
.bespoke-form.sent .bespoke-form__fields { display: none; }
.form-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.6rem;
}
.bespoke-form.sent .form-success { display: block; }

/* ------------------------------------------------
   RESPONSIVE
   ------------------------------------------------ */

@media (max-width: 960px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .bespoke-video-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .bespoke-video-player { max-height: 55vh; max-width: 360px; }
  .bespoke-form__row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
  .bespoke-hero__content { padding-bottom: 2rem; }
}
