:root {
  --bg: #f8f3ef;
  --bg-soft: #fdf9f6;
  --rose: #d6a9b2;
  --rose-deep: #b87987;
  --beige: #eadccf;
  --ink: #211b1c;
  --muted: #6e5d62;
  --line: rgba(33, 27, 28, 0.12);
  --panel: rgba(255, 255, 255, 0.74);
  --shadow: 0 20px 50px rgba(140, 109, 117, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #fff9f6 0%, var(--bg) 45%, #f6eeea 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 248, 244, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 32px;
  height: 32px;
  display: block;
}

.brand-text {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1.06rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.site-nav a {
  padding: 0.42rem 0;
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.1rem 1.25rem 5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 2.2rem;
  align-items: center;
}

.kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.hero h1,
.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4.5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  font-weight: 600;
}

.hero p,
.lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 56ch;
}

.hero-actions,
.inline-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.76rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.79rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--rose), var(--rose-deep));
  color: #fff;
  box-shadow: 0 16px 36px rgba(184, 121, 135, 0.3);
}

.btn.primary:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
}

.btn.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.btn.ghost:hover {
  border-color: rgba(33, 27, 28, 0.35);
}

.hero-visual {
  position: relative;
  width: min(100%, 760px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin-left: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.hero-visual::after {
  content: none;
}

.unicorn-shell {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
}

.unicorn-shell > div[data-us-project] {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  max-height: none;
  transform: scale(2);
  transform-origin: center center;
  background: #fffaf7 !important;
  border-radius: 18px;
}

.section {
  margin-top: 4.6rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.card-body {
  padding: 1rem 1rem 1.15rem;
}

.card-body h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
}

.price {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.2rem;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel-pad {
  padding: 1.4rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.metric {
  padding: 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(33, 27, 28, 0.08);
}

.metric strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.media-cover {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quote {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
}

.quote p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.quote .who {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 5.2rem;
  padding-top: 1.6rem;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-visual,
  .unicorn-shell {
    min-height: 0;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .card-grid,
  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    border-top: 1px solid var(--line);
    margin-top: 0.8rem;
    padding-top: 0.9rem;
  }

  .site-nav.open {
    display: flex;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .card-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .unicorn-shell {
    min-height: 0;
  }

  .hero-visual {
    width: min(100%, 500px);
    margin: 0 auto;
  }

  .page {
    padding-top: 2.2rem;
  }
}
