:root {
  --ink: #000000;
  --ink-soft: #1a1a1a;
  --cream: #ffffff;
  --cream-2: #f2f3f5;
  --gold: #ff7230;
  --gold-deep: #e35d1e;
  --text-dark: #111111;
  --text-muted: #656565;
  --white: #ffffff;
  --radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: "Work Sans", sans-serif;
  color: var(--text-dark);
  background: var(--cream);
}

h1,
h2,
h3,
.serif {
  font-family: "Avenir", "Avenir Next", "Work Sans", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.7rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: var(--gold-deep);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  background: transparent;
  border-color: rgba(20, 18, 14, 0.25);
  color: var(--text-dark);
}
.btn-outline-dark:hover {
  border-color: var(--text-dark);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ================= HEADER ================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition:
    background 0.3s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease;
}
header.scrolled {
  background: rgba(21, 19, 15, 0.42);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  padding: 12px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex: none;
}
.logo img {
  width: 120px;
}

nav.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
nav.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}
nav.main-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.18s ease;
  position: relative;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--gold);
}
nav.main-nav a .nav-icon,
nav.main-nav a .nav-chevron {
  display: none;
}
.nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  flex: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1200;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.28s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}
body.nav-open .nav-toggle span {
  background: var(--ink);
}
body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 7, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 950;
}
body.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
}
body.nav-open {
  overflow: hidden;
}

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

  nav.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: 100vh;
    overflow-y: auto;
    margin: 0;
    background: var(--cream);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 84px 20px 24px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1100;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  }
  body.nav-open nav.main-nav {
    transform: translateY(0);
  }
  nav.main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
    text-align: left;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(20, 18, 14, 0.08);
  }
  nav.main-nav ul li {
    width: 100%;
  }
  nav.main-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 12px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    transition:
      background 0.18s ease,
      color 0.18s ease;
  }
  nav.main-nav a span {
    flex: 1;
  }
  nav.main-nav a .nav-icon {
    display: block;
    width: 16px;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 114, 48, 0.85);
    flex: none;
  }
  nav.main-nav a .nav-chevron {
    display: block;
    font-size: 0.65rem;
    color: rgba(20, 18, 14, 0.25);
    flex: none;
    transition:
      transform 0.18s ease,
      color 0.18s ease;
  }
  nav.main-nav a:hover,
  nav.main-nav a:active {
    background: rgba(20, 18, 14, 0.06);
    color: var(--ink);
  }
  nav.main-nav a:hover .nav-chevron,
  nav.main-nav a:active .nav-chevron {
    color: var(--gold);
    transform: translateX(3px);
  }
  .nav-cta {
    display: flex;
    align-self: stretch;
    justify-content: center;
    width: auto;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    font-size: 0.6rem;
    background: var(--gold);
    color: var(--cream);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition:
      background 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease;
  }
  .nav-cta:hover {
    background: var(--gold-deep) !important;
    color: var(--ink);
    border-color: var(--gold);
  }
}

@media (max-width: 400px) {
  .logo img {
    width: 100px;
  }
  nav.main-nav {
    padding: 76px 18px 20px;
  }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 70vh;
  min-height: 540px;
  max-height: 640px;
  overflow: hidden;
  background: var(--ink);
}

.hero .swiper {
  height: 100%;
  width: 100%;
}
.hero .swiper-slide {
  position: relative;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
}
.hero .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 9, 7, 0.55) 0%,
    rgba(10, 9, 7, 0.45) 45%,
    rgba(10, 9, 7, 0.75) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
}
.hero-content > * {
  pointer-events: auto;
}

.hero-content .eyebrow {
  color: var(--gold);
  margin-bottom: 14px;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.18;
  max-width: 640px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-content p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  max-width: 460px;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .swiper-pagination {
  bottom: 18px !important;
}
.hero .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.55;
  width: 8px;
  height: 8px;
}
.hero .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}

/* ================= WELCOME ================= */
.welcome {
  padding: 110px 0 100px;
}
.welcome-head {
  margin-bottom: 48px;
}
.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--cream-2);
  border: 1px solid rgba(20, 18, 14, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

/* Standardized Header Size across global sections */
.welcome-head h2 {
  font-size: clamp(1rem, 4vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.welcome-head p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 580px;
}

.welcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.welcome-card {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/3.5;
  background-size: cover;
  background-position: top;
  transition: transform 0.35s ease;
}
.welcome-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 9, 7, 0.5) 0%,
    rgba(10, 9, 7, 0.05) 32%,
    rgba(10, 9, 7, 0.1) 55%,
    rgba(10, 9, 7, 0.88) 100%
  );
}
.welcome-card-top {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  z-index: 2;
  color: #fff;
}
.welcome-card-top span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-bottom: 4px;
}
.welcome-card-top h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
.welcome-card-bottom {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
}
.welcome-card-bottom span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap 0.2s ease;
}
.welcome-card-bottom i {
  font-size: 0.7rem;
  color: var(--gold);
}
.welcome-card:hover .welcome-card-bottom span {
  gap: 12px;
}
/* ================= WELCOME PILLARS (EDITORIAL SECTION) ================= */
.welcome-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 70px;
  padding-top: 60px;
  border-top: 1px solid rgba(20, 18, 14, 0.12);
}

.pillar-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

/* Subtle vertical divider between pillars on desktop */
.pillar-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(20, 18, 14, 0.08);
}

.pillar-number {
  font-family: "Playfair Display", "Avenir", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pillar-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pillar-content p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ================= RESPONSIVE ADJUSTMENTS ================= */
@media (max-width: 980px) {
  .welcome-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .pillar-item:not(:last-child)::after {
    right: -14px;
  }
}

@media (max-width: 768px) {
  .welcome-pillars {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 48px;
    padding-top: 40px;
  }

  .pillar-item:not(:last-child)::after {
    display: none;
  }

  .pillar-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }

  .pillar-number {
    font-size: 1.5rem;
    flex: none;
  }
}

/* ================= MISSION ================= */
.mission {
  background: var(--cream-2);
  color: var(--text-dark);
  padding: 120px 0;
  text-align: center;
}
.mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(20, 18, 14, 0.1);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.mission h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
  max-width: 820px;
  margin: 0 auto 20px;
  color: var(--text-dark);
}
.mission h2 em {
  font-style: normal;
  color: var(--gold-deep);
}
.mission p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 34px;
}
.mission-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.mission .btn-ink {
  background: var(--ink);
  color: #fff;
}
.mission .btn-ink:hover {
  background: var(--ink-soft);
}

/* ================= APOSTOLIC MANDATE (LARGER TYPOGRAPHY) ================= */
.pastor {
  padding: 110px 0;
  background: var(--cream-2);
  color: var(--text-dark);
}
.pastor .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.pastor-copy {
  max-width: 840px;
  text-align: center;
}
.pastor-kicker {
  font-family: "Work Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
  letter-spacing: 0.1em;
}

.mandate-text {
  margin-bottom: 36px;
}

.mandate-text p {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  line-height: 1.65;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 32px;
}

.mandate-text p strong {
  color: var(--gold-deep);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-outline-pastor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(20, 18, 14, 0.25);
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}
.btn-outline-pastor:hover {
  border-color: var(--text-dark);
  background: rgba(20, 18, 14, 0.06);
}

@media (max-width: 720px) {
  .pastor .container {
    flex-direction: column;
    gap: 28px;
  }
}
/* ================= FAMILY GRID ================= */
.family {
  padding: 100px 0;
  text-align: center;
}
.family .eyebrow {
  text-align: center;
}
.family h2 {
  font-size: 2.1rem;
  font-weight: 600;
  margin: 10px 0 46px;
}
.family-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 20px;
}

/* ---- placement / sizing ---- */
.bento-portrait {
  grid-column: span 1;
  grid-row: span 2;
}
.bento-tile {
  grid-column: span 1;
  grid-row: span 1;
}
.bento-highlight {
  grid-column: span 4;
  grid-row: span 1;
}

/* Shared photo-tile styling */
.family-bento .bento-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  height: 100%;
  min-height: 0; /* Prevents grid cell expansion bugs */
}

.bento-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bento-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.001);
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
  filter: saturate(0.96);
}
.bento-item:hover .bento-media {
  filter: saturate(1.05);
  transform: scale(1.04);
}
.bento-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(10, 9, 7, 0.06);
  transition: background 0.4s ease;
  pointer-events: none;
}
.bento-item:hover::after {
  background: rgba(10, 9, 7, 0);
}

/* Highlight Quote Tile */
.bento-highlight-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  padding: 34px 40px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  overflow: hidden;
}
.bento-highlight-inner::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(217, 164, 65, 0.28) 0%,
    rgba(217, 164, 65, 0) 70%
  );
  pointer-events: none;
}
.bento-highlight-quote {
  font-family: "Avenir", "Avenir Next", "Work Sans", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.4;
  color: #fff;
  max-width: 520px;
}

/* Responsive Overrides */
@media (max-width: 980px) {
  .family-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .bento-highlight {
    grid-column: span 2;
  }
  .bento-highlight-inner {
    padding: 28px;
  }
}

@media (max-width: 720px) {
  .family-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .bento-portrait {
    grid-column: span 1;
    grid-row: span 2;
  }
  .bento-tile,
  .bento-highlight {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ================= MOMENTS ================= */
.moments {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
}
.moments .container {
  display: grid;
  grid-template-columns: 0.62fr 2.6fr;
  gap: 40px;
  align-items: center;
}
.moments .eyebrow {
  color: var(--gold);
}
.moments h2 {
  font-size: 1.9rem;
  font-weight: 600;
  margin: 10px 0 26px;
  line-height: 1.2;
}
.moments-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.moments-strip div {
  aspect-ratio: 3/3.6;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}

/* ================= FOOTER ================= */
footer {
  background: var(--ink-soft);
  color: rgba(255, 255, 255, 0.86);
  position: relative;
}
footer::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(217, 164, 65, 0.4) 50%,
    transparent 100%
  );
}

.footer-cta {
  padding: 64px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-cta-copy h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 8px 0 8px;
  line-height: 1.25;
  color: var(--cream);
}
.footer-cta-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 340px;
}

.footer-main {
  padding: 76px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: 64px;
}

.footer-brand .logo {
  display: flex;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.86rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.48);
  max-width: 300px;
  margin-bottom: 28px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.85);
}
.footer-col p,
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  display: block;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  transition: color 0.18s ease;
}
.footer-contact-link:hover {
  color: var(--gold);
}
.footer-contact-link i {
  width: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}
.footer-directions {
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-top: 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: transparent;
  width: auto;
  align-self: center;
  text-decoration: none;
}
.footer-directions i {
  font-size: 0.75rem;
}

.footer-newsletter-text {
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.65;
  max-width: 320px;
  margin-bottom: 22px;
}
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 340px;
  padding: 6px 6px 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.newsletter-form:focus-within {
  border-color: rgba(217, 164, 65, 0.6);
  background: rgba(255, 255, 255, 0.08);
}
.newsletter-form > i {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  flex: none;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-size: 0.86rem;
  padding: 8px 0;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.newsletter-form button {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.newsletter-form button:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social a {
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}
.social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 26px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}
.back-to-top {
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}
.back-to-top:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {
  .welcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .welcome-values {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-highlight-inner {
    padding: 28px;
  }
  .moments .container {
    grid-template-columns: 1fr;
  }
  .moments-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 44px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 22px;
  }
  .hero-content .eyebrow {
    font-size: 0.62rem;
    margin-bottom: 10px;
  }
  .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .hero-content p {
    font-size: 0.88rem;
    margin-top: 12px;
  }
  .welcome {
    padding: 80px 0 70px;
  }
  .welcome-badge {
    font-size: 0.64rem;
    padding: 7px 14px;
    margin-bottom: 18px;
  }
  .welcome-head h2 {
    font-size: 1.5rem;
  }
  .welcome-head p {
    font-size: 0.88rem;
  }
  .welcome-grid {
    grid-template-columns: 1fr;
  }
  .welcome-values {
    grid-template-columns: 1fr;
    margin-top: 40px;
    padding-top: 36px;
    gap: 16px;
  }
  .value-card {
    padding: 24px 20px;
  }
  .mission {
    padding: 80px 0;
  }
  .mission-badge {
    font-size: 0.58rem;
    padding: 7px 14px;
    margin-bottom: 22px;
  }
  .mission h2 {
    font-size: 1.4rem;
    line-height: 1.32;
  }
  .mission p {
    font-size: 0.9rem;
    margin-bottom: 26px;
  }
  .mandate-text p {
    font-size: 1.1rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }
  .family {
    padding: 70px 0;
  }
  .family .eyebrow {
    font-size: 0.64rem;
  }
  .family h2 {
    font-size: 1.35rem;
    margin: 8px 0 32px;
  }
  .bento-highlight-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .moments-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-cta {
    padding: 44px 0;
  }
  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-cta-copy h2 {
    font-size: 1.05rem;
  }
  .footer-cta-sub {
    font-size: 0.78rem;
  }
  .footer-main {
    padding: 48px 0 42px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-tagline {
    font-size: 0.78rem;
    margin-bottom: 20px;
  }
  .footer-col h4 {
    font-size: 0.62rem;
    margin-bottom: 16px;
  }
  .footer-col p,
  .footer-col a {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  .footer-directions {
    margin-top: 16px;
  }
  .footer-newsletter-text {
    font-size: 0.8rem;
    margin-bottom: 18px;
  }
  .newsletter-form input {
    font-size: 0.78rem;
  }
  .footer-bottom {
    padding: 24px 0;
  }
  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }
  .footer-bottom p {
    font-size: 0.7rem;
  }
  .hero {
    height: 74vh;
  }
  .hero .swiper-slide {
    background-image: var(--hero-img-mobile, var(--hero-img));
  }
}