/* Lone Star Uniquities — warm antique treasure-trove (Cass 2026-07-18).
   Palette: espresso/brick/brass/gold/ochre/aged-cream — captured from real first-party photos.
   Playfair Display (serif display) + EB Garamond (body serif). Discovery, patina, collector's eye.
   clamp()/calc() spaced ops throughout. */

:root {
  --espresso: #482114;
  --brick:    #83351D;
  --brass:    #88673E;
  --gold:     #D5B566;
  --ochre:    #C27B3E;
  --cream:    #EBE0A0;
  --paper:    #FBF6EA;
  --ink:      #2A1810;
  --ink2:     #5C3A28;
  --mist:     #9A7A65;

  --line:         rgba(72, 33, 20, .14);
  --line-gold:    rgba(213, 181, 102, .38);
  --wrap:     74rem;
  --gut:      clamp(1.15rem, 4vw, 2.6rem);
  --rad:      3px;
  --f-disp:   "Playfair Display", Georgia, "Times New Roman", serif;
  --f-body:   "EB Garamond", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.narrow { max-width: 44rem; }
.center { text-align: center; }
.center-x { margin-inline: auto; }
.accent { color: var(--brick); }

/* ── figure / placeholder ────────────────────────────────── */
.fig { overflow: hidden; border-radius: var(--rad); background: var(--cream); }
.fig img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fig--ph {
  position: relative;
  background: linear-gradient(135deg, #EBE0A0, #F9F2DC);
  border: 1px dashed var(--line-gold);
  display: grid;
  place-items: center;
}

/* ── eyebrow / headings / type ───────────────────────────── */
.eyebrow {
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass);
}
.h2 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(1.95rem, 1.2rem + 3vw, 3.3rem);
  line-height: 1.08;
  margin-top: .5rem;
  color: var(--espresso);
  letter-spacing: -.01em;
}
.lede {
  font-family: var(--f-body);
  font-size: clamp(1.04rem, .96rem + .4vw, 1.22rem);
  color: var(--ink2);
  max-width: 40rem;
  margin-top: 1rem;
}
.body-text {
  font-family: var(--f-body);
  font-size: 1.08rem;
  margin-top: 1rem;
  color: var(--ink2);
  line-height: 1.72;
}

/* ── gold hairline seam ──────────────────────────────────── */
.seam {
  height: 1px;
  width: 100%;
  max-width: 12rem;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gold) 0%, var(--ochre) 60%, transparent);
}
.seam--center { margin-inline: auto; transform-origin: center; }
.js-ready .seam { opacity: 0; }
.js-ready .seam.is-in { opacity: 1; animation: seamdraw .9s cubic-bezier(.42, 0, .18, 1) both; }
@keyframes seamdraw { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) { .js-ready .seam { opacity: 1 !important; animation: none !important; } }

/* ── buttons ──────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .95rem 2rem;
  border-radius: var(--rad);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .12s;
}
.btn:active { transform: translateY(1px); }
.btn--brick { background: var(--brick); color: #fff; border-color: var(--brick); }
.btn--brick:hover { background: var(--espresso); border-color: var(--espresso); }
.btn--ghost { border-color: var(--brick); color: var(--brick); }
.btn--ghost:hover { background: var(--brick); color: #fff; }
.btn--lg { padding: 1.1rem 2.3rem; font-size: .86rem; }
.btn--light { border-color: rgba(251, 246, 234, .6); color: var(--paper); }
.btn--light:hover { background: var(--paper); color: var(--espresso); }

/* ── sticky nav ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 234, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background .24s;
}
.nav[data-nav-state="solid"] { background: var(--paper); }
.nav__inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: .85rem var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__brand { min-width: 0; }
.nav__word { display: inline-flex; flex-direction: column; gap: .05rem; min-width: 0; }
.nav__word-a {
  font-family: var(--f-disp);
  font-style: italic;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: .01em;
  color: var(--espresso);
  white-space: nowrap;
  line-height: 1;
}
.nav__word-b {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: .55rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brass);
  line-height: 1;
}
.nav__links { display: none; list-style: none; gap: 1.6rem; }
.nav__links a {
  font-family: var(--f-body);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--ink2);
  transition: color .2s;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--brick); }
.nav__cta { padding: .62rem 1.25rem; font-size: .7rem; }

/* ── hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(28rem, 72vh, 42rem);
  display: flex;
  align-items: center;
  background: var(--espresso);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: .48;
}
.hero__bg picture source { display: none; }
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(72, 33, 20, .82) 0%, rgba(72, 33, 20, .52) 60%, rgba(131, 53, 29, .32) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(3rem, 10vw, 6rem) var(--gut);
}
.hero__panel { max-width: 40rem; }
.hero__eyebrow {
  font-family: var(--f-body);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__title {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(2.6rem, 1.6rem + 5vw, 5.2rem);
  line-height: 1.03;
  letter-spacing: -.015em;
  margin-top: .6rem;
  color: var(--paper);
}
.hero__seam { margin-top: 1.3rem; }
.hero__sub {
  font-family: var(--f-body);
  font-size: clamp(1.04rem, .96rem + .5vw, 1.22rem);
  color: var(--cream);
  margin-top: 1.4rem;
  max-width: 36rem;
  line-height: 1.64;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero__where {
  margin-top: 1.6rem;
  font-family: var(--f-body);
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--gold);
}

/* ── sections ──────────────────────────────────────────────── */
.section { padding-block: clamp(3.25rem, 8vw, 5.5rem); }
.band-cream  { background: var(--cream); }
.band-espresso { background: var(--espresso); color: var(--paper); }
.band-espresso .h2 { color: var(--paper); }
.band-espresso .eyebrow { color: var(--gold); }
.band-espresso .lede, .band-espresso .body-text { color: var(--cream); }
.band-espresso .seam { background: linear-gradient(90deg, var(--gold) 0%, var(--ochre) 60%, transparent); }
.band-espresso .btn--ghost { border-color: var(--gold); color: var(--gold); }
.band-espresso .btn--ghost:hover { background: var(--gold); color: var(--espresso); }

/* invitation band — aged paper */
.band-invitation {
  background: var(--cream);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  padding-block: clamp(2.8rem, 7vw, 4.8rem);
}

/* ── split layout ──────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(1.8rem, 4vw, 3rem); align-items: center; }

/* ── collection cards ─────────────────────────────────────── */
.cat-cards { margin-top: clamp(1.6rem, 4vw, 2.4rem); display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.cat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cat-card .fig { border-radius: 0; }
.cat-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.cat-card__title {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--espresso);
}
.cat-card__text { margin-top: .55rem; font-size: 1rem; color: var(--ink2); line-height: 1.64; }
.cat-card__cta {
  margin-top: 1rem;
  display: inline-block;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brick);
}

/* ── band figure (full-bleed image) ───────────────────────── */
.band-figure { position: relative; overflow: hidden; }
.band-figure .fig { border-radius: 0; }
.band-figure--wide .fig { aspect-ratio: 4 / 5; }

/* ── FAQ accordion ────────────────────────────────────────── */
.faq { margin-top: clamp(1.6rem, 4vw, 2.4rem); border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.1rem;
  font-family: var(--f-disp);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--espresso);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--brass);
  flex-shrink: 0;
  transition: transform .22s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding-bottom: 1.1rem; font-size: 1rem; color: var(--ink2); line-height: 1.7; }

/* ── NAP / info list ──────────────────────────────────────── */
.info-list { list-style: none; margin-top: 1rem; }
.info-list li { padding-block: .55rem; border-bottom: 1px solid var(--line); font-size: 1rem; color: var(--ink2); }
.info-list strong { color: var(--espresso); }

/* ── footer ───────────────────────────────────────────────── */
.footer { background: var(--espresso); color: var(--paper); padding-top: clamp(3rem, 6vw, 4.2rem); }
.footer__inner { display: flex; flex-direction: column; gap: 2.2rem; }
.footer__brand .nav__word-a { color: var(--paper); }
.footer__brand .nav__word-b { color: var(--gold); }
.footer__tag {
  font-family: var(--f-disp);
  font-style: italic;
  font-size: 1.06rem;
  margin-top: .75rem;
  color: var(--cream);
}
.footer__nav { margin-top: 1.1rem; }
.footer__nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; }
.footer__nav a { font-family: var(--f-body); font-size: .82rem; font-weight: 400; letter-spacing: .03em; color: var(--cream); }
.footer__nav a:hover { color: var(--gold); }
.footer__nap p { color: var(--cream); font-size: .96rem; line-height: 1.75; }
.footer__nap a:hover { color: var(--gold); }
.footer__hours-title {
  font-family: var(--f-body);
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .76rem;
  margin-bottom: .4rem;
  color: var(--gold);
}
.footer__hours p { color: var(--cream); font-size: .96rem; line-height: 1.75; }
.footer__legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(213, 181, 102, .18);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  padding-bottom: 6rem;
}
.footer__legal p { color: var(--mist); font-size: .8rem; }
.footer__legal-cta { color: var(--gold); font-family: var(--f-body); font-weight: 400; letter-spacing: .08em; font-size: .82rem; }

/* ── mobile action bar ────────────────────────────────────── */
.mobar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: flex;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 -2px 12px rgba(72, 33, 20, .10);
}
.mobar a {
  flex: 1;
  text-align: center;
  padding: .95rem;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mobar__call { color: var(--espresso); border-right: 1px solid var(--line); }
.mobar__cta { background: var(--brick); color: #fff; }

/* ── reveal animate ───────────────────────────────────────── */
[data-reveal] { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  [data-reveal].reveal-init { opacity: 0; transform: translateY(14px); }
  [data-reveal].reveal-in { opacity: 1; transform: none; transition: opacity .5s ease, transform .55s ease; }
}

/* ── responsive ───────────────────────────────────────────── */
@media (min-width: 700px) {
  .cat-cards { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 850px) {
  .nav__links { display: flex; }
  .mobar { display: none; }
  .footer__legal { padding-bottom: 1.5rem; }
  .footer__inner { flex-direction: row; justify-content: space-between; }
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide { grid-template-columns: 1.1fr 1fr; }
  .band-figure--wide .fig { aspect-ratio: 16 / 9; }
}
@media (max-width: 849px) { .nav__cta { display: none; } }
