/* SIERRA SOUL Permanent Jewelry
   ------------------------------------------------------------------
   Scoped to this folder. Paths stay relative so the site can move to
   its own domain root without a rewrite. */

:root {
  --cream: #FBF8EC;
  --card: #FDFBF2;
  --ink: #2A2723;
  --ink-soft: #4A453D;
  --ink-faint: #6E675C;
  --gold: #8C7A3F;
  --gold-deep: #7A6A34;
  --gold-light: #C9BE7E;
  --olive: #EFEBBF;
  --olive-ink: #3F3A2E;
  --rule: rgba(42, 39, 35, 0.18);
  --rule-soft: rgba(42, 39, 35, 0.08);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: Jost, "Helvetica Neue", Arial, sans-serif;
  --gutter: 6vw;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Conditionally revealed fields set [hidden]; beat the component display. */
[hidden] { display: none !important; }

/* Sticky header clearance for in-page anchors. */
section[id] { scroll-margin-top: 84px; }

a { color: var(--ink); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--gold); }

::selection { background: var(--olive); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 60;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--cream);
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.skip-link:focus { left: 0; color: var(--cream); }

/* ---------- Shared type ---------- */

.eyebrow {
  margin: 0 0 14px;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow-olive { color: var(--gold-deep); }
.eyebrow-sand { color: var(--gold-light); }

.section-title {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.lede {
  margin: 0 0 40px;
  max-width: 44ch;
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.lede-olive { color: var(--olive-ink); max-width: none; }
.lede-onDark { color: rgba(251, 248, 236, 0.72); max-width: 34ch; }

.btn {
  display: inline-block;
  padding: 16px 34px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.18s ease;
}
.btn:hover { background: var(--gold); color: var(--cream); }

.link-underline {
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(42, 39, 35, 0.3);
  padding-bottom: 3px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  background: rgba(251, 248, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule-soft);
}

.brand { display: flex; align-items: center; }
.brand img { height: 22px; width: auto; }

.site-nav {
  display: flex;
  gap: 32px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-cta { color: var(--gold); }
.nav-cta:hover { color: var(--ink); }

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 88vh;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  padding: 9vh var(--gutter);
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}
.hero-copy h1 em { font-style: italic; color: var(--gold); }

.hero-copy .lede { margin: 0; max-width: 40ch; font-size: 17.5px; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  min-height: 60vh;
  background: var(--olive);
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 90%;
}

/* ---------- Marquee band ---------- */

.marquee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 22px var(--gutter);
  background: var(--ink);
  color: var(--cream);
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-align: center;
}
.marquee-sep { opacity: 0.4; }

/* ---------- How it works ---------- */

.how {
  padding: 12vh var(--gutter) 0;
  max-width: 1180px;
  margin: 0 auto;
}
.how .section-title { margin-bottom: 64px; max-width: 22ch; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}
.step-num { font-family: var(--serif); font-size: 34px; color: var(--gold); }
.step h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 25px;
}
.step p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* ---------- Brand statement ---------- */

.ethos {
  padding: 12vh var(--gutter);
  max-width: 1180px;
  margin: 0 auto;
}

.ethos-inner {
  border-top: 1px solid var(--rule);
  padding-top: 58px;
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
}

.ethos-statement {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(27px, 3.1vw, 42px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.ethos-statement em { font-style: italic; color: var(--gold); }

.ethos p:not(.eyebrow):not(.ethos-statement) {
  margin: 0 auto 18px;
  max-width: 52ch;
  font-size: 16.5px;
  line-height: 1.76;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.ethos p:last-child { margin-bottom: 0; }

/* ---------- Events ---------- */

.events {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  background: var(--olive);
}

.events-media {
  position: relative;
  align-self: stretch;
  min-height: 560px;
}
.events-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-copy { padding: 10vh var(--gutter); }
.events-copy .section-title { max-width: 20ch; }

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(42, 39, 35, 0.16);
}
.event-grid li { background: var(--olive); padding: 24px 20px; }
.event-grid h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
}
.event-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.events-note {
  margin: 26px 0 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--olive-ink);
  text-wrap: pretty;
}

/* ---------- Book ---------- */

.book {
  background: var(--ink);
  color: var(--cream);
  padding: 12vh var(--gutter);
}

.book-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.book-copy .section-title { font-size: clamp(30px, 3.4vw, 48px); }

.book-area {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 248, 236, 0.5);
  line-height: 2;
}

.book-email {
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(251, 248, 236, 0.62);
}
.book-email a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(201, 190, 126, 0.4);
  padding-bottom: 2px;
}
.book-email a:hover {
  color: var(--cream);
  border-bottom-color: rgba(251, 248, 236, 0.6);
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 24px;
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: span 2; }

.lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 248, 236, 0.6);
}

.field input,
.field select,
.field textarea {
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(251, 248, 236, 0.28);
  padding: 10px 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  color: var(--cream);
  outline: none;
  border-radius: 0;
  transition: border-color 0.18s ease;
}
.field textarea { resize: vertical; }
.field input[type="date"] { color-scheme: dark; }
.field select option { color: var(--ink); }

.field input::placeholder,
.field textarea::placeholder { color: rgba(251, 248, 236, 0.35); }

.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--gold-light); }

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-bottom-color: #E0A08A; }

.field-msg { font-size: 12.5px; color: #E0A08A; }

/* Honeypot: never shown to a human. */
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-submit {
  grid-column: span 2;
  justify-self: start;
  margin-top: 8px;
  padding: 16px 38px;
  background: var(--olive);
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease;
}
.form-submit:hover:not(:disabled) { background: var(--gold-light); }
.form-submit:disabled { opacity: 0.6; cursor: default; }

.form-error {
  display: none;
  grid-column: span 2;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #E0A08A;
}
.form-error.is-visible { display: block; }

.form-status { display: none; }
.form-status.is-visible { display: block; }
.form-status h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.25;
  color: var(--cream);
}

/* ---------- FAQ ---------- */

.faq {
  padding: 8vh var(--gutter) 10vh;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 18px;
  margin-bottom: 44px;
}
.faq-head .section-title { margin: 0; font-size: clamp(26px, 2.8vw, 38px); }
.faq-head .eyebrow { margin: 0; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  align-items: start;
}

.faq-item {
  border: 1px solid rgba(42, 39, 35, 0.16);
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.18s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--gold);
}
.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* A last ask once the objections are handled. The booking form sits above the
   FAQ, so by the last answer it is a long way back up the page -- on mobile,
   eight stacked accordions back. Mirrors the rule under .faq-head. */
.faq-close {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 42px;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.faq-close p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  text-wrap: balance;
}

/* ---------- Footer ---------- */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px var(--gutter);
  border-top: 1px solid var(--rule-soft);
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-name {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.35;
  color: var(--ink-faint);
}
.footer-email {
  font-size: 13.5px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
}
.footer-meta { font-size: 13.5px; line-height: 1.8; color: var(--ink-faint); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  :root { --gutter: 7vw; }

  .site-header { flex-direction: column; align-items: center; gap: 14px; }
  .brand { justify-content: center; }
  .site-nav { gap: 22px; font-size: 11.5px; justify-content: center; }

  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 8vh var(--gutter) 6vh; gap: 28px; order: 2; }
  .hero-media { order: 1; min-height: 56vh; }
  .hero-media img { object-position: 50% 85%; }

  .marquee { gap: 18px; font-size: 10.5px; letter-spacing: 0.2em; }

  .how { padding: 9vh var(--gutter) 0; }
  .how .section-title { margin-bottom: 40px; }
  .steps { grid-template-columns: 1fr; gap: 34px; }

  .ethos { padding: 9vh var(--gutter); }
  .ethos-inner { padding-top: 42px; }

  .events { grid-template-columns: 1fr; }
  /* Let the photo run at its own ratio so no hands get cropped off. */
  .events-media { min-height: 0; }
  .events-media img { position: static; width: 100%; height: auto; }
  .events-copy { padding: 8vh var(--gutter); }

  .book { padding: 9vh var(--gutter); }
  .book-inner { grid-template-columns: 1fr; gap: 48px; }

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

/* Mobile: everything centered.

   Below 900px every section is already a single stacked column, so the copy
   sits better centered on that column than ragged against the left gutter.
   Sits between the two breakpoints on purpose: the narrower block below still
   wins where it needs to (the full-width submit button, the stacked footer).

   The form fields are the deliberate exception. Centered labels above
   left-aligned typing is harder to fill in and reads as a mistake, so the
   fields keep their alignment while the copy around them centers. */

@media (max-width: 900px) {
  .hero-copy { align-items: center; text-align: center; }
  .hero-copy .lede { margin-inline: auto; }
  .hero-actions { justify-content: center; }

  .how { text-align: center; }
  .how .section-title { margin-inline: auto; }
  .step { align-items: center; }

  .events-copy { text-align: center; }
  .events-copy .section-title,
  .events-copy .lede,
  .events-note { margin-inline: auto; }

  .book-copy { text-align: center; }
  .book-copy .section-title,
  .book-copy .lede { margin-inline: auto; }
  .form-submit { justify-self: center; }
  .form-status { text-align: center; }

  .faq-head { flex-direction: column; align-items: center; text-align: center; }
  .faq-grid { text-align: center; }
  /* Take the +/- out of flow so the question centers on the whole card
     rather than on whatever space the marker leaves it. The padding keeps
     a long question from running under it. */
  .faq-item summary { position: relative; justify-content: center; padding: 18px 44px; }
  .faq-item summary::after { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }

  .site-footer { justify-content: center; text-align: center; }
  .footer-brand { align-items: center; }
}

@media (max-width: 620px) {
  section[id] { scroll-margin-top: 118px; }

  .site-nav { width: 100%; justify-content: space-between; gap: 12px; }

  .hero-actions { gap: 18px; }
  .btn { padding: 15px 28px; }

  .form { grid-template-columns: 1fr; gap: 22px; }
  .field-full, .form-submit, .form-error { grid-column: span 1; }
  .form-submit { justify-self: stretch; text-align: center; }

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

  .faq-head { margin-bottom: 30px; }

  .site-footer { flex-direction: column; align-items: center; text-align: center; gap: 18px; }
  .footer-brand { align-items: center; }
}
