:root {
  --ink: #242823;
  --muted: #655c4d;
  --cream: #f5eddb;
  --cream-deep: #e9dcc2;
  --paper: #fffaf0;
  --brown: #734536;
  --brown-dark: #4e2d25;
  --gold: #b89550;
  --sage: #6f7f68;
  --line: rgba(78, 45, 37, 0.15);
  --shadow: 0 24px 70px rgba(65, 46, 28, 0.14);
  --radius: 30px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.72), transparent 30rem),
    var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 14px 0;
  background: rgba(245, 237, 219, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.scrolled { border-bottom-color: var(--line); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(78, 45, 37, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover, .nav-links a:focus-visible { color: var(--brown); }

.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--brown);
  color: white !important;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(115, 69, 54, 0.20);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta { min-height: 42px; padding-inline: 17px; }
.nav-cta:hover, .button:hover { transform: translateY(-2px); background: var(--brown-dark); }
.button.secondary { background: transparent; border-color: var(--line); color: var(--ink) !important; box-shadow: none; }
.button.secondary:hover { background: rgba(255, 250, 240, 0.65); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  color: var(--ink);
}

.nav-toggle svg { width: 21px; margin: auto; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 130px) 0 68px;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 520px;
  height: 520px;
  right: -180px;
  top: 20px;
  border: 1px solid rgba(184, 149, 80, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 0 70px rgba(255,255,255,.10), inset 0 0 0 71px rgba(184, 149, 80, 0.10);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(44px, 8vw, 100px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--brown);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 27px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3, .quote {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.65rem);
  font-weight: 500;
  line-height: 0.98;
}

.accent-script { color: var(--brown); font-style: italic; }

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note { margin-top: 16px !important; font-size: 0.82rem !important; opacity: 0.8; }

.phone-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.sun-disc {
  position: absolute;
  width: min(92%, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,.65), rgba(233,220,194,.6));
  border: 1px solid rgba(184, 149, 80, 0.22);
}

.phone {
  position: relative;
  z-index: 2;
  width: 292px;
  height: 592px;
  padding: 9px;
  border: 2px solid #332a24;
  border-radius: 48px;
  background: #332a24;
  box-shadow: 0 38px 70px rgba(57, 39, 25, 0.28);
  transform: rotate(2.5deg);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 38px;
  background: linear-gradient(#f8f1e5 0%, #eadfc9 100%);
}

.phone-island { position: absolute; z-index: 5; top: 11px; left: 50%; width: 86px; height: 24px; border-radius: 20px; background: #231e1b; transform: translateX(-50%); }
.phone-top { display: flex; justify-content: space-between; padding: 19px 23px 0; font-size: 0.67rem; font-weight: 800; }
.room-copy { position: relative; z-index: 2; padding: 43px 26px 0; }
.room-copy span { color: var(--muted); font-size: .72rem; }
.room-copy h3 { margin: 3px 0; font-size: 1.65rem; font-weight: 500; }
.streak { display: inline-flex; margin-top: 12px; padding: 7px 11px; border-radius: 999px; background: rgba(255,250,240,.75); color: var(--brown); font-size: .66rem; font-weight: 800; border: 1px solid var(--line); }
.window { position: absolute; width: 118px; height: 162px; right: 16px; top: 153px; border: 8px solid #8f6548; border-bottom-width: 11px; border-radius: 55px 55px 4px 4px; background: linear-gradient(#e9c98d, #f7e7c7); box-shadow: inset 0 -50px 0 rgba(255,255,255,.25); }
.window::before, .window::after { content: ""; position: absolute; background: rgba(115,69,54,.35); }
.window::before { width: 3px; height: 100%; left: 50%; }
.window::after { height: 3px; width: 100%; top: 49%; }
.shelf { position: absolute; width: 148px; height: 12px; left: 17px; top: 323px; border-radius: 4px; background: #8a6045; box-shadow: 0 8px 0 #704735; }
.book { position: absolute; bottom: 12px; width: 19px; border-radius: 2px 2px 0 0; background: var(--sage); }
.book.one { height: 49px; left: 18px; transform: rotate(-5deg); }
.book.two { height: 57px; left: 43px; background: var(--brown); }
.book.three { height: 42px; left: 68px; background: var(--gold); transform: rotate(4deg); }
.rug { position: absolute; width: 230px; height: 100px; left: 30px; bottom: 48px; border-radius: 50%; background: rgba(184,149,80,.22); border: 1px solid rgba(115,69,54,.13); }
.phone-cat { position: absolute; z-index: 2; width: 205px; left: 44px; bottom: 57px; filter: drop-shadow(0 10px 12px rgba(71,48,30,.10)); }
.phone-dock { position: absolute; z-index: 4; left: 17px; right: 17px; bottom: 12px; display: flex; justify-content: space-around; padding: 12px 8px; border: 1px solid rgba(255,255,255,.7); border-radius: 22px; background: rgba(255,250,240,.72); box-shadow: 0 8px 24px rgba(65,46,28,.11); backdrop-filter: blur(12px); }
.dock-dot { width: 18px; height: 18px; border: 2px solid #776958; border-radius: 6px; }
.dock-dot.active { border-color: var(--brown); background: rgba(115,69,54,.16); }

.floating-note {
  position: absolute;
  z-index: 4;
  width: 210px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 20px;
  background: rgba(255,250,240,.90);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.floating-note.top { top: 76px; right: -18px; transform: rotate(-3deg); }
.floating-note.bottom { left: -28px; bottom: 77px; transform: rotate(3deg); }
.note-label { display: flex; align-items: center; gap: 7px; color: var(--brown); font-size: .69rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.note-label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.floating-note p { margin: 8px 0 0; font-family: Georgia, serif; font-size: 1.03rem; line-height: 1.35; }

.trust-strip { padding: 20px 0; border-block: 1px solid var(--line); }
.trust-items { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; color: var(--muted); font-size: .83rem; font-weight: 750; }
.trust-items span { display: inline-flex; align-items: center; gap: 8px; }
.trust-items span::before { content: "✦"; color: var(--gold); }

.section { padding: clamp(85px, 11vw, 145px) 0; }
.section-heading { max-width: 720px; margin-bottom: 50px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 4.6rem); font-weight: 500; line-height: 1.05; }
.section-heading p { margin: 20px 0 0; color: var(--muted); font-size: 1.08rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 330px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,250,240,.55); box-shadow: 0 16px 45px rgba(65,46,28,.06); }
.feature-card:nth-child(2) { transform: translateY(22px); }
.feature-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 17px; color: var(--brown); background: rgba(184,149,80,.18); }
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { margin: 70px 0 12px; font-size: 1.7rem; font-weight: 600; }
.feature-card p { margin: 0; color: var(--muted); }

.bento { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, minmax(270px, auto)); gap: 18px; }
.bento-card { position: relative; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.bento-card.large { grid-row: span 2; min-height: 590px; background: linear-gradient(145deg, #6f4639, #4f3028); color: white; }
.bento-card h3 { position: relative; z-index: 2; margin: 0; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500; }
.bento-card p { position: relative; z-index: 2; max-width: 430px; margin: 12px 0 0; color: var(--muted); }
.bento-card.large p { color: rgba(255,255,255,.72); }
.mini-notes { display: grid; gap: 12px; margin-top: 50px; }
.mini-note { width: 78%; padding: 17px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: rgba(255,255,255,.1); box-shadow: 0 15px 30px rgba(0,0,0,.08); }
.mini-note:nth-child(2) { margin-left: auto; background: rgba(255,250,240,.94); color: var(--ink); transform: rotate(2deg); }
.mini-note:nth-child(3) { width: 68%; transform: rotate(-1deg); }
.mini-note small { display: block; margin-bottom: 4px; color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.mini-note p { margin: 0; color: inherit; font-family: Georgia, serif; font-size: 1.03rem; }
.widget-visual { position: absolute; width: 180px; height: 180px; right: -22px; bottom: -28px; padding: 22px; border-radius: 42px; background: linear-gradient(145deg, #efe2cb, #ddcaa7); box-shadow: 0 25px 45px rgba(65,46,28,.16); transform: rotate(-6deg); }
.widget-visual img { width: 95px; margin: 3px auto; }
.widget-visual strong { display: block; text-align: center; font-family: Georgia, serif; font-size: .9rem; }
.compass { position: absolute; width: 180px; height: 180px; right: -25px; bottom: -35px; border: 1px solid rgba(115,69,54,.15); border-radius: 50%; background: radial-gradient(circle, rgba(184,149,80,.15) 0 5%, transparent 6% 38%, rgba(115,69,54,.09) 39% 40%, transparent 41%); }
.compass::before { content: "◆"; position: absolute; left: 50%; top: 28px; color: var(--brown); font-size: 2.5rem; transform: translateX(-50%); }

.privacy-band { background: #222822; color: #f6f0e4; }
.privacy-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 90px; }
.privacy-band .eyebrow { color: #d8bd80; }
.privacy-band h2 { margin: 0; font-size: clamp(2.6rem, 5vw, 4.8rem); font-weight: 500; line-height: 1.03; }
.privacy-band p { color: rgba(246,240,228,.68); }
.privacy-points { display: grid; gap: 12px; }
.privacy-point { padding: 22px 24px; border: 1px solid rgba(255,255,255,.10); border-radius: 20px; background: rgba(255,255,255,.04); }
.privacy-point strong { display: block; margin-bottom: 4px; color: white; }
.privacy-point p { margin: 0; font-size: .92rem; }
.privacy-band .button.secondary { border-color: rgba(255,255,255,.18); color: white !important; }

.closing { text-align: center; }
.closing-card { position: relative; overflow: hidden; padding: clamp(60px, 9vw, 105px) 30px; border: 1px solid var(--line); border-radius: 42px; background: linear-gradient(145deg, rgba(255,250,240,.9), rgba(233,220,194,.75)); }
.closing-card::before, .closing-card::after { content: ""; position: absolute; width: 180px; height: 180px; border: 1px solid rgba(184,149,80,.18); border-radius: 50%; }
.closing-card::before { top: -90px; left: -50px; }
.closing-card::after { right: -40px; bottom: -100px; box-shadow: 0 0 0 45px rgba(184,149,80,.06); }
.closing-card h2 { position: relative; margin: 0 auto; max-width: 720px; font-size: clamp(2.7rem, 5.5vw, 5rem); font-weight: 500; line-height: 1.03; }
.closing-card p { position: relative; max-width: 570px; margin: 20px auto 28px; color: var(--muted); font-size: 1.06rem; }
.closing-card .button { position: relative; }

.site-footer { padding: 55px 0 34px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 32px; }
.footer-copy { max-width: 380px; margin: 15px 0 0; color: var(--muted); font-size: .88rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 36px; align-content: start; }
.footer-links a { color: var(--muted); font-size: .86rem; font-weight: 650; text-decoration: none; }
.footer-links a:hover { color: var(--brown); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }

/* Legal and support pages */
.page-hero { padding: clamp(70px, 9vw, 120px) 0 50px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 850px; font-size: clamp(3rem, 6vw, 5.7rem); }
.page-hero .lede { max-width: 700px; margin: 24px 0 0; color: var(--muted); font-size: 1.12rem; }
.page-meta { margin-top: 22px; color: var(--muted); font-size: .82rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.legal-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); justify-content: center; gap: 70px; padding: 65px 0 110px; }
.legal-nav { position: sticky; top: 100px; align-self: start; display: grid; gap: 9px; }
.legal-nav a { padding: 5px 0; color: var(--muted); font-size: .85rem; font-weight: 650; text-decoration: none; }
.legal-nav a:hover { color: var(--brown); }
.legal-copy section { scroll-margin-top: 110px; margin-bottom: 50px; }
.legal-copy h2 { margin: 0 0 16px; font-size: 2rem; font-weight: 600; letter-spacing: -.025em; }
.legal-copy h3 { margin: 28px 0 10px; font-size: 1.2rem; letter-spacing: -.01em; }
.legal-copy p, .legal-copy li { color: #504a40; }
.legal-copy ul { padding-left: 1.25rem; }
.legal-copy li + li { margin-top: 8px; }
.legal-copy a { color: var(--brown); font-weight: 700; }
.notice { padding: 20px 22px; border-left: 3px solid var(--gold); border-radius: 0 15px 15px 0; background: rgba(255,250,240,.65); }

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; padding: 65px 0 105px; }
.support-card { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,250,240,.55); }
.support-card h2 { margin: 0 0 10px; font-size: 1.45rem; }
.support-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.support-card a { display: inline-block; margin-top: 17px; color: var(--brown); font-weight: 800; text-decoration: none; }
.faq { max-width: 800px; padding-bottom: 115px; }
.faq h2 { font-size: 2.7rem; }
.faq details { border-top: 1px solid var(--line); padding: 19px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-family: Georgia, serif; font-size: 1.18rem; font-weight: 600; }
.faq details p { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 920px) {
  .hero-grid, .privacy-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions { justify-content: center; }
  .hero-copy > p { margin-inline: auto !important; }
  .phone-stage { min-height: 650px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 240px; }
  .feature-card:nth-child(2) { transform: none; }
  .feature-card h3 { margin-top: 38px; }
  .privacy-grid { gap: 45px; }
  .legal-layout { grid-template-columns: 1fr; gap: 30px; }
  .legal-nav { position: static; grid-template-columns: repeat(3, auto); overflow-x: auto; padding-bottom: 12px; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links { position: absolute; top: 71px; left: 14px; right: 14px; display: none; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,250,240,.97); box-shadow: var(--shadow); }
  .nav-links.open { display: grid; }
  .nav-links a { padding: 12px 14px; }
  .nav-links .nav-cta { margin-top: 6px; }
  .hero { padding-top: 75px; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .phone-stage { min-height: 585px; transform: scale(.9); margin: -10px -25px -45px; }
  .phone { width: 274px; height: 555px; }
  .floating-note { width: 180px; }
  .floating-note.top { right: 0; }
  .floating-note.bottom { left: 0; }
  .trust-items { display: grid; grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-card.large { grid-row: auto; min-height: 560px; }
  .bento-card { min-height: 290px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { display: grid; }
  .legal-nav { grid-template-columns: repeat(2, auto); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
