/* Rayn — airy modern-farmhouse botanical home decor & gift (Cass 2026-07-18).
   Light greige/white + charcoal + rattan/leaf/brass. Cormorant (light serif display) + Jost (geometric sans body).
   Photography-forward. Airy generous whitespace. Warm-elevated-approachable, NOT rustic-country, NOT cold-minimal.
   Clamp/calc whitespace-safe (spaces around + / - operators). */
:root {
  --paper:    #FBFAF6;
  --white:    #F2F0EA;
  --greige:   #B9BDB9;
  --charcoal: #1A1A1A;
  --ink:      #26261F;
  --rattan:   #B98A5E;
  --leaf:     #7A8A5F;
  --brass:    #B08D57;
  --tint:     #F5F4EF;    /* very light warm ground */
  --tint2:    #EDECE6;    /* gentle greige band */
  --line:     rgba(26,26,26,.10);
  --line-rattan: rgba(185,138,94,.28);
  --wrap:     74rem;
  --gut:      clamp(1.15rem, 4vw, 2.6rem);
  --rad:      3px;
  --f-disp:   "Cormorant Garamond","Cormorant","Palatino Linotype",Georgia,serif;
  --f-body:   "Jost","Inter",system-ui,-apple-system,sans-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.66; 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(--leaf) }

/* === PLACEHOLDER BOXES === */
.fig { overflow: hidden; border-radius: var(--rad); background: var(--tint2) }
.fig img { width: 100%; height: 100%; object-fit: cover; display: block }
/* ph: clean background box, NO dev text */
.fig--ph { position: relative; background: linear-gradient(135deg, var(--tint2), var(--tint)); border: 1px dashed var(--line-rattan) }

/* === TYPE === */
.eyebrow { font-family: var(--f-body); font-size: .7rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--leaf) }
.h2 { font-family: var(--f-disp); font-weight: 400; font-size: clamp(2.1rem, 1.35rem + 3.1vw, 3.5rem); line-height: 1.06; margin-top: .5rem; color: var(--charcoal); letter-spacing: -.01em }
.h3 { font-family: var(--f-disp); font-weight: 400; font-size: clamp(1.45rem, 1.1rem + 1.4vw, 2.1rem); line-height: 1.12; color: var(--charcoal) }
.lede { font-size: clamp(1rem, .96rem + .3vw, 1.18rem); color: var(--ink); max-width: 40rem; margin-top: 1rem; opacity: .8 }
.body { font-size: 1.05rem; margin-top: 1rem; color: var(--ink); opacity: .82 }

/* seam: brass hairline under headings */
.seam { height: 1px; width: 100%; max-width: 10rem; background: linear-gradient(90deg, var(--brass) 0%, var(--rattan) 55%, transparent) }
.seam--center { margin-inline: auto }
.js-ready .seam { opacity: 0 }
.js-ready .seam.is-in { opacity: 1; animation: seamdraw .8s 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: 500; font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; padding: .9rem 1.85rem; border-radius: var(--rad); border: 1px solid transparent; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .12s }
.btn:active { transform: translateY(1px) }
.btn--dark { background: var(--charcoal); color: #fff; border-color: var(--charcoal) }
.btn--dark:hover { background: var(--ink); border-color: var(--ink) }
.btn--ghost { border-color: var(--charcoal); color: var(--charcoal) }
.btn--ghost:hover { background: var(--charcoal); color: #fff }
.btn--leaf { background: var(--leaf); color: #fff; border-color: var(--leaf) }
.btn--leaf:hover { background: #697a52; border-color: #697a52 }
.btn--lg { padding: 1.05rem 2.1rem; font-size: .82rem }
.btn--light { border-color: rgba(255,255,255,.55); color: #fff }
.btn--light:hover { background: #fff; color: var(--charcoal) }

/* === NAV === */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(251,250,246,.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: .8rem var(--gut); display: flex; align-items: center; justify-content: space-between; gap: 1rem }
.nav__brand { min-width: 0 }
/* type-set wordmark: RAYN bold charcoal + small-caps tagline */
.nav__word { display: inline-flex; align-items: baseline; gap: .5rem; min-width: 0 }
.nav__word-a { font-family: var(--f-body); font-weight: 700; font-size: 1.18rem; letter-spacing: .22em; text-transform: uppercase; color: var(--charcoal); white-space: nowrap }
.nav__word-b { font-family: var(--f-body); font-weight: 400; font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rattan) }
.nav__links { display: none; list-style: none; gap: 1.6rem }
.nav__links a { font-family: var(--f-body); font-size: .8rem; font-weight: 400; color: var(--ink); opacity: .75; transition: opacity .2s, color .2s }
.nav__links a:hover, .nav__links a.is-active { opacity: 1; color: var(--leaf) }
.nav__cta { padding: .55rem 1.15rem; font-size: .68rem }

/* === HERO === */
.hero { position: relative; overflow: hidden; min-height: clamp(28rem, 75vh, 46rem); display: grid; align-items: end }
/* hero with real photo */
.hero--photo { background: var(--tint2) }
.hero__bg { position: absolute; inset: 0; z-index: 0 }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30% }
/* mobile: slightly higher crop to show the sign */
@media (max-width: 699px) { .hero__bg img { object-position: center 20% } }
.hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(26,26,26,.68) 0%, rgba(26,26,26,.22) 52%, rgba(26,26,26,.04) 100%) }
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin-inline: auto; padding: 0 var(--gut) clamp(2.8rem, 7vw, 4.5rem) }
.hero__panel { max-width: 40rem }
.hero__eyebrow { font-family: var(--f-body); font-size: .68rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-bottom: .6rem }
.hero__title { font-family: var(--f-disp); font-weight: 300; font-size: clamp(2.6rem, 1.6rem + 5vw, 5.2rem); line-height: 1.02; letter-spacing: -.01em; color: #fff }
.hero__title em { font-style: italic; font-weight: 300 }
.hero__seam { height: 1px; width: 6rem; background: var(--brass); margin: 1.2rem 0 }
.hero__sub { font-family: var(--f-body); font-size: clamp(1rem, .95rem + .4vw, 1.2rem); color: rgba(255,255,255,.88); max-width: 34rem }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem }

/* === SECTIONS === */
.section { padding-block: clamp(3.5rem, 8vw, 5.5rem) }
.band-tint { background: var(--tint) }
.band-tint2 { background: var(--tint2) }
.band-dark { background: var(--charcoal); color: var(--paper) }
.band-dark .h2 { color: #fff }
.band-dark .eyebrow { color: var(--rattan) }
.band-dark .lede, .band-dark .body { color: rgba(251,250,246,.82) }

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

/* === CATEGORY 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.3rem 1.4rem 1.5rem }
.cat-card__title { font-family: var(--f-disp); font-weight: 400; font-size: 1.5rem; color: var(--charcoal) }
.cat-card__text { margin-top: .5rem; font-size: .97rem; color: var(--ink); opacity: .8 }
.cat-card__cta { margin-top: 1rem; display: inline-block; font-family: var(--f-body); font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--leaf) }

/* === BAND FIGURE (full-width) === */
.band-figure { position: relative; overflow: hidden }
.band-figure .fig { border-radius: 0 }
.band-figure .fig img { width: 100%; height: 100%; object-fit: cover; display: block }
.band-figure--16-9 { aspect-ratio: 4 / 5 }

/* === FEEL BAND (centered copy) === */
.feel-band { text-align: center; max-width: 42rem; margin-inline: auto }

/* === FOOTER === */
.footer { background: var(--charcoal); color: var(--paper); padding-top: clamp(3rem, 6vw, 4rem) }
.footer__inner { display: flex; flex-direction: column; gap: 2rem }
.footer__brand .nav__word-a { color: #fff }
.footer__brand .nav__word-b { color: var(--rattan) }
.footer__tag { font-family: var(--f-disp); font-style: italic; font-size: 1.05rem; margin-top: .7rem; color: rgba(251,250,246,.72) }
.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: .8rem; font-weight: 400; color: rgba(251,250,246,.7) }
.footer__nav a:hover { color: var(--rattan) }
.footer__nap p, .footer__hours p { color: rgba(251,250,246,.72); font-size: .95rem; line-height: 1.75 }
.footer__nap a:hover { color: var(--rattan) }
.footer__hours-title { font-family: var(--f-body); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: .74rem; margin-bottom: .4rem; color: var(--rattan) }
.footer__legal { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(251,250,246,.12); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .75rem; padding-bottom: 6rem }
.footer__legal p { color: rgba(251,250,246,.4); font-size: .8rem }
.footer__legal-cta { color: var(--rattan); font-family: var(--f-body); font-weight: 500; letter-spacing: .06em; font-size: .8rem }

/* === MOBAR === */
.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(26,26,26,.07) }
.mobar a { flex: 1; text-align: center; padding: .95rem; font-family: var(--f-body); font-weight: 600; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase }
.mobar__call { color: var(--ink); border-right: 1px solid var(--line) }
.mobar__cta { background: var(--charcoal); color: #fff }

/* === REVEAL === */
[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 BREAKPOINTS === */
@media (min-width: 700px) {
  .cat-cards { grid-template-columns: 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--16-9 { aspect-ratio: 16 / 9 }
}
@media (max-width: 849px) { .nav__cta { display: none } }
