/* ============================================================
   Ivory & Antique Gold  —  memorial theme
   ============================================================ */
:root {
  --bg: #f6f1e7;          /* warm ivory */
  --paper: #fffdf8;       /* card surface */
  --ink: #2a211b;         /* espresso text */
  --muted: #8a7d6c;       /* soft brown-grey */
  --gold: #a6864f;        /* antique gold */
  --gold-soft: #c9b384;
  --walnut: #3b2e25;      /* deep header */
  --line: #e4dbc9;
  --shadow: 0 12px 40px rgba(59, 46, 37, 0.10);
  --watermark-opacity: 0.5;  /* portrait watermark visibility (0 = invisible, 1 = full) */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
/* Deter casual image saving/dragging (does not prevent screenshots) */
img, video {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.narrow-page { max-width: 720px; }
a { color: var(--walnut); text-decoration: none; }
img { max-width: 100%; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(246, 241, 231, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px; flex-wrap: wrap; gap: 10px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { color: var(--gold); font-size: 1.1rem; }
.brand-text { font-family: var(--serif); font-size: 1.35rem; font-weight: 600;
  letter-spacing: 0.02em; color: var(--ink); }
nav a { margin-left: 22px; font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.13em; color: var(--muted); transition: color .2s; }
nav a:hover { color: var(--gold); }
nav a.nav-cta { color: var(--gold); }

/* ---------- Hero with portrait watermark ---------- */
.hero, .page-hero {
  position: relative; overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, #efe7d6 0%, var(--bg) 100%);
}
.hero { padding: 96px 24px 84px; overflow: visible; }  /* allow portrait to overlap below */
.page-hero { padding: 72px 24px 60px; }
.hero.has-portrait::before, .page-hero.has-portrait::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--portrait);
  background-size: cover; background-position: center 28%;
  opacity: var(--watermark-opacity);
  filter: grayscale(15%);
}
.hero-fade { position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(246,241,231,0.15) 0%, rgba(246,241,231,0.75) 100%);
  pointer-events: none; }
.hero-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
/* Her clear portrait, overlaid at the top-left of the hero (does not affect flow) */
.hero-portrait { position: absolute; left: 15%; bottom: 0; top: auto; transform: translateY(25%);
  z-index: 5; margin: 0; width: 200px; max-width: 20vw; }
.hero-portrait img { width: 100%; display: block; border-radius: 6px;
  border: 5px solid var(--paper); box-shadow: var(--shadow); outline: 1px solid var(--line); }
@media (max-width: 1024px) { .hero-portrait { display: none; } }
.hero-eyebrow, .page-hero .hero-eyebrow {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.32em;
  font-size: 0.72rem; color: var(--gold); margin: 0 0 18px; }
.hero-name {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.12;
  margin: 0 0 14px; color: var(--ink); letter-spacing: 0.01em; }
.hero-dates { font-family: var(--serif); font-style: italic; font-size: 1.3rem;
  color: var(--gold); margin: 0 0 18px; }
.hero-subtitle { font-size: 1.05rem; color: var(--muted); max-width: 560px;
  margin: 0 auto 30px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* gold divider under section titles */
.section-title {
  font-family: var(--serif); font-weight: 600; font-size: 1.9rem;
  text-align: center; margin: 0 0 8px; color: var(--ink); }
.section-title::after {
  content: ""; display: block; width: 54px; height: 2px; margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 13px 30px; border-radius: 2px;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em; cursor: pointer;
  border: 1px solid var(--gold); background: transparent; color: var(--walnut);
  transition: all .25s; }
.btn:hover { background: var(--gold); color: #fff; }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--walnut); border-color: var(--walnut); }
.btn-ghost { border-color: var(--line); color: var(--muted); }
.btn-ghost:hover { background: transparent; border-color: var(--gold); color: var(--gold); }

/* ---------- Slideshow ---------- */
.slideshow-section { padding: 70px 0 20px; }
.slideshow { position: relative; max-width: 900px; margin: 28px auto 0;
  aspect-ratio: 16 / 10; background: #efe7d6; border-radius: 4px;
  overflow: hidden; box-shadow: var(--shadow); }
.slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: center; justify-content: center; background: #241d17;
  overflow: hidden; }
.slide.active { opacity: 1; }
/* Blurred fill so portrait/landscape photos never crop the face */
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: blur(24px) brightness(0.55); transform: scale(1.18); }
.slide img { position: relative; z-index: 1; max-width: 100%; max-height: 100%;
  width: auto; height: 100%; object-fit: contain; }
.slide figcaption { position: absolute; bottom: 0; left: 0; right: 0;
  padding: 26px 18px 14px; color: #fff; font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; text-align: center;
  background: linear-gradient(transparent, rgba(20,15,11,0.75)); }
.slide-nav { position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,253,248,0.82); color: var(--walnut); font-size: 1.5rem;
  line-height: 1; z-index: 3; transition: background .2s; }
.slide-nav:hover { background: #fff; }
.slide-nav.prev { left: 14px; } .slide-nav.next { right: 14px; }
.slide-dots { position: absolute; bottom: 14px; left: 0; right: 0; z-index: 3;
  display: flex; gap: 8px; justify-content: center; }
.slide-dot { width: 8px; height: 8px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.5); padding: 0; }
.slide-dot.active { background: var(--gold-soft); }

/* ---------- Tributes ---------- */
.tributes { padding: 70px 0 90px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px; margin-top: 34px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 4px;
  overflow: hidden; box-shadow: var(--shadow); transition: transform .25s; }
.card:hover { transform: translateY(-4px); }
.card-media { width: 100%; max-height: 280px; object-fit: cover; object-position: center 25%;
  display: block; background: #241d17; }
.section-sub { text-align: center; color: var(--muted); margin: 6px 0 0; font-style: italic; }
.about-page { padding: 56px 0 90px; }
.about-layout { display: grid; grid-template-columns: minmax(260px, 360px) 1fr; gap: 52px;
  align-items: start; }
.about-layout.no-portrait { grid-template-columns: 1fr; max-width: 720px; }
.about-portrait { position: sticky; top: 96px; }
.about-portrait figure { margin: 0; }
.about-portrait img { width: 100%; display: block; border-radius: 4px;
  border: 6px solid var(--paper); box-shadow: var(--shadow); outline: 1px solid var(--line); }
.life-story { font-size: 1.08rem; line-height: 1.9; }
.life-facts { margin-bottom: 40px; }
.about-cta { margin-top: 48px; }
@media (max-width: 820px) {
  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-portrait { position: static; max-width: 340px; margin: 0 auto; }
}
.card-gallery.multi { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.card-gallery.multi .card-media { max-height: 150px; }
.card-body { padding: 26px 26px 30px; position: relative; }
.quote-mark { font-family: var(--serif); font-size: 3.4rem; line-height: 0; color: var(--gold-soft);
  position: absolute; top: 30px; left: 18px; opacity: 0.5; }
.message { white-space: pre-wrap; font-size: 1.02rem; color: #43382e; margin: 8px 0 16px;
  position: relative; z-index: 1; }
.attribution { font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  color: var(--gold); margin: 0; }
.empty { color: var(--muted); font-style: italic; text-align: center; margin-top: 30px; }

/* Home two columns: slideshow + photo gallery on the left, tributes on the right */
.home-columns { max-width: 1360px; margin: 20px auto 0; padding: 0 24px 50px;
  display: grid; grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 48px; align-items: start; }
.home-columns.no-media { grid-template-columns: 1fr; max-width: 820px; }
.home-left { display: flex; flex-direction: column; gap: 34px; min-width: 0; }
.scroll-sentinel { text-align: center; color: var(--muted); font-style: italic;
  font-size: 0.85rem; padding: 22px 10px; }
.home-left .slideshow-section, .home-left .gallery-section { padding: 0; }
.home-left .slideshow { margin-top: 18px; }
.home-right { position: sticky; top: 18px; max-height: calc(100vh - 36px);
  display: flex; flex-direction: column; }
.home-right .section-sub { margin-bottom: 18px; }
.tributes-messages { display: flex; flex-direction: column; gap: 22px;
  overflow-y: auto; padding-right: 8px; }
.tributes-messages::-webkit-scrollbar { width: 8px; }
.tributes-messages::-webkit-scrollbar-thumb { background: var(--gold-soft); border-radius: 4px; }
.tributes-messages::-webkit-scrollbar-track { background: transparent; }
.tributes-gallery { display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(var(--tile, 120px), 1fr)); align-content: start; }
.gallery-box { display: block; aspect-ratio: 1; overflow: hidden; border-radius: 3px; padding: 0;
  border: 3px solid var(--paper); box-shadow: var(--shadow); background: #241d17; cursor: pointer; }
.gallery-box img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery-box:hover img { transform: scale(1.07); }
.slide img.clickable { cursor: pointer; }
.tribute-date { font-size: 0.72rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.1em; margin: 12px 0 0; }

/* Reactions (like / love) */
.reactions { display: flex; gap: 10px; margin-top: 16px; }
.react-btn { display: inline-flex; align-items: center; gap: 6px; background: #faf6ec;
  border: 1px solid var(--line); border-radius: 30px; padding: 6px 14px; cursor: pointer;
  font-family: var(--sans); font-size: 0.8rem; color: var(--muted); transition: all .2s; }
.react-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.react-btn:disabled { cursor: default; opacity: 0.65; }
.react-icon { font-size: 1rem; filter: grayscale(1); opacity: 0.55; }
.react-btn.active { border-color: var(--gold); color: var(--walnut); background: #f3e8cf; }
.react-btn.active .react-icon { filter: none; opacity: 1; }
.react-btn.love.active .react-icon { color: #b5473d; }
.react-count { font-weight: 600; }

/* Comments */
.comments { margin-top: 16px; border-top: 1px solid var(--line); padding-top: 12px;
  display: flex; flex-direction: column; gap: 8px; }
.comment { font-size: 0.9rem; line-height: 1.5; }
.comment-author { font-weight: 600; color: var(--walnut); margin-right: 6px; }
.comment-body { color: #43382e; }
.comment-date { color: var(--muted); font-size: 0.7rem; margin-left: 6px; white-space: nowrap; }
.comment-form { display: flex; gap: 8px; margin-top: 14px; }
.comment-form input { flex: 1; padding: 9px 14px; border: 1px solid var(--line); border-radius: 22px;
  font-family: var(--sans); font-size: 0.88rem; background: #fff; }
.comment-form input:focus { outline: none; border-color: var(--gold); }
.btn-comment { border: none; background: var(--gold); color: #fff; border-radius: 22px;
  padding: 9px 18px; cursor: pointer; font-size: 0.78rem; letter-spacing: 0.04em; }
.btn-comment:hover { background: var(--walnut); }
.comment-signin { display: inline-block; margin-top: 14px; font-size: 0.85rem; color: var(--gold); }

@media (max-width: 900px) {
  .home-columns { grid-template-columns: 1fr; gap: 36px; }
  .home-right { position: static; max-height: none; }
  .tributes-messages { overflow: visible; padding-right: 0; }
}

/* ---------- Fullscreen lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(20, 15, 11, 0.95); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 40px 20px; }
.lightbox.open { display: flex; }
.lb-inner { max-width: 1000px; width: 100%; max-height: 100%; display: flex;
  flex-direction: column; align-items: center; }
.lb-img { max-width: 100%; max-height: 70vh; object-fit: contain; border-radius: 4px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55); }
.lb-caption { color: #f0e6d3; text-align: center; margin-top: 22px; max-width: 720px; }
.lb-message { font-size: 1.1rem; line-height: 1.7; white-space: pre-wrap; margin: 0 0 12px; }
.lb-name { font-family: var(--serif); font-style: italic; font-size: 1.2rem;
  color: var(--gold-soft); margin: 0; }
.lb-date { font-size: 0.76rem; color: #b8a88f; margin: 8px 0 0;
  text-transform: uppercase; letter-spacing: 0.12em; }
.lb-close { position: fixed; top: 18px; right: 26px; background: none; border: none; color: #fff;
  font-size: 2.6rem; line-height: 1; cursor: pointer; z-index: 210; }
.lb-play { position: fixed; top: 26px; left: 28px; background: rgba(255,255,255,0.12); border: none;
  color: #fff; font-size: 0.9rem; line-height: 1; cursor: pointer; z-index: 210;
  width: 40px; height: 40px; border-radius: 50%; }
.lb-play:hover { background: rgba(255,255,255,0.26); }
.lb-nav { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12);
  border: none; color: #fff; width: 54px; height: 54px; border-radius: 50%; font-size: 1.9rem;
  line-height: 1; cursor: pointer; z-index: 210; transition: background .2s; }
.lb-nav:hover { background: rgba(255,255,255,0.26); }
.lb-prev { left: 22px; } .lb-next { right: 22px; }
@media (max-width: 620px) {
  .lb-nav { width: 44px; height: 44px; font-size: 1.5rem; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}
@media (max-width: 900px) {
  .tributes-layout { grid-template-columns: 1fr; gap: 34px; }
}

/* ---------- Arrangements ---------- */
.arrangements { padding: 60px 0 90px; }
.detail-card { background: var(--paper); border: 1px solid var(--line); border-radius: 4px;
  padding: 30px 34px; box-shadow: var(--shadow); margin-bottom: 40px; }
.detail-card.highlight { border-top: 3px solid var(--gold); }
.detail-line { display: flex; gap: 16px; margin: 10px 0; font-size: 1.05rem; }
.detail-label { min-width: 92px; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.72rem; color: var(--gold); font-weight: 600; padding-top: 5px; }
.detail-block { margin: 40px 0; }
.detail-block.center { text-align: center; }
.prose { white-space: pre-wrap; font-size: 1.05rem; color: #43382e; margin-top: 16px; }

/* Rendered rich text (from the admin WYSIWYG editor) */
.richtext { font-size: 1.05rem; color: #43382e; margin-top: 16px; }
.richtext p { margin: 0 0 1em; }
.richtext strong, .richtext b { color: var(--ink); }
.richtext em, .richtext i { font-style: italic; }
.richtext h2 { font-family: var(--serif); font-size: 1.5rem; margin: 1.2em 0 .4em; color: var(--ink); }
.richtext h3 { font-family: var(--serif); font-size: 1.25rem; margin: 1.1em 0 .4em; color: var(--ink); }
.richtext ul, .richtext ol { margin: 0 0 1em; padding-left: 1.5em; }
.richtext li { margin: .3em 0; }
.richtext a { color: var(--gold); text-decoration: underline; }
.richtext blockquote { border-left: 3px solid var(--gold-soft); margin: 1em 0; padding: .2em 0 .2em 1.2em;
  font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: #5a4d40; }
.richtext.life-story { line-height: 1.9; }
/* Editor sizing */
.rich-editor { background: var(--paper); min-height: 160px; border-radius: 0 0 3px 3px; }
.ql-toolbar.ql-snow, .ql-container.ql-snow { border-color: var(--line); }
.ql-container.ql-snow { font-family: var(--sans); font-size: 1rem; }

/* ---------- Forms ---------- */
.narrow { max-width: 640px; margin: 60px auto; }
.center { text-align: center; }
.form { display: flex; flex-direction: column; gap: 6px; margin-top: 22px; }
.form label { font-family: var(--sans); font-weight: 500; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-top: 14px; }
.form input, .form textarea, .form select {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 3px;
  font-family: var(--sans); font-size: 1rem; background: var(--paper); color: var(--ink); }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--gold); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.acks, .publish-toggle { border: 1px solid var(--line); border-radius: 3px;
  padding: 14px 16px; margin-top: 18px; background: #faf6ec; }
.acks legend { font-weight: 600; padding: 0 6px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; }
.check { display: block; font-weight: 400; text-transform: none; letter-spacing: 0; margin: 6px 0; }
.actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.admin-form-page { padding: 50px 0 90px; }

/* ---------- Page sections (login/submit) ---------- */
.narrow h1 { font-family: var(--serif); font-weight: 600; font-size: 2.1rem; }
.btn-google { border: 1px solid var(--line); background: #fff; color: var(--ink); }
.small { font-size: 0.86rem; }
.muted { color: var(--muted); }

/* ---------- Flash ---------- */
.flash { padding: 14px 18px; border-radius: 3px; margin: 20px 0; font-size: 0.95rem; }
.flash-success { background: #eef3e8; border: 1px solid #cdddb9; color: #46592f; }
.flash-error { background: #f6e7e2; border: 1px solid #e0b9ac; color: #7a3a2a; }

/* ---------- Admin review ---------- */
.tabs { margin: 22px 0; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.tab { padding: 8px 16px; border: 1px solid var(--line); border-radius: 40px; background: var(--paper);
  font-size: 0.82rem; color: var(--muted); }
.tab.active { background: var(--gold); color: #fff; border-color: var(--gold); }
.review-card { background: var(--paper); border: 1px solid var(--line); border-radius: 4px;
  padding: 22px; margin: 16px 0; display: flex; gap: 20px; flex-wrap: wrap; box-shadow: var(--shadow); }
.review-card.flagged { border-color: var(--gold); background: #fbf4e6; }
.review-main { flex: 1 1 380px; }
.review-actions { display: flex; flex-direction: column; gap: 8px; min-width: 150px; }
.review-actions form { margin: 0; }
.review-gallery { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.review-media { max-width: 240px; max-height: 180px; border-radius: 3px; }
.btn-approve { background: #4b6b3f; border-color: #4b6b3f; color: #fff; }
.btn-reject { background: #9a4a3c; border-color: #9a4a3c; color: #fff; }
.flag { color: var(--gold); font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
.history { list-style: none; padding: 0; }
.history li { padding: 10px 0; border-bottom: 1px solid var(--line); }

/* ---------- Admin side panel ---------- */
.admin-panel { position: fixed; top: 0; left: 0; width: 236px; height: 100vh;
  background: var(--walnut); color: #e8dcc9; z-index: 60; overflow-y: auto;
  display: flex; flex-direction: column; }
.admin-panel-head { font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  padding: 22px 22px 18px; color: #f0e6d3; border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; gap: 10px; }
.admin-panel-head .brand-mark { color: var(--gold-soft); }
.admin-nav { display: flex; flex-direction: column; padding: 10px 0; }
.admin-nav a { padding: 12px 22px; color: #ddceb6; font-size: 0.9rem; letter-spacing: 0.02em;
  border-left: 3px solid transparent; transition: all .2s; }
.admin-nav a:hover { background: rgba(255,255,255,0.06); color: #fff; border-left-color: var(--gold); }
.admin-signout { margin-top: 8px; border-top: 1px solid rgba(255,255,255,0.12); color: #d8b8a0; }
body.admin-mode .site-shell { margin-left: 236px; }

/* Admin image upload fields */
.image-field { display: flex; gap: 22px; align-items: center; padding: 20px 0;
  border-bottom: 1px solid var(--line); }
.image-field-preview { width: 120px; height: 120px; flex: 0 0 120px; border-radius: 4px;
  overflow: hidden; background: #efe7d6; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; }
.image-field-preview img { width: 100%; height: 100%; object-fit: cover; }
.image-placeholder { color: var(--muted); font-size: 0.78rem; text-align: center; padding: 6px; }
.image-field-controls { flex: 1; }
.image-field-controls label { margin-top: 0; }

@media (max-width: 900px) {
  .admin-panel { position: static; width: 100%; height: auto; }
  .admin-nav { flex-direction: row; flex-wrap: wrap; padding: 6px; }
  .admin-nav a { border-left: none; border-radius: 3px; padding: 8px 12px; }
  body.admin-mode .site-shell { margin-left: 0; }
  .image-field { flex-direction: column; align-items: flex-start; }
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--walnut); color: #e8dcc9;
  padding: 40px 0; text-align: center; margin-top: 20px; }
.foot-name { font-family: var(--serif); font-size: 1.25rem; margin: 0 0 6px; color: #f0e6d3; }
.site-footer .muted { color: #b8a88f; }

/* ---------- Responsive ---------- */
@media (max-width: 620px) {
  nav a { margin-left: 14px; font-size: 0.72rem; }
  .two-col { grid-template-columns: 1fr; }
  .hero { padding: 70px 20px 60px; }
  .detail-line { flex-direction: column; gap: 2px; }
  .detail-label { padding-top: 0; }
}
