:root{
  --bg:#fafafa;
  --text:#27272a;
  --muted:#52525b;
  --muted2:#71717a;
  --border:#e4e4e7;

  --brand:#9f1239;
  --brand2:#f43f5e;
  --brand-soft:#fff0f3;
  --ring:rgba(159,18,57,.25);

  --card:#ffffff;
  --shadow:0 18px 44px rgba(0,0,0,.08);
  --shadow2:0 10px 28px rgba(0,0,0,.06);

  --max:980px;
  --gutter:24px;

  --serif:"Playfair Display", serif;
  --sans:"Zen Kaku Gothic New","Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
  --en:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;

  --lh:1.95;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  background:var(--bg);
  color:var(--text);
  line-height:var(--lh);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
  font-feature-settings:"palt";
}

::selection{background:rgba(255,227,232,.95); color:#881337}

a{color:inherit}
a:focus-visible,
summary:focus-visible{
  outline:2px solid var(--ring);
  outline-offset:3px;
  border-radius:8px;
}

.page{min-height:100vh; display:flex; flex-direction:column}

.bg-noise{
  position:fixed; inset:0;
  pointer-events:none;
  z-index:50;
  opacity:.035;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.bg-blobs{position:fixed; inset:0; z-index:-10; pointer-events:none; overflow:hidden}
.blob{position:absolute; border-radius:999px; filter:blur(110px); opacity:.7}
.blob-a{top:-12%; right:-12%; width:min(44vw,560px); height:min(44vw,560px); background:rgba(255,227,232,.88)}
.blob-b{bottom:-12%; left:-12%; width:min(34vw,440px); height:min(34vw,440px); background:rgba(228,228,231,.72)}

.header{
  position:fixed; top:0; left:0; right:0;
  z-index:40;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(228,228,231,.85);
}

.header-inner{
  max-width:1120px;
  margin:0 auto;
  padding:0 var(--gutter);
  height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand-logo{
  height:32px;
  width:auto;
  max-width:260px;
  object-fit:contain;
  opacity:.9;
  transition:opacity .25s ease, transform .25s ease;
}
.brand:hover .brand-logo{opacity:1; transform:translateY(-1px)}

.header-right{display:flex; align-items:center; gap:18px}
.header-tag{
  display:none;
  font-family:var(--en);
  font-weight:800;
  font-size:10px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#a1a1aa;
}
@media (min-width:768px){
  .header-tag{display:block}
}

.lang{display:flex; align-items:center; gap:8px}
.lang-btn{
  font-family:var(--en);
  font-weight:900;
  font-size:12px;
  letter-spacing:.08em;
  text-decoration:none;
  color:#a1a1aa;
  padding:6px 2px 3px;
  border-bottom:1px solid transparent;
  transition:color .2s ease, border-color .2s ease, transform .2s ease;
}
.lang-btn:hover{color:#111827; transform:translateY(-1px)}
.lang-btn.is-active{
  color:#111827;
  border-bottom-color:#111827;
}
.lang-sep{color:#d4d4d8; font-size:12px}

.main{flex:1; width:100%}

.hero{
  max-width:var(--max);
  margin:0 auto;
  padding:132px var(--gutter) 86px;
  min-height:calc(100vh - 100px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  animation:fadeInUp .85s cubic-bezier(.16,1,.3,1) forwards;
  opacity:0;
}
@keyframes fadeInUp{
  0%{opacity:0; transform:translateY(18px)}
  100%{opacity:1; transform:translateY(0)}
}

.hero-inner{
  display:flex;
  flex-direction:column;
  gap:34px;
  padding-bottom:54px;
}
@media (min-width:768px){
  .hero-inner{
    flex-direction:row;
    justify-content:space-between;
    align-items:flex-start;
    gap:56px;
  }
}

.hero-line{width:48px; height:1px; background:var(--brand)}
.hero-left{max-width:680px; display:flex; flex-direction:column; gap:16px}

.hero-title{
  margin:0;
  font-size:clamp(34px, 5.3vw, 66px);
  line-height:1.22;
  letter-spacing:-0.02em;
  color:#111827;
}
.hero-sub{
  margin:0;
  color:#52525b;
  font-weight:650;
  font-size:clamp(13px, 1.65vw, 16px);
  line-height:2.15;
}

.hero-note{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(228,228,231,.9);
  color:#71717a;
  font-size:12px;
  font-weight:650;
}

.hero-note::before{
  content:"";
  width:18px;
  height:18px;
  border-radius:999px;
  border:1px solid rgba(212,212,216,1);
  flex:0 0 auto;
  position:relative;
  display:inline-block;
  background:
    linear-gradient(
      to bottom,
      transparent 3px,
      rgba(82,82,91,.7) 3px,
      rgba(82,82,91,.7) 13px,
      transparent 13px
    )
    center / 2px 100% no-repeat;
}

.hero-note::after{
  content:none;
}

.nav{margin-top:18px}
.nav-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
}
.nav-link{
  text-decoration:none;
  font-size:12px;
  color:#3f3f46;
  border-bottom:1px solid transparent;
  padding-bottom:2px;
  transition:border-color .2s ease, color .2s ease;
}
.nav-link:hover{
  border-bottom-color:rgba(39,39,42,.32);
  color:#111827;
}

.hero-right{display:none}
@media (min-width:768px){
  .hero-right{display:block; padding-top:6px}
  .vertical{
    writing-mode:vertical-rl;
    text-orientation:mixed;
    font-family:var(--serif);
    color:#a1a1aa;
    letter-spacing:.28em;
    border-left:1px solid rgba(228,228,231,.95);
    padding-left:16px;
    line-height:2.2;
    white-space:nowrap;
    margin:0;
  }
}

.scroll-indicator{
  position:absolute;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  color:#a1a1aa;
}
.scroll-text{
  font-family:var(--en);
  font-size:10px;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.scroll-line{
  width:1px;
  height:64px;
  background:rgba(228,228,231,1);
  position:relative;
  overflow:hidden;
}
.scroll-line::before{
  content:"";
  position:absolute;
  left:0;
  top:-50%;
  width:1px;
  height:50%;
  background:var(--brand);
  animation:scrollLine 2s cubic-bezier(.77,0,.175,1) infinite;
}
@keyframes scrollLine{
  0%{transform:translateY(-100%)}
  100%{transform:translateY(250%)}
}

.section{
  max-width:var(--max);
  margin:0 auto;
  padding:88px var(--gutter) 0;
  position:relative;
}
.section-bg{
  position:absolute;
  top:6px;
  left:-10px;
  font-family:var(--serif);
  font-weight:700;
  font-size:clamp(92px, 14.5vw, 184px);
  color:#f4f4f5;
  opacity:.7;
  z-index:-1;
  user-select:none;
  pointer-events:none;
  line-height:.9;
}
.section-bg.is-right{
  left:auto;
  right:0;
  text-align:right;
  width:100%;
}

.section-inner{padding-top:14px}
.section-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}
.section-head.is-right{justify-content:flex-end}
.section-head.is-split{
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
  flex-wrap:wrap;
}

.section-label{
  font-family:var(--en);
  font-weight:900;
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--brand);
  white-space:nowrap;
}
.section-title{
  margin:0;
  font-size:24px;
  color:#111827;
}
.section-desc{
  margin:0;
  font-size:12px;
  color:var(--muted2);
  max-width:420px;
}

.panel{
  background:rgba(255,255,255,.46);
  backdrop-filter:blur(6px);
  border-left:2px solid rgba(159,18,57,.22);
  padding:26px 24px;
}
.panel p{
  margin:0 0 14px;
  color:#3f3f46;
  font-weight:650;
  text-wrap:pretty;
}
.panel p:last-child{margin-bottom:0}

.grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
}
@media (min-width:768px){
  .grid{grid-template-columns:1fr 1fr}
}
.card{
  background:var(--card);
  padding:24px;
  transition:background-color .35s ease, box-shadow .35s ease, transform .35s ease;
}
.card:hover{
  background:rgba(255,240,243,.35);
  transform:translateY(-1px);
}
.card-no{
  font-family:var(--en);
  font-size:11px;
  color:#a1a1aa;
  margin-bottom:10px;
}
.card-title{
  margin:0 0 6px;
  font-size:18px;
  color:#111827;
}
.card-desc{
  margin:0;
  font-size:12.5px;
  color:var(--muted2);
  font-weight:650;
  line-height:1.95;
}

.two-col{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
}
@media (min-width:900px){
  .two-col{
    grid-template-columns:1.15fr .85fr;
    gap:46px;
  }
}
.col p{
  margin:0 0 14px;
  color:#3f3f46;
  font-weight:650;
  text-wrap:pretty;
}

.quote{
  background:var(--brand-soft);
  border:1px solid rgba(255,227,232,.92);
  padding:18px 18px;
  margin:16px 0;
  box-shadow:0 10px 30px rgba(159,18,57,.07);
  position:relative;
}
.quote::before,
.quote::after{
  content:"";
  position:absolute;
  width:10px;
  height:10px;
  border-color:rgba(159,18,57,.25);
  border-style:solid;
}
.quote::before{
  top:10px;
  left:10px;
  border-width:1px 0 0 1px;
}
.quote::after{
  bottom:10px;
  right:10px;
  border-width:0 1px 1px 0;
}
.quote p{
  margin:0;
  color:#111827;
  font-weight:900;
  text-align:center;
  line-height:2.05;
  text-wrap:balance;
}

.mini-title{
  margin:0 0 12px;
  font-family:var(--en);
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#a1a1aa;
}
.concerns{
  margin:0;
  padding-left:18px;
  color:#3f3f46;
  font-weight:650;
}
.concerns li{
  margin-bottom:12px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(244,244,245,.95);
}
.muted{
  color:var(--muted2);
  font-size:12px;
  margin-top:12px;
  line-height:1.95;
}

.measures{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.measure{
  background:#fff;
  border:1px solid rgba(244,244,245,.98);
  padding:20px;
  border-radius:2px;
  transition:box-shadow .35s ease, transform .35s ease;
}
.measure:hover{
  box-shadow:var(--shadow2);
  transform:translateY(-1px);
}
.measure-tag{
  display:inline-block;
  font-size:10px;
  font-weight:900;
  letter-spacing:.2em;
  text-transform:uppercase;
  background:rgba(255,240,243,.78);
  color:var(--brand);
  padding:6px 10px;
  margin-bottom:10px;
}
.measure-desc{
  margin:0;
  color:#3f3f46;
  font-weight:650;
  font-size:13px;
  line-height:2.05;
  text-wrap:pretty;
}

.callout{
  background:rgba(255,240,243,.55);
  border:1px solid rgba(159,18,57,.18);
  padding:14px 16px;
  color:#6b7280;
  font-size:12px;
  font-weight:800;
  border-radius:2px;
}

.faq{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.faq-item{
  border-bottom:1px solid var(--border);
  padding:10px 0;
}
.faq-q{
  cursor:pointer;
  font-weight:900;
  font-size:14px;
  color:#111827;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.faq-q::-webkit-details-marker{display:none}
.faq-q::after{
  content:"+";
  font-family:var(--en);
  font-weight:700;
  color:#a1a1aa;
  font-size:18px;
  line-height:1;
}
details[open] .faq-q::after{
  content:"–";
  color:var(--brand);
}
.faq-a{
  padding:10px 0 16px 12px;
  border-left:1px solid #f4f4f5;
  color:#52525b;
  font-size:13px;
  font-weight:650;
  line-height:2;
  text-wrap:pretty;
}

.links{
  margin:10px 0 0;
  padding-left:18px;
}
.links a{
  color:var(--brand);
  text-decoration:underline;
  text-underline-offset:3px;
}
.links a:hover{opacity:.9}

.history{
  max-width:var(--max);
  margin:0 auto;
  padding:74px var(--gutter) 0;
  border-top:1px solid var(--border);
}
.history-inner{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.history-title{
  margin:0;
  font-size:11px;
  color:#a1a1aa;
  font-family:var(--en);
  letter-spacing:.22em;
  text-transform:uppercase;
}
.history-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.history-date{
  display:inline-block;
  min-width:110px;
  font-family:var(--en);
  font-weight:800;
  color:#111827;
}
.history-text{
  color:#6b7280;
  font-size:12px;
  font-weight:650;
}

.footer{
  margin-top:64px;
  border-top:1px solid rgba(244,244,245,.98);
  padding:66px 0;
}
.footer-inner{
  max-width:780px;
  margin:0 auto;
  padding:0 var(--gutter);
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:center;
}
.footer-logo{
  height:32px;
  width:auto;
  max-width:260px;
  object-fit:contain;
  opacity:.55;
  filter:grayscale(1);
  transition:opacity .25s ease, filter .25s ease;
}
.footer-logo:hover{
  opacity:1;
  filter:grayscale(0);
}
.footer-legal{
  color:#71717a;
  font-size:12px;
  line-height:2;
}
.footer-copy{
  margin:0;
  font-size:10px;
  color:#a1a1aa;
  font-family:var(--en);
  letter-spacing:.22em;
  text-transform:uppercase;
}

.hide-sm{display:none}
@media (min-width:768px){
  .hide-sm{display:inline}
}

@media (max-width:420px){
  .header-inner{padding:0 16px}
  .hero{padding:120px 16px 76px}
  .section{padding:76px 16px 0}
  .history{padding:64px 16px 0}
  .footer-inner{padding:0 16px}
}