:root {
  --bg: oklch(0.97 0.01 85);
  --surface: oklch(1 0 0);
  --text: oklch(0.2 0.01 60);
  --muted: oklch(0.5 0.03 70);
  --accent: oklch(0.62 0.12 35);
  --accent-2: oklch(0.53 0.09 310);
  --line: oklch(0.88 0.02 80);
  --radius: 16px;
  --shadow: 0 12px 35px oklch(0.2 0.02 60 / 0.1);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; border-radius: 14px; }
a { color: inherit; text-decoration: none; }

.container { width: min(1120px, 92vw); margin: 0 auto; }
.section { padding: 84px 0; }
.section.alt { background: oklch(0.94 0.02 85); }

h1, h2, h3 { font-family: "Cormorant Garamond", serif; line-height: 1.1; margin: 0 0 14px; }
h1 { font-size: clamp(2.1rem, 4.6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.3vw, 2.9rem); }
h3 { font-size: 1.45rem; }
.lead, .sub { color: var(--muted); font-size: 1.08rem; }

.topbar {
  position: sticky; top: 0; z-index: 12;
  backdrop-filter: blur(8px);
  background: oklch(0.97 0.01 85 / 0.86);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; justify-content: space-between; align-items: center; min-height: 74px; gap: 18px; }
.brand { font-family: "Cormorant Garamond", serif; font-weight: 700; font-size: 1.4rem; }
nav { display: flex; align-items: center; gap: 18px; font-size: .95rem; }

.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 36px;
  padding: 72px 0 54px;
}
.eyebrow { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.hero-image img { box-shadow: var(--shadow); min-height: 520px; object-fit: cover; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 11px 20px;
  border-radius: 999px; border: 1px solid transparent;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff; font-weight: 600;
  transition: transform .16s ease, opacity .16s ease;
}
.btn:hover { transform: translateY(-2px); opacity: .94; }
.btn:active { transform: scale(.98); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-sm { min-height: 38px; padding: 8px 15px; font-size: .92rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.grid { display: grid; gap: 18px; }
.gallery { grid-template-columns: repeat(4, 1fr); margin-top: 24px; }
.gallery article { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; box-shadow: 0 8px 24px oklch(0.2 0.02 60 / 0.05); }
.gallery p { margin: 10px 4px 2px; color: var(--muted); font-size: .95rem; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }
.card, .instagram-box, .video-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 28px oklch(0.2 0.02 60 / 0.06);
}

.video-card video {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #000;
}
ul { padding-left: 18px; }
li { margin: 8px 0; }

.steps { grid-template-columns: repeat(4, 1fr); margin-top: 20px; }
.steps article { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.steps span {
  width: 32px; height: 32px; display: grid; place-items: center;
  border-radius: 999px; color: #fff;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  font-weight: 700; margin-bottom: 12px;
}

.cta { color: #fff; background: linear-gradient(130deg, oklch(0.34 0.04 15), oklch(0.37 0.06 300)); }
.cta-wrap { text-align: center; }
.cta .btn-ghost { color: #fff; border-color: oklch(0.93 0.01 85 / 0.45); }
.footer { border-top: 1px solid var(--line); padding: 24px 0 40px; color: var(--muted); text-align: center; font-size: .92rem; }

@media (max-width: 980px) {
  nav a:not(.btn) { display: none; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 42px; }
  .hero-image img { min-height: 380px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 62px 0; }
  .gallery, .steps { grid-template-columns: 1fr; }
  .btn { width: 100%; }
}