:root {
  /* Brand palette (overridable from admin theme settings) */
  --base: #F7F4EF;          /* site background */
  --brand: #D8CBB8;         /* brand primary */
  --ink: #2F2E2C;           /* charcoal text / logo */
  --aux: #A99D8E;           /* secondary: lines / icons / hover / soft buttons */
  --mars: #B66A4C;          /* ≤5%: CTA / logo accent / small icons */

  --base-2: #ffffff;
  --cream: var(--base);
  --ink-soft: color-mix(in srgb, var(--ink) 72%, #ffffff);
  --muted: color-mix(in srgb, var(--ink) 58%, #ffffff);
  --muted-2: color-mix(in srgb, var(--ink) 42%, #ffffff);
  --muted-3: var(--aux);
  --line: color-mix(in srgb, var(--aux) 42%, var(--base));
  --deep: var(--ink);
  --accent: var(--brand);
  --accent-2: var(--aux);
  --accent-3: var(--mars);
  --max: 1120px;
  --wide: 1280px;
  --display: "Cardo", "Noto Serif SC", serif;
  --body: "Inter", "Noto Sans SC", "PingFang SC", sans-serif;
  --fs-body: 1.05rem;
  --fs-small: 0.9rem;
  --fs-h1: clamp(2.5rem, 7.5vw, 6rem);
  --fs-h2: clamp(2rem, 4vw, 3rem);
  --fs-h3: clamp(1rem, 0.98rem + 0.86vw, 1.5rem);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--fs-body);
  font-weight: 400;
  background: var(--base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 0.18em; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4, .display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: var(--fs-h1); line-height: 1; letter-spacing: -0.035em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.25; letter-spacing: 0; }

input[type="checkbox"],
input[type="radio"] {
  -webkit-appearance: auto;
  appearance: auto;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
  min-height: 16px !important;
  max-height: 16px !important;
  padding: 0 !important;
  margin: 0;
  border: none !important;
  background: transparent !important;
  vertical-align: middle;
  flex: none !important;
  box-shadow: none !important;
  accent-color: var(--ink);
}

.container {
  width: min(100% - 4rem, var(--max));
  margin-inline: auto;
}
.container-wide {
  width: min(100% - 4rem, var(--wide));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.nav {
  position: relative;
  width: min(100% - 4rem, var(--wide));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none !important;
}
.brand img,
.brand svg {
  width: 52px;
  height: 52px;
  object-fit: contain;
  color: var(--ink);
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.brand-text span {
  font-size: 0.68rem;
  color: var(--muted-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.18rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
  flex-wrap: wrap;
  font-size: clamp(0.875rem, 0.875rem + 0.125vw, 0.95rem);
  letter-spacing: 0.01em;
}
.nav-links > a {
  color: var(--ink);
  text-decoration: none !important;
}
.nav-links > a:hover,
.nav-links > a.active { text-decoration: underline !important; text-underline-offset: 0.22em; }
.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-cart .badge {
  display: inline-grid;
  place-items: center;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1;
}
.lang-switch {
  display: inline-flex;
  gap: 0.15rem;
  margin-left: 0.25rem;
}
.lang-switch a {
  padding: 0.2rem 0.4rem;
  font-size: 0.75rem;
  color: var(--muted-2);
  text-decoration: none !important;
}
.lang-switch a.on { color: var(--ink); font-weight: 500; }
.menu-toggle {
  border: 0 !important;
  background: transparent !important;
  color: var(--ink) !important;
  min-height: 40px !important;
  padding: 0.4rem !important;
  font-size: 0.85rem;
  cursor: pointer;
}
.nav-links .btn {
  min-height: 0;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  color: #ffffff !important;
  background: var(--mars);
  border-color: var(--mars);
  text-decoration: none !important;
}
.nav-links .btn:hover,
.nav-links .btn.active {
  color: #ffffff !important;
  background: color-mix(in srgb, var(--mars) 82%, #000000);
  border-color: color-mix(in srgb, var(--mars) 82%, #000000);
  text-decoration: none !important;
}
.nav-links .btn-ghost {
  color: var(--ink) !important;
  background: transparent;
  border-color: var(--aux);
}
.nav-links .btn-ghost:hover {
  color: #ffffff !important;
  background: var(--aux);
  border-color: var(--aux);
}
.nav-links > a:hover,
.menu-toggle:hover {
  color: var(--aux);
}
.icon-mars,
.brand-mark {
  color: var(--mars);
}

/* —— Buttons —— */
/* Primary = mars CTA (≤5% color usage) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 0;
  padding: 0.9rem 2rem;
  border: 1px solid var(--mars);
  background: var(--mars);
  color: #ffffff;
  cursor: pointer;
  border-radius: 0;
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover {
  background: color-mix(in srgb, var(--mars) 82%, #000000);
  border-color: color-mix(in srgb, var(--mars) 82%, #000000);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  border-color: var(--aux);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--aux);
  border-color: var(--aux);
  color: #fff;
}
/* Secondary button = aux */
.btn-soft {
  background: transparent;
  border-color: var(--aux);
  color: var(--ink);
}
.btn-soft:hover {
  background: var(--aux);
  border-color: var(--aux);
  color: #fff;
}
.btn-on-dark {
  background: transparent;
  border-color: color-mix(in srgb, var(--brand) 70%, #ffffff);
  color: color-mix(in srgb, var(--brand) 70%, #ffffff);
}
.btn-on-dark:hover {
  background: var(--mars);
  color: #ffffff;
  border-color: var(--mars);
}
.link-more {
  display: inline-block;
  margin-top: 2rem;
  font-size: clamp(0.875rem, 0.875rem + 0.125vw, 0.95rem);
  color: var(--ink);
  text-decoration: none;
}
.link-more:hover { text-decoration: underline; }

/* —— Home ad (entry) —— */
.home-ad {
  background: #ffffff;
  padding: 5rem 1.25rem 1.5rem;
  text-align: center;
}
.home-ad-copy {
  max-width: 28rem;
  margin: 0 auto 3.25rem;
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-ad-title {
  font-family: var(--display);
  font-size: clamp(1.85rem, 6.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--ink);
}
.home-ad-works {
  display: none;
  margin: 0 auto;
}
.home-ad-shot {
  display: block;
  text-decoration: none !important;
  overflow: hidden;
  background: var(--accent);
  aspect-ratio: 1 / 1;
}
.home-ad-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 960px) {
  .home-ad {
    min-height: calc(100svh - 5rem);
    min-height: calc(100dvh - 5rem);
    padding: 1.25rem 1.25rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
  }
  .home-ad-copy {
    flex: 1 1 auto;
    min-height: 0;
    margin: 0 auto;
    padding: 0.25rem 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }
  .home-ad-title {
    font-size: clamp(1.55rem, 6.2vw, 2.2rem);
    transform: translateY(-1.35em);
  }
  .home-ad-works {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
    width: min(100%, 22rem);
    margin: 0 auto 3.25rem;
    flex: 0 0 auto;
    transform: translateY(-1.25rem);
  }
  .home-ad-shot {
    aspect-ratio: 1 / 1;
  }
}

@media (min-width: 961px) {
  .home-ad {
    padding: 6.5rem 2rem 2rem;
  }
  .home-ad-copy {
    min-height: 46vh;
    margin-bottom: 2.75rem;
  }
  .home-ad-works {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem;
    width: min(100% - 4rem, 40rem);
    margin: 0 auto;
  }
  .home-ad-shot {
    aspect-ratio: 1 / 1;
  }
}

/* —— Hero cover (legacy, kept for reuse) —— */
.hero-cover {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--deep);
}
.hero-cover-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-cover-logo {
  position: relative;
  z-index: 1;
  width: min(280px, 48vw);
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 8px 24px rgba(0,0,0,.25));
}

/* —— Intro band —— */
.intro-band {
  background: var(--cream);
  padding: min(10vh, 6rem) 2rem min(12vh, 8rem);
  text-align: center;
}
.intro-band h1 {
  color: var(--ink);
  margin: 0 auto;
  max-width: 16ch;
}
.intro-band .lead {
  color: var(--ink-soft);
  margin: 1.75rem auto 0;
  max-width: 38rem;
  font-size: clamp(0.875rem, 0.875rem + 0.625vw, 1.25rem);
  line-height: 1.6;
}
.intro-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.5rem;
}

/* —— Sections —— */
.section {
  padding: 7rem 2rem;
  background: var(--base-2);
}
.section-base { background: var(--base); }
.section-cream { background: var(--cream); }
.section-tight { padding-top: 4rem; }
.section-head {
  text-align: center;
  margin: 0 auto 4rem;
  max-width: 40rem;
}
.section-head.is-left {
  text-align: left;
  margin-left: 0;
}
.eyebrow {
  color: var(--muted-2);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
}
.section-head h2 {
  margin: 1rem 0 0;
}
.section-head p {
  color: var(--muted);
  margin: 1rem 0 0;
  font-size: clamp(0.875rem, 0.875rem + 0.2vw, 1rem);
}
.page-hero {
  background: var(--cream);
  text-align: center;
  padding: 4.5rem 1.5rem 2.75rem;
  width: 100%;
}
.page-hero-inner {
  width: min(100%, 42rem);
  margin-inline: auto;
}
.page-hero .eyebrow {
  margin: 0 0 0.85rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: normal;
}
.page-hero .lead {
  color: var(--muted);
  margin: 1.1rem auto 0;
  max-width: 36rem;
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.1rem);
  line-height: 1.65;
  text-wrap: pretty;
}
.lead {
  color: var(--muted);
  margin: 1rem 0 0;
  max-width: 40rem;
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.1rem);
  line-height: 1.6;
}

.work-grid {
  display: grid;
  gap: 2.75rem 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
.practice-grid,
.product-grid,
.level-grid,
.service-grid {
  display: grid;
  gap: 2rem 1.75rem;
  grid-template-columns: repeat(3, 1fr);
}
.practice-item .num {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.practice-item h3,
.level-card h3,
.service-card h3,
.product-card h3 {
  font-family: var(--display);
  font-size: var(--fs-h3);
  font-weight: 400;
  margin: 0.75rem 0;
  line-height: 1.25;
}
.practice-item p,
.level-card p,
.service-card p,
.product-card p {
  color: var(--muted);
  margin: 0;
  font-size: clamp(0.875rem, 0.875rem + 0.2vw, 1rem);
  line-height: 1.65;
}
.panel {
  border-top: 1px solid var(--line);
  padding-top: 1.35rem;
}
.meta {
  color: var(--muted-2);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.work-card {
  text-decoration: none !important;
  color: inherit;
  display: block;
}
.product-card {
  text-decoration: none !important;
  color: inherit;
}
.work-card .thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--brand);
  margin-bottom: 0;
}
.product-card .thumb {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--accent);
  margin-bottom: 1rem;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.6s ease;
  filter: saturate(0.92) contrast(1.02);
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.work-card:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.04);
}
.product-card:hover img { transform: scale(1.04); }
.product-card h3 { margin: 0.45rem 0 0.4rem; }
.work-card-caption {
  display: grid;
  gap: 0.35rem;
  padding: 1.05rem 0.15rem 0;
}
.work-card-caption .meta {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.work-card-caption h3 {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.work-card-caption p {
  display: none;
}

/* —— Work detail gallery —— */
.work-detail .gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.work-detail .gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--brand);
  display: block;
}
.work-detail .gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
  max-height: none;
}
.work-detail .gallery img:nth-child(4n + 2) {
  aspect-ratio: 3 / 4;
}
.work-detail .gallery img:nth-child(4n + 3) {
  aspect-ratio: 4 / 5;
}
.work-detail .body-copy {
  margin-top: 2.25rem;
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.about-split .media {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.about-band {
  background: var(--deep);
  color: var(--cream);
  padding: 7rem 2rem;
  text-align: center;
}
.about-band .eyebrow { color: var(--muted-3); }
.about-band .quote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--cream);
  max-width: 40rem;
  margin: 1.5rem auto 2.5rem;
}
.about-band .btn { margin-top: 0; }

.cta-band {
  background: var(--base-2);
  color: var(--ink);
  padding: 7rem 2rem;
  text-align: center;
}
.cta-band h2 {
  margin: 0 auto;
  max-width: 18ch;
}
.cta-band p {
  color: var(--muted);
  max-width: 34rem;
  margin: 1.25rem auto 2.5rem;
  font-size: clamp(0.875rem, 0.875rem + 0.375vw, 1.1rem);
  line-height: 1.6;
}

/* —— Footer —— */
.site-footer {
  background: var(--deep);
  color: #e5e5e5;
  padding: 5rem 2rem 3rem;
  border: 0;
}
.footer-grid {
  width: min(100%, var(--wide));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand img {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-brand h4 {
  color: var(--cream);
  font-family: var(--body);
  font-size: clamp(0.875rem, 0.875rem + 0.625vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.footer-brand p {
  color: var(--muted-3);
  margin-top: 1rem;
  font-size: clamp(0.875rem, 0.875rem + 0.125vw, 0.95rem);
  line-height: 1.7;
}
.site-footer h4 {
  color: #888;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.footer-links {
  display: grid;
  gap: 0;
  color: #e5e5e5;
  font-size: clamp(0.875rem, 0.875rem + 0.125vw, 0.95rem);
  line-height: 2;
}
.footer-links a {
  color: inherit;
  text-decoration: none !important;
}
.footer-links a:hover { text-decoration: underline !important; }
.copyright {
  width: min(100%, var(--wide));
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid #3a3a3a;
  color: #7a7a7a;
  font-size: 0.8rem;
}

/* —— Forms / auth —— */
.form { display: grid; gap: 1rem; max-width: 560px; }
.form label { display: grid; gap: 0.4rem; font-size: 0.9rem; }
.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--line);
  background: var(--base-2);
  border-radius: 0;
  transition: border-color 0.2s;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--ink);
}
.form input[type="checkbox"],
.form input[type="radio"] {
  width: 16px;
  height: 16px;
  min-height: 0;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  flex: 0 0 auto;
}
.form label.check,
.form .check-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
}
.form textarea { min-height: 150px; resize: vertical; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.alert {
  padding: 0.95rem 1.05rem;
  border: 1px solid var(--line);
  background: var(--base-2);
  margin-bottom: 1rem;
}
.alert-error { border-color: #c45c4a; color: #8a2f22; background: rgba(196, 92, 74, 0.06); }
.alert-success { border-color: #5a8f6b; color: #2f5c3d; background: rgba(90, 143, 107, 0.08); }
.auth-wrap,
.member-wrap { padding: 4.5rem 0 5.5rem; }
.auth-card {
  max-width: 520px;
  margin: 0 auto;
  background: color-mix(in srgb, #ffffff 72%, var(--base));
  border: 1px solid var(--line);
  padding: 2.4rem;
}
.auth-card-member { max-width: 480px; }
.auth-title {
  font-size: clamp(2rem, 1.7rem + 1.2vw, 2.6rem);
  margin: 0.25rem 0 0.65rem;
  font-weight: 400;
}
.auth-lead {
  color: var(--muted);
  margin: 0 0 1.4rem;
  line-height: 1.6;
}
.auth-foot {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.15rem 0 0.35rem;
}
.auth-row .check { margin: 0; }
.auth-link {
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  white-space: nowrap;
}
.captcha-row {
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
  margin: 0.1rem 0 0.2rem;
}
.captcha-label {
  flex: 1;
  margin: 0;
}
.captcha-img-btn {
  border: 1px solid var(--line);
  background: var(--base-2);
  padding: 0;
  cursor: pointer;
  line-height: 0;
  flex: none;
}
.captcha-img-btn img {
  display: block;
  width: 120px;
  height: 40px;
}
.auth-card .check {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
}
.auth-card .check input {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  margin: 0;
  padding: 0;
  flex: none;
}

.member-hero { margin-bottom: 2rem; }
.member-hero-title {
  font-family: var(--display);
  font-size: clamp(2.1rem, 1.8rem + 1.4vw, 3rem);
  font-weight: 400;
  margin: 0.2rem 0 0.7rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.member-hero-lead {
  color: var(--muted);
  max-width: 36rem;
  margin: 0;
  line-height: 1.65;
}
.member-status {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-end;
  padding: 1.35rem 0 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.member-status-label {
  display: block;
  color: var(--muted-2);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.member-status-level {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.4rem, 1.25rem + 0.6vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.member-status-expire {
  color: var(--muted);
  font-size: 0.92rem;
}
.member-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
}
.member-quick a {
  color: var(--ink);
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
}
.member-quick a:hover {
  border-bottom-color: var(--aux);
  color: var(--aux);
}
.member-section { margin-top: 3.25rem; }
.member-narrow { max-width: 560px; }
.member-form { margin-top: 1rem; }
.member-form-title {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0 0 0.35rem;
}
.member-points-line {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.05rem;
}
.member-points-line .muted { font-size: 0.9rem; }
.member-back {
  margin: 0 0 1.5rem;
  color: var(--muted);
}
.member-back a { text-decoration: none !important; }
.member-subhead {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  margin: 0 0 1rem;
}
.member-order-list {
  display: grid;
  gap: 0;
}
.member-order {
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}
.member-order:last-child { border-bottom: 1px solid var(--line); }
.member-order h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0.35rem 0;
}
.member-order p {
  margin: 0;
  color: var(--muted);
}
.member-empty { color: var(--muted); padding: 0.5rem 0 1rem; }

.level-card {
  position: relative;
  border-top: 1px solid var(--line);
  padding-top: 1.35rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.level-card.is-current {
  border-top-color: var(--mars);
}
.level-badge {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--mars);
  padding: 0.28rem 0.55rem;
}
.level-card .price {
  font-family: var(--display);
  font-size: clamp(1.55rem, 1.35rem + 0.7vw, 1.95rem);
  margin-bottom: 0.35rem;
}
.level-card .price span {
  font-size: 0.85rem;
  color: var(--muted);
}
.level-card ul {
  padding-left: 1.1rem;
  color: var(--muted);
  margin: 0.85rem 0 0;
  flex: 1;
}
.level-card .btn { margin-top: 1.25rem; width: 100%; }
.service-card {
  border-top: 1px solid var(--line);
  padding-top: 1.35rem;
}
.service-num {
  color: var(--aux);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.member-services .service-card h3 { margin-top: 0.55rem; }

.price-row {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  margin: 0.7rem 0 1.1rem;
}
.price-row .now {
  font-size: 1.55rem;
  font-family: var(--display);
}
.price-row .old {
  color: var(--muted-2);
  text-decoration: line-through;
}

/* —— Cart —— */
.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.1rem;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.cart-item img {
  width: 96px;
  height: 96px;
  object-fit: cover;
}
.cart-item h3 {
  font-family: var(--display);
  font-weight: 400;
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}
.cart-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.7rem;
  flex-wrap: wrap;
  align-items: center;
}

/* —— Contact —— */
.contact-hero { padding-bottom: 1.2rem; }
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-aside { display: grid; gap: 2rem; }
.info-block {
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
}
.info-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.65rem;
  font-weight: 500;
}
.info-block p {
  margin: 0 0 0.3rem;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
}
.info-note {
  color: var(--muted) !important;
  font-size: 0.9rem !important;
  margin-top: 0.55rem !important;
  max-width: 28ch;
}
.contact-form-panel {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.contact-form-panel h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
}
.contact-form { max-width: none; }
.finding-us {
  border-top: 1px solid var(--line);
  padding: 4.5rem 0 5rem;
  background: var(--cream);
}
.finding-us-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.finding-us h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin: 0.4rem 0 0.85rem;
}
.finding-map {
  min-height: 260px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
}
.finding-map-inner { text-align: center; }
.finding-map-inner span {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
}
.finding-map-inner small {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* —— Swipe —— */
.swipe-body { margin: 0; background: #0a0908; overscroll-behavior: none; }
.swipe-shell {
  position: fixed;
  inset: 0;
  background: #0a0908;
  color: #fff;
  z-index: 100;
  display: flex;
  flex-direction: column;
  font-family: var(--body);
}
.swipe-shell-vertical { touch-action: pan-y; }
.swipe-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(0.85rem + env(safe-area-inset-top)) 1rem 0.85rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent);
  pointer-events: none;
}
.swipe-top-btn {
  pointer-events: auto;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.35rem 0.2rem;
  text-decoration: none !important;
}
.swipe-top-center { text-align: center; flex: 1; padding: 0 0.6rem; }
.swipe-top-title {
  font-family: var(--display);
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.swipe-top-hint {
  font-size: 0.72rem;
  opacity: 0.72;
  margin-top: 0.15rem;
  letter-spacing: 0.06em;
}
.swipe-feed {
  flex: 1;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}
.swipe-page {
  position: relative;
  height: 100%;
  min-height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: grid;
  place-items: center;
  background: #0a0908;
}
.swipe-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}
.swipe-page-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 3.5rem 1.15rem calc(1.4rem + env(safe-area-inset-bottom));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent);
  pointer-events: none;
}
.swipe-page-title {
  font-family: var(--display);
  font-size: 1.4rem;
}
.swipe-page-sub {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  opacity: 0.75;
}
.swipe-progress {
  position: absolute;
  right: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  pointer-events: none;
}
.swipe-progress span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}
.swipe-progress span.on {
  height: 14px;
  border-radius: 4px;
  background: #fff;
}
.mobile-only { display: none; }
.section-center { text-align: center; }

/* —— Services offers (CanMov-style) —— */
.offer-section {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.offer-list {
  display: grid;
  gap: 0;
  max-width: 52rem;
}
.offer-item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.5rem 2rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--line);
}
.offer-item:last-child { border-bottom: 0; }
.offer-num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  padding-top: 0.15rem;
}
.offer-body h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.offer-body > p {
  color: var(--muted);
  margin: 0 0 1.4rem;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  line-height: 1.65;
  max-width: 40rem;
}
.offer-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.offer-body li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}
.offer-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--ink);
}

@media (max-width: 960px) {
  .container,
  .container-wide,
  .nav {
    width: min(100% - 2rem, var(--wide));
  }
  .practice-grid,
  .work-grid,
  .product-grid,
  .level-grid,
  .service-grid,
  .about-split,
  .footer-grid,
  .contact-layout,
  .finding-us-grid,
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .offer-item {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 2.75rem 0;
  }
  .offer-num { font-size: 2.2rem; }
  .work-detail .gallery {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .work-detail .gallery img,
  .work-detail .gallery img:first-child,
  .work-detail .gallery img:nth-child(4n + 2),
  .work-detail .gallery img:nth-child(4n + 3) {
    aspect-ratio: 4 / 5;
    grid-column: auto;
  }
  .work-detail .gallery img:first-child {
    aspect-ratio: 16 / 10;
  }
  .about-split .media { min-height: 240px; }
  .member-status {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    padding: 1rem 1.25rem 1.4rem;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    z-index: 60;
  }
  .menu-toggle { display: inline-flex; }
  .mobile-only { display: inline-flex; }
  .section,
  .about-band,
  .cta-band { padding-left: 1.25rem; padding-right: 1.25rem; }
  .intro-band { padding-left: 1.25rem; padding-right: 1.25rem; }
}
@media (min-width: 961px) {
  .menu-toggle { display: none; }
}
