:root {
  --ink: #172026;
  --muted: #6f7780;
  --mist: #f7f5f1;
  --paper: #fffdf9;
  --line: #e4ddd3;
  --sea: #6f93a2;
  --sea-dark: #476a78;
  --sand: #d8c9b3;
  --shadow: 0 26px 70px rgba(23, 32, 38, 0.08);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(22px, 5vw, 80px);
  background: rgba(255, 253, 249, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 221, 211, 0.7);
}
.brand {
  text-decoration: none;
  display: grid;
  gap: 0;
  line-height: 0.9;
}
.brand span {
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand small {
  font-family: "Cormorant Garamond", serif;
  color: var(--muted);
  font-size: 21px;
  letter-spacing: -0.02em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 600;
}
.main-nav a {
  text-decoration: none;
  position: relative;
  padding: 8px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--sea-dark);
  transition: width .26s ease;
}
.main-nav a:hover::after { width: 100%; }
.menu-toggle { display: none; }

.section {
  padding: clamp(70px, 9vw, 130px) clamp(22px, 5vw, 80px);
  max-width: 1510px;
  margin: 0 auto;
}
.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(42px, 6vw, 90px);
  align-items: center;
  padding-top: clamp(50px, 7vw, 100px);
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--sea-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 800;
}
h1, h2, h3 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 0.94;
}
h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }
h1 { font-size: clamp(56px, 8vw, 116px); max-width: 760px; }
h2 { font-size: clamp(43px, 5.9vw, 84px); max-width: 780px; }
h3 { font-size: clamp(28px, 3vw, 48px); }
.lead {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 29px);
  max-width: 650px;
}
.lead.small { font-size: clamp(18px, 1.7vw, 24px); }
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
}
.actions.compact { margin-top: 32px; }
.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn.primary { background: var(--ink); color: white; }
.btn.secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.text-link {
  display: inline-flex;
  margin-top: 30px;
  color: var(--sea-dark);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
}
.hero-visual {
  position: relative;
}
.hero-visual img, .image-frame img, .routine-visual img, .collection-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}
.hero-visual img {
  width: 100%;
  aspect-ratio: 1.17 / 1;
  object-fit: cover;
}
.image-caption {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-style: italic;
  text-align: center;
}
.soft-orb {
  position: absolute;
  inset: auto -7% -9% auto;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(111, 147, 162, .22), transparent 68%);
  z-index: -1;
}
.intro-strip {
  max-width: 1510px;
  margin: 0 auto;
  padding: 26px clamp(22px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 72px);
  border-block: 1px solid var(--line);
  color: var(--sea-dark);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  font-size: 12px;
}
.intro-strip i {
  width: 92px;
  height: 1px;
  background: var(--sand);
}
.split, .routine-section, .collection, .contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 6vw, 100px);
  align-items: center;
}
.section-copy p, .contact-copy p, .collection-copy p, .section-heading p {
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  max-width: 680px;
}
.image-frame img { width: 100%; aspect-ratio: 1.08 / 1; object-fit: cover; }
.routine-section { background: linear-gradient(180deg, transparent 0%, rgba(247,245,241,.76) 100%); max-width: none; }
.routine-section > * { max-width: 650px; }
.routine-section .routine-visual { max-width: 660px; }
.routine-visual img { aspect-ratio: .80 / 1; object-fit: cover; width: 100%; }
.routine-steps {
  margin-top: 38px;
  display: grid;
  gap: 22px;
}
.routine-steps article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.routine-steps span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--sea-dark);
  font-size: 12px;
  font-weight: 800;
}
.routine-steps h3 {
  font-family: Inter, sans-serif;
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.routine-steps p { margin: 0; color: var(--muted); }
.products { display: grid; gap: 74px; }
.section-heading { max-width: 830px; text-align: center; margin: 0 auto; }
.product-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
  padding: clamp(22px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 12px);
  background: rgba(255,255,255,.58);
}
.product-card.reverse .product-image { order: 2; }
.product-image {
  background: white;
  border-radius: var(--radius);
  min-height: 470px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-image img { width: 100%; height: 100%; object-fit: contain; }
.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.product-title-row h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 78px);
  letter-spacing: -0.04em;
}
.product-title-row span {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  white-space: nowrap;
  margin-top: 8px;
}
.subtitle {
  margin: 14px 0 28px;
  color: var(--sea-dark);
  font-weight: 800;
  font-size: 18px;
}
.description {
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  max-width: 750px;
}
.details-grid {
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 38px;
}
.details-grid div { margin: 0; }
dt {
  font-weight: 800;
  margin-bottom: 9px;
}
dd {
  margin: 0;
  color: var(--muted);
}
.collection {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-list {
  list-style: none;
  margin: 36px 0;
  padding: 0;
  max-width: 590px;
}
.product-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}
.product-list em { color: var(--muted); font-style: normal; font-weight: 500; }
.price-box small {
  display: block;
  color: var(--sea-dark);
  font-weight: 800;
  margin-bottom: 8px;
}
.price-box strong {
  display: block;
  font-size: clamp(44px, 5vw, 72px);
  line-height: .9;
}
.collection-image img { width: 100%; aspect-ratio: .85 / 1; object-fit: cover; }
.contact {
  align-items: start;
}
.contact-copy {
  position: sticky;
  top: 130px;
}
.contact-links {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.contact-links a {
  text-decoration: none;
  color: var(--sea-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
  border-bottom: 1px solid var(--sea-dark);
}
.contact-form {
  padding: clamp(28px, 4vw, 54px);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 4vw, 64px);
  margin-bottom: 10px;
}
.contact-form p { color: var(--muted); margin-top: 0; }
label {
  display: grid;
  gap: 9px;
  margin-top: 20px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sea-dark);
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 17px 18px;
  font: inherit;
  background: white;
  color: var(--ink);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 4px rgba(111,147,162,.12);
}
textarea { resize: vertical; }
.contact-form button { margin-top: 24px; width: 100%; }
.form-note {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}
.site-footer {
  max-width: 1510px;
  margin: 0 auto;
  padding: 36px clamp(22px, 5vw, 80px) 56px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.site-footer strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--ink);
}
.site-footer a { color: var(--sea-dark); text-decoration: none; font-weight: 800; }
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 16px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 12px;
    font-weight: 800;
  }
  .main-nav {
    position: fixed;
    top: 87px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,253,249,.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .hero, .split, .routine-section, .collection, .contact, .product-card {
    grid-template-columns: 1fr;
  }
  .product-card.reverse .product-image { order: 0; }
  .contact-copy { position: static; }
  .routine-section > *, .routine-section .routine-visual { max-width: none; }
  .intro-strip { gap: 16px; }
  .intro-strip i { width: 42px; }
}

@media (max-width: 640px) {
  .site-header { padding: 18px 20px; }
  .brand span { font-size: 25px; }
  .brand small { font-size: 18px; }
  .section { padding: 62px 20px; }
  h1 { font-size: 52px; }
  h2 { font-size: 43px; }
  .lead { font-size: 19px; }
  .btn { width: 100%; }
  .actions { width: 100%; }
  .product-title-row { display: grid; }
  .details-grid { grid-template-columns: 1fr; }
  .product-image { min-height: 360px; }
  .site-footer { flex-direction: column; }
}
