:root {
  --bg: #121315;
  --bg-soft: #17191d;
  --surface: #1d2025;
  --surface-2: #23272d;
  --surface-3: #2a2f36;

  --paper: #f3eee6;
  --paper-soft: #e7dfd2;
  --text: #f3eee6;
  --text-soft: rgba(243, 238, 230, 0.76);
  --text-muted: rgba(243, 238, 230, 0.54);

  --line: rgba(231, 223, 210, 0.16);
  --line-strong: rgba(231, 223, 210, 0.28);

  --accent-red: #6a2a2a;
  --accent-red-soft: rgba(106, 42, 42, 0.22);
  --accent-bronze: #887255;
  --accent-bronze-soft: rgba(136, 114, 85, 0.18);

  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.24);
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.16);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --container: 1220px;
  --container-narrow: 920px;

  --nav-height: 88px;

  --ease: 220ms ease;
}

/* ------------------------------
   Reset / Base
------------------------------ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 85% 10%, rgba(106, 42, 42, 0.12), transparent 26%),
    radial-gradient(circle at 10% 90%, rgba(136, 114, 85, 0.08), transparent 22%),
    linear-gradient(180deg, #121315 0%, #14161a 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

textarea {
  resize: vertical;
}

::selection {
  background: rgba(136, 114, 85, 0.24);
  color: var(--paper);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

main {
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  padding: 110px 0;
}

.section-header {
  margin-bottom: 34px;
}

.section-header.center {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label,
.footer-label,
.page-label {
  margin: 0 0 14px;
  color: var(--paper-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.92;
}

.section-title,
.page-title,
.hero-title,
.quote-block {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.section-title {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.15;
  max-width: 900px;
}

.section-intro,
.page-intro {
  margin: 18px 0 0;
  max-width: 780px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.8;
}

.page-title {
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.08;
  max-width: 900px;
}

.page-hero-section {
  padding-top: calc(var(--nav-height) + 72px);
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}

.page-hero-section .page-intro {
  max-width: 820px;
}

.section-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.section-actions.center {
  justify-content: center;
}

.btn-primary,
.btn-ghost,
.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  transition:
    transform var(--ease),
    background-color var(--ease),
    border-color var(--ease),
    color var(--ease),
    opacity var(--ease),
    box-shadow var(--ease);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-primary {
  color: var(--paper);
  background: linear-gradient(180deg, rgba(136, 114, 85, 0.24), rgba(106, 42, 42, 0.28));
  border: 1px solid rgba(231, 223, 210, 0.18);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(136, 114, 85, 0.34), rgba(106, 42, 42, 0.36));
}

.btn-ghost,
.service-link {
  color: var(--paper);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover,
.service-link:hover {
  transform: translateY(-1px);
  border-color: rgba(231, 223, 210, 0.36);
  background: rgba(255, 255, 255, 0.05);
}

/* ------------------------------
   Navigation
------------------------------ */

#main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(18, 19, 21, 0.78);
  border-bottom: 1px solid rgba(231, 223, 210, 0.08);
}

.nav-inner {
  width: min(calc(100% - 48px), var(--container));
  min-height: var(--nav-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.logo-text {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.logo-accent {
  color: var(--paper-soft);
}

.logo-sub {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  color: var(--paper-soft);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--ease), opacity var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--paper-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
  opacity: 0.7;
}

.nav-link:hover {
  color: var(--paper);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  background: var(--paper);
  display: block;
}

/* ------------------------------
   Hero
------------------------------ */

.hero-section {
  padding-top: calc(var(--nav-height) + 70px);
  padding-bottom: 120px;
}

.hero-content {
  max-width: 980px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  color: var(--paper-soft);
}

.eyebrow-line {
  width: 58px;
  height: 1px;
  background: var(--line-strong);
}

.eyebrow-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: clamp(52px, 9vw, 116px);
  line-height: 0.98;
  max-width: 980px;
}

.hero-title-italic {
  font-style: italic;
  color: var(--paper-soft);
}

.hero-sub {
  margin: 34px 0 0;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-stats {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero-stat {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.015);
  box-shadow: var(--shadow-sm);
}

.stat-num {
  display: block;
  margin-bottom: 8px;
  color: var(--paper-soft);
  font-family: "Inter", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.stat-label {
  display: block;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ------------------------------
   Shared card styles
------------------------------ */

.manifesto-section,
.services-section,
.audience-section,
.process-section,
.network-preview-section,
.why-japan-section,
.visual-direction-section,
.quote-section,
.final-cta-section,
.network-intro-section,
.network-group-section,
.network-notes-section,
.approach-role-section,
.approach-help-section,
.after-introduction-section,
.visual-note-section,
.contact-section {
  border-top: 1px solid rgba(231, 223, 210, 0.08);
}

.manifesto-content,
.visual-direction-content {
  max-width: var(--container-narrow);
}

.manifesto-text,
.visual-direction-content p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.9;
}

.manifesto-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.manifesto-point,
.network-category,
.note-item,
.help-item,
.audience-item,
.process-step,
.partner-card,
.contact-note {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.015);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.manifesto-point {
  padding: 24px 22px;
  color: var(--paper-soft);
  line-height: 1.7;
}

/* ------------------------------
   Services / Audience / Process
------------------------------ */

.services-grid,
.audience-grid,
.process-grid,
.partner-grid,
.notes-grid,
.help-grid {
  display: grid;
  gap: 20px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-grid,
.process-grid,
.help-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.notes-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.audience-item,
.process-step,
.partner-card,
.note-item,
.help-item {
  padding: 30px 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.015);
  box-shadow: var(--shadow-md);
}

.service-index,
.process-num,
.why-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--paper-soft);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.service-card h3,
.audience-item h3,
.process-step h3,
.partner-card h3,
.note-item h3,
.help-item h3,
.contact-note h3 {
  margin: 20px 0 12px;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--paper);
}

.service-card p,
.audience-item p,
.process-step p,
.partner-card p,
.note-item p,
.help-item p,
.contact-note p,
.contact-intro p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.service-link {
  margin-top: 28px;
  align-self: flex-start;
}

.network-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.network-category {
  padding: 18px 22px;
  color: var(--paper-soft);
  font-size: 14px;
  line-height: 1.6;
}

.partner-meta {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ------------------------------
   Why Japan / Quote / CTA
------------------------------ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.why-item {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.014);
}

.why-item h4 {
  margin: 18px 0 12px;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--paper);
}

.why-item p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.quote-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.quote-block {
  max-width: 980px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.28;
  color: var(--paper-soft);
}

.quote-credit {
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-cta-section {
  padding-bottom: 130px;
}

/* ------------------------------
   Approach page
------------------------------ */

.content-grid.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.content-grid.two-col > div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.015);
}

.content-grid.two-col p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.9;
}

/* ------------------------------
   Contact
------------------------------ */

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.contact-intro h2 {
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.16;
}

.contact-notes {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-note {
  padding: 22px 22px;
}

.contact-form-wrap {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.016);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 10px;
}

.form-row label {
  color: var(--paper-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--paper);
  outline: none;
  transition: border-color var(--ease), background-color var(--ease), box-shadow var(--ease);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(243, 238, 230, 0.42);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(231, 223, 210, 0.34);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 0 4px rgba(136, 114, 85, 0.08);
}

.form-actions {
  padding-top: 4px;
}

/* ------------------------------
   Footer
------------------------------ */

#site-footer {
  border-top: 1px solid rgba(231, 223, 210, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)),
    rgba(0, 0, 0, 0.08);
}

.footer-inner {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 54px 0 64px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
}

.footer-logo {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.footer-logo span {
  color: var(--paper-soft);
}

.footer-tagline {
  margin: 16px 0 0;
  max-width: 360px;
  color: var(--text-soft);
  line-height: 1.8;
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-copy {
  color: var(--text-soft);
  line-height: 1.8;
}

.footer-links a:hover {
  color: var(--paper);
}

/* ------------------------------
   Fine adjustments by page
------------------------------ */

#home-page .hero-section {
  padding-bottom: 126px;
}

#network-page .page-hero-section,
#approach-page .page-hero-section,
#contact-page .page-hero-section,
#visual-direction-page .page-hero-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0)),
    transparent;
}

#portfolio-redirect-page .section-actions {
  margin-top: 28px;
}

/* ------------------------------
   Responsive
------------------------------ */

@media (max-width: 1080px) {
  section {
    padding: 96px 0;
  }

  .hero-stats,
  .services-grid,
  .manifesto-points,
  .footer-links-wrap,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid,
  .process-grid,
  .partner-grid,
  .help-grid,
  .content-grid.two-col,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  :root {
    --nav-height: 78px;
  }

  .container,
  .nav-inner,
  .footer-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  section {
    padding: 82px 0;
  }

  .hero-section {
    padding-top: calc(var(--nav-height) + 44px);
    padding-bottom: 96px;
  }

  .page-hero-section {
    padding-top: calc(var(--nav-height) + 48px);
    padding-bottom: 58px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(18, 19, 21, 0.96);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active,
  .nav-links.open,
  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 14px 8px;
  }

  .nav-link::after {
    display: none;
  }

  .logo-sub {
    display: none;
  }

  .hero-eyebrow {
    gap: 10px;
    flex-wrap: wrap;
  }

  .eyebrow-line {
    width: 34px;
  }

  .hero-sub,
  .section-intro,
  .page-intro,
  .manifesto-text,
  .visual-direction-content p {
    font-size: 17px;
  }

  .service-card,
  .audience-item,
  .process-step,
  .partner-card,
  .note-item,
  .help-item,
  .contact-form-wrap {
    padding: 24px;
  }

  .quote-block {
    font-size: clamp(28px, 6vw, 40px);
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(44px, 14vw, 70px);
    line-height: 1.02;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-ghost,
  .service-link {
    width: 100%;
  }

  .hero-stats,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .audience-grid,
  .process-grid,
  .partner-grid,
  .notes-grid,
  .help-grid,
  .manifesto-points {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 42px);
  }

  .page-title {
    font-size: clamp(34px, 11vw, 56px);
  }

  .service-card h3,
  .audience-item h3,
  .process-step h3,
  .partner-card h3,
  .note-item h3,
  .help-item h3,
  .contact-note h3,
  .why-item h4 {
    font-size: 24px;
  }

  .footer-inner {
    padding: 44px 0 54px;
  }
}
/* ========================================
   JINTERIOR Phase 2 Refinement
   append at bottom of style.css
======================================== */

:root {
  --container: 1280px;
  --container-narrow: 860px;
}

/* overall atmosphere */
body {
  background:
    radial-gradient(circle at 82% 12%, rgba(106, 42, 42, 0.09), transparent 24%),
    radial-gradient(circle at 14% 84%, rgba(136, 114, 85, 0.06), transparent 18%),
    linear-gradient(180deg, #111214 0%, #14161a 100%);
}

/* navigation */
#main-nav {
  background: rgba(17, 18, 20, 0.84);
  border-bottom: 1px solid rgba(231, 223, 210, 0.06);
}

.nav-inner {
  min-height: 92px;
}

.logo-text {
  font-size: 25px;
  letter-spacing: 0.1em;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 0.12em;
}

.nav-link {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(243, 238, 230, 0.78);
}

.nav-link:hover {
  color: #f3eee6;
}

/* hero */
.hero-section {
  padding-top: calc(var(--nav-height) + 88px);
  padding-bottom: 144px;
}

.hero-content {
  max-width: 1040px;
}

.hero-eyebrow {
  margin-bottom: 36px;
}

.eyebrow-line {
  width: 72px;
  background: rgba(231, 223, 210, 0.24);
}

.eyebrow-text {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(231, 223, 210, 0.92);
}

.hero-title {
  font-size: clamp(58px, 9vw, 122px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-title-line {
  display: block;
}

.hero-title-italic {
  color: rgba(231, 223, 210, 0.9);
}

.hero-sub {
  margin-top: 38px;
  max-width: 700px;
  font-size: 18px;
  line-height: 1.95;
  color: rgba(243, 238, 230, 0.72);
}

.hero-actions {
  margin-top: 38px;
  gap: 16px;
}

.hero-stats {
  margin-top: 68px;
  gap: 20px;
}

.hero-stat {
  padding: 26px 24px;
  border: 1px solid rgba(231, 223, 210, 0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    rgba(255,255,255,0.01);
}

.stat-num {
  font-size: 30px;
  color: rgba(231, 223, 210, 0.94);
}

.stat-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(243, 238, 230, 0.62);
}

/* sections */
section {
  padding: 124px 0;
}

.section-header {
  margin-bottom: 40px;
}

.section-label {
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(231, 223, 210, 0.88);
}

.section-title {
  max-width: 820px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.12;
}

.section-intro,
.page-intro,
.manifesto-text,
.visual-direction-content p {
  font-size: 17px;
  line-height: 1.95;
  color: rgba(243, 238, 230, 0.72);
}

/* quieter separators */
.manifesto-section,
.services-section,
.audience-section,
.process-section,
.network-preview-section,
.why-japan-section,
.visual-direction-section,
.quote-section,
.final-cta-section,
.network-intro-section,
.network-group-section,
.network-notes-section,
.approach-role-section,
.approach-help-section,
.after-introduction-section,
.visual-note-section,
.contact-section,
.page-hero-section,
#site-footer {
  border-top-color: rgba(231, 223, 210, 0.06);
}

/* manifesto */
.manifesto-content {
  max-width: 780px;
}

.manifesto-points {
  margin-top: 42px;
  gap: 18px;
}

.manifesto-point {
  padding: 24px 24px;
  background: rgba(255,255,255,0.012);
  color: rgba(243, 238, 230, 0.82);
}

/* cards */
.service-card,
.audience-item,
.process-step,
.partner-card,
.note-item,
.help-item,
.contact-note,
.network-category,
.content-grid.two-col > div,
.why-item,
.contact-form-wrap {
  border: 1px solid rgba(231, 223, 210, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.008)),
    rgba(255,255,255,0.012);
  backdrop-filter: blur(4px);
}

.service-card,
.partner-card,
.note-item,
.help-item,
.process-step,
.audience-item,
.why-item {
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease;
}

.service-card:hover,
.partner-card:hover,
.note-item:hover,
.help-item:hover,
.process-step:hover,
.audience-item:hover,
.why-item:hover {
  transform: translateY(-3px);
  border-color: rgba(231, 223, 210, 0.14);
  box-shadow: 0 24px 50px rgba(0,0,0,0.22);
}

.service-card {
  min-height: 340px;
  border-radius: 30px;
}

.service-card h3,
.audience-item h3,
.process-step h3,
.partner-card h3,
.note-item h3,
.help-item h3,
.contact-note h3,
.why-item h4 {
  font-size: 26px;
  line-height: 1.18;
}

.service-card p,
.audience-item p,
.process-step p,
.partner-card p,
.note-item p,
.help-item p,
.contact-note p,
.why-item p,
.content-grid.two-col p {
  color: rgba(243, 238, 230, 0.7);
}

.service-link {
  margin-top: 30px;
}

/* process */
.process-num,
.service-index,
.why-num {
  border-color: rgba(231, 223, 210, 0.18);
  color: rgba(231, 223, 210, 0.92);
}

/* network preview pills */
.network-category {
  padding: 16px 20px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* why japan */
.why-grid {
  gap: 22px;
}

.why-item {
  padding: 30px;
}

/* quote */
.quote-section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.quote-block {
  max-width: 900px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.32;
  color: rgba(231, 223, 210, 0.94);
}

.quote-credit {
  margin-top: 20px;
  color: rgba(243, 238, 230, 0.5);
  letter-spacing: 0.1em;
}

/* CTA */
.final-cta-section .section-title {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-section .section-intro {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* buttons */
.btn-primary,
.btn-ghost,
.service-link {
  min-height: 54px;
  padding: 0 26px;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.btn-primary {
  background: linear-gradient(180deg, rgba(136, 114, 85, 0.18), rgba(106, 42, 42, 0.22));
  border-color: rgba(231, 223, 210, 0.14);
}

.btn-primary:hover {
  background: linear-gradient(180deg, rgba(136, 114, 85, 0.24), rgba(106, 42, 42, 0.3));
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.btn-ghost,
.service-link {
  background: rgba(255,255,255,0.015);
  border-color: rgba(231, 223, 210, 0.16);
}

/* page hero */
.page-hero-section {
  padding-top: calc(var(--nav-height) + 88px);
  padding-bottom: 84px;
}

.page-title {
  max-width: 860px;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1.06;
}

/* contact */
.contact-layout {
  gap: 40px;
}

.contact-intro h2 {
  margin-bottom: 20px;
}

.contact-form-wrap {
  border-radius: 32px;
  padding: 34px;
}

.form-row input,
.form-row select,
.form-row textarea {
  border-color: rgba(231, 223, 210, 0.1);
  background: rgba(255,255,255,0.022);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(231, 223, 210, 0.24);
  box-shadow: 0 0 0 4px rgba(136, 114, 85, 0.06);
}

/* footer */
.footer-inner {
  padding: 64px 0 74px;
}

.footer-logo {
  font-size: 30px;
}

.footer-tagline,
.footer-links a,
.footer-copy {
  color: rgba(243, 238, 230, 0.68);
}

.footer-links a:hover {
  color: rgba(243, 238, 230, 0.95);
}

/* responsive refinement */
@media (max-width: 1080px) {
  .hero-section {
    padding-bottom: 116px;
  }

  section {
    padding: 104px 0;
  }

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .nav-inner {
    min-height: 82px;
  }

  .hero-section {
    padding-top: calc(var(--nav-height) + 52px);
    padding-bottom: 92px;
  }

  .hero-title {
    font-size: clamp(48px, 12vw, 78px);
    line-height: 1.01;
  }

  .hero-sub,
  .section-intro,
  .page-intro,
  .manifesto-text,
  .visual-direction-content p {
    font-size: 16px;
    line-height: 1.88;
  }

  .page-title {
    font-size: clamp(38px, 10vw, 60px);
  }

  .contact-form-wrap {
    padding: 24px;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 78px 0;
  }

  .hero-stats {
    margin-top: 42px;
  }

  .hero-stat,
  .service-card,
  .audience-item,
  .process-step,
  .partner-card,
  .note-item,
  .help-item,
  .why-item,
  .contact-form-wrap {
    padding: 22px;
  }

  .quote-block {
    font-size: 30px;
  }
}
/* --- Hero typography refinement: calmer, smaller, no italic --- */

.hero-title,
.hero-title-line,
.hero-title-italic,
.hero-eyebrow,
.hero-sub,
.hero-lead {
  font-family: 'Inter', sans-serif !important;
}

.hero-title {
  font-size: clamp(28px, 3.8vw, 42px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.025em !important;
  font-weight: 300 !important;
  max-width: 14ch !important;
  color: rgba(250, 247, 240, 0.92) !important;
  margin-bottom: 18px !important;
}

.hero-title-line {
  display: inline !important;
}

.hero-title-italic,
.hero-title em,
.hero-title i {
  font-style: normal !important;
}

.hero-eyebrow {
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: rgba(245, 241, 232, 0.56) !important;
  margin-bottom: 18px !important;
}

.hero-sub,
.hero-lead {
  font-size: 16px !important;
  line-height: 1.85 !important;
  font-weight: 400 !important;
  color: rgba(245, 241, 232, 0.72) !important;
  max-width: 680px !important;
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 28px !important;
    line-height: 1.14 !important;
    max-width: 12ch !important;
  }

  .hero-sub,
  .hero-lead {
    font-size: 14px !important;
    line-height: 1.75 !important;
  }
}


  .hero-sub,
  .hero-lead {
    font-size: 15px !important;
    line-height: 1.8 !important;
  }
}
/* --- Inter only override --- */

.logo-text,
.section-title,
.page-title,
.hero-title,
.quote-block {
  font-family: 'Inter', sans-serif !important;
}

.logo-text {
  font-size: 24px;
  font-weight: 300 !important;
  letter-spacing: 0.06em !important;
}

.section-title,
.page-title {
  font-weight: 300 !important;
  letter-spacing: -0.02em !important;
}

.quote-block {
  font-weight: 300 !important;
  letter-spacing: -0.01em !important;
}
/* --- Section title refinement: Inter only, calmer headings --- */

.section-title,
.page-title,
.manifesto-section .section-title,
.manifesto-section h2,
.network-intro-section .section-title,
.approach-role-section .section-title,
.contact-intro h2,
.quote-block {
  font-family: 'Inter', sans-serif !important;
  font-style: normal !important;
  font-weight: 300 !important;
  letter-spacing: -0.02em !important;
  color: rgba(250, 247, 240, 0.92) !important;
}

.section-title,
.manifesto-section .section-title,
.manifesto-section h2,
.network-intro-section .section-title,
.approach-role-section .section-title {
  font-size: clamp(28px, 3.6vw, 44px) !important;
  line-height: 1.16 !important;
  max-width: 16ch !important;
}

.page-title,
.contact-intro h2 {
  font-size: clamp(30px, 4vw, 48px) !important;
  line-height: 1.14 !important;
}

.quote-block {
  font-size: clamp(24px, 2.8vw, 34px) !important;
  line-height: 1.45 !important;
}

@media (max-width: 640px) {
  .section-title,
  .manifesto-section .section-title,
  .manifesto-section h2,
  .network-intro-section .section-title,
  .approach-role-section .section-title,
  .page-title,
  .contact-intro h2 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    max-width: 12ch !important;
  }

  .quote-block {
    font-size: 22px !important;
    line-height: 1.5 !important;
  }
}
/* --- Hero media layer: sample image version --- */

.hero-section.hero-has-media {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  padding-top: calc(var(--nav-height) + 120px);
  padding-bottom: 84px;
  display: flex;
  align-items: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(88%) brightness(0.62);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 13, 15, 0.50) 0%, rgba(12, 13, 15, 0.38) 22%, rgba(12, 13, 15, 0.66) 68%, rgba(12, 13, 15, 0.84) 100%),
    linear-gradient(90deg, rgba(12, 13, 15, 0.54) 0%, rgba(12, 13, 15, 0.18) 42%, rgba(12, 13, 15, 0.42) 100%);
}

.hero-section.hero-has-media .container {
  position: relative;
  z-index: 2;
}

.hero-section.hero-has-media .hero-content {
  max-width: 760px;
}

.hero-section.hero-has-media .hero-eyebrow {
  color: rgba(245, 241, 232, 0.72) !important;
}

.hero-section.hero-has-media .hero-title {
  color: rgba(250, 247, 240, 0.96) !important;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}

.hero-section.hero-has-media .hero-sub,
.hero-section.hero-has-media .hero-lead {
  color: rgba(245, 241, 232, 0.82) !important;
  max-width: 640px !important;
}

.hero-section.hero-has-media .hero-stat {
  background: rgba(20, 22, 26, 0.38);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: none;
}

.hero-section.hero-has-media .btn-primary {
  background: rgba(88, 50, 46, 0.52);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-section.hero-has-media .btn-ghost {
  background: rgba(18, 19, 21, 0.20);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 900px) {
  .hero-section.hero-has-media {
    min-height: 76vh;
    padding-top: calc(var(--nav-height) + 92px);
    padding-bottom: 72px;
  }

  .hero-section.hero-has-media .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-section.hero-has-media {
    min-height: 72vh;
    padding-top: calc(var(--nav-height) + 74px);
    padding-bottom: 60px;
  }

  .hero-media img {
    object-position: center center;
  }
}
.card-media {
  margin: -2px -2px 20px;
  border-radius: 18px 18px 14px 14px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  filter: saturate(92%) brightness(0.88);
}

.service-card {
  overflow: hidden;
}

/* --- Typography alignment refinement --- */

/* section spacing */
.manifesto-section,
.services-section,
.audience-section,
.process-section,
.network-preview-section,
.why-japan-section,
.visual-direction-section,
.quote-section,
.final-cta-section {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

/* section header rhythm */
.section-header {
  margin-bottom: 28px !important;
}

.section-label {
  display: block !important;
  margin: 0 0 18px !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.18em !important;
  color: rgba(245, 241, 232, 0.56) !important;
}

.section-title {
  margin: 0 !important;
  font-size: clamp(30px, 3.8vw, 50px) !important;
  line-height: 1.14 !important;
  letter-spacing: -0.028em !important;
  font-weight: 300 !important;
  max-width: 13ch !important;
  text-wrap: balance !important;
}

.section-intro,
.page-intro,
.manifesto-copy,
.manifesto-section p {
  font-size: 16px !important;
  line-height: 1.85 !important;
  color: rgba(245, 241, 232, 0.72) !important;
}

/* hero fine tuning */
.hero-content {
  padding-top: 6px;
}

.hero-title {
  margin: 0 0 20px !important;
  line-height: 1.1 !important;
}

.hero-sub,
.hero-lead {
  margin-top: 0 !important;
  margin-bottom: 28px !important;
}

/* service cards alignment */
.services-grid {
  align-items: stretch;
}

.service-card {
  padding: 18px 18px 22px !important;
  display: flex !important;
  flex-direction: column !important;
}

.service-card .card-media {
  margin: -18px -18px 18px !important;
}

.service-index {
  display: block !important;
  margin: 0 0 14px !important;
  font-size: 13px !important;
  line-height: 1 !important;
  letter-spacing: 0.08em !important;
  color: rgba(245, 241, 232, 0.72) !important;
}

.service-card h3 {
  margin: 0 0 12px !important;
  font-size: 18px !important;
  line-height: 1.24 !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
}

.service-card p {
  margin: 0 0 22px !important;
  font-size: 15px !important;
  line-height: 1.78 !important;
  color: rgba(245, 241, 232, 0.68) !important;
}

.service-link {
  margin-top: auto !important;
  align-self: flex-start !important;
}

/* cards in other sections */
.audience-card,
.process-card,
.network-card,
.why-item {
  display: flex;
  flex-direction: column;
}

.audience-card h3,
.process-card h3,
.network-card h3,
.why-item h4 {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  line-height: 1.25 !important;
}

.audience-card p,
.process-card p,
.network-card p,
.why-item p {
  line-height: 1.75 !important;
}

/* quote alignment */
.quote-block {
  margin: 0 !important;
  max-width: 14ch !important;
  line-height: 1.36 !important;
}

/* nav logo/subtitle alignment */
.logo-text {
  display: block;
  line-height: 1 !important;
  margin-bottom: 4px !important;
}

.logo-sub {
  line-height: 1.35 !important;
  letter-spacing: 0.11em !important;
}

/* better mobile balance */
@media (max-width: 900px) {
  .section-title {
    font-size: clamp(28px, 6vw, 40px) !important;
    max-width: 12ch !important;
  }

  .manifesto-section,
  .services-section,
  .audience-section,
  .process-section,
  .network-preview-section,
  .why-japan-section,
  .visual-direction-section,
  .quote-section,
  .final-cta-section {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: 28px !important;
    line-height: 1.16 !important;
    max-width: 11ch !important;
  }

  .service-card h3 {
    font-size: 17px !important;
  }

  .service-card p,
  .section-intro,
  .page-intro,
  .manifesto-section p {
    font-size: 14px !important;
  }
}
/* --- Alignment fix: audience / process / network --- */

.audience-section .section-header,
.process-section .section-header,
.network-preview-section .section-header {
  margin-bottom: 24px !important;
}

.audience-section .section-title,
.process-section .section-title,
.network-preview-section .section-title {
  margin: 0 !important;
  max-width: 10ch !important;
  min-height: 3.45em;
  line-height: 1.12 !important;
  letter-spacing: -0.025em !important;
  text-wrap: balance !important;
}

.audience-grid,
.process-grid {
  align-items: stretch;
  gap: 18px !important;
}

.audience-item,
.process-step {
  padding: 22px 20px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.audience-item h3,
.process-step h3 {
  margin: 0 0 12px !important;
  font-size: 17px !important;
  line-height: 1.24 !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
}

.audience-item p,
.process-step p {
  margin: 0 !important;
  font-size: 15px !important;
  line-height: 1.78 !important;
  color: rgba(245, 241, 232, 0.68) !important;
}

.process-num {
  margin-bottom: 16px !important;
}

.network-preview-section .section-intro {
  margin: 0 !important;
  max-width: 31ch !important;
  font-size: 15px !important;
  line-height: 1.82 !important;
  color: rgba(245, 241, 232, 0.68) !important;
}

.network-preview-section .network-categories {
  margin-top: 22px !important;
  gap: 14px !important;
}

.network-category {
  padding: 14px 18px !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  letter-spacing: 0.03em !important;
}

.network-preview-section .section-actions {
  margin-top: 22px !important;
}

@media (max-width: 900px) {
  .audience-section .section-title,
  .process-section .section-title,
  .network-preview-section .section-title {
    min-height: auto;
    max-width: 12ch !important;
  }
}

/* --- Section break image: breathing space between text-heavy sections --- */
.section-break-image {
  margin: 40px 0 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(231, 223, 210, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.section-break-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: saturate(92%) brightness(0.9);
}

@media (max-width: 640px) {
  .section-break-image {
    margin-top: 28px;
    border-radius: 18px;
  }

  .section-break-image img {
    aspect-ratio: 4 / 3;
  }
}
/* ==========================================
   HOME REFINEMENT / QUIET LUXURY LAYOUT
   paste at bottom of public/static/style.css
========================================== */

.curated-overview-section,
.editorial-audience-section,
.editorial-process-section,
.editorial-network-section,
.editorial-closing-section {
  border-top: 1px solid rgba(231, 223, 210, 0.08);
}

.curated-overview-section {
  padding-top: 128px;
  padding-bottom: 128px;
}

.curated-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 72px;
  align-items: center;
}

.curated-title {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: rgba(250, 247, 240, 0.98);
  max-width: 12ch;
}

.curated-title-narrow {
  max-width: 11ch;
}

.curated-title-center {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.curated-text {
  margin: 22px 0 0;
  max-width: 640px;
  color: rgba(243, 238, 230, 0.72);
  font-size: 17px;
  line-height: 1.95;
  letter-spacing: 0.01em;
}

.curated-overview-media {
  position: relative;
}

.curated-overview-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  filter: saturate(94%) brightness(0.92);
}

.curated-overview-points {
  display: grid;
  gap: 18px;
  margin-top: 42px;
  max-width: 620px;
}

.curated-overview-point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid rgba(231, 223, 210, 0.14);
}

.curated-overview-point span {
  color: rgba(231, 223, 210, 0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 3px;
}

.curated-overview-point p {
  margin: 0;
  color: rgba(243, 238, 230, 0.86);
  font-size: 15px;
  line-height: 1.8;
}

.services-section-refined {
  padding-top: 118px;
  padding-bottom: 118px;
}

.services-section-refined .section-header {
  margin-bottom: 42px;
}

.services-section-refined .section-title {
  max-width: 760px;
}

.services-section-refined .service-card {
  min-height: 0;
  border-radius: 28px;
}

.services-section-refined .service-card h3 {
  font-size: 26px;
}

.services-section-refined .service-card p {
  color: rgba(243, 238, 230, 0.68);
}

.editorial-audience-section {
  padding-top: 124px;
  padding-bottom: 124px;
}

.editorial-audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 84px;
  align-items: start;
}

.editorial-audience-copy .curated-text {
  max-width: 540px;
}

.editorial-audience-list {
  display: grid;
  gap: 0;
}

.editorial-audience-item {
  padding: 26px 0 28px;
  border-top: 1px solid rgba(231, 223, 210, 0.14);
}

.editorial-audience-item:last-child {
  border-bottom: 1px solid rgba(231, 223, 210, 0.14);
}

.editorial-audience-item h3 {
  margin: 0 0 10px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  color: rgba(250, 247, 240, 0.96);
}

.editorial-audience-item p {
  margin: 0;
  max-width: 560px;
  color: rgba(243, 238, 230, 0.66);
  font-size: 15px;
  line-height: 1.85;
}

.editorial-process-section {
  padding-top: 128px;
  padding-bottom: 128px;
}

.editorial-process-top {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 64px;
  align-items: end;
}

.editorial-process-copy .curated-text {
  max-width: 520px;
}

.editorial-process-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  filter: saturate(94%) brightness(0.92);
}

.editorial-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}

.editorial-step {
  padding-top: 22px;
  border-top: 1px solid rgba(231, 223, 210, 0.16);
}

.editorial-step-num {
  display: inline-block;
  color: rgba(231, 223, 210, 0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-step h3 {
  margin: 16px 0 10px;
  font-family: "Inter", sans-serif;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.2;
  font-weight: 400;
  color: rgba(250, 247, 240, 0.96);
}

.editorial-step p {
  margin: 0;
  color: rgba(243, 238, 230, 0.66);
  font-size: 15px;
  line-height: 1.85;
}

.editorial-network-section {
  padding-top: 128px;
  padding-bottom: 128px;
}

.editorial-network-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
}

.editorial-network-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  filter: saturate(94%) brightness(0.92);
}

.editorial-network-copy .curated-text {
  max-width: 560px;
}

.editorial-network-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  max-width: 620px;
}

.editorial-network-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(231, 223, 210, 0.16);
  border-radius: 999px;
  color: rgba(243, 238, 230, 0.8);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

.editorial-network-copy .section-actions {
  margin-top: 34px;
}

.editorial-closing-section {
  padding-top: 144px;
  padding-bottom: 118px;
}

.editorial-closing-inner {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.editorial-closing-text {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.editorial-closing-quote {
  margin: 56px auto 0;
  max-width: 900px;
  color: rgba(231, 223, 210, 0.94);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.28;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

@media (max-width: 1024px) {
  .curated-overview-grid,
  .editorial-audience-grid,
  .editorial-process-top,
  .editorial-network-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .curated-title,
  .curated-title-narrow,
  .curated-title-center {
    max-width: none;
  }

  .curated-overview-media img,
  .editorial-network-media img {
    aspect-ratio: 16 / 10;
  }

  .editorial-steps {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 34px;
  }

  .editorial-process-section,
  .editorial-network-section,
  .editorial-audience-section,
  .curated-overview-section {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .editorial-closing-section {
    padding-top: 118px;
    padding-bottom: 96px;
  }
}

@media (max-width: 640px) {
  .curated-overview-section,
  .services-section-refined,
  .editorial-audience-section,
  .editorial-process-section,
  .editorial-network-section,
  .editorial-closing-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .curated-title {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
  }

  .curated-text {
    font-size: 15px;
    line-height: 1.85;
  }

  .curated-overview-grid,
  .editorial-audience-grid,
  .editorial-process-top,
  .editorial-network-grid {
    gap: 28px;
  }

  .curated-overview-media img,
  .editorial-process-media img,
  .editorial-network-media img {
    border-radius: 22px;
  }

  .curated-overview-point {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .editorial-audience-item h3,
  .editorial-step h3 {
    font-size: 24px;
  }

  .editorial-network-tags {
    gap: 10px;
  }

  .editorial-network-tags span {
    min-height: 36px;
    padding: 0 14px;
    font-size: 11px;
  }

  .editorial-closing-quote {
    margin-top: 42px;
    font-size: clamp(26px, 8vw, 38px);
    line-height: 1.34;
  }
}
/* ==========================================
   JINTERIOR / SHARPER EDITORIAL OVERRIDE
   paste at bottom of public/static/style.css
========================================== */

:root {
  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 10px;

  --shadow-lg: none;
  --shadow-md: none;
  --shadow-sm: none;
}

body {
  background:
    radial-gradient(circle at 82% 8%, rgba(106, 42, 42, 0.07), transparent 26%),
    radial-gradient(circle at 8% 88%, rgba(136, 114, 85, 0.05), transparent 22%),
    linear-gradient(180deg, #111214 0%, #131417 100%);
}

/* ---- Typography ---- */

.section-title,
.curated-title {
  letter-spacing: -0.035em;
}

.curated-title {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  max-width: 10ch;
}

.section-title {
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.04;
}

.curated-text,
.section-intro,
.service-card p,
.editorial-step p,
.editorial-network-copy p {
  color: rgba(243, 238, 230, 0.66);
  line-height: 1.85;
}

/* ---- Section rhythm ---- */

.curated-overview-section,
.services-section-refined,
.japan-interlude-section,
.editorial-process-section,
.editorial-network-section,
.editorial-closing-section,
.final-cta-section {
  border-top: 1px solid rgba(231, 223, 210, 0.08);
}

.curated-overview-section,
.editorial-process-section,
.editorial-network-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.services-section-refined {
  padding-top: 96px;
  padding-bottom: 96px;
}

.japan-interlude-section {
  padding-top: 28px;
  padding-bottom: 108px;
}

.editorial-closing-section {
  padding-top: 132px;
  padding-bottom: 92px;
}

/* ---- Images: less rounded, no soft-luxury app feel ---- */

.card-media img,
.curated-overview-media img,
.editorial-process-media img,
.editorial-network-media img,
.japan-interlude-media img,
.japan-interlude-media video {
  display: block;
  width: 100%;
  border-radius: 8px !important;
  box-shadow: none !important;
  object-fit: cover;
  filter: saturate(96%) brightness(0.94);
}

.curated-overview-media img,
.editorial-network-media img {
  aspect-ratio: 4 / 5;
}

.editorial-process-media img {
  aspect-ratio: 16 / 10;
}

.japan-interlude-media img,
.japan-interlude-media video {
  aspect-ratio: 16 / 8;
}

/* ---- What JINTERIOR Is ---- */

.curated-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 72px;
  align-items: center;
}

.curated-overview-copy {
  max-width: 620px;
}

.curated-overview-points {
  margin-top: 34px;
  display: grid;
  gap: 0;
}

.curated-overview-point {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(231, 223, 210, 0.12);
}

.curated-overview-point:last-child {
  border-bottom: 1px solid rgba(231, 223, 210, 0.12);
}

.curated-overview-point span {
  color: rgba(243, 238, 230, 0.74);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 3px;
}

.curated-overview-point p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(243, 238, 230, 0.82);
}

/* ---- Three Ways In: less app, more editorial ---- */

.services-section-refined .section-header {
  margin-bottom: 34px;
}

.services-grid {
  gap: 22px;
}

.service-card {
  min-height: 0 !important;
  padding: 0 0 26px !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(231, 223, 210, 0.12) !important;
  overflow: hidden;
}

.card-media {
  margin-bottom: 18px;
}

.service-card h3 {
  margin: 0 22px 10px !important;
  font-size: 24px !important;
  line-height: 1.18;
}

.service-card p {
  margin: 0 22px !important;
  font-size: 14px;
}

.service-index {
  display: block !important;
  margin: 0 22px 12px !important;
  min-width: auto !important;
  height: auto !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: 11px !important;
  line-height: 1 !important;
  letter-spacing: 0.16em;
  color: rgba(243, 238, 230, 0.62);
  background: none !important;
}

.service-link {
  display: inline-block;
  margin: 18px 22px 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
  color: rgba(243, 238, 230, 0.9) !important;
  font-size: 11px !important;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}

.service-link::after {
  content: " —";
}

/* ---- Japan interlude ---- */

.japan-interlude-media {
  overflow: hidden;
}

.japan-interlude-copy {
  display: flex;
  justify-content: center;
}

.japan-interlude-text {
  margin: 18px 0 0;
  color: rgba(243, 238, 230, 0.5);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

/* ---- How It Works ---- */

.editorial-process-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: end;
}

.editorial-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 34px;
}

.editorial-step {
  padding-top: 18px;
  border-top: 1px solid rgba(231, 223, 210, 0.12);
}

.editorial-step-num {
  display: inline-block;
  min-width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(243, 238, 230, 0.62);
}

.editorial-step h3 {
  margin: 14px 0 8px;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.18;
  color: rgba(250, 247, 240, 0.96);
}

/* ---- Selected Network ---- */

.editorial-network-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

.editorial-network-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.editorial-network-tags span {
  min-height: auto;
  padding: 8px 10px;
  border-radius: 0 !important;
  border: 1px solid rgba(231, 223, 210, 0.14);
  background: transparent;
  color: rgba(243, 238, 230, 0.64);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-network-copy .section-actions {
  margin-top: 28px;
}

/* ---- Buttons ---- */

.btn-primary,
.btn-ghost {
  border-radius: 2px !important;
  box-shadow: none !important;
  min-height: 46px;
  padding: 0 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

.btn-primary {
  background: rgba(243, 238, 230, 0.92);
  color: #131417;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(231, 223, 210, 0.16);
  color: rgba(243, 238, 230, 0.9);
}

/* ---- Closing quote ---- */

.editorial-closing-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.editorial-closing-quote {
  margin: 0 auto;
  max-width: 820px;
  font-family: "Inter", sans-serif;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: rgba(243, 238, 230, 0.92);
  text-wrap: balance;
}

/* ---- Remove lingering soft UI feel ---- */

.service-card,
.partner-card,
.help-item,
.note-item,
.audience-item,
.process-step,
.contact-note {
  box-shadow: none !important;
}

@media (max-width: 1024px) {
  .curated-overview-grid,
  .editorial-process-top,
  .editorial-network-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .editorial-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .curated-overview-media img,
  .editorial-network-media img,
  .japan-interlude-media img,
  .japan-interlude-media video {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .curated-overview-section,
  .services-section-refined,
  .japan-interlude-section,
  .editorial-process-section,
  .editorial-network-section,
  .editorial-closing-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .curated-title,
  .section-title {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.06;
  }

  .card-media img,
  .curated-overview-media img,
  .editorial-process-media img,
  .editorial-network-media img,
  .japan-interlude-media img,
  .japan-interlude-media video,
  .service-card {
    border-radius: 6px !important;
  }

  .japan-interlude-media img,
  .japan-interlude-media video {
    aspect-ratio: 4 / 3;
  }

  .editorial-closing-quote {
    font-size: clamp(28px, 8vw, 38px);
  }
}
/* ------------------------------
   Selected Introductions (editorial list)
------------------------------ */

.intro-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.intro-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity var(--ease);
}

.intro-row-meta {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-row-name {
  margin: 0 0 14px;
  font-family: "Inter", sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  color: var(--paper);
  letter-spacing: 0.01em;
}

.intro-row-desc {
  margin: 0;
  max-width: 440px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
}

.intro-row-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px; /* 角丸は最小限に留め、カード感を避ける */
}

.intro-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transition: transform 600ms ease, filter 600ms ease;
}

.intro-row:hover .intro-row-media img {
  transform: scale(1.03);
  filter: saturate(1) contrast(1.04);
}

@media (max-width: 860px) {
  .intro-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }

  .intro-row-media {
    order: -1;
  }
}

/* ============================================================
   JINTERIOR — Editorial Refinement v2 (2026-08)
   Direction: Peninsula typography × Europejski composition
              × NOT A HOTEL detail experience
============================================================ */

/* ---- Type system: introduce a proper serif for editorial gravity ---- */
:root {
  --font-serif: "Cormorant Garamond", "Cormorant", "EB Garamond",
                "Times New Roman", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Helvetica, Arial, sans-serif;

  --container-wide: 1440px;
  --container-editorial: 780px;   /* Europejski-style narrow text column */
}

/* Reset any body font override */
body {
  font-family: var(--font-sans);
}

/* All headline / display types → serif */
.hero-title,
.curated-title,
.section-title,
.page-title,
.ways-name,
.selected-index-name,
.ei-name,
.ei-hero-title,
.partner-hero-title,
.partner-block-title,
.interlude-quote {
  font-family: var(--font-serif) !important;
  font-weight: 300 !important;
  letter-spacing: -0.005em !important;
  font-style: normal;
}

/* Widely-tracked all-caps for eyebrows */
.section-label,
.ei-eyebrow,
.partner-eyebrow,
.hero-eyebrow {
  font-family: var(--font-sans) !important;
  font-size: 11px !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  color: var(--text-muted);
}

/* ---- Hero refinements ---- */
#home-page .hero-stats { display: none !important; }

#home-page .hero-eyebrow {
  margin-bottom: 32px;
}

#home-page .hero-title {
  font-size: clamp(44px, 6vw, 84px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.015em !important;
  margin-bottom: 36px;
}

#home-page .hero-sub.hero-lead {
  max-width: 520px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
}

/* ---- Section 3: Three Ways In — Europejski-style vertical list ----
   Kept as editorial rows but softened: no visible borders,
   just whitespace and the number as a graphic device.
------------------------------------------------------------ */
.ways-section {
  padding: 180px 0 140px;
}
.ways-section .ways-header { max-width: 720px; margin: 0 auto 96px; text-align: center; }
.ways-section .ways-header .section-label { margin-bottom: 24px; }
.ways-section .ways-header .curated-title {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.1;
}

.ways-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: none;
}

.ways-row {
  display: block;
  padding: 0;
  border: none;
  text-align: center;
  padding: 40px 0;
  transition: none;
}

.ways-row:hover { background: transparent; }

.ways-row .ways-num {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding: 0;
}

.ways-row .ways-body {
  max-width: 560px;
  margin: 0 auto;
}

.ways-row .ways-name {
  font-family: var(--font-serif) !important;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
}

.ways-row .ways-desc {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.85;
  max-width: 480px;
  margin: 0 auto;
}

.ways-row .ways-link {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 6px;
  transition: border-color 300ms ease, color 300ms ease;
}
.ways-row .ways-link:hover { color: var(--text); border-bottom-color: var(--text); }

/* ============================================================
   SECTION: EUROPEJSKI-STYLE EDITORIAL INTRODUCTIONS
   (replaces the old .selected-index-section for the TOP page)
============================================================ */

.ei-section {
  padding: 200px 0 180px;
}

.ei-header {
  max-width: 780px;
  margin: 0 auto 140px;
  text-align: center;
}

.ei-header .section-label { margin-bottom: 28px; }

.ei-header-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
}

.ei-header-lead {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 300;
}

.ei-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ei-item {
  padding: 0 0 160px;
  text-align: center;
}
.ei-item:last-child { padding-bottom: 0; }

.ei-media {
  display: block;
  width: min(calc(100% - 48px), 960px);
  margin: 0 auto 56px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}

.ei-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ei-item:hover .ei-media img {
  transform: scale(1.025);
}

.ei-body {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
}

.ei-eyebrow {
  margin: 0 0 20px;
}

.ei-name {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.ei-desc {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
  margin: 0 0 32px;
}

.ei-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 400ms ease;
}
.ei-link:hover { border-bottom-color: var(--text); }

.ei-footer {
  margin-top: 40px;
  text-align: center;
}

.ei-footer .btn-ghost {
  font-family: var(--font-sans);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 11px;
}

@media (max-width: 720px) {
  .ei-item { padding-bottom: 100px; }
  .ei-media { aspect-ratio: 4 / 5; margin-bottom: 40px; }
}

/* ============================================================
   NETWORK PAGE: category groups use the same ei-* pattern
============================================================ */

.network-group {
  padding: 140px 0;
}
.network-group:first-of-type { padding-top: 40px; }
.network-group + .network-group { border-top: 1px solid var(--line); }

.network-group-header {
  max-width: 720px;
  margin: 0 auto 100px;
  text-align: center;
}
.network-group-header .section-label { margin-bottom: 24px; }
.network-group-header .curated-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.15;
  font-weight: 300;
}

/* Page hero for /partners (and other subpages) */
.page-hero-section {
  padding: 200px 0 140px;
  text-align: center;
}
.page-hero-section .section-label { margin-bottom: 28px; }
.page-title {
  font-family: var(--font-serif) !important;
  font-weight: 300 !important;
  font-size: clamp(44px, 5.6vw, 78px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.015em !important;
  margin: 0 auto 32px;
  max-width: 900px;
}
.page-intro {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 300;
}

/* ============================================================
   INTERLUDE (silent close)
============================================================ */
.interlude-section {
  padding: 40px 0 180px;
  text-align: center;
}
.interlude-section .interlude-media {
  width: 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  margin-bottom: 140px;
  background: var(--surface);
}
.interlude-section .interlude-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.interlude-quote {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
  font-family: var(--font-serif) !important;
  font-size: clamp(24px, 3vw, 40px) !important;
  font-weight: 300 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.005em !important;
  color: var(--text);
  quotes: none;
}
.interlude-quote::before, .interlude-quote::after { content: ""; }
.interlude-credit {
  margin-top: 40px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   FINAL CTA — more air, serif headline
============================================================ */
.final-cta-section {
  padding: 200px 0 220px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.final-cta-section .section-label { margin-bottom: 28px; }
.final-cta-section .section-title {
  font-family: var(--font-serif) !important;
  font-weight: 300 !important;
  font-size: clamp(34px, 4.2vw, 56px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.01em !important;
  margin: 0 auto 32px;
  max-width: 720px;
}
.final-cta-section .section-intro {
  max-width: 540px;
  margin: 0 auto 56px;
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.85;
  font-weight: 300;
}

/* ============================================================
   Also refine curated overview (What JINTERIOR Is) headline
============================================================ */
.curated-overview-copy .curated-title {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.editorial-process-copy .curated-title {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.15;
}

/* ============================================================
   NOT A HOTEL – style Partner detail page (/partners/xxx)
============================================================ */
#partner-page {
  background: var(--bg);
}

.partner-hero {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 640px;
  overflow: hidden;
  background: #000;
}
.partner-hero-media {
  position: absolute; inset: 0;
}
.partner-hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.85;
}
.partner-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.partner-hero-inner {
  position: absolute;
  left: 0; right: 0; bottom: 96px;
  text-align: center;
  padding: 0 24px;
}
.partner-eyebrow {
  color: rgba(243, 238, 230, 0.72);
  margin-bottom: 24px;
  display: block;
}
.partner-hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

.partner-statement {
  padding: 180px 24px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.partner-statement .partner-block-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 40px;
  letter-spacing: -0.005em;
}
.partner-statement p {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 300;
  margin: 0 0 24px;
}

.partner-gallery {
  padding: 0 0 180px;
}
.partner-gallery-item {
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--surface);
}
.partner-gallery-item.is-full { aspect-ratio: 16 / 9; }
.partner-gallery-item.is-tall {
  aspect-ratio: 3 / 4;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.partner-gallery-item.is-wide {
  aspect-ratio: 21 / 9;
}
.partner-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
}

.partner-suited {
  padding: 160px 24px 180px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--line);
}
.partner-suited .partner-block-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 56px;
}
.partner-suited-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  text-align: center;
}
.partner-suited-item h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 12px;
  font-weight: 500;
}
.partner-suited-item p {
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
}

.partner-nav {
  padding: 80px 24px 160px;
  text-align: center;
}
.partner-nav .btn-ghost {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ============================================================
   Kill remaining card look (from earlier revision)
============================================================ */
.service-card,
.partner-card,
.selected-introduction-item,
.editorial-audience-item,
.selected-index-row,
.selected-index-media,
.selected-index-list {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
