:root {
  --bg-page: #f0ebe3;
  --bg-wash: #e6f2ef;
  --bg-mint: #dceee9;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.92);
  --text: #13221f;
  --text-soft: #3d4f4c;
  --muted: #5f736f;
  --accent: #0f766e;
  --accent-hover: #0d5f59;
  --accent-warm: #c2410c;
  --accent-warm-soft: rgba(194, 65, 12, 0.12);
  --gold: #b45309;
  --line: rgba(19, 34, 31, 0.1);
  --line-strong: rgba(15, 118, 110, 0.35);
  --shadow-sm: 0 2px 8px rgba(19, 34, 31, 0.06);
  --shadow-md: 0 12px 40px rgba(19, 34, 31, 0.1);
  --shadow-lg: 0 24px 64px rgba(15, 118, 110, 0.14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --max-width: 1140px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-optical-sizing: auto;
  background-color: var(--bg-page);
  background-image:
    radial-gradient(ellipse 120% 80% at 100% -20%, rgba(15, 118, 110, 0.14), transparent 55%),
    radial-gradient(ellipse 90% 60% at 0% 100%, rgba(194, 65, 12, 0.08), transparent 50%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 71px,
      rgba(19, 34, 31, 0.04) 71px,
      rgba(19, 34, 31, 0.04) 72px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 71px,
      rgba(19, 34, 31, 0.04) 71px,
      rgba(19, 34, 31, 0.04) 72px
    );
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

h1,
h2,
h3,
.section-title,
.hero h1,
.brand-mark {
  font-family: var(--font-display);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

main {
  display: block;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

/* --- Header: floating bar, light --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface-glass);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, #14b8a6 0%, var(--accent) 45%, #0f5c56 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  box-shadow:
    0 4px 14px rgba(15, 118, 110, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text span:first-child {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.brand-text span:last-child {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
}

.nav-link {
  padding: 10px 16px;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--accent);
  background: rgba(15, 118, 110, 0.08);
}

.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, #14b8a6, var(--accent));
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.35);
}

.contact-inline {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.86rem;
  display: none;
}

.button,
button {
  appearance: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-family: var(--font-body);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button.primary {
  background: linear-gradient(135deg, #ea580c, var(--accent-warm));
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(194, 65, 12, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(194, 65, 12, 0.45);
}

.button.ghost {
  border: 2px solid var(--line-strong);
  color: var(--accent);
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--surface);
}

.button.ghost:hover {
  background: rgba(15, 118, 110, 0.06);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent-warm-soft);
  border: 1px solid rgba(194, 65, 12, 0.25);
  color: var(--accent-warm);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  text-transform: uppercase;
}

/* --- Hero --- */
.hero {
  padding: 48px 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: stretch;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(55%, 280px);
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(15, 118, 110, 0.12), transparent 65%);
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #14b8a6);
  border-radius: 4px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw + 1rem, 3.15rem);
  margin: 16px 0 12px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.hero-tagline {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.lead {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.bullet-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-wash);
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: var(--text-soft);
}

.bullet-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  line-height: 1;
}

.hero-visual {
  position: relative;
  background: linear-gradient(160deg, var(--bg-mint) 0%, #c5ebe3 50%, var(--bg-wash) 100%);
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 380px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.5), transparent 55%);
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px dashed rgba(15, 118, 110, 0.2);
  border-radius: calc(var(--radius-xl) - 14px);
  pointer-events: none;
}

.hero-visual img {
  width: 76%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(19, 34, 31, 0.2));
  position: relative;
  z-index: 1;
}

.section {
  padding: 36px 0;
}

.page-home main > .section:nth-child(even) {
  background: linear-gradient(180deg, rgba(230, 242, 239, 0.65) 0%, transparent 100%);
  margin: 0;
  border-radius: 0;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.section-title {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section-subtitle {
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 720px;
  font-size: 1.05rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 118, 110, 0.2);
}

.feature-card h3,
.card h3 {
  margin: 6px 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

.muted {
  color: var(--muted);
}

.stat-card {
  background: linear-gradient(135deg, #f0fdf9 0%, var(--surface) 100%);
  border: 1px solid rgba(15, 118, 110, 0.2);
}

.stat-card p {
  color: var(--text-soft);
  margin: 0;
}

.info-block {
  background: linear-gradient(160deg, #fffbeb 0%, var(--surface) 55%);
  border: 1px solid rgba(180, 83, 9, 0.2);
}

.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.lifestyle-grid .image-frame {
  aspect-ratio: 4/3;
}

.lifestyle-grid .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-caption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--bg-page);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.step a {
  color: var(--accent);
  font-weight: 700;
}

.step a:hover {
  text-decoration: underline;
}

.step-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #14b8a6, var(--accent));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.35);
}

.callout {
  background: var(--bg-wash);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.order-section {
  background: linear-gradient(135deg, #ecfdf8 0%, #fff7ed 100%);
  border: 2px solid rgba(15, 118, 110, 0.25);
  box-shadow: var(--shadow-lg);
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: start;
}

.form {
  display: grid;
  gap: 16px;
}

.form label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.88rem;
}

.input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.15);
}

/* --- Footer: dark band --- */
.footer {
  margin-top: 48px;
  padding: 40px 0 48px;
  background: linear-gradient(180deg, #1c1917 0%, #0f0e0d 100%);
  border-top: 4px solid #14b8a6;
  color: #e7e5e4;
}

.footer-grid {
  display: grid;
  gap: 20px;
}

.footer a {
  color: #fafaf9;
  font-weight: 600;
}

.footer a:hover {
  color: #5eead4;
}

.footer small,
.footer .legal-line {
  color: #a8a29e;
  font-size: 0.84rem;
  line-height: 1.6;
}

.footer .muted {
  color: #d6d3d1;
}

.content-page {
  padding: 48px 0 32px;
  min-height: 50vh;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.content-card h1,
.content-card h2 {
  margin-top: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.content-card p {
  margin: 0 0 16px;
}

.list-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-wash);
  font-weight: 600;
  color: var(--muted);
}

.legal-text p {
  color: var(--text-soft);
}

.legal-text p strong {
  color: var(--accent);
}

.page-home .hero h1 .accent-word {
  color: var(--accent-warm);
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-2,
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .site-header .inner {
    flex-wrap: wrap;
  }

  .contact-inline {
    display: block;
    width: 100%;
    text-align: center;
    padding-top: 4px;
  }

  .hero-grid {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  :root {
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
  }

  body {
    background-image:
      radial-gradient(ellipse 120% 80% at 100% -20%, rgba(15, 118, 110, 0.12), transparent 55%),
      radial-gradient(ellipse 90% 60% at 0% 100%, rgba(194, 65, 12, 0.06), transparent 50%);
  }

  .hero {
    padding-top: 28px;
  }

  .panel,
  .hero-card,
  .hero-visual,
  .content-card {
    padding: 22px 18px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}
