:root {
  --primary: #1b2a4a;
  --bg: #f6efe2;
  --ink: #141a2a;
  --accent: #c98a3c;
  --paper: #ffffff;
  --line: #e4d8c4;
  --mute: #5c5242;
  --display: 'Prata', Georgia, serif;
  --body: 'Mulish', system-ui, sans-serif;
  --r: 16px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
.wrap { width: min(1140px, 92vw); margin-inline: auto; }
h1, h2 { font-family: var(--display); font-weight: 400; line-height: 1.1; letter-spacing: -.01em; }
h1 { font-size: clamp(38px, 5.8vw, 72px); }
h2 { font-size: clamp(28px, 3.6vw, 46px); }
h3 { font-family: var(--display); font-size: 20px; font-weight: 400; margin-bottom: 10px; }
p { font-size: 15px; color: var(--mute); line-height: 1.7; }
.eyebrow { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--accent); margin-bottom: 14px; }
.eyebrow--light { color: rgba(255,255,255,.55); }

/* nav */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(246,239,226,.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav__in { display: flex; align-items: center; gap: 20px; height: 64px; }
.brand { font-family: var(--display); font-size: 18px; text-decoration: none; color: var(--ink); font-style: italic; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--mute); transition: color .15s; }
.nav__links a:hover { color: var(--ink); }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: #fff; text-decoration: none; font-weight: 600; font-size: 14px; padding: 13px 24px; border-radius: var(--r); transition: transform .15s, background .15s; }
.btn:hover { transform: translateY(-2px); background: #14213a; }
.btn--lg { padding: 17px 32px; font-size: 16px; }

/* hero — asymmetric blocks */
.hero { padding: clamp(44px, 6vw, 84px) 0; }
.hero__asym { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.hero__asym-left { padding-top: 20px; }
.hero__asym-left h1 { margin-bottom: 20px; }
.hero__p { color: var(--mute); font-size: clamp(14px, 1.4vw, 17px); max-width: 44ch; margin-bottom: 30px; }
.hero__asym-right { display: grid; grid-template-columns: 1fr auto; gap: 16px; }
.hero__img-wrap { grid-column: span 1; }
.hero__img-wrap img { width: 100%; height: clamp(360px, 46vw, 580px); object-fit: cover; border-radius: var(--r); display: block; }
.hero__aside-stat { display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.aside-stat__row { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 14px; text-align: center; }
.aside-stat__row strong { display: block; font-family: var(--display); font-size: clamp(20px, 2.5vw, 28px); color: var(--ink); }
.aside-stat__row span { font-size: 12px; color: var(--mute); margin-top: 3px; display: block; }

/* sections */
.section { padding: clamp(52px, 7vw, 88px) 0; }
.section--paper { background: var(--paper); }
.sec__head { max-width: 56ch; margin-bottom: 40px; }
.sec__head p { color: var(--mute); margin-top: 8px; }

/* ramen cards */
.ramen-list { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 16px; align-items: start; }
.ramen-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 20px; display: flex; flex-direction: column; min-height: 230px; position: relative; }
.ramen-card--feature { background: var(--primary); border-color: var(--primary); }
.ramen-card--feature h3 { color: #fff; }
.ramen-card--feature p { color: rgba(255,255,255,.7); }
.ramen-card--feature .ramen-card__price { color: var(--accent); }
.ramen-card--feature .ramen-card__label { color: var(--accent); }
.ramen-card__label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--accent); margin-bottom: 8px; }
.ramen-card p { font-size: 14px; flex: 1; margin-top: 8px; }
.ramen-card__price { font-family: var(--display); font-size: 20px; color: var(--ink); margin-top: 16px; }

/* bulon section */
.bulon { background: var(--primary); color: #fff; padding: clamp(52px, 7vw, 88px) 0; }
.bulon__in { display: grid; grid-template-columns: auto 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.bulon__visual { display: flex; justify-content: center; align-items: center; }
.clock-ring { position: relative; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; }
.clock-svg { position: absolute; inset: 0; }
.clock-inner { display: flex; flex-direction: column; align-items: center; }
.clock-num { font-family: var(--display); font-size: 52px; color: var(--accent); line-height: 1; }
.clock-unit { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 4px; text-transform: uppercase; letter-spacing: .12em; }
.bulon__text h2 { color: #fff; margin-bottom: 18px; }
.bulon__text p { color: rgba(255,255,255,.72); margin-bottom: 14px; }
.bulon__timeline { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.btl-row { display: flex; align-items: center; gap: 16px; font-size: 13px; color: rgba(255,255,255,.55); }
.btl-row--done { color: rgba(255,255,255,.9); font-weight: 600; }
.btl-t { font-family: var(--display); color: rgba(255,255,255,.7); min-width: 44px; }
.btl-bar { flex: 1; height: 6px; background: rgba(255,255,255,.12); border-radius: 3px; overflow: hidden; }
.btl-bar > div { height: 100%; background: rgba(201,138,60,.5); border-radius: 3px; }
.btl-row--done .btl-bar > div { background: var(--accent); }

/* add-ons */
.add-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.add-item { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 20px 18px; display: flex; flex-direction: column; gap: 6px; }
.add-emoji { font-size: 28px; }
.add-item strong { font-size: 15px; font-weight: 700; color: var(--ink); }
.add-item span { font-size: 13px; color: var(--mute); }
.add-price { font-family: var(--display); font-size: 17px; color: var(--accent); margin-top: auto; padding-top: 8px; }

/* contact */
.contact { padding: clamp(52px, 7vw, 88px) 0; }
.contact__in { background: var(--ink); border-radius: calc(var(--r) + 4px); padding: clamp(36px, 5vw, 60px); display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact__in h2 { color: #fff; margin-bottom: 16px; }
.contact__in > div > p { color: rgba(255,255,255,.7); max-width: 40ch; margin-bottom: 22px; }
.contact__details { display: flex; flex-direction: column; gap: 14px; }
.contact__details > div { display: flex; flex-direction: column; gap: 3px; }
.detail-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.4); }
.detail-val { font-size: 15px; font-weight: 600; color: rgba(255,255,255,.9); }
.contact__cta p { color: rgba(255,255,255,.6); font-style: italic; font-size: 14px; max-width: 34ch; margin-bottom: 22px; }
.contact .btn--lg { background: var(--accent); color: var(--ink); }
.contact .btn--lg:hover { background: #b57632; }

/* footer */
.foot { background: #0e111a; padding: 28px 0; }
.foot__in { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.4); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .hero__asym { grid-template-columns: 1fr; }
  .hero__asym-right { grid-template-columns: 1fr; }
  .hero__img-wrap img { height: 280px; }
  .hero__aside-stat { flex-direction: row; justify-content: space-between; }
  .ramen-list { grid-template-columns: repeat(2, 1fr); }
  .bulon__in { grid-template-columns: 1fr; }
  .bulon__visual { display: none; }
  .add-grid { grid-template-columns: repeat(2, 1fr); }
  .contact__in { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .ramen-list { grid-template-columns: 1fr; }
  .add-grid { grid-template-columns: 1fr; }
  .hero__aside-stat { flex-direction: column; }
}
