:root {
  --bg: #f7f6f3;
  --bg-soft: #efede8;
  --panel: #ffffff;
  --text: #1f2527;
  --text-soft: #5f696f;
  --line: #ddd9d1;
  --brand: #126266;
  --brand-strong: #0e4f52;
  --accent: #ba7d20;
  --accent-soft: #f5e9d4;
  --sand: #efe6d7;
  --mist: #e9efef;
  --ok-bg: #e9f8ef;
  --ok-line: #9fd8b3;
  --err-bg: #fdeeed;
  --err-line: #efb7b2;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 6px 16px rgba(18, 35, 32, 0.06);
  --shadow-md: 0 14px 36px rgba(17, 31, 29, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", "Mulish", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 0%, rgba(18, 98, 102, 0.09), transparent 34%),
    radial-gradient(circle at 90% 4%, rgba(186, 125, 32, 0.12), transparent 36%),
    linear-gradient(180deg, #faf9f6, #f4f2ee 56%, #f6f5f2);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(216, 225, 222, 0.8);
  backdrop-filter: blur(10px);
  background: rgba(250, 249, 246, 0.92);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.2);
  background: linear-gradient(145deg, #ffffff, #edf4f2);
  color: var(--brand);
  font-size: 1rem;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: #173230;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-sub {
  font-size: 0.74rem;
  color: var(--text-soft);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
}

nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.93rem;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

nav a:hover,
nav a.active {
  color: #123634;
  background: rgba(15, 118, 110, 0.12);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.call-pill,
.wa-pill {
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.52rem 0.88rem;
  border: 1px solid transparent;
  line-height: 1;
}

.call-pill {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
}

.wa-pill {
  color: #ffffff;
  background: #1fa855;
}

main {
  display: block;
}

.api-alert-wrap {
  padding-top: 0.9rem;
}

.api-alert {
  border: 1px solid var(--err-line);
  background: var(--err-bg);
  color: #842c24;
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-size: 0.94rem;
}

.section {
  padding: 3.2rem 0;
}

.section-tight {
  padding-top: 1.1rem;
}

.section-slim {
  padding: 1.6rem 0;
}

.kicker {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
}

.hero {
  padding: 3.4rem 0 2.4rem;
}

.hero-copy,
.hero-card,
.pillars-grid > * {
  animation: rise-in 500ms ease both;
}

.hero-card {
  animation-delay: 100ms;
}

.pillars-grid > *:nth-child(2) {
  animation-delay: 120ms;
}

.pillars-grid > *:nth-child(3) {
  animation-delay: 220ms;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-brand {
  margin: 0.25rem 0;
  color: #2c4e4a;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.subhead {
  margin: 0.3rem 0 1rem;
  color: #4f6562;
  font-size: 1.02rem;
}

.lead {
  margin: 0;
  color: var(--text-soft);
  max-width: 60ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.68rem 1.02rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  color: #ffffff;
  background: linear-gradient(140deg, #d39a2a, #b77b10);
  box-shadow: 0 8px 18px rgba(183, 123, 16, 0.25);
}

.btn-outline {
  color: #1e4649;
  border-color: rgba(15, 118, 110, 0.3);
  background: #ffffff;
}

.btn-soft {
  color: #425d59;
  border-color: var(--line);
  background: #f7faf9;
}

.btn-sm {
  padding: 0.5rem 0.88rem;
  font-size: 0.84rem;
}

.btn-full {
  width: 100%;
}

.btn-wa {
  background: #1fa855;
  color: #ffffff !important;
}

.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(216, 225, 222, 0.9);
  background: #f7f3ea;
  min-height: 240px;
  box-shadow: var(--shadow-md);
}

.hero-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.hero-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 340px;
  text-align: center;
  padding: 2rem;
  color: var(--brand-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #f5faf8, #eef5f3);
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.trust-chips span {
  padding: 0.35rem 0.68rem;
  border-radius: 999px;
  border: 1px solid #d3e0dc;
  color: #4a5d5a;
  font-size: 0.78rem;
  background: #f9fcfb;
}

.pillars-section {
  border-top: 1px solid #dde7e3;
  border-bottom: 1px solid #dde7e3;
  padding: 2.8rem 0;
  background: linear-gradient(180deg, #f9f8f4, #f1eee6);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid #e2dbc9;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  text-align: center;
}

.pillar-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.pillar-card p {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.tinted-section {
  background: linear-gradient(180deg, #eff3f2, #e8eceb);
  border-top: 1px solid #dae1df;
  border-bottom: 1px solid #dae1df;
}

.story-shell {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-lead {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #89611c;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.story-copy {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0.8rem 0;
}

.story-cta {
  margin-top: 1.7rem;
}

.section-head p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--brand);
}

.section-head h2 {
  margin: 0.5rem 0 1.2rem;
}

.banner-slider {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f7f3ea;
  box-shadow: var(--shadow-sm);
}

.banner-slider-track {
  position: relative;
  min-height: 0;
}

.banner-slide {
  display: none;
  position: relative;
}

.banner-slide.is-active {
  display: block;
}

.banner-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #f7f3ea;
}

.banner-slide-content {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(10, 24, 22, 0.1), rgba(10, 24, 22, 0.74));
}

.banner-slide-content h3 {
  color: #ffffff;
  margin: 0 0 0.7rem;
}

.banner-slider-controls {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-content: space-between;
  padding: 0.75rem 0.9rem;
  border-top: 1px solid var(--line);
  background: #f8fbfa;
}

.banner-nav {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #cfddda;
  background: #ffffff;
  color: #4e6460;
  cursor: pointer;
}

.banner-dots {
  display: flex;
  gap: 0.42rem;
  margin: 0 auto;
}

.banner-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #c4d4d0;
  cursor: pointer;
}

.banner-dot.is-active {
  background: var(--accent);
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.banner-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #f7f3ea;
  box-shadow: var(--shadow-sm);
}

.banner-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #f7f3ea;
}

.banner-card div {
  padding: 0.95rem;
}

.banner-card p {
  margin: 0.5rem 0 0;
  color: var(--text-soft);
}

.card-grid,
.team-grid,
.testimonial-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.quote-card,
.contact-form,
.contact-grid aside,
.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #f8fbfa);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.info-card h3,
.team-card h3 {
  margin-bottom: 0.45rem;
}

.info-card p,
.team-card p {
  margin: 0;
  color: var(--text-soft);
}

.info-card-service {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.info-card-service .btn-sm {
  margin-top: auto;
  align-self: flex-start;
}

.service-icon {
  color: var(--accent);
  font-size: 1.35rem;
}

.service-card {
  overflow: visible;
}

.service-card .btn-sm {
  margin-top: 0.65rem;
  align-self: flex-start;
}

.service-img-wrap {
  width: calc(100% + 2rem);
  height: auto;
  margin: -1rem -1rem 0.75rem -1rem;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border-bottom: 1px solid #dbe5e2;
  flex-shrink: 0;
  background: #f7f3ea;
}

.service-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.service-image-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  color: #8f651b;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  background: linear-gradient(145deg, #fbf7ef, #fffefe);
}

.price {
  display: inline-block;
  margin-top: 0.3rem;
  color: #9c6f13;
  font-weight: 700;
}

.section-cta {
  margin-top: 1.7rem;
  text-align: center;
}

.section-note {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 1.4rem;
  font-size: 0.98rem;
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.team-card img,
.team-avatar-placeholder {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  margin-bottom: 0.6rem;
  border: 1px solid #d9e4e0;
  background: #f7f3ea;
}

.team-avatar-placeholder {
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #8a641f;
  background: linear-gradient(145deg, #fbf7ef, #ffffff);
}

.member-title {
  margin: 0 0 0.4rem;
  color: #8a641f !important;
  font-weight: 700;
  font-size: 0.92rem;
}

.gallery {
  background: linear-gradient(180deg, #f2f5f4, #ecefef);
}

.album-title {
  margin: 0.95rem 0 0.65rem;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.gallery-grid figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #f7f3ea;
}

.gallery-grid figcaption {
  padding: 0.55rem 0.65rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.empty-note {
  color: var(--text-soft);
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.quote-card p {
  margin: 0;
}

.rating {
  margin: 0.55rem 0 0;
  letter-spacing: 0.08em;
  color: #cf8d17;
}

.quote-card footer {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  color: var(--text-soft);
}

.faq {
  background: linear-gradient(180deg, #f8f8f5, #f2f2ee);
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  padding: 0.75rem 0.85rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.contact-grid aside,
.contact-aside {
  background: linear-gradient(180deg, #fffdf8, #f8f4eb) !important;
  border-color: #e8dcc0 !important;
}

.panel-title,
.contact-method-label,
.footer-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #8f6a2a;
}

.contact-note {
  margin-top: 0.8rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.contact-method {
  margin-top: 0.9rem;
}

.contact-method-value {
  text-decoration: none;
  color: #1f3f3c;
  font-weight: 700;
}

.contact-services-list ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.contact-form h2,
.contact-aside h2 {
  margin: 0 0 0.9rem;
}

.form-helper {
  margin: 0 0 0.75rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.intent-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
}

.intent-chips a {
  text-decoration: none;
  color: #1e474a;
  border: 1px solid #cad8d4;
  background: #f8fbfa;
  border-radius: 999px;
  padding: 0.38rem 0.68rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.intent-chips a:hover {
  border-color: #aac4be;
  background: #eef5f3;
}

.form-trust {
  margin: 0.7rem 0 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.contact-form label {
  display: block;
  margin-bottom: 0.72rem;
  color: #3f5653;
  font-weight: 700;
  font-size: 0.9rem;
}

.req {
  color: #bb312f;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 0.32rem;
  border: 1px solid #cddbd7;
  border-radius: 10px;
  padding: 0.62rem 0.7rem;
  background: #ffffff;
  color: #1f2b2a;
  font-family: "Plus Jakarta Sans", "Mulish", sans-serif;
  font-size: 0.95rem;
}

textarea {
  resize: vertical;
}

.form-success,
.form-error {
  border-radius: 10px;
  padding: 0.62rem 0.74rem;
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
}

.form-success {
  border: 1px solid var(--ok-line);
  background: var(--ok-bg);
}

.form-error {
  border: 1px solid var(--err-line);
  background: var(--err-bg);
}

.page-hero {
  border-bottom: 1px solid #dbe5e2;
  background: linear-gradient(135deg, #f8f7f3, #ecefe9);
  padding: 3rem 0 2.4rem;
}

.page-hero .subhead {
  margin-bottom: 0;
}

.page-hero-subtitle {
  margin: 0.2rem 0 0.6rem;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.hero-cta-row {
  margin-top: 0;
}

.how-section {
  background: linear-gradient(180deg, #f6f5f1, #eceae4);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.how-step {
  border: 1px solid #ddd8cd;
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 1rem;
  text-align: center;
}

.how-num {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(140deg, #cf9422, #ab7614);
  margin-bottom: 0.55rem;
}

.how-step p {
  margin: 0.3rem 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.cta-banner {
  margin-top: 1rem;
  border-top: 1px solid #e3dbc9;
  border-bottom: 1px solid #e3dbc9;
  background: linear-gradient(145deg, #fdf8eb, #f7efdc);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: 2.3rem 0;
}

.cta-banner p {
  margin: 0.5rem 0 0;
  color: #5f6457;
}

.banner-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.8rem;
}

.banner-promo-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eff3f1;
}

.banner-promo-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #f7f3ea;
  transition: transform 0.28s ease;
}

.banner-promo-item:hover img {
  transform: none;
}

.banner-overlay-link {
  position: absolute;
  inset: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, min(420px, 100%)) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.about-photo {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: #f7f3ea;
  overflow: visible;
  max-width: 100%;
  align-self: start;
}

/* Inner wrapper isolates the bitmap from outer border-radius / grid sizing quirks */
.about-photo-media {
  display: block;
  width: 100%;
  overflow: visible;
  line-height: 0;
}

.about-photo img,
.about-photo-media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  background: #f7f3ea;
}

.about-body-full {
  grid-column: 1 / -1;
}

.about-lead {
  margin-top: 0;
  color: #415552;
  font-size: 1.02rem;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.value-card {
  border: 1px solid #e3dac9;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffdF7, #f8f3e9);
  text-align: center;
  padding: 1rem;
}

.value-icon {
  color: #bc8620;
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.value-card p {
  margin: 0.25rem 0 0;
  color: #5f6559;
  font-size: 0.88rem;
}

.site-footer {
  margin-top: 2.2rem;
  border-top: 1px solid var(--line);
  background: #edeeea;
  padding-top: 1.5rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

.footer-brand strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-brand p {
  margin: 0.2rem 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.site-footer a {
  color: #405f5b;
  text-decoration: none;
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--brand-strong);
}

.copyright {
  margin: 1.2rem 0 1.6rem;
  text-align: center;
  color: #5f726f;
  font-size: 0.88rem;
}

.mobile-cta-bar {
  display: none;
}

@media (max-width: 1080px) {
  .nav-wrap {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .brand {
    justify-self: start;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  nav::-webkit-scrollbar {
    height: 5px;
  }

  nav::-webkit-scrollbar-thumb {
    background: #c7d6d2;
    border-radius: 999px;
  }

  .header-ctas {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .cta-banner-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.7rem;
  }

  .hero-card,
  .hero-placeholder {
    min-height: 260px;
  }

  .hero-card img {
    min-height: 0;
  }

  .card-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-banner-inner {
    text-align: center;
    justify-items: center;
  }

  .cta-banner-inner .cta-row {
    justify-content: center;
  }

  .about-photo {
    order: -1;
  }

  .about-photo img,
  .about-photo-media img {
    max-height: none;
    height: auto;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(1120px, 94vw);
  }

  .section {
    padding: 2.5rem 0;
  }

  .card-grid,
  .card-grid-wide,
  .testimonial-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .banner-slide img {
    width: 100%;
    height: auto;
  }

  .banner-slider-track {
    min-height: 0;
  }

  .banner-slide-content {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.7rem 0.75rem;
  }

  .brand-sub {
    display: none;
  }

  .header-ctas {
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .call-pill,
  .wa-pill {
    font-size: 0.78rem;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    padding: 0.55rem 0.6rem calc(0.55rem + env(safe-area-inset-bottom));
    border-top: 1px solid #d7e1de;
    background: rgba(249, 251, 250, 0.96);
    backdrop-filter: blur(8px);
  }

  .mobile-cta-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    height: 44px;
    font-weight: 700;
    font-size: 0.88rem;
  }

  .mobile-cta-call {
    color: #ffffff;
    background: linear-gradient(140deg, var(--brand), var(--brand-strong));
  }

  .mobile-cta-wa {
    color: #ffffff;
    background: #1fa855;
  }

  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 460px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .cta-row {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Professional redesign pass */
:root {
  --pro-bg: #f4f3ef;
  --pro-surface: #fbfaf7;
  --pro-surface-2: #f0ece4;
  --pro-text: #1f2b35;
  --pro-muted: #5f6f7d;
  --pro-accent: #0d6c73;
  --pro-accent-2: #b6872b;
  --pro-line: #d9d2c3;
  --pro-radius: 16px;
  --pro-shadow: 0 12px 30px rgba(25, 35, 43, 0.08);
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--pro-text);
  background:
    radial-gradient(circle at 6% -4%, rgba(13, 108, 115, 0.08), transparent 28%),
    radial-gradient(circle at 96% 8%, rgba(182, 135, 43, 0.13), transparent 30%),
    linear-gradient(180deg, #f8f7f4, var(--pro-bg) 55%, #f2f0ea);
}

h1,
h2,
h3,
.brand-name,
.hero-copy h1,
.section-head h2,
.page-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0.01em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
  background: rgba(248, 247, 244, 0.88);
  border-bottom: 1px solid var(--pro-line);
}

.nav-wrap {
  min-height: 92px;
}

nav a {
  font-weight: 600;
  color: #425564;
}

nav a.active,
nav a:hover {
  color: var(--pro-accent);
  background: rgba(13, 108, 115, 0.1);
}

.call-pill,
.wa-pill,
.btn.btn-gold,
.btn.btn-outline,
.btn.btn-soft {
  border-radius: 999px;
  font-weight: 700;
}

.btn.btn-gold {
  background: linear-gradient(135deg, #cb962e, #9a6d18);
  box-shadow: 0 8px 18px rgba(151, 105, 20, 0.24);
}

.btn.btn-outline {
  border-color: rgba(13, 108, 115, 0.35);
  color: #124950;
}

.hero,
.page-hero,
.section,
.section-slim,
.pillars-section,
.tinted-section,
.gallery,
.faq,
.cta-banner,
.site-footer {
  position: relative;
}

.hero::before,
.page-hero::before,
.tinted-section::before,
.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(transparent 96%, rgba(200, 193, 178, 0.35) 97%);
  background-size: 100% 28px;
  opacity: 0.18;
}

.hero-card,
.banner-slider,
.banner-card,
.info-card,
.team-card,
.quote-card,
.contact-form,
.contact-grid aside,
.about-photo,
.value-card,
.faq-list details,
.banner-promo-item,
.gallery-grid figure {
  background: linear-gradient(180deg, var(--pro-surface), var(--pro-surface-2));
  border: 1px solid var(--pro-line);
  border-radius: var(--pro-radius);
  box-shadow: var(--pro-shadow);
}

.hero-card,
.banner-slider,
.banner-card,
.banner-promo-item,
.service-img-wrap,
.gallery-grid figure {
  overflow: hidden !important;
}

/* Priest/team portraits and about headshots: never clip — overflow hidden on the
   card was cutting off the tops of tall promotional photos in the grid. */
.team-card,
.about-photo {
  overflow: visible !important;
}

/* Consistent media presentation: full image visible (no forced crop from aspect-ratio boxes) */
.hero-card img,
.banner-slide img,
.banner-card img,
.service-img-wrap img,
.gallery-grid img,
.banner-promo-item img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  display: block;
  object-fit: contain !important;
  object-position: center center !important;
  background: #f4efe4;
}

/* Team / about photos: avoid min-height:0 on replaced content (can interact badly
   with grid sizing); keep full intrinsic height. */
.team-card img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  min-height: unset !important;
  display: block;
  object-fit: contain !important;
  object-position: center top !important;
  background: #f4efe4;
}

.about-photo img,
.about-photo-media img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  min-height: unset !important;
  display: block !important;
  vertical-align: top !important;
  object-fit: unset !important;
  object-position: unset !important;
  background: #f4efe4;
}

.banner-slider-track,
.hero-card {
  min-height: 0 !important;
}

.service-img-wrap {
  margin: -1rem -1rem 0.85rem -1rem;
  border-bottom: 1px solid var(--pro-line);
}

.banner-slide-content {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(180deg, rgba(11, 22, 24, 0.02), rgba(11, 22, 24, 0.72));
}

.section-head p,
.kicker,
.story-lead {
  color: var(--pro-accent);
  font-weight: 800;
  letter-spacing: 0.09em;
}

.section-note,
.lead,
.subhead,
.info-card p,
.quote-card p,
.contact-note,
.faq-list p,
.team-card p,
.value-card p {
  color: var(--pro-muted);
}

.faq-list details {
  padding: 0.9rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

/* Gallery popup */
.gallery-grid figure {
  cursor: zoom-in;
}

.gallery-grid img {
  border-bottom: 1px solid var(--pro-line);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gallery-modal.is-open {
  display: flex;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 16, 0.85);
}

.gallery-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 96vw);
  max-height: 92vh;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0f1720;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.gallery-modal__img {
  width: 100%;
  max-height: calc(92vh - 56px);
  object-fit: contain;
  background: #0f1720;
}

.gallery-modal__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.9rem;
  color: #e2e8ee;
  background: #0a1118;
}

.gallery-modal__title {
  margin: 0;
  font-size: 0.95rem;
  color: #e2e8ee;
}

.gallery-modal__close {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #f4f7fa;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

/* Service card → detail modal */
.service-card--clickable {
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card--clickable:hover {
  box-shadow: 0 14px 34px rgba(25, 35, 43, 0.12);
  transform: translateY(-2px);
}

.service-card--clickable:focus-visible {
  outline: 2px solid #0d6c73;
  outline-offset: 3px;
}

.service-card--clickable .btn-sm {
  position: relative;
  z-index: 1;
}

.service-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.service-detail-modal.is-open {
  display: flex;
}

.service-detail-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 16, 0.78);
}

.service-detail-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 96vw);
  max-height: 92vh;
  overflow: auto;
  border-radius: var(--pro-radius, 16px);
  border: 1px solid var(--pro-line, #d9d2c3);
  background: linear-gradient(180deg, var(--pro-surface, #fbfaf7), var(--pro-surface-2, #f0ece4));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  padding: 1.35rem 1.35rem 1.6rem;
}

.service-detail-modal__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  border: 1px solid rgba(13, 108, 115, 0.35);
  background: #ffffff;
  color: #124950;
  border-radius: 999px;
  width: 38px;
  height: 38px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.service-detail-modal__grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: start;
  padding-top: 0.35rem;
}

.service-detail-modal__grid--no-image {
  grid-template-columns: 1fr;
}

.service-detail-modal__media {
  border-radius: 12px;
  overflow: hidden;
  background: #f4efe4;
  border: 1px solid var(--pro-line, #d9d2c3);
}

.service-detail-modal__img {
  width: 100%;
  max-height: min(52vh, 540px);
  min-height: 160px;
  object-fit: contain;
  display: block;
}

.service-detail-modal__title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  margin: 0 0 0.85rem;
  padding-right: 2.5rem;
  color: var(--pro-text, #1f2b35);
  line-height: 1.2;
}

.service-detail-modal__text {
  margin: 0 0 1rem;
  color: var(--pro-muted, #5f6f7d);
  font-size: 1rem;
  line-height: 1.68;
}

.service-detail-modal__price {
  margin: 0 0 1rem;
  font-weight: 700;
  color: #9a6d18;
  font-size: 1rem;
}

.service-detail-modal__book {
  display: inline-flex;
}

@media (max-width: 720px) {
  .service-detail-modal__grid {
    grid-template-columns: 1fr;
  }

  .service-detail-modal__img {
    max-height: min(40vh, 360px);
  }
}

body.modal-open {
  overflow: hidden;
}

/* About page hero photo: final guard against grid / object-fit clipping (some builds
   cached older CSS; this block is intentionally last in the stylesheet). */
section.container.section .about-grid > .about-photo {
  overflow: visible !important;
  height: auto !important;
  contain: none !important;
}

section.container.section .about-grid .about-photo-media,
section.container.section .about-grid .about-photo-media img {
  overflow: visible !important;
}

section.container.section .about-grid .about-photo-media img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: unset !important;
  object-position: unset !important;
}
