/* ============================================================
   Putt Social DMV — cream / black / sage, elegant + playful
   ============================================================ */

:root {
  --cream:      #ffffff;
  --hero-bg:    #ffffff;   /* white hero/base */
  --cream-2:    #eeede9;   /* logo off-white, alt sections */
  --cream-3:    #f7f6f3;   /* cards / raised */
  --ink:        #1f1d18;   /* warm near-black */
  --ink-soft:   #4f4b43;   /* muted text */
  --ink-faint:  #847f74;   /* labels */
  --accent:     #7a8b6f;   /* sage */
  --accent-deep:#5f7156;
  --accent-tint:#e6e7d8;
  --line:       rgba(32,29,23,0.14);
  --line-soft:  rgba(32,29,23,0.08);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "EB Garamond", Georgia, serif;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 80px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---------- shared structural ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--alt { background: var(--cream-2); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent-deep);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent-deep);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }

.display {
  font-size: clamp(2.9rem, 7.4vw, 6rem);
  font-weight: 500;
  line-height: 1.04;
}
.display em { font-style: italic; color: var(--accent-deep); }

.h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.h2 em { font-style: italic; color: var(--accent-deep); }

.lead { font-size: clamp(1.15rem, 1.7vw, 1.45rem); color: var(--ink-soft); line-height: 1.55; }

.muted { color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.95em 1.8em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s, transform .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--solid { background: var(--accent); color: #fbf8f0; }
.btn--solid:hover { background: var(--accent-deep); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: #000; }
.btn--cream { background: #fdfbf6; color: var(--ink); }
.btn--cream:hover { background: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }

/* ---------- placeholder imagery ---------- */
.ph {
  position: relative;
  background-color: var(--cream-3);
  background-image:
    repeating-linear-gradient(135deg,
      rgba(32,29,23,0.05) 0 1px,
      transparent 1px 11px);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph__label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0.4em 0.8em;
  border-radius: 4px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--hero-bg) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 0.6em; text-decoration: none; color: var(--ink); }
.logo__img { height: 52px; width: auto; display: block; }
.logo__mark {
  width: 30px; height: 30px; border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #fff 0 14%, var(--accent) 16% 100%);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12);
  position: relative; flex: none;
}
.logo__mark::after{
  content:""; position:absolute; inset:0; border-radius:50%;
  background:
    radial-gradient(circle at 62% 60%, rgba(255,255,255,0.5) 0 6%, transparent 7%),
    radial-gradient(circle at 40% 64%, rgba(0,0,0,0.10) 0 6%, transparent 7%),
    radial-gradient(circle at 64% 38%, rgba(0,0,0,0.10) 0 6%, transparent 7%);
}
.logo__name { font-family: var(--font-display); font-size: 1.42rem; font-weight: 600; letter-spacing: 0.01em; white-space: nowrap; line-height: 1; }
.logo__name span { color: var(--accent-deep); font-style: italic; }
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.nav a { text-decoration: none; color: var(--ink); font-size: 0.95rem; letter-spacing: 0.02em; position: relative; }
.nav a::after { content:""; position:absolute; left:0; bottom:-4px; height:1px; width:0; background:var(--accent-deep); transition: width .25s; }
.nav a:hover::after { width: 100%; }
.nav .btn { color:#fbf8f0; }
.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.menu-btn { display:none; background:none; border:none; cursor:pointer; padding:8px; }
.menu-btn span { display:block; width:24px; height:2px; background:var(--ink); margin:5px 0; transition:.25s; }

/* ============================================================
   HERO (3 variants)
   ============================================================ */
.hero { position: relative; background: var(--hero-bg); }

/* shared bits */
.hero__quote { font-style: italic; color: var(--ink-soft); }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note { font-size: 0.92rem; color: var(--ink-faint); display:flex; align-items:center; gap:0.5em; }
.hero__note b { color: var(--ink); font-weight: 600; }

/* --- Variant: editorial (split) --- */
.hero--editorial .wrap { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(48px, 7vw, 96px); }
.hero--editorial .grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 64px); align-items: center;
}
.hero--editorial .copy { max-width: 600px; }
.hero--editorial .display { margin: 0.34em 0 0; }
.hero--editorial .lead { margin-top: 1.15em; }
.hero--editorial .hero__media {
  aspect-ratio: 4/5; border-radius: 220px 220px 16px 16px;
}
.hero--editorial .hero__cta-row { margin-top: 2rem; }
.hero--editorial .stats { display:flex; gap: clamp(24px,3vw,46px); margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.stat .stat__num { font-family: var(--font-display); font-size: 2.1rem; line-height: 1; color: var(--accent-deep); }
.stat .stat__lab { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.35em; }
.no-stats .hero--editorial .stats { display: none; }

/* --- Variant: centered (full bleed) --- */
.hero--centered { min-height: 90vh; min-height: 90svh; display: grid; align-items: center; }
.hero--centered .hero__media {
  position: absolute; inset: 0; border: none; border-radius: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero--centered .hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(22,19,14,0.42) 0%, rgba(22,19,14,0.52) 55%, rgba(22,19,14,0.68) 100%);
}
.hero--centered .wrap { position: relative; z-index: 2; text-align: center; padding-top: clamp(60px, 10vw, 120px); padding-bottom: clamp(60px, 10vw, 120px); width: 100%; }
.hero--centered .copy { max-width: 880px; margin: 0 auto; }
.hero--centered .display { margin: 0.3em 0 0.5em; color: #fdfbf6; }
/* "celebration" em — was a fixed cream (#e7d9c9); now follows the live accent so Color Lab controls it */
.hero--centered .display em { color: var(--accent); }
.hero--centered .eyebrow { color: #e2d6c6; }
.hero--centered .eyebrow::before, .hero--centered .eyebrow::after { background: #e2d6c6; }
.hero--centered .lead { max-width: 620px; margin: 0 auto; color: #ece6dc; }
.hero--centered .hero__cta-row { justify-content: center; margin-top: 2.2rem; }
.hero--centered .hero__note { justify-content: center; margin-top: 1.4rem; color: rgba(255,255,255,0.78); }
.hero--centered .hero__note b { color: #fff; }

/* --- Variant: split (playful, big type + badge) --- */
.hero--split .wrap { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 6vw, 80px); }
.hero--split .display { font-size: clamp(3.2rem, 11vw, 9rem); text-align: center; }
.hero--split .topline { display:flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.hero--split .hero__media { aspect-ratio: 16/7; margin-top: clamp(24px,4vw,48px); border-radius: 14px; }
.hero--split .badge {
  position: absolute; z-index: 5; right: clamp(16px, 6vw, 90px); top: clamp(120px, 18vw, 200px);
  width: clamp(98px, 12vw, 150px); height: clamp(98px, 12vw, 150px); border-radius: 50%;
  background: var(--accent); color: #fbf8f0; display:grid; place-items:center; text-align:center;
  transform: rotate(-12deg); box-shadow: 0 10px 30px rgba(95,113,86,0.35);
  font-family: var(--font-display); line-height:1.05; padding: 10px;
}
.hero--split .badge b { display:block; font-size: 1.5rem; }
.hero--split .badge small { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.9; }
.hero--split .undergrid { display:flex; justify-content: space-between; align-items:center; gap: 20px; flex-wrap: wrap; margin-top: 1.6rem; }

/* ============================================================
   EXPERIENCE
   ============================================================ */
.exp__head { max-width: 760px; }
.exp__head .h2 { margin: 0.45em 0 0.5em; }
.exp__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 80px); align-items: center; margin-top: clamp(40px,5vw,72px); }
.exp__media { aspect-ratio: 5/6; border-radius: 14px; }
.exp__img { width: 100%; object-fit: cover; display: block; background: var(--cream-2); }
.exp__list { list-style: none; display: grid; gap: 1.5rem; }
.exp__list li { padding-left: 1.6em; position: relative; }
.exp__list { list-style: none; display: grid; gap: 0; }
.exp__list li { position: relative; padding: 1.4rem 0; border-top: 1px solid var(--line); }
.exp__list li:first-child { border-top: none; padding-top: 0; }
.exp__list h3 {
  display: flex; align-items: baseline; gap: 0.6em;
  font-size: 1.4rem; line-height: 1.15; margin-bottom: 0.4em;
}
.exp__list h3::before {
  content: ""; flex: none; align-self: center;
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12);
}
.exp__list p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.55; padding-left: 1.5em; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); margin-top: clamp(40px,5vw,68px); counter-reset: step; }
.step { position: relative; }
.step__num {
  font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--accent-deep);
  display:flex; align-items:center; gap: 0.6em; margin-bottom: 0.9rem;
}
.step__num::before { counter-increment: step; content: "0" counter(step); font-size: 2.6rem; font-style: normal; color: var(--ink); line-height: 1; }
.step h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); font-size: 1rem; }
.step::after {
  content: ""; position: absolute; top: 1.3rem; right: -0.5rem; width: 1px; height: 60%; background: var(--line);
}
.step:last-child::after { display: none; }

/* ============================================================
   GALLERY (auto-scrolling marquee, full-bleed)
   ============================================================ */
.gallery { overflow: hidden; }
.gallery__head { max-width: 640px; margin: 0 auto; text-align: center; }
.gallery__head .h2 { margin: 0.4em 0 0.35em; }
.gallery__head .lead { margin: 0 auto; }

.gallery__viewport {
  margin-top: clamp(30px, 4vw, 48px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.gallery__track {
  display: flex;
  width: max-content;
  animation: gallery-marquee 60s linear infinite;
}
/* gallery keeps scrolling continuously, even on hover */
.gallery__set { display: flex; flex: none; }
.gallery__shot {
  flex: none;
  width: clamp(258px, 26vw, 360px);
  margin: 0 12px 0 0;   /* trailing gap baked in so -50% loops seamlessly */
}
.gallery__ph { width: 100%; height: clamp(380px, 46vw, 520px); border-radius: 14px; }
.gallery__img {
  width: 100%; height: clamp(380px, 46vw, 520px);
  object-fit: cover; border-radius: 14px; display: block;
  background: var(--cream-2);
}

@keyframes gallery-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .gallery__track { animation: none; }
  .gallery__viewport { overflow-x: auto; scrollbar-width: none; }
  .gallery__viewport::-webkit-scrollbar { display: none; }
}
@media (max-width: 600px) {
  .gallery__shot { width: 78vw; }
}

/* ============================================================
   PACKAGE
   ============================================================ */
/* ============================================================
   PACKAGES (two cards + shared inclusions)
   ============================================================ */
.pkg__head { max-width: 640px; margin: 0 auto; text-align: center; }
.pkg__head .lead { margin: 0 auto; }

.pkgs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: clamp(40px, 5vw, 60px);
}
.pkgcard {
  position: relative; display: flex; flex-direction: column;
  background: var(--cream-3); border: 1px solid var(--line);
  border-radius: 18px; padding: clamp(28px, 3vw, 40px);
}
.pkgcard.is-featured {
  background: var(--ink); border-color: var(--ink);
  box-shadow: 0 24px 50px -30px rgba(32,29,23,0.55);
}
.pkgcard__badge {
  position: absolute; top: -12px; right: 28px;
  background: var(--accent); color: #fbf8f0;
  font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  padding: 0.45em 0.9em; border-radius: 999px;
}
.pkgcard__tag {
  align-self: flex-start; font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600; color: var(--accent-deep);
  background: var(--accent-tint); padding: 0.45em 0.9em; border-radius: 999px;
}
.is-featured .pkgcard__tag { color: #d7ddca; background: rgba(255,255,255,0.10); }
.pkgcard__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 1.1rem 0 0; }
.pkgcard__name { font-size: clamp(2rem, 3vw, 2.7rem); line-height: 1.05; }
.is-featured .pkgcard__name { color: var(--cream); }
.pkgcard__holes {
  font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-faint); flex: none;
}
.is-featured .pkgcard__holes { color: #a8a496; }
.pkgcard__blurb { color: var(--ink-soft); font-size: 1rem; line-height: 1.5; margin: 0.7rem 0 1.5rem; }
.is-featured .pkgcard__blurb { color: #cfc7b6; }
.pkgcard__price {
  display: flex; align-items: baseline; gap: 0.5em;
  padding-top: 1.3rem; margin-top: auto; border-top: 1px solid var(--line);
}
.is-featured .pkgcard__price { border-top-color: rgba(255,255,255,0.16); }
.pkgcard__price b { font-family: var(--font-display); font-size: 2.6rem; font-weight: 500; line-height: 1; }
.is-featured .pkgcard__price b { color: var(--cream); }
.pkgcard__price span { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.is-featured .pkgcard__price span { color: #a8a496; }
.pkgcard__cta { margin-top: 1.4rem; justify-content: center; }
.is-featured .pkgcard__cta.btn--solid { background: var(--accent); color: #fbf8f0; }
.is-featured .pkgcard__cta.btn--solid:hover { background: var(--accent-deep); }

/* shared inclusions */
.pkgincl {
  margin-top: 20px; background: var(--cream-3); border: 1px solid var(--line);
  border-radius: 18px; padding: clamp(28px, 3vw, 44px);
}
.pkgincl__title {
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.74rem; font-weight: 600; color: var(--ink-faint); margin-bottom: 1.4rem;
}
.pkgincl__list {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.95rem 2.4rem;
}
.pkgincl__list li { display: flex; gap: 0.7em; align-items: flex-start; font-size: 1.04rem; }
.pkgincl__list li svg { flex: none; margin-top: 4px; color: var(--accent-deep); }
.pkgincl__note { margin-top: 1.6rem; padding-top: 1.3rem; border-top: 1px solid var(--line);
  font-size: 0.92rem; font-style: italic; color: var(--ink-faint); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--cream); padding: clamp(56px, 8vw, 96px) 0 36px; }
.footer a { color: var(--cream); text-decoration: none; }
.footer__top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(28px, 5vw, 70px); }
.footer__cta .h2 { color: var(--cream); }
.footer__cta .h2 em { color: #c4cdb4; }
.footer .lead { color: #cfc7b6; margin: 0.9rem 0 1.6rem; }
.footer__col h4 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.74rem; color: #b7af9d; margin-bottom: 1.1rem; font-weight: 600; }
.footer__col ul { list-style: none; display: grid; gap: 0.7rem; }
.footer__col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer__contact b { display:block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: clamp(40px, 6vw, 72px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14); font-size: 0.85rem; color: #b7af9d; }
.footer__logo { display:flex; align-items:center; gap:0.55em; }
.footer__logo-img { height: 46px; width: auto; display: block; opacity: 0.95; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .hero--editorial .grid { grid-template-columns: 1fr; }
  .hero--editorial .hero__media { aspect-ratio: 16/10; border-radius: 16px; order: -1; }
  .exp__grid { grid-template-columns: 1fr; }
  .exp__media { aspect-ratio: 4/3; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .step::after { display: none; }
  .pkgs { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__cta { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 20px var(--pad); gap: 18px;
  }
  .menu-btn { display: block; }
  .steps { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero--split .badge { top: auto; bottom: 8px; right: 8px; }
  .pkgincl__list { grid-template-columns: 1fr; gap: 0.85rem; }
  .pkgcard__badge { right: 50%; transform: translateX(50%); }
}
