:root {
  --primary: #1f7a8c;
  --bg: #eef7f8;
  --ink: #0c2a30;
  --accent: #f4a259;
  --paper: #ffffff;
  --line: #cce5e9;
  --mute: #3d6b74;
  --display: 'Montserrat', system-ui, sans-serif;
  --body: 'Lora', Georgia, 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.6; -webkit-font-smoothing: antialiased; }
.wrap { width: min(1140px, 92vw); margin-inline: auto; }
h1, h2, h3 { font-family: var(--display); font-weight: 900; line-height: 1.07; letter-spacing: -.02em; }
h1 { font-size: clamp(38px, 5.8vw, 68px); }
h2 { font-size: clamp(26px, 3.2vw, 42px); }
h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
p { font-size: 16px; line-height: 1.65; }
.eyebrow { display: block; font-family: var(--display); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--primary); margin-bottom: 14px; }
.eyebrow--inv { color: var(--accent); }

/* nav */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(238,247,248,.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav__in { display: flex; align-items: center; gap: 20px; height: 66px; }
.brand { font-family: var(--display); font-weight: 900; font-size: 19px; text-decoration: none; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.brand__icon { color: var(--primary); font-size: 22px; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { text-decoration: none; font-family: var(--display); font-size: 13px; font-weight: 600; color: var(--mute); letter-spacing: .04em; transition: color .15s; }
.nav__links a:hover { color: var(--primary); }

/* buttons */
.btn { display: inline-flex; align-items: center; background: var(--primary); color: #fff; text-decoration: none; font-family: var(--display); font-weight: 700; font-size: 14px; padding: 13px 22px; border-radius: 999px; transition: transform .15s, background .15s; letter-spacing: .04em; }
.btn:hover { transform: translateY(-2px); background: #196977; }
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--outline { background: transparent; color: var(--primary); box-shadow: inset 0 0 0 2px var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--inv { background: var(--accent); color: var(--ink); }
.btn--inv:hover { background: #e8922a; }

/* hero — centered stack */
.hero { padding: clamp(48px, 7vw, 96px) 0 0; text-align: center; }
.hero__center { display: flex; flex-direction: column; align-items: center; }
.hero h1 { max-width: 12ch; margin: 0 auto; }
.hero__sub { max-width: 52ch; margin: 22px auto 0; color: var(--mute); font-size: clamp(16px, 1.5vw, 18px); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin: 32px 0; }
.hero__img { position: relative; width: 100%; max-width: 880px; margin: 0 auto; }
.hero__img img { width: 100%; height: clamp(320px, 40vw, 500px); object-fit: cover; border-radius: var(--r) var(--r) 0 0; display: block; }
.hero__badge { position: absolute; bottom: 16px; right: 20px; background: var(--accent); color: var(--ink); font-family: var(--display); font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 999px; }
.hero__stats { display: flex; gap: 0; background: var(--ink); color: #fff; width: 100%; max-width: 880px; border-radius: 0 0 var(--r) var(--r); overflow: hidden; }
.hero__stats > div { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 20px 16px; border-right: 1px solid rgba(255,255,255,.12); }
.hero__stats > div:last-child { border-right: none; }
.hero__stats strong { font-family: var(--display); font-size: clamp(22px, 3vw, 32px); font-weight: 900; color: var(--accent); }
.hero__stats span { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; font-family: var(--display); letter-spacing: .08em; text-transform: uppercase; }

/* sections */
.section { padding: clamp(50px, 7vw, 88px) 0; }
.section--pale { background: var(--paper); }
.section__head { max-width: 56ch; margin-bottom: 42px; }
.section__head p { color: var(--mute); margin-top: 10px; }

/* cards */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 24px 20px; display: flex; flex-direction: column; min-height: 240px; }
.card__num { font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--primary); text-transform: uppercase; margin-bottom: 14px; }
.card p { color: var(--mute); font-size: 14.5px; font-family: var(--body); line-height: 1.6; margin-top: 6px; flex: 1; }
.card__price { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--ink); margin-top: 18px; }

/* feature section */
.feature { background: var(--ink); color: #fff; padding: clamp(50px, 7vw, 88px) 0; }
.feature__in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.feature__text h2 { color: #fff; margin-bottom: 18px; }
.feature__text p { color: rgba(255,255,255,.75); font-size: 15.5px; margin-bottom: 14px; }

/* board */
.board { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: calc(var(--r) + 4px); padding: 28px; }
.board__title { font-family: var(--display); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--accent); margin-bottom: 22px; }
.board__item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.board__emoji { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.board__item strong { display: block; font-family: var(--display); font-size: 15px; color: #fff; margin-bottom: 4px; }
.board__item span { font-size: 13.5px; color: rgba(255,255,255,.6); font-family: var(--body); }
.board__price { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--accent); margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }

/* craft */
.craft__in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.craft__text h2 { margin-bottom: 16px; }
.craft__text p { color: var(--mute); }
.craft__steps { display: grid; gap: 16px; }
.step { display: flex; gap: 18px; align-items: flex-start; padding: 20px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); }
.step__n { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; font-family: var(--display); font-weight: 900; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step strong { font-family: var(--display); font-size: 15px; display: block; margin-bottom: 4px; }
.step p { color: var(--mute); font-size: 13.5px; }

/* about */
.about__in { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.about__quote blockquote { font-size: clamp(18px, 2vw, 24px); font-style: italic; color: var(--ink); line-height: 1.55; position: relative; padding-left: 24px; border-left: 4px solid var(--primary); }
.about__quote cite { display: block; margin-top: 18px; font-style: normal; font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--mute); letter-spacing: .08em; }
.about__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fact { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; }
.fact strong { display: block; font-family: var(--display); font-size: 22px; font-weight: 900; color: var(--primary); margin-bottom: 6px; }
.fact span { font-size: 13px; color: var(--mute); font-family: var(--display); }

/* contact */
.contact { padding: clamp(50px, 7vw, 88px) 0; }
.contact__in { background: linear-gradient(135deg, var(--primary) 0%, #196977 100%); border-radius: calc(var(--r) + 6px); padding: clamp(32px, 5vw, 56px); display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; color: #fff; }
.contact__in h2 { color: #fff; margin-bottom: 12px; }
.contact__in p { color: rgba(255,255,255,.85); }
.contact__list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.contact__list li { font-family: var(--display); font-size: 14px; color: rgba(255,255,255,.9); }
.contact__cta { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.contact__note { font-size: 14px; color: rgba(255,255,255,.75); font-style: italic; }
.contact .btn--lg { background: var(--accent); color: var(--ink); }
.contact .btn--lg:hover { background: #e8922a; }

/* footer */
.foot { background: var(--ink); padding: 28px 0; }
.foot__in { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--display); font-size: 13px; color: rgba(255,255,255,.55); }
.foot__brand { color: rgba(255,255,255,.85); font-weight: 700; }

/* responsive */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .feature__in, .craft__in, .about__in { grid-template-columns: 1fr; }
  .contact__in { grid-template-columns: 1fr; }
  .hero__img img { height: 260px; }
}
@media (max-width: 520px) {
  .cards { grid-template-columns: 1fr; }
  .about__facts { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; }
  .hero__stats > div { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero__stats > div:last-child { border-bottom: none; }
}
