
:root {
  --ivory: #fff5f9;
  --paper: #fffafd;
  --espresso: #6b3b50;
  --ink: #5a3244;
  --copper: #d787a7;
  --copper-light: #efbfd0;
  --sage: #9cb89c;
  --sage-deep: #8b5f73;
  --sand: #f4dfe8;
  --line: rgba(107, 59, 80, .14);
  --muted: #876775;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(107, 59, 80, .08);
  --shadow-lg: 0 28px 80px rgba(107, 59, 80, .18);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --container: min(1180px, calc(100% - 42px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 2000; transform: translateY(-180%); padding: 10px 14px; background: var(--espresso); color: white; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; color: var(--espresso); font-weight: 500; line-height: .98; letter-spacing: -.025em; }
h1 { font-size: clamp(4.1rem, 9vw, 8.6rem); }
h2 { font-size: clamp(3rem, 6vw, 5.7rem); }
h3 { font-size: clamp(1.9rem, 3.4vw, 2.65rem); }
p { color: var(--muted); }
.eyebrow { margin-bottom: 18px; color: var(--copper); font-size: .73rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.lead { color: var(--ink); font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.45rem, 2.6vw, 2.05rem); line-height: 1.25; }
.kicker-script { font-family: "Allura", cursive; color: var(--copper); font-size: clamp(2.1rem, 5vw, 4rem); line-height: 1; }
.section { padding: clamp(78px, 10vw, 138px) 0; }
.section-tight { padding: clamp(58px, 7vw, 92px) 0; }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading p:last-child { max-width: 650px; }
.section-heading.center p:last-child { margin-inline: auto; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 13px 24px; border: 1px solid transparent; border-radius: 999px;
  font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--copper); box-shadow: 0 14px 30px rgba(215, 135, 167, .26); }
.button-primary:hover { background: #c96e93; box-shadow: 0 18px 36px rgba(215, 135, 167, .34); }
.button-dark { color: var(--ivory); background: var(--espresso); }
.button-dark:hover { background: #52283a; }
.button-outline { color: var(--espresso); border-color: rgba(107,59,80,.28); background: transparent; }
.button-outline:hover { border-color: var(--copper); color: var(--copper); }
.button-light { color: var(--espresso); background: var(--ivory); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--copper); font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }

.announcement { background: var(--espresso); color: rgba(255,255,255,.78); text-align: center; padding: 9px 18px; font-size: .73rem; letter-spacing: .08em; }
.announcement a { color: var(--ivory); font-weight: 800; text-decoration: none; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,250,253,.93); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.navbar { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 48px; height: 48px; }
.brand-copy { line-height: 1.1; }
.brand-copy strong { display: block; color: var(--espresso); font-family: "Cormorant Garamond", serif; font-size: 1.34rem; font-weight: 600; }
.brand-copy small { color: var(--copper); font-size: .55rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: clamp(15px, 2vw, 28px); }
.nav-links a { position: relative; color: var(--ink); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px; background: var(--copper); transform: scaleX(0); transform-origin: right; transition: transform .23s ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-links a[aria-current="page"] { color: var(--copper); }
.nav-cta { padding: 10px 17px; border-radius: 999px; color: white !important; background: var(--espresso); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 8px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 5px auto; background: var(--espresso); transition: transform .25s, opacity .25s; }

.hero { position: relative; min-height: calc(100svh - 119px); display: grid; align-items: center; overflow: hidden; background: var(--espresso); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; filter: saturate(.82) contrast(1.03); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(76,44,59,.9) 0%, rgba(107,59,80,.68) 43%, rgba(107,59,80,.16) 77%); }
.hero-content { position: relative; z-index: 1; padding: 100px 0; }
.hero-copy { max-width: 670px; }
.hero .eyebrow { color: #f6c5d8; }
.hero h1 { margin-bottom: 24px; color: var(--ivory); max-width: 820px; }
.hero h1 em { display: block; color: #f6c5d8; font-family: "Allura", cursive; font-size: .68em; font-weight: 400; line-height: .75; }
.hero-copy > p { max-width: 610px; color: rgba(255,255,255,.78); font-size: 1.02rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero .button-outline { color: white; border-color: rgba(255,255,255,.45); }
.hero .button-outline:hover { border-color: white; color: white; }
.hero-stamp { position: absolute; right: max(4vw, 26px); bottom: 34px; z-index: 2; width: 155px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: white; text-align: center; font-family: "Cormorant Garamond", serif; transform: rotate(-7deg); }
.hero-stamp::before { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(255,255,255,.2); border-radius: inherit; }
.hero-stamp span { font-size: 1.15rem; line-height: 1.05; }

.home-nav { background: var(--ivory); }
.page-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.page-link { min-height: 245px; padding: 28px; border: 1px solid rgba(107,59,80,.1); border-radius: var(--radius-md); background: rgba(255,255,255,.64); text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.page-link:hover { transform: translateY(-7px); background: white; box-shadow: var(--shadow-sm); }
.page-link .num { display: block; margin-bottom: 54px; color: var(--copper); font-size: .67rem; font-weight: 800; letter-spacing: .18em; }
.page-link h3 { margin-bottom: 10px; font-size: 2.05rem; }
.page-link p { margin-bottom: 0; font-size: .87rem; }

.page-hero { position: relative; min-height: 430px; display: grid; align-items: end; overflow: hidden; background: var(--espresso); }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(90,50,68,.9), rgba(107,59,80,.46)); }
.page-hero-content { position: relative; z-index: 1; padding: 94px 0 66px; }
.page-hero h1 { margin: 0; color: var(--ivory); font-size: clamp(3.5rem, 8vw, 7rem); }
.page-hero p { max-width: 660px; margin: 16px 0 0; color: rgba(255,255,255,.72); }
.page-hero .eyebrow { color: #f6c5d8; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-top: 26px; color: rgba(255,255,255,.68); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.breadcrumb a { text-decoration: none; }
.breadcrumb i { opacity: .5; font-style: normal; }

.editorial-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(48px, 8vw, 108px); align-items: center; }
.image-frame { position: relative; }
.image-frame::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid var(--copper-light); border-radius: 180px 180px 28px 28px; }
.image-frame img { position: relative; width: 100%; max-height: 680px; object-fit: cover; border-radius: 180px 180px 28px 28px; box-shadow: var(--shadow-lg); }
.editorial-copy { max-width: 650px; }
.editorial-copy blockquote { margin: 35px 0 0; padding: 26px 0 0 28px; border-left: 2px solid var(--copper); }
.editorial-copy blockquote p { margin-bottom: 6px; color: var(--espresso); font-family: "Cormorant Garamond", serif; font-size: 1.5rem; line-height: 1.25; }
.editorial-copy cite { color: var(--copper); font-style: normal; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.value-card span { color: var(--copper); font-family: "Cormorant Garamond", serif; font-size: 2.8rem; }
.value-card h3 { margin: 16px 0 10px; font-size: 1.9rem; }
.value-card p { margin: 0; font-size: .9rem; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 320px; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; overflow: hidden; }
.service-card::after { content: ""; position: absolute; width: 160px; height: 160px; right: -90px; bottom: -90px; border: 1px solid var(--sand); border-radius: 50%; }
.service-card.featured { color: white; background: var(--espresso); border-color: transparent; }
.service-card.featured h3, .service-card.featured .price { color: var(--ivory); }
.service-card.featured p { color: rgba(255,255,255,.66); }
.service-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.service-num { color: var(--copper-light); font-size: .68rem; font-weight: 800; letter-spacing: .18em; }
.price { color: var(--copper); font-family: "Cormorant Garamond", serif; font-size: 2.45rem; line-height: 1; }
.service-card h3 { margin: 50px 0 13px; }
.service-card p { max-width: 490px; }
.service-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.service-meta span { padding: 7px 10px; border: 1px solid currentColor; border-radius: 999px; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: .8; }
.service-card.featured .service-meta span { color: rgba(255,255,255,.68); }

.service-subsection { margin-top: 56px; }
.service-subsection h3 { margin: 0 0 8px; font-size: clamp(2rem, 4vw, 3rem); }
.service-subsection p { margin: 0 0 24px; max-width: 680px; }
.service-note { margin-top: 34px; padding: 24px 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(239,191,208,.22), rgba(255,255,255,.8)); }
.service-note h4 { margin: 0 0 10px; color: var(--espresso); font-family: "Cormorant Garamond", serif; font-size: 1.8rem; font-weight: 600; }
.service-note p { margin: 0; }
.service-pill-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.service-pill { display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 999px; background: #adc1a9; color: #354234; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-pill.outline { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.booking-panel { display: grid; grid-template-columns: 1.3fr .7fr; gap: 30px; align-items: center; padding: clamp(34px, 6vw, 70px); border-radius: var(--radius-lg); color: white; background: linear-gradient(135deg, #9a6b80, #7f5265); }
.booking-panel h2 { color: var(--ivory); font-size: clamp(2.8rem, 5vw, 4.7rem); }
.booking-panel p { color: rgba(255,255,255,.72); }
.booking-panel-actions { display: grid; gap: 12px; justify-items: stretch; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 130px; gap: 16px; }
.gallery-item { position: relative; grid-column: span 4; grid-row: span 4; padding: 0; border: 0; border-radius: 22px; overflow: hidden; background: var(--sand); }
.gallery-item.wide { grid-column: span 8; }
.gallery-item.tall { grid-row: span 6; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item::after { content: "View set"; position: absolute; inset: auto 14px 14px; padding: 10px 14px; border-radius: 999px; color: var(--espresso); background: rgba(255,245,249,.92); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover::after { opacity: 1; transform: none; }
.portfolio-cta { display: flex; justify-content: space-between; align-items: center; gap: 28px; margin-top: 24px; padding: 32px 36px; border-radius: var(--radius-md); background: var(--ivory); }
.portfolio-cta h3 { margin-bottom: 5px; }
.portfolio-cta p { margin: 0; }

.faith-page { min-height: calc(100svh - 119px); display: grid; place-items: center; padding: 90px 0; background: linear-gradient(135deg, #9a6b80, #7f5265); overflow: hidden; }
.faith-card { position: relative; max-width: 900px; margin-inline: auto; padding: clamp(42px, 8vw, 90px); border: 1px solid rgba(255,255,255,.22); border-radius: 50% 50% 28px 28px / 18% 18% 28px 28px; text-align: center; }
.faith-card::before, .faith-card::after { content: ""; position: absolute; border: 1px solid rgba(239,191,208,.38); border-radius: 50%; }
.faith-card::before { width: 260px; height: 260px; top: -150px; left: -165px; }
.faith-card::after { width: 360px; height: 360px; right: -250px; bottom: -245px; }
.faith-card .kicker-script { color: #e0b296; }
.faith-card h1 { margin-bottom: 35px; color: var(--ivory); font-size: clamp(4rem, 9vw, 7.8rem); }
.faith-card blockquote { max-width: 670px; margin: 0 auto 30px; }
.faith-card blockquote p { color: white; font-family: "Cormorant Garamond", serif; font-size: clamp(1.75rem, 4vw, 2.7rem); line-height: 1.2; }
.faith-card cite { color: #e0b296; font-style: normal; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.faith-card > p { max-width: 650px; margin: 0 auto 32px; color: rgba(255,255,255,.74); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { display: flex; flex-direction: column; min-height: 340px; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.stars { color: var(--copper); letter-spacing: .18em; }
.review-card blockquote { margin: 42px 0 auto; }
.review-card blockquote p { color: var(--espresso); font-family: "Cormorant Garamond", serif; font-size: 1.65rem; line-height: 1.2; }
.review-card strong { margin-top: 27px; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 100px); align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border: 0; color: var(--espresso); background: transparent; text-align: left; font-family: "Cormorant Garamond", serif; font-size: 1.5rem; }
.faq-question i { width: 15px; height: 15px; position: relative; flex: 0 0 auto; }
.faq-question i::before, .faq-question i::after { content: ""; position: absolute; inset: 7px 0 auto; height: 1px; background: var(--copper); transition: transform .25s; }
.faq-question i::after { transform: rotate(90deg); }
.faq-item.open .faq-question i::after { transform: rotate(0deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { padding: 0 40px 22px 0; margin: 0; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 20px; }
.contact-card { padding: clamp(36px, 6vw, 68px); border-radius: var(--radius-lg); color: white; background: var(--espresso); }
.contact-card h2 { color: var(--ivory); }
.contact-card > p { color: rgba(255,255,255,.68); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 42px; }
.contact-list { display: grid; gap: 13px; }
.contact-list a { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: center; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.12); color: white; text-decoration: none; }
.contact-list small { display: block; color: #f5c9d8; font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.contact-icon svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.map-card { min-height: 660px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-card iframe { width: 100%; height: 100%; min-height: 660px; border: 0; }

.cta-band { background: var(--copper); color: white; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 42px 0; }
.cta-band h2 { margin: 0; color: white; font-size: clamp(2.2rem, 4vw, 3.6rem); }
.cta-band p { margin: 7px 0 0; color: rgba(255,255,255,.78); }

.footer { padding: 68px 0 24px; color: rgba(255,255,255,.72); background: #5a3143; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 42px; }
.footer-brand .brand-copy strong { color: var(--ivory); }
.footer-brand p { max-width: 390px; margin: 20px 0 0; color: rgba(255,255,255,.48); font-size: .87rem; }
.footer h4 { margin: 0 0 18px; color: #f5c9d8; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.66); text-decoration: none; font-size: .84rem; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.35); font-size: .72rem; }
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 800; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: white; background: #25d366; box-shadow: 0 12px 34px rgba(20,106,52,.3); transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 28px; fill: currentColor; }

.lightbox { width: min(960px, calc(100% - 26px)); padding: 0; border: 0; border-radius: 24px; overflow: visible; background: transparent; }
.lightbox::backdrop { background: rgba(69,40,54,.82); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: calc(100svh - 32px); object-fit: contain; border-radius: 24px; background: #5a3143; }
.lightbox-close { position: absolute; top: -14px; right: -14px; z-index: 2; width: 44px; height: 44px; border: 0; border-radius: 50%; color: white; background: var(--copper); font-size: 1.6rem; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .page-links { grid-template-columns: repeat(2, 1fr); }
  .values-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-auto-rows: 105px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-card, .map-card iframe { min-height: 480px; }
}

@media (max-width: 880px) {
  :root { --container: min(100% - 30px, 720px); }
  .announcement { display: none; }
  .navbar { min-height: 72px; }
  .brand-copy small { display: none; }
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .nav-links { position: fixed; inset: 0; z-index: 1001; min-height: 100svh; padding: 120px 28px 44px; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; background: var(--paper); transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; }
  .nav-links.open { transform: none; }
  .nav-links a { font-family: "Cormorant Garamond", serif; font-size: 2rem; font-weight: 600; letter-spacing: 0; text-transform: none; }
  .nav-links a::after { display: none; }
  .nav-cta { margin-top: 12px; font-family: "Manrope", sans-serif !important; font-size: .78rem !important; font-weight: 800 !important; letter-spacing: .08em !important; text-transform: uppercase !important; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: calc(100svh - 72px); }
  .hero-stamp { display: none; }
  .editorial-grid, .booking-panel, .faq-layout { grid-template-columns: 1fr; }
  .editorial-grid { gap: 70px; }
  .image-frame { max-width: 580px; margin-inline: auto; }
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(3.5rem, 18vw, 5.3rem); }
  .section { padding: 78px 0; }
  .hero-media img { object-position: 68% center; }
  .hero-media::after { background: linear-gradient(90deg, rgba(90,50,68,.92), rgba(107,59,80,.55)); }
  .hero-content { padding: 82px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 330px; }
  .page-links, .values-grid, .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .page-link { min-height: 220px; }
  .page-hero { min-height: 360px; }
  .page-hero-content { padding: 74px 0 46px; }
  .image-frame::before { inset: -10px 10px 10px -10px; }
  .image-frame img { border-radius: 110px 110px 24px 24px; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: 430px; }
  .gallery-item, .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .gallery-item::after { opacity: 1; transform: none; }
  .portfolio-cta, .cta-band-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .contact-card { border-radius: 28px; }
  .map-card, .map-card iframe { min-height: 390px; border-radius: 28px; }
  .faith-page { min-height: calc(100svh - 72px); }
  .faith-card { border-radius: 120px 120px 26px 26px / 60px 60px 26px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .lightbox-close { top: 9px; right: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
