/* ==========================================================================
   Summer Ray Fine Art — design system
   Palette led by the rose of the studio logo. Hand built, no framework.
   ========================================================================== */

:root {
  /* color */
  --rose:       #b76e79;
  --rose-deep:  #96525e;
  --rose-dark:  #7c414c;
  --rose-soft:  #e9cdd1;
  --blush:      #f7ece9;
  --ivory:      #fbf7f1;
  --cream:      #f2eade;
  --ink:        #23201e;
  --ink-soft:   #3d3733;
  --stone:      #7c7166;
  --line:       #e4d9cc;
  --gold:       #b28d5b;
  --sage:       #8b9078;
  --white:      #ffffff;

  /* type — chosen for this studio:
     Prata       gallery-poster didone, the voice of the headlines
     Marcellus   engraved Roman capitals for labels, nav and buttons
     Crimson Pro literary old-style serif for reading
     WindSong    a painter's signature script, echoing the logo     */
  --f-display: "Prata", "Georgia", serif;
  --f-body:    "Crimson Pro", "Georgia", serif;
  --f-ui:      "Marcellus", "Georgia", serif;
  --f-script:  "WindSong", cursive;

  /* rhythm */
  --max: 1240px;
  --pad: clamp(20px, 4vw, 48px);
  --sect: clamp(72px, 10vw, 140px);
  --ease: cubic-bezier(.22, .8, .24, 1);
  --shadow-1: 0 10px 30px rgba(35, 32, 30, .10);
  --shadow-2: 0 24px 70px rgba(35, 32, 30, .16);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.72;
  color: var(--ink-soft);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--f-display); color: var(--ink); font-weight: 400; line-height: 1.16; margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.9vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.3vw, 1.6rem); }
p  { margin: 0 0 1.2em; }
em { font-style: italic; }
::selection { background: var(--rose-soft); color: var(--ink); }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding: var(--sect) 0; }
.section.tight { padding: calc(var(--sect) * .6) 0; }
.bg-cream { background: var(--cream); }
.bg-blush { background: var(--blush); }
.bg-ink   { background: var(--ink); color: #cfc6bd; }
.bg-ink h2, .bg-ink h3 { color: var(--ivory); }

/* ---------- type helpers ---------- */
.eyebrow {
  font-family: var(--f-ui);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--rose); }
.bg-ink .eyebrow { color: var(--rose-soft); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--stone); max-width: 62ch; }
.bg-ink .lede { color: #b6aca2; }
.serif-i {
  font-family: var(--f-script);
  font-style: normal;
  font-weight: 500;
  font-size: 1.34em;
  line-height: .7;
  color: var(--rose-deep);
  /* WindSong has long entry and exit swashes; give them room so the word
     never collides with the one after it when the headline wraps */
  padding-inline: .10em;
  margin-inline: .02em;
  white-space: nowrap;
}
.bg-ink .serif-i, .hero .serif-i, .rose-wash .serif-i { color: var(--rose-soft); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--ivory);
  font-family: var(--f-ui);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 34px;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--bg);
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background .45s var(--ease), color .45s var(--ease);
}
.btn::after { content: "→"; font-family: var(--f-body); letter-spacing: 0; transition: transform .45s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); }
.btn:hover::after { transform: translateX(5px); }
.btn.rose { --bg: var(--rose-deep); --fg: #fff; }
.btn.rose:hover { background: var(--rose-dark); border-color: var(--rose-dark); }
.btn.ghost { background: transparent; color: var(--ink); border-color: rgba(35,32,30,.35); }
.btn.ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--ivory); }
.btn.light { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.textlink {
  font-family: var(--f-ui);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  position: relative;
}
.textlink::before {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--rose); transform-origin: right; transition: transform .5s var(--ease);
}
.textlink::after { content: "→"; transition: transform .4s var(--ease); }
.textlink:hover::before { transform: scaleX(.35); transform-origin: left; }
.textlink:hover::after { transform: translateX(5px); }

/* ---------- header ---------- */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 18px 0;
}
.site-head.scrolled {
  background: rgba(251, 247, 241, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img {
  width: 52px; height: 57px; object-fit: cover; border-radius: 8px;
  mix-blend-mode: multiply; transition: transform .5s var(--ease);
}
.brand:hover img { transform: rotate(-4deg) scale(1.05); }
.brand-name { font-family: var(--f-display); font-size: 1.22rem; color: var(--ink); line-height: 1.05; }
.brand-name small { display: block; font-family: var(--f-ui); font-size: .58rem; letter-spacing: .42em; text-transform: uppercase; color: var(--rose-deep); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-family: var(--f-ui); font-size: .78rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; text-decoration: none;
  color: var(--ink-soft); position: relative; padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--rose-deep); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav a:hover::after, .nav a.on::after { transform: scaleX(1); transform-origin: left; }
.nav a.on { color: var(--rose-deep); }
.nav .btn { padding: 12px 24px; }

.burger {
  display: none; background: none; border: 0; cursor: pointer; padding: 10px;
}
.burger span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 6px 0; transition: transform .4s var(--ease), opacity .3s; }
.menu-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 940px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 0; background: var(--ivory);
    flex-direction: column; justify-content: center; gap: 30px;
    opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
  }
  .menu-open .nav { opacity: 1; pointer-events: auto; }
  .nav a { font-size: 1rem; }
  .site-head { z-index: 95; }
  .site-head .brand, .site-head .burger { position: relative; z-index: 96; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: var(--ivory); overflow: hidden; background: var(--ink);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 112%; object-fit: cover; will-change: transform; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(23,19,18,.82) 0%, rgba(23,19,18,.28) 46%, rgba(23,19,18,.18) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding-bottom: clamp(64px, 10vh, 120px); width: 100%; }
.hero h1 { color: var(--ivory); max-width: 13ch; line-height: 1.24; }
.hero .eyebrow { color: var(--rose-soft); }
.hero .eyebrow::before { background: var(--rose-soft); }
.hero-sub { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: rgba(251,247,241,.85); max-width: 54ch; margin-bottom: 34px; }
.hero-credit {
  position: absolute; right: var(--pad); bottom: 28px; z-index: 2;
  font-family: var(--f-ui); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(251,247,241,.75); text-decoration: none; border-bottom: 1px solid rgba(251,247,241,.35);
  padding-bottom: 4px;
}
.hero-credit:hover { color: var(--ivory); }
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  width: 1px; height: 56px; background: rgba(251,247,241,.35); overflow: hidden;
}
.scroll-cue::after {
  content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%;
  background: var(--ivory); animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue { 0% { top: -50%; } 100% { top: 110%; } }

/* interior page hero */
.page-hero { padding: calc(var(--sect) + 70px) 0 calc(var(--sect) * .55); }
.page-hero h1 { max-width: 16ch; }
.page-hero .lede { margin-top: 10px; }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; background: var(--ivory); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: marquee 36s linear infinite; }
.marquee span {
  font-family: var(--f-script); font-size: 1.7rem; color: var(--stone);
  display: flex; align-items: center; gap: 64px; white-space: nowrap; line-height: 1;
}
.marquee span::after { content: "✦"; font-style: normal; color: var(--rose); font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- artwork cards ---------- */
.art-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); gap: clamp(22px, 3vw, 40px); }
.art-card { text-decoration: none; display: block; }
.art-frame {
  position: relative; background: var(--white); padding: 14px;
  box-shadow: 0 1px 0 var(--line), var(--shadow-1);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
  overflow: hidden;
}
.art-card:hover .art-frame { transform: translateY(-8px); box-shadow: var(--shadow-2); }
.art-frame .im { overflow: hidden; background: var(--cream); aspect-ratio: 4 / 5; }
.art-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.art-card:hover .art-frame img { transform: scale(1.045); }
.art-ribbon {
  position: absolute; top: 22px; left: -2px; z-index: 2;
  font-family: var(--f-ui); font-size: .62rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  background: var(--rose-deep); color: #fff; padding: 7px 14px;
}
.art-ribbon.muted { background: var(--ink); }
.art-meta { padding: 18px 6px 6px; }
.art-meta h3 { font-size: 1.18rem; margin: 0 0 4px; transition: color .3s; }
.art-card:hover .art-meta h3 { color: var(--rose-deep); }
.art-sub { font-family: var(--f-ui); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); margin: 0 0 8px; }
.art-price { font-family: var(--f-display); font-size: 1.05rem; color: var(--ink); }
.art-price .was { color: var(--stone); font-size: .85rem; font-style: italic; }

/* featured (larger, alternating) */
.feature-row { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(20px, 3vw, 44px); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(56px, 8vw, 110px); }
.feature-row .fr-img { grid-column: 1 / span 7; }
.feature-row .fr-txt { grid-column: 8 / span 5; }
.feature-row.flip .fr-img { grid-column: 6 / span 7; order: 2; }
.feature-row.flip .fr-txt { grid-column: 1 / span 5; order: 1; }
@media (max-width: 860px) {
  .feature-row .fr-img, .feature-row .fr-txt,
  .feature-row.flip .fr-img, .feature-row.flip .fr-txt { grid-column: 1 / -1; order: initial; }
}

/* ---------- collections strip ---------- */
.coll-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(18px, 2.4vw, 30px); }
.coll-card {
  position: relative; display: block; overflow: hidden; text-decoration: none;
  aspect-ratio: 3 / 4; background: var(--ink);
}
.coll-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), opacity .6s; opacity: .92; }
.coll-card:hover img { transform: scale(1.06); opacity: .75; }
.coll-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(23,19,18,.78), rgba(23,19,18,.05) 55%);
}
.coll-txt { position: absolute; left: 26px; right: 26px; bottom: 24px; z-index: 2; color: var(--ivory); }
.coll-txt h3 { color: var(--ivory); margin: 0 0 6px; }
.coll-txt p { font-size: .92rem; color: rgba(251,247,241,.82); margin: 0 0 12px; line-height: 1.5; }
.coll-count {
  font-family: var(--f-ui); font-size: .66rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--rose-soft);
}

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 34px; text-align: center; }
.stat b { font-family: var(--f-display); font-weight: 480; font-size: clamp(2.6rem, 5vw, 4rem); color: var(--rose-deep); display: block; line-height: 1; }
.bg-ink .stat b { color: var(--rose-soft); }
.stat span { font-family: var(--f-ui); font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--stone); display: block; margin-top: 12px; }
.bg-ink .stat span { color: #a1968b; }

/* ---------- split layouts ---------- */
.split { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(36px, 6vw, 90px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.portrait-stack { position: relative; }
.portrait-stack .p-main {
  width: 82%; aspect-ratio: 3 / 4; object-fit: cover;
  box-shadow: var(--shadow-2);
}
.portrait-stack .p-tilt {
  position: absolute; right: 0; bottom: -9%; width: 46%; aspect-ratio: 3 / 4; object-fit: cover;
  border: 10px solid var(--white); box-shadow: var(--shadow-2); transform: rotate(4deg);
}

/* ---------- filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 34px 0 44px; }
.chip {
  font-family: var(--f-ui); font-size: .74rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  padding: 11px 22px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); color: var(--ink-soft); cursor: pointer;
  transition: all .35s var(--ease);
}
.chip:hover { border-color: var(--rose); color: var(--rose-deep); }
.chip.on { background: var(--rose-deep); border-color: var(--rose-deep); color: #fff; }
.filter-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.result-count { font-family: var(--f-ui); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); }

/* ---------- product page ---------- */
.product-layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(36px, 5vw, 80px); align-items: start; }
@media (max-width: 900px) { .product-layout { grid-template-columns: 1fr; } }
.p-gallery .art-frame { padding: clamp(14px, 2vw, 26px); cursor: zoom-in; }
.p-gallery .im { aspect-ratio: auto; }
.p-gallery img { height: auto; }
.p-thumbs { display: flex; gap: 14px; margin-top: 18px; }
.p-thumbs button {
  width: 84px; height: 84px; padding: 0; border: 1px solid var(--line); background: var(--white);
  cursor: pointer; overflow: hidden; transition: border-color .3s;
}
.p-thumbs button.on, .p-thumbs button:hover { border-color: var(--rose-deep); }
.p-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.p-info { position: sticky; top: 110px; }
.p-status {
  display: inline-block; font-family: var(--f-ui); font-size: .68rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--rose-deep);
  border: 1px solid var(--rose-soft); border-radius: 999px; padding: 8px 18px; margin-bottom: 20px;
  background: var(--blush);
}
.p-price { font-family: var(--f-display); font-size: 2rem; color: var(--ink); margin: 10px 0 4px; }
.p-specs { list-style: none; margin: 28px 0; padding: 0; border-top: 1px solid var(--line); }
.p-specs li {
  display: flex; justify-content: space-between; gap: 20px; padding: 13px 2px;
  border-bottom: 1px solid var(--line); font-size: .95rem;
}
.p-specs li b { font-family: var(--f-ui); font-weight: 500; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); }
.p-note { font-size: .9rem; color: var(--stone); font-style: italic; }
.buy-area { margin: 26px 0; display: grid; gap: 14px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 26px; }
.trust-row span { font-family: var(--f-ui); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); display: flex; align-items: center; gap: 8px; }
.trust-row span::before { content: "✦"; color: var(--rose); }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block; font-family: var(--f-ui); font-size: .68rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--stone); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 4px;
  padding: 15px 16px; transition: border-color .3s, box-shadow .3s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(183,110,121,.15);
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- accordion ---------- */
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  font-family: var(--f-display); font-size: 1.2rem; color: var(--ink);
  padding: 22px 44px 22px 2px; cursor: pointer; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-family: var(--f-body); font-size: 1.5rem; color: var(--rose-deep); transition: transform .4s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details > div { padding: 0 2px 24px; max-width: 66ch; }

/* ---------- process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(22px, 3vw, 40px); counter-reset: step; }
.step { position: relative; padding-top: 22px; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--f-script); font-size: 3.4rem; color: var(--rose-soft);
  position: absolute; top: -14px; left: 0; line-height: 1;
}
.step h3 { position: relative; z-index: 1; font-size: 1.2rem; }
.step p { font-size: .95rem; color: var(--stone); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .wrap { position: relative; z-index: 2; text-align: center; }
.cta-band h2 { max-width: 22ch; margin-left: auto; margin-right: auto; }
.rose-wash { background: linear-gradient(135deg, var(--rose-deep), var(--rose-dark)); color: #f6e4e0; }
.rose-wash h2 { color: #fff; }
.rose-wash .eyebrow { color: var(--rose-soft); }
.rose-wash .eyebrow::before { background: var(--rose-soft); }
.rose-wash .lede { color: #eed3ce; margin: 0 auto 34px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- footer ---------- */
.site-foot { background: var(--ink); color: #a89d92; padding: calc(var(--sect) * .8) 0 40px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 56px; border-bottom: 1px solid rgba(251,247,241,.12); }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand img { width: 64px; border-radius: 10px; background: var(--ivory); padding: 4px; }
.foot-brand p { font-size: .95rem; max-width: 34ch; margin-top: 18px; }
.site-foot h4 { color: var(--ivory); font-family: var(--f-ui); font-weight: 500; font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 20px; }
.foot-links { list-style: none; margin: 0; padding: 0; }
.foot-links li { margin-bottom: 12px; }
.foot-links a { text-decoration: none; font-size: .95rem; transition: color .3s; }
.foot-links a:hover { color: var(--rose-soft); }
.foot-contact a { color: var(--ivory); text-decoration: none; border-bottom: 1px solid rgba(251,247,241,.25); }
.foot-contact a:hover { color: var(--rose-soft); }
.foot-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 30px; font-family: var(--f-ui); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: #7d7268; }
.foot-base a { color: inherit; text-decoration: none; }
.foot-base a:hover { color: var(--rose-soft); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 120; background: rgba(23,19,18,.94);
  display: none; align-items: center; justify-content: center; padding: 4vw; cursor: zoom-out;
}
.lightbox.open { display: flex; animation: fadeIn .35s var(--ease); }
.lightbox img { max-width: 100%; max-height: 92vh; object-fit: contain; box-shadow: var(--shadow-2); }
@keyframes fadeIn { from { opacity: 0; } }

/* ---------- reveal animations ---------- */
.rv { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .12s; }
.rv-d2 { transition-delay: .24s; }
.rv-d3 { transition-delay: .36s; }
.rv-img { opacity: 0; transform: translateY(40px) scale(.985); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.rv-img.in { opacity: 1; transform: none; }

/* stagger grids */
.stagger > * { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(2) { transition-delay: .08s; }
.stagger.in > *:nth-child(3) { transition-delay: .16s; }
.stagger.in > *:nth-child(4) { transition-delay: .24s; }
.stagger.in > *:nth-child(5) { transition-delay: .32s; }
.stagger.in > *:nth-child(6) { transition-delay: .4s; }
.stagger.in > *:nth-child(n+7) { transition-delay: .48s; }

/* ---------- misc ---------- */
.crumbs { font-family: var(--f-ui); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); margin-bottom: 26px; }
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: var(--rose-deep); }
.divider { border: 0; border-top: 1px solid var(--line); margin: 0; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .lede { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.notice {
  background: var(--blush); border: 1px solid var(--rose-soft); border-radius: 6px;
  padding: 18px 22px; font-size: .95rem; color: var(--rose-dark);
}
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--ivory);
  padding: 12px 20px; z-index: 200;
}
.skip:focus { left: 12px; top: 12px; }

/* cart FAB (appears when Shopify cart is live) */
.cart-fab {
  position: fixed; right: 26px; bottom: 26px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--rose-deep); color: #fff; border: 0; cursor: pointer;
  box-shadow: var(--shadow-2); display: none; align-items: center; justify-content: center;
  transition: transform .4s var(--ease), background .3s;
}
.cart-fab.show { display: flex; }
.cart-fab:hover { transform: translateY(-3px) scale(1.05); background: var(--rose-dark); }
.cart-fab svg { width: 24px; height: 24px; }

/* long-form article pages (policies) */
.article { max-width: 760px; }
.article h2 { font-size: 1.6rem; margin-top: 2.2em; }
.article ul { padding-left: 1.2em; }
.article li { margin-bottom: .5em; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv, .stagger > *, .rv-img { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track { animation: none; }
  .hero-media img { transform: none !important; }
  .scroll-cue { display: none; }
}

/* agency credit, deliberately quiet */
.foot-credit { color: inherit; text-decoration: none; opacity: .72; border-bottom: 1px solid rgba(251,247,241,.28); }
.foot-credit:hover { opacity: 1; }
