:root {
  --paper: #f3efe6;
  --ink: #17201b;
  --muted: #626a63;
  --forest: #18392c;
  --forest-dark: #0f2a21;
  --line: rgba(23, 32, 27, 0.12);
  --white: #fffdf8;
  --shadow: 0 28px 80px rgba(20, 30, 24, 0.13);
}

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

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(35, 53, 42, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(23, 32, 27, 0.14);
}

.instagram-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.instagram-link:hover { color: var(--ink); }

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.eyebrow {
  margin: 0 0 18px;
  color: #627865;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin-bottom: 1.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 10vw, 9rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.07em;
}

.lede {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2.2rem;
}

.button,
.store-pill {
  min-height: 50px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.button-primary {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}
.button-primary:hover { background: var(--forest-dark); }

.store-pill {
  background: rgba(255, 255, 255, 0.34);
  color: #687068;
}
.store-pill small { font-weight: 600; opacity: 0.66; }

.hero-art {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 250, 223, 0.52), transparent 19%),
    linear-gradient(145deg, #d7c7a8 0%, #b6b18c 45%, #60765d 100%);
  box-shadow: var(--shadow);
}

.sun {
  position: absolute;
  top: 84px;
  right: 68px;
  width: 158px;
  height: 158px;
  border-radius: 50%;
  background: rgba(255, 239, 198, 0.44);
}

.horizon {
  position: absolute;
  left: -14%;
  width: 128%;
  border-radius: 50%;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}
.horizon-one { height: 290px; bottom: 76px; transform: rotate(-5deg); }
.horizon-two { height: 220px; bottom: 18px; transform: rotate(4deg); opacity: 0.75; }

.icon-card {
  position: absolute;
  left: 50%;
  top: 56%;
  width: 142px;
  height: 142px;
  padding: 18px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 54px rgba(24, 57, 44, 0.18);
}
.icon-card img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

.closing {
  background: var(--ink);
  color: var(--paper);
}

.closing-inner {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.closing p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}
.closing a {
  flex: 0 0 auto;
  color: #c5d2c5;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.closing a:hover { color: white; }

.site-footer {
  background: #111914;
  color: white;
}
.footer-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand { font-size: 16px; }
.footer-inner p { margin: 0; color: #89948b; font-size: 12px; }

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }
  .hero-art { min-height: 400px; }
  .closing-inner { align-items: flex-start; flex-direction: column; justify-content: center; }
}

@media (max-width: 620px) {
  .section-shell,
  .site-header { width: min(100% - 26px, 1180px); }
  .site-header { min-height: 72px; }
  .brand img { width: 38px; height: 38px; }
  .hero-copy h1 { font-size: clamp(4rem, 22vw, 6.3rem); }
  .lede { font-size: 17px; }
  .actions { flex-direction: column; align-items: stretch; }
  .button,
  .store-pill { width: 100%; }
  .hero-art { min-height: 330px; border-radius: 28px; }
  .sun { top: 52px; right: 34px; width: 120px; height: 120px; }
  .icon-card { width: 116px; height: 116px; border-radius: 28px; }
  .icon-card img { border-radius: 20px; }
  .footer-inner { padding: 1.8rem 0; align-items: flex-start; flex-direction: column; }
}
