:root {
  --bg: #f7f3ec;
  --bg-alt: #fffdf9;
  --bg-deep: #efe7da;
  --ink: #241f1b;
  --ink-soft: #6b5f54;
  --brown: #623f2b;
  --gold: #c4885a;
  --gold-deep: #a96f44;
  --line: rgba(98, 63, 43, 0.14);
  --shadow: 0 30px 60px -28px rgba(54, 35, 22, 0.45);
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin: 0 0 1rem;
}

.display {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 1.4rem;
}
.display--sm { font-size: clamp(2.4rem, 5vw, 3.6rem); }

.headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0;
}

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 34ch;
  margin: 0 0 2.2rem;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.2rem, 5vw, 3.5rem);
  background: rgba(247, 243, 236, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand__mark { border-radius: 8px; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  padding-left: 0.12em;
}
.site-nav { display: flex; align-items: center; gap: 1.8rem; }
.nav-link {
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--brown); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--brown);
  color: #fdf7ef;
  padding: 0.95rem 1.7rem;
  font-size: 1rem;
  box-shadow: 0 14px 30px -14px rgba(98, 63, 43, 0.75);
}
.btn--primary:hover { background: #4f3221; }
.btn--ghost {
  border: 1px solid var(--brown);
  color: var(--brown);
  padding: 0.6rem 1.25rem;
  font-size: 0.92rem;
}
.btn--ghost:hover { background: var(--brown); color: #fdf7ef; }
.btn--store {
  background: #1c150f;
  color: #fff;
}
.btn--store:hover { background: #000; }
.btn__icon { width: 22px; height: 22px; flex: 0 0 auto; }
.btn__label { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.08; }
.btn__sub { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.04em; opacity: 0.85; }
.btn__store { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.01em; }

/* All call-to-action buttons share one height + shape (icon + label). */
.cta-group { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.cta-group--center { justify-content: center; }
.cta-group .btn {
  height: 54px;
  padding: 0 1.3rem;
  gap: 0.6rem;
  border-radius: 14px;
}

/* ===== Hero ===== */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.2rem, 5vw, 3.5rem) clamp(4rem, 9vw, 7rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__art { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__shot {
  width: min(320px, 78%);
  height: auto;
  border-radius: 36px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
.hero__glow {
  position: absolute;
  inset: 8% 14%;
  background: radial-gradient(60% 50% at 50% 40%, rgba(196, 136, 90, 0.55), rgba(196, 136, 90, 0) 70%);
  filter: blur(36px);
  z-index: 0;
}

/* ===== How ===== */
.how {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.2rem, 5vw, 3.5rem);
}
.section-head { text-align: center; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
}
.step {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2.2rem 1.9rem;
}
.step__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.step__title { font-size: 1.2rem; margin: 0 0 0.6rem; letter-spacing: -0.01em; }
.step__text { color: var(--ink-soft); font-size: 1rem; margin: 0; }

/* ===== Gallery ===== */
.gallery {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.gallery .section-head { padding: 0 1.2rem; }
.shots {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 2.4vw, 1.8rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem clamp(1.2rem, 5vw, 3.5rem) 1.5rem;
  -webkit-overflow-scrolling: touch;
}
.shots::-webkit-scrollbar { height: 8px; }
.shots::-webkit-scrollbar-thumb { background: rgba(98, 63, 43, 0.25); border-radius: 99px; }
.shot {
  flex: 0 0 auto;
  width: clamp(200px, 24vw, 270px);
  height: auto;
  border-radius: 26px;
  box-shadow: var(--shadow);
  scroll-snap-align: center;
}

/* ===== Final CTA ===== */
.final-cta {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 5vw, 3.5rem);
  text-align: center;
}
.final-cta .lede { margin-left: auto; margin-right: auto; }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.4rem clamp(1.2rem, 5vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  color: var(--ink-soft);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--ink);
}
.footer__brand img { border-radius: 7px; }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { font-size: 0.92rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--brown); }
.footer__copy { font-size: 0.85rem; margin: 0; width: 100%; text-align: center; opacity: 0.8; }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2.5rem;
  }
  .hero__copy { order: 1; }
  .hero__art { order: 2; margin-top: 2.2rem; }
  .lede { margin-left: auto; margin-right: auto; }
  .cta-group { justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .site-nav .nav-link { display: none; }
  .nav-cta { display: none; }
}
@media (max-width: 460px) {
  body { font-size: 16px; }
  .cta-group { flex-direction: column; }
  .cta-group .btn { width: 100%; }
}
