:root {
  --ink: #17202a;
  --muted-ink: #5d6874;
  --line: #dfe5e7;
  --paper: #ffffff;
  --soft: #f4f7f6;
  --sea: #6f9d9a;
  --sea-dark: #315e5c;
  --night: #152424;
  --radius: 24px;
  --shadow: 0 18px 50px rgba(20, 35, 35, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  color: white; background: var(--sea);
  font-family: Georgia, serif; font-size: 22px;
}
.brand strong { display: block; letter-spacing: .12em; font-size: 15px; }
.brand small { color: var(--muted-ink); font-size: 12px; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { text-decoration: none; font-size: 14px; }
.nav-cta { padding: 10px 16px; border: 1px solid var(--ink); border-radius: 999px; }
.menu-button { display: none; }

.hero { padding: 92px 0 78px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.eyebrow { margin: 0 0 14px; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; color: var(--sea-dark); font-weight: 700; }
h1, h2, h3 { margin-top: 0; line-height: 1.15; }
h1 { font-size: clamp(44px, 7vw, 76px); max-width: 820px; margin-bottom: 24px; letter-spacing: -.035em; }
h2 { font-size: clamp(32px, 4vw, 48px); letter-spacing: -.025em; }
h3 { font-size: 20px; }
.lead { font-size: 20px; max-width: 690px; color: var(--muted-ink); }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 20px; border-radius: 14px;
  text-decoration: none; font-weight: 700; font-size: 14px;
}
.primary { background: var(--night); color: white; }
.secondary { border: 1px solid #bcc6c8; background: white; }

.hero-card {
  padding: 38px;
  background: linear-gradient(145deg, #f5f8f7, #edf3f1);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.hero-card p { color: var(--muted-ink); }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.stats div { padding: 20px; border-radius: 20px; background: white; border: 1px solid var(--line); }
.stats strong, .stats span { display: block; }
.stats strong { font-size: 21px; }
.stats span { color: var(--muted-ink); font-size: 13px; margin-top: 4px; }

.section { padding: 86px 0; }
.muted { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { max-width: 760px; }
.section-heading > p:last-child { font-size: 18px; color: var(--muted-ink); }
.cards { display: grid; gap: 22px; margin-top: 44px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 8px 30px rgba(30,45,45,.04); }
.card p { margin-bottom: 0; color: var(--muted-ink); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.service-grid div { border: 1px solid var(--line); border-radius: 18px; padding: 22px; background: white; font-weight: 650; }
.pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.pills span { background: white; border: 1px solid var(--line); padding: 10px 15px; border-radius: 999px; }

.coming-soon {
  display: flex; gap: 28px; align-items: center;
  margin-top: 34px; padding: 30px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #f4f7f6);
}
.bottle-shape { width: 62px; height: 150px; background: var(--sea); border-radius: 12px 12px 20px 20px; position: relative; flex: none; }
.bottle-shape::before { content: ""; position: absolute; width: 26px; height: 28px; background: var(--sea); top: -22px; left: 18px; border-radius: 5px 5px 0 0; }
.bottle-shape::after { content: "UMI"; position: absolute; inset: 48px 10px auto; padding: 9px 0; text-align: center; background: rgba(255,255,255,.8); font-size: 11px; letter-spacing: .12em; }

.contact-panel {
  background: var(--night); color: white;
  border-radius: 34px; padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.contact-panel p { color: #c6d2d1; }
.light { color: #a8c6c4; }
.light-button { margin-top: 20px; background: white; color: var(--night); }
.details { margin: 0; padding: 26px; border-radius: 24px; background: rgba(255,255,255,.06); }
.details div + div { margin-top: 17px; }
.details dt { font-size: 12px; color: #9fb1b0; text-transform: uppercase; letter-spacing: .08em; }
.details dd { margin: 3px 0 0; font-size: 16px; }
.details a { color: white; }

footer { border-top: 1px solid var(--line); padding: 28px 0; color: var(--muted-ink); font-size: 13px; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

@media (max-width: 820px) {
  .menu-button {
    display: inline-flex; border: 1px solid var(--line); background: white;
    border-radius: 10px; padding: 9px 12px;
  }
  .main-nav {
    display: none; position: absolute; top: 78px; left: 0; right: 0;
    padding: 20px; background: white; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start;
  }
  .main-nav.open { display: flex; }
  .hero-grid, .split, .contact-panel { grid-template-columns: 1fr; }
  .cards.three { grid-template-columns: 1fr; }
  .hero { padding-top: 62px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 26px, 1180px); }
  .brand small { display: none; }
  .service-grid, .stats { grid-template-columns: 1fr; }
  .hero-card, .contact-panel { padding: 26px; border-radius: 24px; }
  .section { padding: 66px 0; }
  .coming-soon { align-items: flex-start; }
  .footer-wrap { align-items: flex-start; flex-direction: column; }
}
