:root {
  color-scheme: light;
  --page: #f6f4ee;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --ink: #111827;
  --muted: #4b5563;
  --line: rgba(17, 24, 39, 0.18);
  --accent: #0f6b48;
  --accent-strong: #0a4b33;
  --focus: #b45309;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--accent-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  transform: translateY(-150%);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--surface-solid);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 4;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--page) 88%, transparent);
  backdrop-filter: blur(16px);
}

.site-nav {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.7rem 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
}

.nav-menu {
  justify-self: end;
}

.nav-menu summary {
  display: none;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 6px;
  padding: 0.48rem 0.7rem;
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px var(--line);
}

.memories-page .nav-list a,
.portfolio-page .nav-list a {
  color: var(--ink);
}

.memories-page .nav-list a:hover,
.memories-page .nav-list a[aria-current="page"],
.portfolio-page .nav-list a:hover,
.portfolio-page .nav-list a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
}

.app-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--page);
}

.app-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.72;
}

.calendar-page {
  --page: #17251f;
  --surface: rgba(255, 252, 241, 0.9);
  --surface-solid: #fffaf0;
  --ink: #fffaf0;
  --muted: #f3ead8;
  --line: rgba(255, 250, 240, 0.24);
  --accent: #d8b45a;
  --accent-strong: #ffe29a;
  --focus: #ffe15a;
}

.calendar-page::after {
  background:
    linear-gradient(90deg, rgba(9, 22, 16, 0.82) 0%, rgba(9, 22, 16, 0.62) 40%, rgba(9, 22, 16, 0.12) 100%),
    linear-gradient(180deg, rgba(9, 22, 16, 0.18), rgba(9, 22, 16, 0.72)),
    url("assets/calendar/meie-kalender-hero-bg.png");
  background-position: center;
  background-size: cover;
  opacity: 1;
}

.calendar-page .site-header {
  background: rgba(20, 35, 28, 0.78);
}

.calendar-page .brand,
.calendar-page .nav-list a {
  color: var(--ink);
}

.calendar-page .nav-list a:hover,
.calendar-page .nav-list a[aria-current="page"] {
  background: rgba(255, 250, 240, 0.14);
}

.calendar-page .nav-menu summary {
  color: #17251f;
}

.memories-page {
  --page: #181717;
  --surface: rgba(35, 34, 32, 0.86);
  --surface-solid: #241f1d;
  --ink: #fff7ed;
  --muted: #d7c7b6;
  --line: rgba(255, 247, 237, 0.2);
  --accent: #d28f52;
  --accent-strong: #ffd4a3;
  --focus: #fbbf24;
}

.memories-page::after {
  background:
    linear-gradient(90deg, rgba(9, 8, 8, 0.86) 0%, rgba(9, 8, 8, 0.66) 42%, rgba(9, 8, 8, 0.16) 100%),
    linear-gradient(180deg, rgba(9, 8, 8, 0.14), rgba(9, 8, 8, 0.72)),
    url("assets/memories/memories-hero-bg.png");
  background-position: center;
  background-size: cover;
  opacity: 1;
}

.portfolio-page {
  --page: #0c100f;
  --surface: rgba(22, 26, 24, 0.88);
  --surface-solid: #151a18;
  --ink: #f7f2e6;
  --muted: #d5ccba;
  --line: rgba(247, 242, 230, 0.18);
  --accent: #c6a055;
  --accent-strong: #f0dca6;
  --focus: #f5c542;
}

.portfolio-page::after {
  background:
    linear-gradient(90deg, rgba(8, 11, 10, 0.92) 0%, rgba(8, 11, 10, 0.66) 43%, rgba(8, 11, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 11, 10, 0.12), rgba(8, 11, 10, 0.78)),
    url("assets/portfolio/portfolio-hero-bg.png");
  background-position: center;
  background-size: cover;
  opacity: 1;
}

.shopping-page {
  --page: #261b13;
  --surface: rgba(255, 249, 237, 0.9);
  --surface-solid: #fff9ed;
  --ink: #fff7e8;
  --muted: #f1dfc0;
  --line: rgba(255, 247, 232, 0.22);
  --accent: #f0b454;
  --accent-strong: #ffe0a3;
  --focus: #32a071;
}

.shopping-page::after {
  background:
    linear-gradient(90deg, rgba(39, 25, 15, 0.9) 0%, rgba(39, 25, 15, 0.64) 44%, rgba(39, 25, 15, 0.18) 100%),
    linear-gradient(180deg, rgba(39, 25, 15, 0.14), rgba(39, 25, 15, 0.78)),
    url("assets/shopping/shopping-dark-frame.png");
  background-position: center top;
  background-size: cover;
  opacity: 1;
}

.shopping-page .nav-menu summary {
  color: #261b13;
}

.shopping-page .app-hero {
  align-items: start;
  min-height: auto;
  padding-top: 2.25rem;
  padding-bottom: 2.75rem;
}

.app-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 2rem;
  max-width: 1180px;
  min-height: calc(100vh - 4.2rem);
  margin: 0 auto;
  padding: 3rem 1.1rem 3.5rem;
}

.app-copy {
  max-width: 40rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.memories-page .eyebrow,
.portfolio-page .eyebrow {
  color: var(--accent);
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.12;
}

.lead {
  margin-bottom: 1.45rem;
  color: var(--muted);
  font-size: 1.22rem;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.store-row a {
  display: inline-flex;
  min-height: 46px;
}

.store-row img {
  width: auto;
  height: 46px;
}

.text-action {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.62rem 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-strong);
  font-weight: 850;
  text-decoration: none;
}

.text-action:hover {
  background: rgba(255, 255, 255, 0.16);
}

.mood-board {
  position: relative;
  min-height: 34rem;
}

.wide-shot,
.phone-shot {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.wide-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.phone-preview {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: var(--shadow);
}

.phone-preview img {
  width: 100%;
  aspect-ratio: 0.46 / 1;
  object-fit: cover;
  object-position: top center;
}

.phone-preview video {
  display: block;
  width: 100%;
  aspect-ratio: 1242 / 2208;
  object-fit: cover;
  object-position: top center;
}

.offset-phone {
  position: absolute;
  right: 0;
  bottom: -1rem;
  width: min(15rem, 34%);
}

.phone-shot {
  width: min(25rem, 86%);
  margin-left: auto;
  background: #fffaf0;
}

.phone-shot img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: contain;
  padding: 1rem;
}

.offset-shot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 64%;
}

.calendar-board .wide-shot:first-child,
.memories-board .wide-shot:first-child {
  width: 83%;
}

.dark-shot {
  background: #211f1d;
}

.receipt-note {
  position: absolute;
  left: 2rem;
  bottom: 3rem;
  display: grid;
  gap: 0.5rem;
  min-width: 12rem;
  border: 1px dashed rgba(135, 52, 23, 0.45);
  border-radius: 6px;
  padding: 1rem;
  background: #fffdf4;
  color: #3d2719;
  box-shadow: 0 16px 40px rgba(61, 39, 25, 0.18);
  transform: rotate(-3deg);
}

.receipt-note span {
  border-bottom: 1px solid rgba(61, 39, 25, 0.24);
  padding-bottom: 0.2rem;
  font-weight: 750;
}

.grocery-board {
  min-height: 27rem;
}

.shopping-phone-main {
  width: min(14.5rem, 42%);
  margin-left: auto;
  background: #fefefe;
}

.shopping-phone-offset {
  position: absolute;
  left: 2rem;
  bottom: -1.25rem;
  width: min(11.5rem, 31%);
  background: #fefefe;
}

.shopping-phone-main img,
.shopping-phone-offset img {
  object-position: top center;
}

.portfolio-board {
  min-height: auto;
}

.portfolio-board .finance-shot {
  width: 88%;
  margin-left: auto;
  background: #111714;
}

.portfolio-board .finance-shot img {
  object-position: top center;
}

.finance-ticket {
  position: absolute;
  left: 0;
  bottom: -1.1rem;
  overflow: hidden;
  width: min(16rem, 36%);
  margin: 0;
  border: 1px solid rgba(240, 220, 166, 0.34);
  border-radius: 8px;
  background: rgba(14, 18, 16, 0.92);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.42);
}

.finance-ticket img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  object-position: top center;
}

.app-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 1.1rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  border-top: 1px solid var(--line);
}

.feature-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  border-radius: 8px;
  padding: 0.85rem 0.9rem 0.85rem 2.2rem;
  background: var(--surface);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 0.95rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

.atmosphere {
  margin-bottom: 3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.atmosphere p {
  max-width: 55rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

.use-cases {
  border-top: 1px solid var(--line);
}

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

.case-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.15rem;
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.08);
}

.case-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
  line-height: 1.25;
}

.case-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.seasonal-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: center;
}

.seasonal-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.season-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(17, 24, 39, 0.16);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.story-section p {
  color: var(--muted);
  font-size: 1.1rem;
}

.inline-device {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: var(--shadow);
}

.inline-device img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.calendar-use-cases {
  color: var(--ink);
}

.calendar-use-cases .case-card {
  background: rgba(255, 250, 240, 0.9);
  color: #19231d;
}

.calendar-use-cases .case-card p {
  color: #38443b;
}

.memories-story,
.memories-use-cases {
  color: var(--ink);
}

.memories-story p {
  color: var(--muted);
}

.memories-use-cases .case-card {
  background: rgba(36, 31, 29, 0.9);
  color: var(--ink);
}

.memories-use-cases .case-card p {
  color: var(--muted);
}

.portfolio-story,
.portfolio-use-cases {
  color: var(--ink);
}

.portfolio-story p {
  color: var(--muted);
}

.portfolio-use-cases .case-card {
  background:
    linear-gradient(180deg, rgba(33, 38, 35, 0.94), rgba(18, 23, 21, 0.94));
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.portfolio-use-cases .case-card p {
  color: var(--muted);
}

.shopping-story,
.shopping-use-cases {
  color: var(--ink);
}

.shopping-story p {
  color: var(--muted);
}

.shopping-use-cases .case-card {
  background:
    linear-gradient(180deg, rgba(255, 249, 237, 0.94), rgba(255, 238, 208, 0.9));
  color: #2c1c12;
}

.shopping-use-cases .case-card p {
  color: #5d402c;
}

.shopping-inline {
  justify-self: center;
  width: min(100%, 24rem);
  background: #ffffff;
}

.shopping-inline img {
  aspect-ratio: 634 / 1080;
  object-fit: cover;
}

.shopping-phone-river {
  justify-self: center;
  width: min(100%, 25rem);
  background: #ffffff;
}

.shopping-phone-river img {
  aspect-ratio: 634 / 1080;
  object-fit: cover;
  object-position: top center;
}

.shopping-photo-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.finance-inline,
.finance-import-card,
.finance-import-pair,
.finance-river-screen {
  background: rgba(13, 17, 15, 0.9);
}

.finance-import-card {
  justify-self: center;
  width: min(100%, 28rem);
  padding: 1rem;
}

.finance-import-card img {
  aspect-ratio: 448 / 454;
  object-fit: contain;
}

.finance-import-pair {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.finance-import-pair img {
  width: 100%;
  border: 1px solid rgba(247, 242, 230, 0.16);
  border-radius: 6px;
  background: #ffffff;
  object-fit: contain;
}

.finance-import-pair img:first-child {
  aspect-ratio: 650 / 281;
}

.finance-import-pair img:last-child {
  aspect-ratio: 492 / 221;
}

.feature-river {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: center;
  max-width: none;
  padding-inline: max(1.1rem, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
}

.feature-river .river-copy {
  max-width: 39rem;
}

.river-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.river-media {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: var(--shadow);
}

.river-media img {
  width: 100%;
  aspect-ratio: 0.46 / 1;
  object-fit: cover;
  object-position: top center;
}

.wide-river-media img {
  aspect-ratio: 16 / 10;
}

.compact-feature-list {
  margin-top: 1.2rem;
}

.compact-feature-list li {
  background: rgba(255, 250, 240, 0.12);
  color: var(--ink);
}

.folk-river {
  background:
    linear-gradient(90deg, rgba(19, 30, 24, 0.94), rgba(19, 30, 24, 0.62)),
    url("assets/calendar/garden-autumn.png");
  background-position: center;
  background-size: cover;
}

.sky-river {
  background:
    linear-gradient(90deg, rgba(8, 28, 43, 0.7), rgba(8, 28, 43, 0.94)),
    url("assets/calendar/garden-winter.png");
  background-position: center;
  background-size: cover;
}

.garden-river {
  background:
    linear-gradient(90deg, rgba(18, 48, 30, 0.92), rgba(18, 48, 30, 0.52)),
    url("assets/calendar/garden-summer.png");
  background-position: center;
  background-size: cover;
}

.family-river {
  background:
    linear-gradient(90deg, rgba(50, 38, 20, 0.72), rgba(50, 38, 20, 0.9)),
    url("assets/calendar/garden-spring.png");
  background-position: center;
  background-size: cover;
}

.archive-river {
  background:
    linear-gradient(90deg, rgba(16, 13, 13, 0.92), rgba(16, 13, 13, 0.58)),
    url("assets/memories/memories-hero-bg.png");
  background-position: center;
  background-size: cover;
}

.document-river {
  background:
    linear-gradient(90deg, rgba(44, 28, 18, 0.52), rgba(18, 14, 13, 0.94)),
    url("assets/screenshots/memories-document.png");
  background-position: center;
  background-size: cover;
}

.safety-river {
  background:
    linear-gradient(90deg, rgba(15, 18, 20, 0.94), rgba(15, 18, 20, 0.6)),
    url("assets/screenshots/memories-picture-preview.png");
  background-position: center;
  background-size: cover;
}

.transactions-river {
  background:
    linear-gradient(90deg, rgba(10, 14, 13, 0.94), rgba(10, 14, 13, 0.58)),
    url("assets/portfolio/portfolio-hero-bg.png");
  background-position: center;
  background-size: cover;
}

.prices-river {
  background:
    linear-gradient(90deg, rgba(25, 31, 28, 0.52), rgba(9, 12, 11, 0.95)),
    url("assets/visuals/portfolio-dashboard.png");
  background-position: center;
  background-size: cover;
}

.reports-river {
  background:
    linear-gradient(90deg, rgba(9, 13, 12, 0.94), rgba(9, 13, 12, 0.62)),
    url("assets/portfolio/portfolio-card.png");
  background-position: center;
  background-size: cover;
}

.privacy-river {
  background:
    linear-gradient(90deg, rgba(37, 28, 15, 0.56), rgba(10, 13, 12, 0.96)),
    url("assets/portfolio/portfolio-hero-bg.png");
  background-position: center;
  background-size: cover;
}

.list-river {
  background:
    linear-gradient(90deg, rgba(46, 28, 14, 0.94), rgba(46, 28, 14, 0.58)),
    url("assets/shopping/shopping-list-frame.png");
  background-position: center top;
  background-size: cover;
}

.group-river {
  background:
    linear-gradient(90deg, rgba(23, 55, 37, 0.54), rgba(39, 25, 15, 0.94)),
    url("assets/shopping/shopping-dark-frame.png");
  background-position: center top;
  background-size: cover;
}

.photo-river {
  background:
    linear-gradient(90deg, rgba(47, 32, 20, 0.94), rgba(47, 32, 20, 0.58)),
    url("assets/shopping/shopping-add-frame.png");
  background-position: center top;
  background-size: cover;
}

.garden-device-pair {
  display: grid;
  grid-template-columns: minmax(8rem, 0.45fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: end;
}

.note {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  font-weight: 700;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
}

.calendar-final {
  color: var(--ink);
}

.memories-final {
  color: var(--ink);
}

.portfolio-final {
  color: var(--ink);
}

.shopping-final {
  color: var(--ink);
}

.calendar-atmosphere {
  background:
    linear-gradient(90deg, rgba(0, 88, 168, 0.08), transparent 22%),
    linear-gradient(135deg, rgba(13, 104, 70, 0.18), rgba(255, 255, 246, 0.82));
}

.memories-atmosphere {
  background:
    linear-gradient(135deg, rgba(210, 143, 82, 0.18), rgba(36, 31, 29, 0.9));
}

.portfolio-atmosphere {
  background:
    linear-gradient(135deg, rgba(103, 197, 139, 0.18), rgba(23, 34, 30, 0.92));
}

.shopping-atmosphere {
  background:
    linear-gradient(135deg, rgba(189, 75, 36, 0.16), rgba(255, 252, 245, 0.92));
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 1.3rem 1.1rem 2rem;
  color: var(--muted);
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 1.1rem 5rem;
}

.policy-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.policy-content h2 {
  margin-top: 2rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.policy-content p {
  color: var(--muted);
  font-size: 1.06rem;
}

@media (max-width: 900px) {
  .site-nav,
  .app-hero,
  .split-section,
  .seasonal-section,
  .story-section,
  .feature-river,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    justify-self: stretch;
  }

  .nav-menu summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    font-weight: 850;
    list-style: none;
  }

  .nav-menu summary::-webkit-details-marker {
    display: none;
  }

  .nav-menu summary::after {
    content: "+";
    margin-left: 0.5rem;
    font-weight: 900;
  }

  .nav-menu[open] summary::after {
    content: "-";
  }

  .nav-list {
    display: none;
    justify-content: flex-start;
    margin-top: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.35rem;
    background: var(--surface);
  }

  .nav-menu[open] .nav-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-list a {
    width: 100%;
  }

  .app-hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .mood-board {
    min-height: auto;
  }

  .calendar-board .wide-shot:first-child,
  .memories-board .wide-shot:first-child,
  .portfolio-board .finance-shot,
  .phone-shot {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .shopping-phone-main {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .shopping-phone-main img,
  .shopping-phone-main video {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top center;
  }

  .offset-phone,
  .finance-ticket,
  .shopping-phone-offset {
    display: none;
  }

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

  .garden-device-pair {
    grid-template-columns: 1fr;
  }

  .feature-river {
    padding-inline: 1rem;
  }

  .offset-shot {
    display: none;
  }

  .receipt-note {
    position: static;
    margin-top: 1rem;
    transform: none;
  }
}

@media (max-width: 560px) {
  .site-nav {
    padding-inline: 1rem;
  }

  .brand {
    min-height: 40px;
  }

  .nav-list a {
    min-height: 40px;
  }

  .app-hero,
  .app-section {
    padding-inline: 1rem;
  }

  .app-hero {
    gap: 1.25rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .wide-shot img {
    aspect-ratio: 16 / 8;
    object-position: top center;
  }

  .phone-shot img {
    aspect-ratio: 16 / 8;
    object-fit: contain;
    padding: 0.6rem;
  }

  .receipt-note {
    display: none;
  }
}
