:root {
  --ink: #17252b;
  --muted: #5e6d72;
  --paper: #fffdf7;
  --soft: #f7f1e7;
  --white: #ffffff;
  --line: #e5dccd;
  --green: #153f39;
  --green-2: #245d51;
  --maple: #b63834;
  --maple-dark: #8f2b28;
  --gold: #c99a42;
  --blue: #496f83;
  --shadow: 0 24px 70px rgba(23, 37, 43, 0.16);
  --radius: 8px;
  --sans: "Source Sans 3", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  --serif: "Noto Serif TC", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.94), rgba(255, 253, 247, 0.98)),
    repeating-linear-gradient(90deg, rgba(21, 63, 57, 0.026) 0 1px, transparent 1px 78px);
  overflow-x: hidden;
}

body[data-lang="en"] .zh,
body[data-lang="zh"] .en {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(182, 56, 52, 0.16);
}

img,
svg {
  display: block;
}

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

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.top-strip {
  color: rgba(255, 255, 255, 0.88);
  background: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
}

.top-strip .shell {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-strip strong {
  color: #f2d58a;
}

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 220, 205, 0.9);
  background: rgba(255, 253, 247, 0.98);
}

.nav {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  font-weight: 900;
  line-height: 1.18;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
    var(--maple);
  box-shadow: 0 14px 30px rgba(182, 56, 52, 0.24);
}

.brand-mark svg {
  width: 31px;
  height: 31px;
}

.brand-title {
  display: block;
  font-family: var(--serif);
  font-size: 1.06rem;
  letter-spacing: 0;
}

.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.mobile-brand-name {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.nav-links a {
  padding: 9px 9px;
  border-radius: 7px;
  color: #405056;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.1;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--maple-dark);
  font-weight: 800;
  background: rgba(182, 56, 52, 0.08);
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(23, 37, 43, 0.07);
}

.lang-switch button {
  min-width: 46px;
  border: 0;
  border-radius: 6px;
  padding: 7px 10px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: 900 0.88rem/1 var(--sans);
  min-height: 36px;
}

body[data-lang="zh"] .lang-switch button[data-set-lang="zh"],
body[data-lang="en"] .lang-switch button[data-set-lang="en"] {
  color: var(--white);
  background: var(--green-2);
}

.menu-toggle,
.menu-button {
  display: none;
}

.menu-button {
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  width: 20px;
  height: 2px;
  display: block;
  position: relative;
  background: var(--ink);
  transition: 180ms ease;
  content: "";
}

.menu-button span::before {
  position: absolute;
  top: -7px;
}

.menu-button span::after {
  position: absolute;
  top: 7px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(12, 28, 31, 0.96) 0%, rgba(12, 28, 31, 0.76) 48%, rgba(12, 28, 31, 0.34) 100%),
    var(--hero-image) center/cover;
}

.home-hero {
  --hero-image: url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1900&q=82");
}

.page-hero {
  min-height: 470px;
}

.page-about {
  --hero-image: url("https://images.unsplash.com/photo-1492321936769-b49830bc1d1e?auto=format&fit=crop&w=1900&q=80");
}

.page-services {
  --hero-image: url("https://images.unsplash.com/photo-1519491050282-cf00c82424b4?auto=format&fit=crop&w=1900&q=80");
}

.page-pastors {
  --hero-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1900&q=78");
}

.page-missions {
  --hero-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1900&q=78");
}

.page-healing {
  --hero-image: url("https://images.unsplash.com/photo-1504052434569-70ad5836ab65?auto=format&fit=crop&w=1900&q=80");
}

.page-testimonies {
  --hero-image: url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1900&q=78");
}

.page-contact {
  --hero-image: url("https://images.unsplash.com/photo-1528685888404-81d2de0cbd34?auto=format&fit=crop&w=1900&q=78");
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(201, 154, 66, 0.22), transparent 27%),
    linear-gradient(180deg, transparent 74%, var(--paper) 100%);
  pointer-events: none;
}

.maple-watermark {
  position: absolute;
  right: clamp(18px, 8vw, 120px);
  top: clamp(44px, 9vw, 92px);
  width: clamp(170px, 24vw, 340px);
  opacity: 0.12;
  color: #f7e5bb;
  pointer-events: none;
}

.hero-grid {
  min-height: calc(100vh - 118px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 390px;
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 78px 0 112px;
}

.page-hero .hero-grid {
  min-height: 470px;
  grid-template-columns: minmax(0, 850px);
  align-items: end;
  padding: 74px 0 112px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #f3d792;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 2px;
  background: currentColor;
  content: "";
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 5.5vw, 5.55rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.6vw, 1.26rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px 18px;
  font-weight: 900;
  line-height: 1.15;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  text-align: center;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button-primary {
  color: #17252b;
  background: #f1d58f;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.section .button-outline,
.copy .button-outline {
  color: var(--green);
  border-color: rgba(21, 63, 57, 0.24);
  background: rgba(255, 255, 255, 0.72);
}

.visit-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.visit-card-header {
  padding: 24px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.visit-card-header h2 {
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.25;
}

.visit-card-header p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.visit-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.visit-item:last-child {
  border-bottom: 0;
}

.visit-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #f3d792;
  background: rgba(255, 255, 255, 0.13);
}

.visit-icon svg {
  width: 21px;
  height: 21px;
}

.visit-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.visit-item span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.45;
}

.quick-band {
  position: relative;
  z-index: 2;
  margin-top: -64px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-item {
  min-height: 142px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.quick-item:last-child {
  border-right: 0;
}

.quick-label,
.section-kicker,
.role {
  color: var(--maple-dark);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.quick-label {
  margin-bottom: 8px;
}

.quick-item strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.25;
}

.quick-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(247, 241, 231, 0.94), rgba(247, 241, 231, 0.94)),
    repeating-linear-gradient(135deg, rgba(21, 63, 57, 0.035) 0 1px, transparent 1px 18px);
}

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

.section-kicker {
  margin-bottom: 10px;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-wrap: balance;
}

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

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 54px;
  align-items: center;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  align-content: end;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(23, 63, 57, 0.18), rgba(23, 63, 57, 0.91)),
    var(--panel-image) center/cover;
  box-shadow: var(--shadow);
}

.panel-scripture {
  --panel-image: url("https://images.unsplash.com/photo-1492321936769-b49830bc1d1e?auto=format&fit=crop&w=1100&q=80");
}

.panel-city {
  --panel-image: url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1100&q=82");
}

.feature-panel::before {
  content: attr(data-mark);
  position: absolute;
  right: 24px;
  top: 16px;
  color: rgba(255, 255, 255, 0.15);
  font: 900 5rem/1 var(--serif);
}

.feature-panel blockquote {
  position: relative;
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.42;
}

.feature-panel cite {
  position: relative;
  color: #f1d58f;
  font-style: normal;
  font-weight: 900;
}

.pillars,
.card-grid,
.pages-grid {
  display: grid;
  gap: 16px;
}

.pillars {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pages-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pillar,
.page-chip,
.info-card {
  border: 1px solid rgba(21, 63, 57, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(23, 37, 43, 0.07);
}

.pillar {
  padding: 18px;
  border-left: 4px solid var(--gold);
  font-weight: 900;
  line-height: 1.35;
}

.info-card {
  min-height: 278px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 24px;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--green-2);
}

.card-icon.maple {
  background: var(--maple);
}

.card-icon.gold {
  background: var(--gold);
}

.card-icon.blue {
  background: var(--blue);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.info-card h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.28;
}

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

.pastor-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.pastor-feature,
.pastor-list {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(23, 37, 43, 0.07);
}

.pastor-feature {
  display: grid;
  align-content: end;
  min-height: 390px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(23, 37, 43, 0.12), rgba(23, 37, 43, 0.88)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1100&q=78") center/cover;
}

.pastor-feature .role,
.minister-card .role {
  color: #f1d58f;
}

.pastor-feature h3,
.minister-card h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.18;
}

.pastor-feature p,
.minister-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.pastor-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.minister-card {
  padding: 30px;
  color: var(--white);
  background: var(--green);
}

.minister-card:nth-child(2) {
  background: var(--maple-dark);
}

.minister-card h3 {
  font-size: 1.55rem;
}

.statement {
  padding: 32px;
  border-left: 5px solid var(--maple);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 37, 43, 0.07);
}

.statement p:last-child {
  margin-bottom: 0;
}

.page-chip {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: var(--green);
  font-weight: 900;
  line-height: 1.3;
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(21, 63, 57, 0.96), rgba(143, 43, 40, 0.84)),
    url("https://images.unsplash.com/photo-1528685888404-81d2de0cbd34?auto=format&fit=crop&w=1800&q=78") center/cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 48px;
  align-items: start;
}

.contact-section .section-heading h2,
.contact-section .section-heading p {
  color: var(--white);
}

.contact-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.contact-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-row svg {
  width: 25px;
  height: 25px;
  color: #f1d58f;
}

.contact-row h3 {
  margin-bottom: 4px;
  font-size: 1rem;
  line-height: 1.25;
}

.contact-row p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  padding: 54px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #101e21;
  font-size: 0.94rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  max-width: 430px;
}

.footer-brand strong,
.footer-title {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.25;
}

.footer-brand p,
.footer-contact p {
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #f1d58f;
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: auto auto auto;
  }

  .menu-button {
    display: grid;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 0;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: max-height 220ms ease, border-width 220ms ease;
  }

  .nav-links a {
    min-height: 48px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .menu-toggle:checked ~ .nav-links {
    max-height: min(520px, calc(100dvh - 118px));
    border: 1px solid var(--line);
  }

  .menu-toggle:checked + .menu-button span {
    background: transparent;
  }

  .menu-toggle:checked + .menu-button span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle:checked + .menu-button span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .visit-card {
    max-width: 640px;
  }

  .card-grid,
  .pages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .top-strip .shell {
    min-height: 44px;
    justify-content: center;
    text-align: center;
  }

  .top-strip .hide-mobile {
    display: none;
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 72px;
    gap: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-title {
    font-size: 0.96rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
  }

  .lang-switch button {
    min-width: 40px;
    padding: 7px 8px;
  }

  .hero {
    min-height: auto;
    background-position: 58% center;
  }

  .hero-grid,
  .page-hero .hero-grid {
    min-height: auto;
    padding: 48px 0 104px;
    gap: 28px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.18rem, 11vw, 3.85rem);
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .quick-band {
    margin-top: 0;
    padding-top: 14px;
    background: var(--paper);
  }

  .quick-grid,
  .two-column,
  .pastor-layout,
  .contact-layout,
  .card-grid,
  .pages-grid,
  .pillars,
  .footer-inner,
  .footer-links {
    grid-template-columns: 1fr !important;
  }

  .quick-item {
    min-height: auto;
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 0;
  }

  .feature-panel,
  .pastor-feature {
    min-height: 360px;
  }

  .footer-bottom {
    width: min(100% - 28px, 1180px);
    flex-direction: column;
    margin-top: 28px;
  }
}

@media (max-width: 560px) {
  .top-strip {
    font-size: 0.88rem;
  }

  .top-strip .shell {
    min-height: 42px;
  }

  .nav {
    grid-template-columns: 1fr auto auto;
    min-height: 70px;
    gap: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand-title {
    font-size: 0.94rem;
    line-height: 1.12;
  }

  .brand-subtitle,
  .desktop-brand-name {
    display: none;
  }

  .mobile-brand-name {
    display: inline;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .lang-switch {
    padding: 3px;
  }

  .lang-switch button {
    min-width: 37px;
    min-height: 34px;
    padding: 6px 7px;
  }

  .hero-grid,
  .page-hero .hero-grid {
    padding-top: 38px;
    padding-bottom: 96px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.78rem;
    gap: 8px;
  }

  .eyebrow::before {
    width: 28px;
  }

  h1,
  .page-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.06rem, 10.2vw, 3.05rem);
  }

  .hero-copy {
    margin-bottom: 26px;
    line-height: 1.66;
  }

  .visit-card {
    width: 100%;
  }

  .visit-card-header,
  .visit-item,
  .quick-item,
  .contact-panel,
  .feature-panel,
  .pastor-feature,
  .minister-card,
  .statement {
    padding: 22px;
  }

  .card-grid,
  .pages-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    width: min(100% - 28px, 1180px);
    flex-direction: column;
    margin-top: 28px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  .brand-mark,
  .menu-button {
    width: 40px;
    height: 40px;
  }

  .brand-title {
    font-size: 0.9rem;
  }

  .lang-switch button {
    min-width: 34px;
    padding-inline: 6px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(1.96rem, 9.7vw, 2.72rem);
  }

  .nav-links {
    left: 12px;
    right: 12px;
  }
}
