:root {
  --ink: #241f1a;
  --muted: #62584d;
  --paper: #fff7e3;
  --cream: #f6dfbe;
  --agraharam-blue: #bfe3e7;
  --blue: #247a9b;
  --green: #28523b;
  --teal: #0f6b68;
  --sindoor: #a33d2f;
  --gold: #d2972c;
  --rose: #bd5366;
  --line: rgba(36, 31, 26, 0.15);
  --shadow: 0 28px 80px rgba(34, 34, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(36, 122, 155, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(163, 61, 47, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #d7eef0 0%, #fff7e3 43%, #f6dfbe 100%);
  background-size: 36px 36px, 36px 36px, auto;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a.button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 52px);
  color: #fff8ea;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 247, 227, 0.93);
  box-shadow: 0 12px 34px rgba(34, 26, 18, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  margin-top: 2px;
  font-size: 0.76rem;
  opacity: 0.75;
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.scrolled .nav-links a:hover {
  background: rgba(36, 122, 155, 0.12);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  color: #fff8ea;
  background: #113f48;
}

.hero-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 47, 55, 0.92) 0%, rgba(36, 79, 70, 0.66) 48%, rgba(163, 61, 47, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 63, 72, 0.72), rgba(17, 63, 72, 0.04)),
    url("pics/family-hero-gathering.jpg") center / cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.03);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(790px, calc(100% - 36px));
  min-height: 94vh;
  padding: 122px 0 98px clamp(18px, 7vw, 96px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.5rem, 8vw, 7.8rem);
}

h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.55rem);
}

h3 {
  font-size: 1.55rem;
}

p {
  line-height: 1.75;
}

.hero-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 248, 234, 0.9);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
}

.button svg,
.nav-toggle svg,
.icon-list svg,
.lesson-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button.primary {
  color: var(--green);
  background: var(--paper);
}

.button.secondary {
  border: 1px solid rgba(255, 248, 234, 0.62);
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 54px);
  bottom: 34px;
  width: min(330px, calc(100% - 36px));
  border: 1px solid rgba(255, 248, 234, 0.24);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 248, 234, 0.13);
  backdrop-filter: blur(18px);
}

.hero-card span {
  color: #f8c96a;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card p {
  margin: 8px 0 0;
  color: rgba(255, 248, 234, 0.84);
  font-size: 0.94rem;
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
  scroll-margin-top: 88px;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.opening {
  background:
    linear-gradient(135deg, rgba(191, 227, 231, 0.86), rgba(255, 247, 227, 0.92) 45%, rgba(246, 223, 190, 0.92)),
    var(--paper);
}

.opening-grid,
.family-grid,
.craft-grid,
.faith-grid,
.lessons-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.opening-copy p,
.craft-copy p,
.faith-grid p,
.section-heading p,
.story-cards p,
.family-panel p,
.lesson-list p {
  color: var(--muted);
}

figure {
  margin: 0;
}

.archive-feature figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.archive-feature img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.archive-feature figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 8px;
  padding: 9px 11px;
  color: #fff8ea;
  background: rgba(36, 31, 26, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.portrait {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 10%, rgba(210, 151, 44, 0.2), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(36, 122, 155, 0.22), transparent 32%),
    linear-gradient(135deg, #fff7e3 0%, #d7eef0 48%, #f6dfbe 100%);
}

.portrait-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.portrait-art {
  overflow: hidden;
  border: 1px solid rgba(36, 31, 26, 0.16);
  border-radius: 8px;
  background: #fff7e3;
  box-shadow: var(--shadow);
}

.portrait-art img {
  aspect-ratio: 4 / 5.35;
  object-fit: cover;
  object-position: center 18%;
}

.portrait-art figcaption {
  padding: 13px 15px 15px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.portrait-copy {
  border-left: 1px solid rgba(36, 31, 26, 0.18);
  padding-left: clamp(22px, 4vw, 44px);
}

.portrait-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.03rem;
}

.kitchen {
  background:
    linear-gradient(180deg, #f7d48c, #f3c779 48%, #e9b762),
    var(--gold);
}

.family {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 8%, rgba(189, 83, 102, 0.18), transparent 28%),
    radial-gradient(circle at 82% 2%, rgba(36, 122, 155, 0.2), transparent 30%),
    linear-gradient(180deg, #e5f4f4, #fff7e3 54%, #f6dfbe);
}

.family-grid {
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
}

.family-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.family-photo {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 20px 56px rgba(53, 38, 22, 0.14);
}

.family-photo img {
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center;
}

.family-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff8ea;
  background: rgba(36, 31, 26, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
}

.family-panel article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 247, 227, 0.78);
  box-shadow: 0 18px 46px rgba(53, 38, 22, 0.08);
}

.family-panel span {
  color: var(--sindoor);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.family-album {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 860px;
  margin-top: clamp(28px, 4vw, 46px);
  margin-right: auto;
  margin-left: auto;
}

.album-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 22px 58px rgba(53, 38, 22, 0.13);
}

.album-card img {
  aspect-ratio: 4 / 3.25;
  object-fit: cover;
}

.album-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 8px;
  padding: 9px 11px;
  color: #fff8ea;
  background: rgba(36, 31, 26, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.story-cards,
.lesson-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.story-cards article,
.lesson-list article {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 247, 227, 0.78);
  box-shadow: 0 18px 50px rgba(53, 38, 22, 0.1);
}

.story-cards span {
  color: var(--sindoor);
  font-weight: 900;
}

.story-cards h3,
.lesson-list h3 {
  margin-top: 28px;
}

.kitchen-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin-top: clamp(30px, 6vw, 64px);
}

.kitchen-feature figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.kitchen-feature img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.kitchen-feature figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 8px;
  padding: 9px 11px;
  color: #fff8ea;
  background: rgba(36, 31, 26, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.kitchen-feature p {
  color: var(--muted);
}

.craft {
  background:
    linear-gradient(180deg, #fff7e3, #edf6f4 58%, #fff7e3);
}

.image-stack {
  display: grid;
  gap: 14px;
}

.image-stack img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  aspect-ratio: 5 / 4;
}

.icon-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-weight: 800;
}

.faith {
  color: #fff8ea;
  background:
    linear-gradient(90deg, rgba(23, 72, 52, 0.94), rgba(15, 107, 104, 0.86)),
    url("pics/bhagavathy-temple-background.webp") center / cover;
}

.faith .section-kicker {
  color: #f8c96a;
}

.faith-grid p {
  color: rgba(255, 248, 234, 0.82);
}

.devotion-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
}

.devotion-panel img {
  height: 360px;
  border: 1px solid rgba(255, 248, 234, 0.22);
  border-radius: 8px;
  object-fit: cover;
  background: rgba(255, 248, 234, 0.9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.golu-post {
  background:
    linear-gradient(135deg, #fff7e3 0%, #d9eef0 45%, #f6dfbe 100%);
}

.golu-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.golu-photo {
  position: sticky;
  top: 98px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.golu-photo img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.golu-photo figcaption {
  padding: 14px 16px;
  color: var(--muted);
  background: rgba(255, 247, 227, 0.92);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
}

.blog-article {
  border-left: 1px solid var(--line);
  padding-left: clamp(22px, 4vw, 44px);
}

.blog-article .post-meta {
  margin: 14px 0 26px;
  color: var(--sindoor);
  font-weight: 800;
}

.blog-article p {
  color: var(--muted);
  font-size: 1.02rem;
}

.blog-article blockquote {
  margin: 30px 0;
  border-left: 4px solid var(--gold);
  padding: 10px 0 10px 22px;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.12;
}

.sahasranamam-post {
  background:
    linear-gradient(180deg, #fff7e3, #f3fbfb 52%, #fff7e3);
}

.sahasranamam-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.sahasranamam-card {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 16px;
}

.sahasranamam-card figure,
.research-note {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7e7c8;
  box-shadow: var(--shadow);
}

.sahasranamam-card img {
  height: 280px;
  object-fit: cover;
  background: var(--paper);
}

.sahasranamam-card figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
}

.coffee-post {
  background:
    radial-gradient(circle at 16% 8%, rgba(210, 151, 44, 0.26), transparent 28%),
    linear-gradient(135deg, #fff7e3 0%, #f4d08f 44%, #d7eef0 100%);
}

.coffee-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.coffee-card {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 16px;
}

.coffee-card figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.coffee-card img {
  height: 310px;
  object-fit: cover;
  background: var(--cream);
}

.coffee-card figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
}

.coffee-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.coffee-steps article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 247, 227, 0.76);
  box-shadow: 0 16px 44px rgba(53, 38, 22, 0.1);
}

.coffee-steps span {
  color: var(--sindoor);
  font-size: 0.76rem;
  font-weight: 900;
}

.coffee-steps h3 {
  margin-top: 18px;
  font-size: 1.32rem;
}

.coffee-steps p {
  color: var(--muted);
  font-size: 0.92rem;
}

.research-note {
  margin: 28px 0;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: none;
}

.research-note h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 1.05rem;
}

.research-note ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.source-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--green);
  background: rgba(191, 227, 231, 0.45);
  font-size: 0.82rem;
  font-weight: 900;
}

.source-links a:hover {
  border-color: rgba(179, 74, 42, 0.35);
  color: var(--sindoor);
}

.lessons {
  background:
    linear-gradient(135deg, #d7eef0, #fff7e3 50%, #f6dfbe);
}

.lessons-grid {
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
}

.lesson-list svg {
  width: 26px;
  height: 26px;
  color: var(--sindoor);
}

.journal {
  background:
    linear-gradient(180deg, #f6dfbe, #cde9eb);
}

.journal-panel {
  border-radius: 8px;
  padding: clamp(28px, 6vw, 58px);
  color: #fff8ea;
  background: linear-gradient(135deg, var(--sindoor), #7c2f56 44%, var(--teal));
  box-shadow: var(--shadow);
}

.journal-panel h2 {
  max-width: 760px;
}

.journal-panel p {
  max-width: 820px;
  color: rgba(255, 248, 234, 0.84);
}

.prompt-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.prompt-list button {
  min-height: 74px;
  border: 1px solid rgba(255, 248, 234, 0.22);
  border-radius: 8px;
  color: #fff8ea;
  background: rgba(255, 248, 234, 0.12);
  cursor: pointer;
  font-weight: 800;
}

.prompt-list button:hover {
  background: rgba(255, 248, 234, 0.2);
}

.copy-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: rgba(255, 248, 234, 0.8);
}

.creator {
  background:
    radial-gradient(circle at 82% 0%, rgba(189, 83, 102, 0.16), transparent 28%),
    linear-gradient(135deg, #cde9eb 0%, #fff7e3 54%, #f6dfbe 100%);
}

.creator-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.creator-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.creator-photo img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 40%;
}

.creator-copy {
  border-left: 1px solid rgba(36, 31, 26, 0.18);
  padding-left: clamp(22px, 4vw, 44px);
}

.creator-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.03rem;
}

.creator-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--green);
  font-weight: 900;
}

.creator-link svg {
  width: 16px;
  height: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #d7eef0;
  padding: 24px 0;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-layout p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-layout a {
  font-weight: 900;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    color: var(--ink);
    background: rgba(255, 248, 234, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: 6px;
  }

  .opening-grid,
  .family-grid,
  .kitchen-feature,
  .craft-grid,
  .faith-grid,
    .golu-layout,
    .sahasranamam-layout,
    .coffee-layout,
    .portrait-layout,
    .creator-layout,
    .lessons-grid {
    grid-template-columns: 1fr;
  }

  .golu-photo,
  .sahasranamam-card,
  .coffee-card {
    position: relative;
    top: auto;
  }

  .blog-article {
    border-left: 0;
    padding-left: 0;
  }

  .creator-copy {
    border-left: 0;
    padding-left: 0;
  }

  .portrait-copy {
    border-left: 0;
    padding-left: 0;
  }

  .story-cards,
  .family-panel,
  .coffee-steps,
  .lesson-list,
  .prompt-list {
    grid-template-columns: 1fr 1fr;
  }

  .family-album {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -104px 18px 28px auto;
  }

  .devotion-panel {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 12px 16px;
    color: var(--ink);
    background: rgba(215, 238, 240, 0.94);
    box-shadow: 0 8px 24px rgba(34, 26, 18, 0.1);
    backdrop-filter: blur(14px);
  }

  .brand-mark,
  .nav-toggle {
    background: rgba(255, 247, 227, 0.64);
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    overflow: visible;
    color: var(--ink);
    background:
      linear-gradient(180deg, #d7eef0 0%, var(--paper) 34%, var(--cream) 100%);
    padding-top: 66px;
  }

  .hero-art {
    position: relative;
    inset: auto;
    aspect-ratio: 4 / 3;
    background: url("pics/family-hero-gathering.jpg") center top / cover;
    filter: saturate(1.06) contrast(1.02);
    transform: none;
  }

  .hero-content {
    width: auto;
    max-width: none;
    min-height: auto;
    margin: 0;
    padding: 32px 20px 34px;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-copy {
    max-width: 100%;
    color: var(--muted);
    font-size: 1rem;
  }

  .hero .button.secondary {
    border-color: rgba(36, 31, 26, 0.28);
    color: var(--ink);
  }

  .button {
    width: 100%;
  }

  .hero-card {
    width: calc(100% - 28px);
    border-color: var(--line);
    margin: 0 auto 30px;
    background: rgba(255, 247, 227, 0.8);
    backdrop-filter: none;
  }

  .hero-card p {
    color: var(--muted);
  }

  .story-cards,
  .family-panel,
  .family-album,
  .coffee-steps,
  .lesson-list,
  .prompt-list,
  .devotion-panel {
    grid-template-columns: 1fr;
  }

  .devotion-panel img {
    height: 260px;
  }

  .footer-layout {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
