:root {
  --canvas: #f7f3ea;
  --surface: #fffdf8;
  --forest: #27382d;
  --sage: #9aaa91;
  --terracotta: #c58f73;
  --orchid: #8f68a8;
  --muted: #736d63;
  --line: rgba(39, 56, 45, 0.14);
  --shadow: 0 28px 80px rgba(39, 56, 45, 0.12);
  --radius: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Lato", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--forest);
  background:
    radial-gradient(circle at 12% 10%, rgba(154, 170, 145, 0.22), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(197, 143, 115, 0.16), transparent 24rem),
    var(--canvas);
  font-family: var(--sans);
  line-height: 1.65;
}

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

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

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1120px, calc(100% - 24px));
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: background 500ms var(--ease), border-color 500ms var(--ease), box-shadow 500ms var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 18px 44px rgba(39, 56, 45, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  object-fit: contain;
  background: var(--surface);
}

.site-nav {
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 112px 16px 72px;
}

.hero-shape {
  position: absolute;
  inset: 10% 8%;
  z-index: -1;
  border-radius: 45% 55% 50% 50%;
  background: radial-gradient(circle, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.16) 62%, transparent 72%);
  animation: breathe 8s ease-in-out infinite;
}

.hero-inner {
  display: grid;
  gap: 42px;
  justify-items: center;
  width: min(920px, 100%);
  text-align: center;
}

.hero-logo {
  width: min(300px, 68vw);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: var(--shadow);
}

.hero-logo img {
  width: 100%;
  border-radius: 24px;
  background: var(--surface);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orchid);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.9;
  text-wrap: balance;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(5rem, 13vw, 12rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 6.4vw, 6.4rem);
}

.hero-copy p,
.essence p {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 13px 22px;
  color: var(--surface);
  background: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 500ms var(--ease);
}

.button:hover {
  background: var(--sage);
}

.essence,
.collection,
.social {
  padding-block: clamp(82px, 12vw, 150px);
}

.essence {
  max-width: 920px;
  text-align: center;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.product-card a {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.7);
  box-shadow: 0 18px 58px rgba(39, 56, 45, 0.07);
}

.product-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #efe6d6;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1100ms var(--ease);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card strong {
  padding: 24px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  line-height: 1;
}

.social {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.social-links {
  display: grid;
  border-top: 1px solid var(--line);
}

.social-links a {
  display: grid;
  gap: 4px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.social-links span {
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.social-links strong {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 46px max(16px, calc((100% - 1120px) / 2));
  color: rgba(255, 253, 248, 0.76);
  background: var(--forest);
}

.site-footer strong {
  color: var(--surface);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.9;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 780px) {
  .site-nav {
    gap: 12px;
    font-size: 0.76rem;
  }

  .site-nav a:nth-child(2) {
    display: none;
  }

  .brand span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-grid,
  .social {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    width: min(100% - 18px, 1120px);
  }

  .site-nav a:nth-child(1) {
    display: none;
  }

  h1 {
    font-size: clamp(4.3rem, 22vw, 6.2rem);
  }

  .button {
    width: 100%;
  }
}
