
:root {
  --bg: #f7f3ef;
  --paper: #fffaf6;
  --text: #27221f;
  --muted: #726a64;
  --line: rgba(39, 34, 31, 0.14);
  --accent: #c97f68;
  --accent-soft: #edc6b8;
  --deep: #4c3f3a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px clamp(24px, 5vw, 72px);
  background: rgba(247, 243, 239, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.02em;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

nav a:hover { color: var(--text); }

main {
  max-width: 1440px;
  margin: 0 auto;
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 64px;
  padding: 9vw clamp(24px, 7vw, 110px);
}

.eyebrow, .section-label {
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

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

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(56px, 7.5vw, 112px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 em {
  font-weight: 500;
  color: var(--accent);
}

.hero-text {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid var(--text);
  padding-bottom: 4px;
}

.hero-art {
  position: relative;
  min-height: 520px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
}

.orb-one {
  width: 300px;
  height: 300px;
  top: 20px;
  right: 10%;
  background: var(--accent-soft);
}

.orb-two {
  width: 220px;
  height: 220px;
  left: 5%;
  bottom: 35px;
  background: #d8d0c8;
}

.line {
  position: absolute;
  left: 24%;
  top: 50%;
  width: 56%;
  height: 1px;
  background: var(--deep);
  transform: rotate(-24deg);
  transform-origin: center;
}

.dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--deep);
}

.dot-one { left: 19%; top: 61%; }
.dot-two { right: 18%; top: 32%; }

.statement {
  border-top: 1px solid var(--line);
  padding: 110px clamp(24px, 7vw, 110px);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}

.statement h2,
.product h2,
.contact h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.statement-copy {
  color: var(--muted);
  font-size: 18px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles article {
  padding: 54px clamp(24px, 4vw, 56px);
  min-height: 280px;
}

.principles article + article {
  border-left: 1px solid var(--line);
}

.principles span {
  display: block;
  margin-bottom: 55px;
  color: var(--accent);
  font-size: 13px;
}

.principles h3 {
  font-size: 22px;
  font-weight: 500;
}

.principles p {
  max-width: 360px;
  color: var(--muted);
}

.product {
  padding: 110px clamp(24px, 7vw, 110px);
}

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(28px, 5vw, 72px);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  color: var(--muted);
  font-size: 13px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: #fff;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  align-items: end;
}

.product-copy {
  color: var(--muted);
  font-size: 18px;
}

.muted {
  color: #9b918a;
}

.contact {
  padding: 120px clamp(24px, 7vw, 110px) 150px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 26px;
}

.contact p {
  color: var(--muted);
  font-size: 17px;
}

.contact a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--text);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(24px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

footer a {
  text-decoration: none;
}

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

  .hero {
    padding-top: 90px;
  }

  .hero-art {
    min-height: 360px;
  }

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

  .principles article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .product-meta {
    margin-bottom: 56px;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 18px 20px;
  }

  nav {
    gap: 14px;
  }

  nav a {
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    gap: 24px;
    padding: 74px 20px 58px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 76px);
  }

  .hero-art {
    min-height: 300px;
  }

  .orb-one {
    width: 210px;
    height: 210px;
  }

  .orb-two {
    width: 155px;
    height: 155px;
  }

  .statement,
  .product,
  .contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .statement {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .product {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .contact {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .product-card {
    border-radius: 22px;
  }
}
