:root {
  --rose: #B0695C;
  --rose-soft: #D4A59A;
  --rose-pale: #F0E0DA;
  --cream: #F5EFE7;
  --cream-dark: #EDE5D8;
  --ink: #3C302A;
  --ink-light: #78685E;
  --line: #E4DACE;
  --white: #FDFAF6;
  --serif: 'Fraunces', Palatino, Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 239, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: var(--line); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-mark {
  position: relative;
  width: 28px; height: 22px;
  flex-shrink: 0;
}
.nav-mark .d1 {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--rose);
}
.nav-mark .d2,
.nav-mark .d3 {
  position: absolute;
  top: 13px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rose-soft);
}
.nav-mark .d2 { left: 2px; }
.nav-mark .d3 { right: 2px; }

.nav-wordmark {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--rose);
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-wordmark span {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--rose); }

.nav-cta {
  background: var(--rose) !important;
  color: var(--cream) !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.85rem !important;
}
.nav-cta:hover { opacity: 0.88; }
.nav-active-cta { opacity: 0.88; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.mobile-nav a:hover { color: var(--rose); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--rose); color: var(--white); }
.btn-primary:hover { background: #9d5a4e; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--rose-soft); color: var(--rose); }
.btn-white { background: var(--white); color: var(--rose); font-weight: 600; }
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.8); }
.btn-outline-cream { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-cream:hover { background: rgba(255,255,255,0.1); }

/* ── EYEBROW / LABELS ── */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  display: inline-block;
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-light);
  max-width: 52ch;
  line-height: 1.7;
}
.section-inner { max-width: 1040px; margin: 0 auto; }

/* ── HERO (home) ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-pale) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-pale) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 20px 0 28px;
  max-width: 14ch;
}
.hero h1 em { font-style: italic; color: var(--rose); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-light);
  max-width: 52ch;
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 40px 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-pale) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero-h {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 16px 0 24px;
  max-width: 16ch;
}
.page-hero-h em { font-style: italic; color: var(--rose); }
.page-hero-sub {
  font-size: 1.1rem;
  color: var(--ink-light);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--rose);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.9;
}
.marquee-track .dot { color: var(--rose-soft); font-style: normal; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--rose);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}
.cta-band h2 em { font-style: italic; }
.cta-band p {
  color: rgba(253,250,246,0.8);
  font-size: 1.05rem;
  max-width: 48ch;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* ── HOME SPLIT CARDS ── */
.split-card {
  background: var(--cream-dark);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--line);
}
.split-card-dark {
  background: var(--ink);
  border-color: transparent;
}
.split-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-pale);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.split-card-tag.dark {
  color: var(--rose-soft);
  background: rgba(176,105,92,0.2);
}
.split-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.split-card-dark h3 { color: var(--cream); }
.split-card p { font-size: 0.95rem; color: var(--ink-light); line-height: 1.7; }
.split-card-dark p { color: rgba(245,239,231,0.6); }

/* ── ABOUT CARD ── */
.about-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--line);
}
.about-card-quote {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 24px;
}
.about-card-sig {
  font-size: 0.85rem;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-card-sig::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--rose-soft);
}

/* ── HOW STEPS ── */
.how-step {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--line);
}
.how-step-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--rose-pale);
  line-height: 1;
  margin-bottom: 16px;
}
.how-step h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.how-step p { font-size: 0.92rem; color: var(--ink-light); line-height: 1.7; }

/* ── SERVICE CARDS (dark bg) ── */
.service-card {
  background: rgba(255,255,255,0.04);
  padding: 44px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.service-card:hover { background: rgba(255,255,255,0.07); }
.service-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(176,105,92,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.9rem; color: rgba(245,239,231,0.6); line-height: 1.7; }

/* ── BRAND CARDS ── */
.brand-card {
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  transition: all 0.2s;
  background: var(--white);
}
.brand-card:hover {
  border-color: var(--rose-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(176,105,92,0.08);
}
.brand-card-icon { font-size: 1.6rem; margin-bottom: 16px; }
.brand-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}
.brand-card p { font-size: 0.875rem; color: var(--ink-light); line-height: 1.65; }

/* ── VALUE CARDS ── */
.value-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--line);
}
.value-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--rose-pale);
  line-height: 1;
  margin-bottom: 14px;
}
.value-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.value-card p { font-size: 0.9rem; color: var(--ink-light); line-height: 1.7; }

/* ── STORY PARAGRAPHS ── */
.story-p {
  font-size: 1.15rem;
  color: var(--ink-light);
  line-height: 1.85;
  margin-bottom: 24px;
}
.story-p:first-of-type {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}

/* ── KANJI ── */
.kanji {
  font-size: 5rem;
  color: rgba(253,250,246,0.25);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

/* ── CHECK LIST ── */
.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.5;
}
.check-item::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--rose-pale);
  border: 2px solid var(--rose-soft);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23B0695C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ── CONTACT ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 5px;
  display: block;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--rose-soft); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-group { display: flex; flex-direction: column; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--rose); }
.contact-link-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink-light);
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; margin-top: 40px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--rose-soft);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-bottom: 0;
}
.faq-a.open { max-height: 200px; padding-bottom: 24px; }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 60px 40px 40px; }
.footer-inner { max-width: 1040px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(245,239,231,0.45);
  margin-top: 10px;
}
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,239,231,0.35);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(245,239,231,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--rose-soft); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(245,239,231,0.3); }
.footer-social-link {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,239,231,0.55);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social-link:hover {
  background: rgba(176,105,92,0.3);
  color: var(--rose-soft);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 100px 24px 72px; }
  .page-hero { padding: 120px 24px 80px; }
  .cta-band { padding: 80px 24px; }
  footer { padding: 52px 24px 32px; }

  section { padding-left: 24px !important; padding-right: 24px !important; }

  .about-grid,
  .split-grid,
  .contact-grid { grid-template-columns: 1fr !important; gap: 48px !important; }

  .how-grid,
  .services-inner,
  .brands-grid,
  .values-grid { grid-template-columns: 1fr !important; }

  .footer-top { flex-direction: column; }
  .footer-links { gap: 32px; }

  /* target inline grids */
  [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: repeat(2"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; gap: 40px !important; }
  [style*="grid-template-columns: 1fr 1fr;"] { grid-template-columns: 1fr !important; gap: 40px !important; }
}

@media (max-width: 540px) {
  .hero-actions,
  .cta-band > div { flex-direction: column; align-items: center; }
  .hero-actions { align-items: flex-start; }
}
