/* ═══════════════════════════════════════════════════════════
   BY SK DESIGN — Interior Design Studio
   Immersive, image-led, editorial. Plum + cream, Fraunces + Inter.
   ═══════════════════════════════════════════════════════════ */

:root {
  --plum: #4a2b33;
  --plum-deep: #2e1a20;
  --ink: #201713;
  --cream: #f6f0e8;
  --sand: #e7ddd0;
  --muted: #8a7c74;
  --line: rgba(32,23,19,.12);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --maxw: 1400px;
  --ease: cubic-bezier(.22,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); color: var(--ink); background: var(--cream); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 5rem); }
.eyebrow { font-size: .68rem; letter-spacing: .34em; text-transform: uppercase; font-weight: 600; }
.serif { font-family: var(--serif); font-weight: 400; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── Top bar ── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem clamp(1.25rem, 5vw, 5rem);
  color: var(--cream); mix-blend-mode: difference;
  transition: color .4s ease;
}
.topbar .brand { font-family: var(--serif); font-size: 1.35rem; letter-spacing: .18em; }
.topbar .brand small { display:block; font-family: var(--sans); font-size: .58rem; letter-spacing: .34em; opacity: .8; margin-top: 2px; }
.menu-toggle { display: flex; align-items: center; gap: .6rem; background: none; border: 0; color: inherit; cursor: pointer;
  font-family: var(--sans); font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; font-weight: 600; }
.menu-toggle .bars { display: inline-flex; flex-direction: column; gap: 4px; }
.menu-toggle .bars span { width: 24px; height: 1.5px; background: currentColor; display: block; }
.top-actions { display: flex; align-items: center; gap: 1.3rem; }
.top-book { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  border: 1px solid currentColor; padding: .6rem 1.15rem; border-radius: 999px; transition: opacity .2s; white-space: nowrap; }
.top-book:hover { opacity: .65; }
@media (max-width: 560px) { .top-book { display: none; } }

/* ── Full-screen menu ── */
.menu-overlay {
  position: fixed; inset: 0; z-index: 70; background: var(--plum-deep); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem,8vw,6rem);
  transform: translateY(-100%); transition: transform .6s var(--ease); visibility: hidden;
}
.menu-overlay.open { transform: translateY(0); visibility: visible; }
.menu-close { position: absolute; top: 1.5rem; right: clamp(1.25rem,5vw,5rem); background: none; border: 0; color: var(--cream); font-size: 2rem; cursor: pointer; line-height: 1; }
.menu-links { display: flex; flex-direction: column; gap: .2rem; }
.menu-links a { font-family: var(--serif); font-size: clamp(2.4rem, 8vw, 5.5rem); line-height: 1.08; color: var(--cream); transition: color .3s, padding-left .3s var(--ease); width: fit-content; }
.menu-links a:hover { color: #c;  color: #d8b9c0; padding-left: .8rem; }
.menu-foot { margin-top: clamp(2rem,5vw,4rem); display: flex; gap: 2.5rem; flex-wrap: wrap; font-size: .8rem; letter-spacing: .06em; color: #cbb8bd; }
.menu-foot a { border-bottom: 1px solid rgba(246,240,232,.3); }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: .6rem; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  padding: 1.1rem 2.4rem; border-radius: 0; border: 1px solid currentColor; cursor: pointer; transition: all .3s var(--ease); background: none; }
.btn-solid { background: var(--plum); color: var(--cream); border-color: var(--plum); }
.btn-solid:hover { background: var(--plum-deep); border-color: var(--plum-deep); }
.btn-line { color: var(--cream); }
.btn-line:hover { background: var(--cream); color: var(--ink); }
.btn-dark { color: var(--ink); }
.btn-dark:hover { background: var(--ink); color: var(--cream); }

/* ── Hero ── */
.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; display: flex; align-items: flex-end; color: var(--cream); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 18s ease-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(32,23,19,.35) 0%, rgba(32,23,19,0) 30%, rgba(32,23,19,.65) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 0 clamp(1.25rem,5vw,5rem) clamp(3rem,7vw,6rem); display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.hero-title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.8rem, 8vw, 7rem); line-height: .98; letter-spacing: -.01em; max-width: 16ch; }
.hero-title em { font-style: italic; }
.hero-cap { font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; align-self: flex-end; text-align: right; opacity: .9; }
.hero-scroll { position: absolute; left: 50%; bottom: 1.6rem; z-index: 2; transform: translateX(-50%); font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; opacity: .8; }

/* ── Statement ── */
.statement { padding: clamp(5rem, 12vw, 11rem) 0; text-align: center; }
.statement p { font-family: var(--serif); font-weight: 300; font-size: clamp(1.8rem, 5vw, 3.8rem); line-height: 1.18; max-width: 20ch; margin: 0 auto; letter-spacing: -.01em; }
.statement em { font-style: italic; color: var(--plum); }
.statement.dark { background: var(--plum-deep); color: var(--cream); }
.statement.dark em { color: #e0bcc4; }

/* ── Work ── */
.work { padding: clamp(2rem,5vw,4rem) 0 clamp(4rem,9vw,8rem); }
.work-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2rem,4vw,3.5rem); flex-wrap: wrap; }
.work-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem,5vw,3.4rem); }
.work-head .eyebrow { color: var(--plum); margin-bottom: .7rem; }
.work-list { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem,2.5vw,2rem); }
.tile { position: relative; overflow: hidden; cursor: pointer; background: var(--sand); }
.tile.wide { grid-column: span 2; }
.tile-media { overflow: hidden; aspect-ratio: 4/3; }
.tile.wide .tile-media { aspect-ratio: 16/7; }
.tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.tile:hover .tile-media img { transform: scale(1.06); }
.tile-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(1.2rem,3vw,2.2rem); color: var(--cream);
  background: linear-gradient(0deg, rgba(32,23,19,.72), rgba(32,23,19,0)); display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.tile-cap h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem,2.5vw,2rem); }
.tile-cap .t-meta { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; opacity: .85; margin-top: .3rem; }
.tile-cap .t-view { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; opacity: 0; transform: translateY(6px); transition: all .4s var(--ease); white-space: nowrap; }
.tile:hover .tile-cap .t-view { opacity: 1; transform: none; }
@media (max-width: 720px) { .work-list { grid-template-columns: 1fr; } .tile.wide { grid-column: span 1; } .tile.wide .tile-media { aspect-ratio: 4/3; } }

/* ── About statement ── */
.about { padding: clamp(5rem,11vw,10rem) 0; }
.about .wrap { max-width: 1100px; }
.about h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.7rem,4vw,3rem); line-height: 1.22; letter-spacing: -.01em; }
.about .lead { color: var(--muted); }
.about p + p { margin-top: 1.4rem; }
.about .sub { font-size: 1.05rem; color: var(--muted); max-width: 60ch; }

/* ── Services ── */
.services { background: var(--ink); color: var(--cream); padding: clamp(4rem,9vw,8rem) 0; }
.services .eyebrow { color: #d8b9c0; }
.services h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem,5vw,3.4rem); margin: .7rem 0 clamp(2rem,4vw,3.5rem); }
.svc-list { border-top: 1px solid rgba(246,240,232,.16); }
.svc-item { display: grid; grid-template-columns: 5rem 1fr 1.2fr; gap: 1.5rem; align-items: baseline;
  padding: clamp(1.6rem,3vw,2.6rem) 0; border-bottom: 1px solid rgba(246,240,232,.16); transition: padding-left .4s var(--ease); }
.svc-item:hover { padding-left: 1rem; }
.svc-item .s-num { font-family: var(--serif); font-size: 1rem; color: #b89aa0; }
.svc-item .s-name { font-family: var(--serif); font-size: clamp(1.4rem,3vw,2.2rem); }
.svc-item .s-desc { color: #c9bab5; font-size: .95rem; }
@media (max-width: 760px) { .svc-item { grid-template-columns: 2.5rem 1fr; } .svc-item .s-desc { grid-column: 1 / -1; } }

/* ── Mood & Materiality boards ── */
.boards { padding: clamp(4rem,9vw,8rem) 0; background: var(--cream); }
.boards .work-head .eyebrow { color: var(--plum); }
.board-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem,2.5vw,2rem); }
.board { background: var(--cream); border: 1px solid var(--line); padding: 12px; }
.board img { width: 100%; display: block; }
.board .b-label { padding: .9rem .4rem .2rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.board .b-label h4 { font-family: var(--serif); font-weight: 400; font-size: 1.15rem; }
.board .b-label span { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 720px) { .board-grid { grid-template-columns: 1fr; } }

/* ── Curations (TikTok) ── */
.curations { padding: clamp(4rem,9vw,8rem) 0; }
.curations .work-head .eyebrow { color: var(--plum); }
.curations .work-head a { color: var(--plum); border-bottom: 1px solid var(--plum); }
.tiktok-grid { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center; }
.tiktok-grid blockquote.tiktok-embed { margin: 0 !important; }
.social-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── CTA band ── */
.cta-band { position: relative; overflow: hidden; color: var(--cream); text-align: center; padding: clamp(5rem,11vw,10rem) 0; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content:""; position:absolute; inset:0; z-index:1; background: rgba(32,23,19,.62); }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band .eyebrow { color: #e0bcc4; }
.cta-band h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem,6vw,4.5rem); line-height: 1.05; margin: 1rem 0 2rem; }

/* ── Footer ── */
.footer { background: var(--plum-deep); color: #cbb8bd; padding: clamp(3.5rem,7vw,6rem) 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer .f-brand { font-family: var(--serif); font-size: 2rem; letter-spacing: .16em; color: var(--cream); }
.footer .f-brand small { display:block; font-family: var(--sans); font-size:.62rem; letter-spacing:.3em; margin-top:.4rem; color:#b89aa0; }
.footer h5 { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: #b89aa0; margin-bottom: 1rem; }
.footer a { display: block; margin-bottom: .5rem; color: #cbb8bd; transition: color .2s; }
.footer a:hover { color: var(--cream); }
.footer .f-legal { margin-top: clamp(2.5rem,5vw,4rem); padding-top: 1.5rem; border-top: 1px solid rgba(246,240,232,.12); font-size: .72rem; color: #8f7a80; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer .f-brand { grid-column: 1 / -1; } }

/* ── Lightbox ── */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(24,17,14,.95); display: none; overflow-y: auto; }
.lightbox.open { display: block; }
.lb-inner { max-width: 1100px; margin: 0 auto; padding: 5.5rem 1.25rem 4rem; }
.lb-head { margin-bottom: 1.8rem; color: var(--cream); }
.lb-head h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem,4vw,2.6rem); }
.lb-head .lb-meta { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: #d8b9c0; margin-top: .4rem; }
.lb-images { display: flex; flex-direction: column; gap: 1rem; }
.lb-images img { width: 100%; background: var(--sand); }
.lb-close { position: fixed; top: 1.2rem; right: 1.4rem; z-index: 95; width: 46px; height: 46px; border-radius: 999px;
  border: 1px solid rgba(246,240,232,.4); background: rgba(24,17,14,.6); color: var(--cream); font-size: 1.4rem; cursor: pointer; }
.lb-close:hover { background: var(--plum); }

/* ── Forms (booking + contact) ── */
.form { display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea { font-family: var(--sans); font-size: .95rem; color: var(--ink); background: var(--cream);
  border: 1px solid var(--line); border-radius: 0; padding: .9rem 1rem; outline: none; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--plum); }
.form-note { font-size: .78rem; color: var(--muted); }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }

/* service chips (booking) */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { border: 1px solid var(--line); padding: .7rem 1.2rem; font-size: .78rem; letter-spacing: .04em; cursor: pointer; transition: all .2s; user-select: none; }
.chip.sel { background: var(--plum); color: var(--cream); border-color: var(--plum); }

/* toast */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%,90px); background: var(--plum-deep); color: var(--cream);
  font-size: .85rem; padding: .85rem 1.6rem; z-index: 200; transition: transform .35s var(--ease); }
.toast.show { transform: translate(-50%,0); }

/* ── Booking page ── */
.book-hero { min-height: 46vh; display: flex; align-items: flex-end; position: relative; overflow: hidden; color: var(--cream); }
.book-hero .hb-bg { position: absolute; inset: 0; z-index: 0; }
.book-hero .hb-bg img,
.book-hero .hb-bg video { width: 100%; height: 100%; object-fit: cover; }
.book-hero::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(180deg, rgba(32,23,19,.4), rgba(32,23,19,.75)); }
.book-hero .wrap { position: relative; z-index: 2; padding-top: 8rem; padding-bottom: clamp(2.5rem,5vw,4rem); }
.book-hero h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.4rem,6vw,4.5rem); line-height: 1; }
.book-hero .eyebrow { color: #e0bcc4; margin-bottom: 1rem; }
.book-body { padding: clamp(3rem,7vw,6rem) 0 clamp(4rem,9vw,8rem); }
.book-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem,5vw,5rem); align-items: start; }
.book-side h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem,3.5vw,2.4rem); margin-bottom: 1rem; }
.book-side p { color: var(--muted); margin-bottom: 1.2rem; }
.book-side .b-detail { font-size: .9rem; line-height: 2; margin-top: 1.5rem; }
.book-side .b-detail a { color: var(--plum); border-bottom: 1px solid var(--plum); }
@media (max-width: 820px) { .book-grid { grid-template-columns: 1fr; } }

/* ── Rhode walkthrough film ── */
.filmstrip { padding: clamp(3rem,7vw,6rem) 0 clamp(4rem,8vw,7rem); background: var(--cream); }
.film-intro { margin-bottom: clamp(1.8rem,4vw,3rem); }
.film-intro .eyebrow { color: var(--plum); margin-bottom: 1rem; }
.film-intro h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem,5vw,3.6rem); line-height: 1.02; margin-bottom: 1rem; }
.film-stage { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem,5vw,5rem); }
.film-video { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; background: var(--plum-deep); display: block; }
.film-sound { position: absolute; right: clamp(1.75rem,5.5vw,5.5rem); bottom: 3.4rem; z-index: 3;
  background: rgba(32,23,19,.55); color: var(--cream); border: 1px solid rgba(246,240,232,.5);
  font-family: var(--sans); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  padding: .6rem 1.1rem; cursor: pointer; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); transition: background .3s var(--ease); }
.film-sound:hover { background: rgba(32,23,19,.8); }
.film-sound.on { background: var(--plum); border-color: var(--plum); }
.film-cap { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 1rem; }
@media (max-width: 640px) { .film-sound { right: 1.75rem; bottom: 3rem; } }

/* ── Tally embed (booking) ── */
.tally-wrap { width: 100%; min-height: 480px; }
.tally-wrap iframe { width: 100%; border: 0; display: block; }

/* ── Projects carousel ── */
.carousel { position: relative; }
.car-track { display: flex; gap: clamp(1rem,2.5vw,1.75rem); overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 0 clamp(1.25rem,5vw,5rem); scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; }
.car-track::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 min(80%, 920px); scroll-snap-align: center; position: relative; overflow: hidden; background: var(--sand); }
.slide-media { aspect-ratio: 16/10; }
.slide-media img { width: 100%; height: 100%; object-fit: cover; }
.slide-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(1.2rem,3vw,2.2rem); color: var(--cream);
  background: linear-gradient(0deg, rgba(32,23,19,.75), rgba(32,23,19,0)); }
.slide-cap h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem,2.6vw,2.1rem); }
.slide-cap .t-meta { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; opacity: .85; margin-top: .35rem; }
.car-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid rgba(246,240,232,.55); background: rgba(32,23,19,.42); color: var(--cream); font-family: var(--serif); font-size: 1.7rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background .3s var(--ease), border-color .3s var(--ease); }
.car-btn:hover { background: var(--plum); border-color: var(--plum); }
.car-prev { left: clamp(1rem,4vw,3.5rem); }
.car-next { right: clamp(1rem,4vw,3.5rem); }
@media (max-width: 640px) { .slide { flex-basis: 86%; } .car-btn { width: 44px; height: 44px; font-size: 1.4rem; } .car-prev { left: .6rem; } .car-next { right: .6rem; } }

/* ── Mini CTA (between about & services) ── */
.mini-cta { padding: clamp(1.5rem,4vw,3rem) 0; }
.mini-cta-inner { background: var(--plum); color: var(--cream); padding: clamp(1.8rem,4vw,3rem) clamp(1.5rem,5vw,3.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem 2rem; flex-wrap: wrap; }
.mini-cta-inner h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem,3.2vw,2.4rem); line-height: 1.1; }
.mini-cta .btn-solid { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.mini-cta .btn-solid:hover { background: #fff; border-color: #fff; color: var(--ink); }

/* ── Contrasting "Book a Consultation" in menu ── */
.menu-links a.menu-cta { color: #d98a5c; }
.menu-links a.menu-cta:hover { color: #e8a074; padding-left: .8rem; }

/* ── Projects: per-project image scrollers ── */
.project { margin-top: clamp(2.5rem,5vw,4.5rem); }
.project:first-of-type { margin-top: clamp(1rem,2vw,2rem); }
.project-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(1rem,2vw,1.6rem); }
.project-head h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem,3.4vw,2.6rem); }
.project-head .t-meta { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: .4rem; }
.proj-nav { display: flex; gap: .6rem; flex-shrink: 0; }
.pnav { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--ink);
  font-family: var(--serif); font-size: 1.5rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.pnav:hover { background: var(--plum); color: var(--cream); border-color: var(--plum); }
.proj-track { display: flex; gap: clamp(.8rem,1.6vw,1.2rem); overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 0 clamp(1.25rem,5vw,5rem); scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; }
.proj-track::-webkit-scrollbar { display: none; }
.pslide { flex: 0 0 min(56%, 720px); scroll-snap-align: center; background: var(--sand); overflow: hidden; }
.pslide img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
@media (max-width: 720px) { .pslide { flex-basis: 86%; } .pnav { width: 40px; height: 40px; font-size: 1.3rem; } }

/* ── Board groups (green vs terracotta) ── */
.board-group { margin-top: clamp(2.5rem,5vw,4rem); }
.board-group:first-of-type { margin-top: clamp(1rem,2vw,2rem); }
.bg-title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem,2.6vw,2rem); margin-bottom: 1.1rem; }

/* ── Button responsiveness ── */
@media (max-width: 560px) {
  .btn { padding: 1rem 1.6rem; font-size: .7rem; letter-spacing: .16em; }
  .social-cta { flex-direction: column; }
  .social-cta .btn { width: 100%; justify-content: center; }
  .mini-cta-inner .btn { width: 100%; justify-content: center; }
}
