/* ===== Tokens (defaults; overridden by Tweaks inline) ===== */
:root {
  --bg: #F6F5F2;
  --surface: #E4E2DD;
  --text: #1A1A1A;
  --muted: #5D6266;
  --primary: #1FA0A8;
  --secondary: #3C4146;
  --accent: #E0492F;
  --border: #D6D3CC;
  --focus: #E0492F;
  --display: "Space Grotesk", "Inter Tight", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;

  --gutter: 32px;
  --maxw: 1340px;
  --section-y: clamp(64px, 8vw, 120px);
}

.is-dense {
  --section-y: clamp(40px, 5vw, 70px);
}

/* Reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: var(--body); -webkit-font-smoothing: antialiased; }
body { line-height: 1.5; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ===== Type system ===== */
.display {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(54px, 8.4vw, 124px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 18px 0 22px;
  text-wrap: balance;
}
.display em {
  font-style: normal;
  color: var(--primary);
  position: relative;
  font-weight: 400;
}
.display__alt { font-weight: 300; opacity: .9; }

.h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 10px 0 14px;
  text-wrap: balance;
}
.h2--light { color: #F6F5F2; }

.h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 6px 0 10px;
}
.h3--light { color: #F6F5F2; }

.lead {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  color: var(--secondary);
  max-width: 56ch;
  text-wrap: pretty;
}
.lead--sm { font-size: 16.5px; }

.sub {
  color: var(--muted);
  max-width: 48ch;
  font-size: 16px;
  text-wrap: pretty;
}
.sub--right { text-align: right; align-self: end; }
.sub--light { color: rgba(246,245,242,.72); }

.muted { color: var(--muted); }
.footnote { color: var(--muted); font-size: 13px; margin-top: 14px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
}
.eyebrow--light { color: rgba(246,245,242,.85); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); display: inline-block; }
.dot--accent { background: var(--accent); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--text); color: #fff; }
.btn--primary:hover { background: var(--primary); color: #fff; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--text); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--text); }
.btn--lg { padding: 14px 22px; font-size: 15px; }
.btn--sm { padding: 7px 14px; font-size: 13px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 500;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  color: var(--text);
}
.link-arrow:hover { color: var(--primary); border-bottom-color: currentColor; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  font-family: var(--display); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--surface); color: var(--secondary);
  border: 1px solid var(--border);
}
.chip--ok { background: color-mix(in oklab, var(--primary) 14%, white); color: var(--secondary); border-color: color-mix(in oklab, var(--primary) 30%, var(--border)); }
.chip--warn { background: color-mix(in oklab, var(--accent) 15%, white); color: var(--secondary); border-color: color-mix(in oklab, var(--accent) 35%, var(--border)); }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  background: transparent;
}
.nav--scrolled { background: color-mix(in oklab, var(--bg) 92%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-family: var(--display); font-size: 14px; font-weight: 500; color: var(--secondary);
  position: relative; padding: 6px 2px;
}
.nav__links a.is-active, .nav__links a:hover { color: var(--text); }
.nav__links a.is-active::after { content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background: var(--primary); border-radius: 2px; }
.nav__right { display: flex; align-items: center; gap: 10px; }
.lang {
  display: inline-flex; border: 1px solid var(--border); border-radius: 999px; overflow: hidden;
  background: color-mix(in oklab, var(--bg) 85%, white);
}
.lang button {
  background: transparent; border: 0; padding: 6px 10px;
  font-family: var(--display); font-size: 12px; letter-spacing: .08em; color: var(--muted);
}
.lang button.on { background: var(--text); color: #fff; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 132px 0 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: end;
  padding-bottom: 56px;
}
.hero--mono .hero__grid { grid-template-columns: 1fr; }
.hero--mono .hero__art { display: none; }
.hero--stack .hero__grid { grid-template-columns: 1fr; gap: 36px; }
.hero--stack .hero__art { order: 2; }

.hero__copy { padding-bottom: 12px; }

.hero__cta {
  display: flex; gap: 12px; margin: 8px 0 32px;
}

.hero__meta {
  display: flex; align-items: stretch; gap: 24px;
  padding: 22px 0 6px;
  border-top: 1px solid var(--border);
  margin-top: 6px;
}
.hero__meta > div { display: flex; flex-direction: column; gap: 0; }
.hero__meta .vr { width: 1px; background: var(--border); margin: 4px 0; }
.num { font-family: var(--display); font-size: 30px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.num__unit { font-family: var(--display); font-size: 12px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.num__lbl { font-size: 12.5px; color: var(--secondary); margin-top: 6px; }
.hero__footnote { font-size: 12.5px; color: var(--muted); margin-top: 10px; max-width: 48ch; }

.hero__art {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  grid-template-rows: 0.42fr 0.58fr;
  gap: 14px;
  min-height: 560px;
  aspect-ratio: 1 / 0.95;
}
.hero__photo {
  background-size: cover; background-position: center;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.hero__photo:hover { transform: scale(1.012); }
.hero__photo--lg { grid-row: 1 / span 2; grid-column: 1; }
.hero__photo--md { grid-row: 1; grid-column: 2; }
.hero__photo--sm { grid-row: 2; grid-column: 2; }
.hero__photo-tag {
  position: absolute; left: 12px; bottom: 12px;
  font-family: var(--display); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(20,20,20,.62); color: #fff; padding: 5px 9px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hero__sticker {
  position: absolute;
  left: -36px; bottom: 28px;
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 14px;
  font-family: var(--display); font-weight: 600;
  transform: rotate(-7deg);
  box-shadow: 0 18px 36px -16px rgba(224,73,47,.55), 0 0 0 6px var(--bg);
  z-index: 3;
}
.sticker__top { font-size: 13px; line-height: 1.2; }
.sticker__bot { font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; opacity: .92; margin-top: 8px; }

/* Marquee */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg);
}
.marquee__track {
  display: flex; gap: 0;
  animation: marquee 38s linear infinite;
  padding: 16px 0;
}
.marquee__row {
  display: inline-flex; align-items: center; gap: 28px;
  padding-right: 28px;
  font-family: var(--display); font-size: 22px; font-weight: 500;
  white-space: nowrap;
}
.marquee__row i { color: var(--primary); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Section heads ===== */
.section-head { margin: var(--section-y) 0 36px; }
.section-head--row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: end; }

/* ===== Pillars ===== */
.pillars { padding-bottom: 12px; }
.pillars__grid {
  display: grid; grid-template-columns: repeat(var(--cols, 4), 1fr);
  gap: 18px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -28px rgba(20,20,20,.18); }
.pillar__media {
  aspect-ratio: 4 / 3.2;
  background-size: cover; background-position: center;
  position: relative;
}
.kicker {
  position: absolute; left: 14px; top: 14px;
  font-family: var(--display); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(20,20,20,.65); color: #fff; padding: 5px 9px; border-radius: 4px;
}
.pillar__media .chip { position: absolute; right: 12px; bottom: 12px; background: rgba(255,255,255,.92); }
.pillar__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pillar__body h3 { font-family: var(--display); font-weight: 600; font-size: 22px; margin: 0; }
.pillar__body p { color: var(--muted); margin: 0 0 8px; font-size: 15px; }
.pillar__body .link-arrow { margin-top: auto; }

/* ===== Bands ===== */
.band {
  background: var(--surface);
  padding: 16px 0 calc(var(--section-y) - 16px);
  margin-top: var(--section-y);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.band--dark {
  background: var(--secondary);
  color: #F6F5F2;
  border-color: rgba(255,255,255,.06);
}
.band--dark .section-head { margin-bottom: 28px; }
.band--dark .h2 { color: #fff; }

/* ===== Workspace ===== */
.tier-tabs {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px;
  padding: 6px; border-radius: 999px; background: #fff; border: 1px solid var(--border); width: max-content;
}
.tier-tab {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px; border-radius: 999px; background: transparent; border: 0;
  font-family: var(--display); font-weight: 500; color: var(--secondary);
}
.tier-tab__no { font-size: 11px; letter-spacing: .15em; color: var(--muted); }
.tier-tab.on { background: var(--text); color: #fff; }
.tier-tab.on .tier-tab__no { color: rgba(255,255,255,.7); }

.tier-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 28px;
}
.tier-detail__illo {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 28px;
  border: 1px dashed var(--border);
}
.tier-detail__photo {
  position: absolute; right: -14px; bottom: -14px;
  width: 56%; aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  border-radius: var(--r-md);
  border: 4px solid #fff;
  box-shadow: 0 18px 30px -18px rgba(20,20,20,.25);
}
.tier-detail__copy { display: flex; flex-direction: column; gap: 14px; padding: 6px 4px; }
.tier-detail__meta { border-top: 1px solid var(--border); padding-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.meta-row { display: grid; grid-template-columns: 110px 1fr; gap: 12px; font-size: 14.5px; }
.meta-row span { color: var(--muted); font-family: var(--display); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; }
.meta-row b { font-weight: 500; }
.tier-detail__cta { display: flex; gap: 10px; margin-top: 6px; }

.tier-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.tier-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 18px; cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column; gap: 10px;
}
.tier-card:hover { transform: translateY(-2px); }
.tier-card.is-active { border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary) 20%, transparent); }
.tier-card__illo { height: 72px; }
.tier-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.tier-card__head h4 { font-family: var(--display); font-weight: 600; margin: 0; font-size: 18px; }
.tier-card__head .price { font-family: var(--display); font-weight: 500; font-size: 14px; color: var(--text); }
.tier-card__head .price i { font-style: normal; color: var(--muted); font-size: 12px; margin-left: 2px; }
.tier-card p { margin: 0; color: var(--muted); font-size: 14px; min-height: 60px; }
.tier-card__foot { display: flex; justify-content: space-between; align-items: center; font-size: 13px; margin-top: auto; }

/* ===== Cafe ===== */
.cafe { padding: var(--section-y) 0; }
.cafe__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.cafe__copy .kv {
  list-style: none; padding: 0; margin: 22px 0 0;
  border-top: 1px solid var(--border);
}
.kv li {
  display: grid; grid-template-columns: 160px 1fr; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.kv li span { color: var(--muted); font-family: var(--display); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; }
.kv li i { color: var(--muted); font-style: normal; font-size: 13px; margin-left: 6px; }

.cafe__menu {
  background: var(--secondary); color: #fff;
  padding: 28px;
  border-radius: var(--r-lg);
}
.menu-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; }
.menu-head h3 { font-family: var(--display); font-weight: 600; font-size: 22px; margin: 0; color: #fff; }
.menu-head span { color: rgba(255,255,255,.65); font-size: 13px; }
.menu-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.menu-list li {
  display: grid; grid-template-columns: 68px 1fr auto; gap: 16px; align-items: center;
  padding: 12px; border-radius: var(--r-md);
  background: rgba(255,255,255,.04);
  transition: background .2s ease;
}
.menu-list li:hover { background: rgba(255,255,255,.08); }
.menu-photo { width: 68px; height: 68px; border-radius: 10px; background-size: cover; background-position: center; }
.menu-meta h4 { margin: 0 0 4px; font-family: var(--display); font-weight: 500; font-size: 17px; color: #fff; }
.menu-meta p { margin: 0; color: rgba(255,255,255,.6); font-size: 13.5px; }
.menu-num { font-family: var(--display); font-size: 12px; color: rgba(255,255,255,.4); letter-spacing: .15em; }
.cafe__menu .link-arrow { color: #fff; margin-top: 18px; }
.cafe__menu .link-arrow:hover { color: var(--accent); }

/* ===== Workshops ===== */
.band--dark .eyebrow { color: rgba(246,245,242,.78); }
.tagbar {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin: 18px 0 22px;
}
.tag {
  background: transparent; color: rgba(246,245,242,.78);
  border: 1px solid rgba(255,255,255,.15);
  padding: 7px 14px; border-radius: 999px; font-family: var(--display); font-size: 13px;
}
.tag.on { background: #F6F5F2; color: var(--secondary); border-color: #F6F5F2; }
.tagbar__hint { color: rgba(246,245,242,.55); font-size: 12.5px; margin-left: auto; }

.calendar { list-style: none; padding: 0; margin: 0; }
.cal-row {
  display: grid;
  grid-template-columns: 130px 92px 1fr 200px 110px auto;
  gap: 20px; align-items: center;
  padding: 22px 6px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.cal-row:last-child { border-bottom: 1px solid rgba(255,255,255,.08); }
.cal-date { font-family: var(--display); font-size: 14px; color: rgba(246,245,242,.7); letter-spacing: .04em; }
.cal-tag { font-family: var(--display); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; padding: 5px 9px; border-radius: 4px; display: inline-block; text-align: center; }
.cal-tag--design { background: var(--primary); color: #001; }
.cal-tag--maker { background: var(--accent); color: #fff; }
.cal-tag--talk { background: #F6F5F2; color: var(--secondary); }
.cal-tag--skill { background: rgba(255,255,255,.12); color: #fff; }
.cal-title { font-family: var(--display); font-weight: 500; font-size: 19px; margin: 0; color: #fff; }
.cal-who { color: rgba(246,245,242,.7); font-size: 14px; }
.cal-spots { color: rgba(246,245,242,.85); font-size: 13.5px; }

.corp {
  margin-top: 36px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}

/* ===== About ===== */
.about { padding: var(--section-y) 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "intro intro"
    "body stats"
    "gallery gallery";
  gap: 36px 56px;
}
.about__intro { grid-area: intro; }
.about__body { grid-area: body; display: flex; flex-direction: column; gap: 16px; }
.about__stats { grid-area: stats; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-content: start; }
.about__stats > div { display: flex; flex-direction: column; gap: 4px; padding: 18px; border: 1px solid var(--border); border-radius: var(--r-md); background: #fff; }
.about__stats b.num { font-size: 42px; color: var(--primary); }
.about__stats span { font-size: 14px; color: var(--muted); }

.about__gallery {
  grid-area: gallery;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  grid-template-rows: 220px;
  gap: 14px;
  margin-top: 8px;
}
.about__gallery .g { background-size: cover; background-position: center; border-radius: var(--r-md); }

/* ===== Contact ===== */
.contact { padding: var(--section-y) 0 calc(var(--section-y) - 20px); background: var(--surface); border-top: 1px solid var(--border); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.contact__copy { padding-right: 8px; }
.contact-list { list-style: none; padding: 0; margin: 22px 0 22px; border-top: 1px solid var(--border); }
.contact-list li {
  display: grid; grid-template-columns: 110px 1fr; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.contact-list span { color: var(--muted); font-family: var(--display); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; }
.contact-list a { color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: 1px; }
.contact-list a:hover { color: var(--primary); border-color: currentColor; }
.contact-list i { display: block; color: var(--muted); font-style: normal; font-size: 12.5px; margin-top: 4px; }
.contact__cta { display: flex; gap: 10px; }

.contact__form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.contact__form form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.contact__form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--muted); font-family: var(--display); letter-spacing: .04em; }
.contact__form label.full { grid-column: 1 / -1; }
.contact__form input, .contact__form select, .contact__form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary) 20%, transparent);
}
.contact__form .btn { grid-column: 1 / -1; justify-self: start; }
.contact__form .footnote { grid-column: 1 / -1; margin: 0; }

.map {
  grid-column: 1 / -1;
  position: relative;
  margin-top: 16px;
  height: 360px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ddd;
}
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.25) contrast(.95); }
.map__pin {
  position: absolute; left: 20px; bottom: 20px;
  background: #fff; padding: 12px 16px; border-radius: var(--r-md);
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 18px 32px -16px rgba(0,0,0,.25);
  border: 1px solid var(--border);
}
.map__pin-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px color-mix(in oklab, var(--accent) 30%, transparent); }
.map__pin b { font-family: var(--display); font-weight: 600; display: block; font-size: 15px; }
.map__pin span { font-size: 12.5px; color: var(--muted); }

/* ===== Footer ===== */
.footer {
  background: var(--secondary);
  color: #F6F5F2;
  padding: 72px 0 28px;
  margin-top: 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer h5 { font-family: var(--display); font-size: 13px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(246,245,242,.6); margin: 0 0 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; }
.footer p, .footer li { color: rgba(246,245,242,.8); font-size: 14.5px; line-height: 1.5; }
.footer a:hover { color: var(--primary); }
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand .muted { color: rgba(246,245,242,.6); }
.footer__social { display: flex; gap: 10px; margin-top: 4px; }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  font-family: var(--display); font-size: 13px;
  color: rgba(246,245,242,.85);
}
.footer__social a:hover { background: #fff; color: var(--secondary); }
.footer__base {
  display: flex; justify-content: space-between; gap: 24px;
  padding: 22px 0 0;
  font-size: 12.5px; color: rgba(246,245,242,.55);
}

/* ===== Modal ===== */
.modal {
  position: fixed; inset: 0; background: rgba(20,20,20,.55); backdrop-filter: blur(4px);
  z-index: 80; display: flex; align-items: center; justify-content: center;
  padding: 24px; animation: fade-in .2s ease;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal__card {
  width: min(560px, 100%); background: var(--bg);
  border-radius: var(--r-lg); border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 40px 60px -20px rgba(0,0,0,.4);
  animation: pop-in .25s ease;
}
@keyframes pop-in { from { transform: translateY(10px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal__head { display: flex; align-items: start; justify-content: space-between; padding: 24px 24px 0; }
.modal__head .h3 { margin-top: 6px; }
.modal__close { background: transparent; border: 0; font-size: 18px; color: var(--muted); padding: 4px 8px; }
.modal__steps { display: flex; gap: 6px; padding: 12px 24px 0; }
.step {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--display); font-size: 12.5px;
  background: var(--surface); color: var(--muted);
}
.step span {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(20,20,20,.08); display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
}
.step.on { background: var(--text); color: #fff; }
.step.on span { background: var(--primary); color: #fff; }
.step.done { color: var(--text); }
.step.done span { background: var(--primary); color: #fff; }

.modal__body {
  padding: 18px 24px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.modal__body label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--muted); font-family: var(--display); letter-spacing: .04em; }
.modal__body input, .modal__body select {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 12px 14px; font-size: 15px; outline: none;
}
.modal__body input:focus, .modal__body select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary) 20%, transparent); }
.picker { display: flex; flex-wrap: wrap; gap: 8px; }
.picker button {
  padding: 9px 14px; border-radius: 999px; background: #fff;
  border: 1px solid var(--border); font-family: var(--display); font-size: 14px;
}
.picker button.on { background: var(--text); color: #fff; border-color: var(--text); }

.receipt {
  background: #fff; border: 1px dashed var(--border); border-radius: var(--r-md);
  padding: 14px; display: flex; flex-direction: column; gap: 8px;
}
.receipt > div { display: grid; grid-template-columns: 120px 1fr; gap: 12px; font-size: 14px; }
.receipt span { color: var(--muted); font-family: var(--display); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }

.modal__cta { display: flex; justify-content: flex-end; gap: 10px; padding-top: 6px; }

/* ===== Tweaks panel ===== */
.tweaks {
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  width: 320px; max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: 0 30px 50px -20px rgba(0,0,0,.3);
  font-family: var(--body); color: var(--text);
}
.tweaks header { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.tweaks header b { font-family: var(--display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.tweaks header button { background: transparent; border: 0; font-size: 16px; color: var(--muted); }
.tweaks section { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.tweaks section:last-child { border-bottom: 0; }
.tweaks label { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-family: var(--display); }
.swatches { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.swatches button {
  border: 1px solid var(--border); background: #fff; border-radius: var(--r-md);
  padding: 10px; cursor: pointer; display: flex; flex-direction: column; gap: 6px;
  text-align: left;
}
.swatches button.on { border-color: var(--text); box-shadow: 0 0 0 2px color-mix(in oklab, var(--text) 15%, transparent); }
.swatches button > span { display: block; width: 100%; height: 16px; border-radius: 4px; }
.swatches button i { font-style: normal; font-size: 11.5px; color: var(--muted); margin-top: 2px; }

.seg { display: flex; gap: 6px; }
.seg button {
  flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 10px; font-family: var(--display); font-size: 13px; color: var(--muted);
}
.seg button.on { background: var(--text); color: #fff; border-color: var(--text); }

.row .toggle { display: flex; flex-direction: row; align-items: center; gap: 10px; margin-bottom: 0; }
.row .toggle span { font-family: var(--display); font-size: 13px; color: var(--text); letter-spacing: 0; text-transform: none; }
.row .toggle input { accent-color: var(--primary); }

/* RTL nudge */
.is-rtl .marquee__track { animation-direction: reverse; }

/* Responsive */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; gap: 24px; }
  .hero__art { aspect-ratio: 1 / 0.7; min-height: 0; }
  .section-head--row { grid-template-columns: 1fr; }
  .sub--right { text-align: left; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .tier-detail { grid-template-columns: 1fr; }
  .tier-strip { grid-template-columns: repeat(2, 1fr); }
  .cafe__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; grid-template-areas: "intro" "body" "stats" "gallery"; }
  .about__gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cal-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__right .btn--ghost { display: none; }
  .hero { padding-top: 108px; }
  .hero__sticker { width: 110px; height: 110px; left: -6px; bottom: -8px; }
  .sticker__top { font-size: 11px; }
  .sticker__bot { font-size: 8.5px; }
  .pillars__grid { grid-template-columns: 1fr; }
  .tier-strip { grid-template-columns: 1fr; }
  .about__gallery { grid-template-columns: 1fr; grid-template-rows: repeat(4, 160px); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact__form form { grid-template-columns: 1fr; }
  .hero__meta { flex-wrap: wrap; gap: 14px; }
  .hero__meta .vr { display: none; }
}
