:root {
  color-scheme: light dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --ink: #28251f;
  --muted: #716c62;
  --line: rgba(94, 75, 53, .2);
  --paper: #f7f2e9;
  --link: #755037;
}

* { box-sizing: border-box; }

html { min-height: 100%; background: var(--paper); }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(ellipse 64% 78% at 76% 41%, rgba(244, 185, 117, .22), transparent 74%),
    linear-gradient(134deg, #fbf8f1 0%, var(--paper) 55%, #f1e8dd 100%);
}

a { color: inherit; }
a:focus-visible { outline: 2px solid var(--link); outline-offset: 5px; border-radius: 2px; }

.page-shell {
  width: min(100%, 1600px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 0 clamp(26px, 5.2vw, 92px);
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

.site-header, .site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.site-header {
  min-height: 114px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.025em;
  text-decoration: none;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffc577, #d67d50);
  box-shadow: 0 0 0 5px rgba(215, 133, 80, .09);
}

.header-note, .eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

main { flex: 1; display: flex; }

.intro {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 660px;
  isolation: isolate;
}

.sun-glow {
  position: absolute;
  z-index: -1;
  width: min(45vw, 590px);
  aspect-ratio: 1;
  right: 7%;
  top: 50%;
  transform: translateY(-53%);
  border-radius: 50%;
  background: radial-gradient(circle at 42% 37%, #ffe0a0 0%, #f7bd78 42%, #e99469 68%, #d76e5b 100%);
  box-shadow: 0 0 100px 18px rgba(221, 133, 84, .16), inset -30px -40px 90px rgba(171, 76, 68, .14);
  opacity: .86;
}

.intro-content { padding: 56px 0 70px; max-width: 710px; }
.eyebrow { margin: 0 0 28px; }

h1 {
  margin: 0;
  font-size: clamp(74px, 9.5vw, 152px);
  font-weight: 530;
  letter-spacing: -.055em;
  word-spacing: .07em;
  line-height: .95;
}

h1 em { font-style: normal; font-weight: 270; }

.description {
  max-width: 480px;
  margin: 38px 0 0;
  font-size: clamp(21px, 2.3vw, 29px);
  font-weight: 350;
  line-height: 1.38;
  letter-spacing: -.035em;
}

.hairline { width: 42px; height: 1px; margin: 38px 0 28px; background: var(--link); }
.product-note { margin: 0 0 18px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.contact-link { color: var(--link); font-size: 15px; font-weight: 550; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.contact-link span { display: inline-block; padding-left: 4px; text-decoration: none; }

.site-footer {
  min-height: 93px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .site-header { min-height: 82px; }
  .header-note { display: none; }
  .intro { min-height: 650px; align-items: flex-start; overflow: hidden; }
  .intro-content { padding: 100px 0 100px; }
  .sun-glow { width: 235px; right: -70px; top: auto; bottom: -135px; transform: none; opacity: .58; }
  h1 { font-size: clamp(70px, 16vw, 108px); }
  .description { max-width: 330px; margin-top: 32px; }
  .site-footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 3px; padding: 22px 0; }
}

@media (prefers-color-scheme: dark) {
  :root { --ink: #f6f0e7; --muted: #b7aa9b; --line: rgba(230, 210, 187, .18); --paper: #171b22; --link: #eab38b; }
  body {
    background:
      radial-gradient(ellipse 70% 75% at 78% 44%, rgba(167, 90, 64, .21), transparent 76%),
      linear-gradient(140deg, #20232b, #171b22 56%, #242029);
  }
  .brand-mark { box-shadow: 0 0 0 5px rgba(235, 170, 115, .08); }
  .sun-glow { background: radial-gradient(circle at 40% 34%, #f7c57f, #d98962 50%, #9e4f4c 100%); opacity: .68; box-shadow: 0 0 120px 24px rgba(216, 113, 75, .16); }
}

@media (prefers-reduced-motion: no-preference) {
  .contact-link, .brand { transition: opacity .2s ease; }
  .contact-link:hover, .brand:hover { opacity: .7; }
}
