/* ============================================================
   Saptagiri Events — Stylesheet
   Palette: ivory canvas, deep maroon, marigold gold, peacock teal
   ============================================================ */

:root {
  --ivory: #FBF1DD;
  --ivory-deep: #F3DFB8;
  --maroon: #7A3A12;
  --maroon-deep: #43200B;
  --gold: #E8821F;
  --gold-light: #F5B36B;
  --teal: #0E4B44;
  --rose: #C0392B;
  --ink: #2E1509;

  --display: "Cormorant Garamond", "Georgia", serif;
  --body: "Mukta", "Segoe UI", sans-serif;
  --label: "Poppins", "Segoe UI", sans-serif;

  --max-w: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--maroon-deep);
  margin: 0 0 0.4em;
  font-weight: 600;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--label);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow .arch-mark { width: 20px; height: 16px; flex-shrink: 0; stroke: var(--gold); fill: var(--gold); }

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 239, 225, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 18px rgba(67, 32, 11, 0.08);
  transition: box-shadow 0.35s ease, padding 0.35s ease;
  padding: 18px 0;
}
.topbar.scrolled {
  box-shadow: 0 6px 24px rgba(67, 32, 11, 0.14);
  padding: 11px 0;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; }

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  color: var(--maroon-deep);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand .arch-mark { width: 34px; height: 27px; stroke: var(--maroon); fill: var(--maroon); }
.brand small {
  display: block;
  font-family: var(--label);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--rose);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 34px;
  font-family: var(--label);
  font-size: 15.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.nav-links a { position: relative; padding-bottom: 4px; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.topbar .call-btn {
  font-family: var(--label);
  font-size: 14.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FDF3E4;
  background: var(--maroon-deep);
  padding: 13px 26px;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}
.topbar .call-btn:hover { background: var(--maroon); transform: translateY(-1px); }

.nav-toggle { display: none; color: var(--maroon-deep); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 112px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--maroon-deep);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: contrast(1.06) saturate(1.08);
  opacity: 0;
  transition: opacity 1.6s ease;
  animation: heroZoomSlow 12s ease-out forwards;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
@keyframes heroZoomSlow {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(28,13,5,0.55) 0%, rgba(28,13,5,0.28) 32%, rgba(26,12,5,0.62) 78%, rgba(20,9,4,0.92) 100%);
}

.hero-dots {
  position: absolute;
  left: 32px;
  bottom: 96px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(253,246,232,0.7);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.hero-dot.is-active { background: var(--gold-light); transform: scale(1.15); }
.hero-dot:hover { background: rgba(253,246,232,0.5); }
@media (max-width: 760px) {
  .hero-dots { left: 20px; bottom: 76px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 32px 84px;
  max-width: var(--max-w);
  margin: 0 auto;
  color: #FDF3E4;
  opacity: 0;
  animation: heroRise 1.1s 0.35s ease forwards;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--label);
  font-size: 14.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow .rule { width: 46px; height: 1px; background: var(--gold-light); }

.hero h1 {
  color: #ffffff;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.12;
  font-weight: 600;
  max-width: 640px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.4);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-family: var(--body);
  font-size: 18.5px;
  color: #f5ecd8;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  max-width: 42ch;
  margin: 18px 0 30px;
  font-weight: 400;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color .25s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--maroon-deep);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(232,130,31,0.28); }
.btn-outline {
  border: 1px solid rgba(253,246,232,0.55);
  color: #FDF3E4;
}
.btn-outline:hover { border-color: #FDF3E4; background: rgba(253,246,232,0.08); transform: translateY(-2px); }

/* ---------- Hero lead-capture card ---------- */
.hero-card {
  background: #FDF6EA;
  border-radius: 10px;
  padding: 32px 30px 30px;
  box-shadow: 0 30px 70px -20px rgba(30, 14, 5, 0.55);
  color: var(--ink);
  opacity: 0;
  animation: heroRise 1.1s 0.55s ease forwards;
}
.hero-card-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(122, 58, 18, 0.12);
}
.hero-card-brand .arch-mark { width: 26px; height: 21px; stroke: var(--maroon); fill: var(--maroon); }
.hero-card-brand span {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  color: var(--maroon-deep);
}
.hero-card h3 {
  font-family: var(--label);
  font-size: 20px;
  color: var(--maroon-deep);
  text-align: center;
  margin: 0 0 22px;
  font-weight: 600;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--maroon-deep);
  font-weight: 600;
  margin-bottom: 7px;
}
.field input {
  width: 100%;
  font-family: var(--body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid rgba(122, 58, 18, 0.18);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}
.field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,130,31,0.18);
}
.phone-row { display: flex; gap: 10px; }
.phone-row .code {
  flex: 0 0 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(122, 58, 18, 0.18);
  border-radius: 6px;
  background: #F6E9D2;
  color: var(--maroon-deep);
  font-family: var(--label);
  font-size: 14px;
  font-weight: 600;
}
.phone-row input { flex: 1; }

.quote-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: var(--label);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: var(--rose);
  padding: 15px;
  border-radius: 6px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.quote-submit:hover { background: #A5301E; transform: translateY(-1px); }
.quote-note {
  font-size: 12px;
  color: #8A6543;
  text-align: center;
  margin: 12px 0 0;
}
.field-error {
  font-size: 12px;
  color: var(--rose);
  margin: -12px 0 14px;
  display: none;
}
.field-error.show { display: block; }

@media (max-width: 980px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { max-width: 420px; }
}

.hero-arch-frame {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 46px;
  z-index: 3;
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  right: 32px;
  bottom: 46px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F0DCB8;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0.85;
}
.scroll-cue .line { width: 1px; height: 40px; background: rgba(240,222,187,0.6); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 720px) { .scroll-cue { display: none; } }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.06); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 10px 26px rgba(0,0,0,0.28), 0 0 0 10px rgba(37,211,102,0); }
}
@media (max-width: 560px) {
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ============================================================
   SECTION DIVIDER — mandap arch motif
   ============================================================ */
.divider {
  display: flex;
  justify-content: center;
  padding: 54px 0 6px;
  background: var(--ivory);
}
.divider svg { width: 120px; height: 46px; stroke: var(--gold); fill: var(--gold); }

.divider.on-maroon { background: var(--maroon-deep); }
.divider.on-maroon svg { stroke: var(--gold-light); fill: var(--gold-light); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 30px 0 110px;
  background: var(--ivory);
}
.about .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 74px;
  align-items: center;
}
.about-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}
.about-media::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(67,32,11,0.35);
}
.about h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  max-width: 12ch;
}
.about p {
  color: #4A2A10;
  font-size: 17px;
  max-width: 52ch;
}
.about p + p { margin-top: 16px; }

.founder-row {
  display: flex;
  gap: 36px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.founder {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.founder .name {
  font-family: var(--display);
  font-size: 21px;
  color: var(--maroon-deep);
  font-weight: 600;
}
.founder .role {
  font-family: var(--label);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-top: 3px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--maroon-deep);
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  top: -10%; right: -6%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(232,130,31,0.16), transparent 70%);
  pointer-events: none;
}
.services .section-head { max-width: 60ch; margin-bottom: 56px; }
.services h2 { color: #FCF2E4; font-size: clamp(30px, 3.4vw, 44px); }
.services .eyebrow { color: var(--gold-light); }
.services .eyebrow .arch-mark { stroke: var(--gold-light); fill: var(--gold-light); }
.services .lede { color: #E8C9A0; font-size: 17px; max-width: 58ch; margin-top: 14px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(251,241,221,0.14);
  border: 1px solid rgba(251,241,221,0.14);
}
.service-card {
  display: block;
  text-decoration: none;
  background: var(--maroon-deep);
  padding: 38px 34px 40px;
  transition: background 0.35s ease;
}
.service-card:hover { background: #5C2410; }
.service-card .icon { width: 40px; height: 40px; margin-bottom: 22px; }
.service-card .icon path { stroke: var(--gold-light); fill: none; }
.service-card .icon circle { fill: var(--gold-light); stroke: none; }
.service-card h3 {
  color: #FCF2E4;
  font-size: 22px;
  margin-bottom: 10px;
}
.service-card p {
  color: #D9B88E;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.service-card .learn-more {
  display: inline-block;
  font-family: var(--label);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  transition: transform 0.25s ease;
}
.service-card:hover .learn-more { transform: translateX(4px); }

@media (max-width: 860px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 108px 0 100px;
  background: var(--ivory);
}
.gallery .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.gallery h2 { font-size: clamp(30px, 3.4vw, 44px); max-width: 14ch; }
.gallery .lede { color: #5C2E13; max-width: 46ch; font-size: 16px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
  box-shadow: 0 18px 34px -18px rgba(58,26,10,0.35);
  aspect-ratio: 4 / 5;
  background: var(--ivory-deep);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(40,17,7,0.72) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .tag {
  position: absolute;
  left: 16px; bottom: 14px;
  color: #FBF1DD;
  font-family: var(--label);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-item:hover .tag { opacity: 1; transform: translateY(0); }

@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(30,14,5,0.94);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: 2px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute;
  color: #FBF1DD;
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: 0.1em;
  cursor: pointer;
  background: rgba(251,241,221,0.1);
  border: 1px solid rgba(251,241,221,0.3);
  padding: 12px 16px;
  border-radius: 2px;
  transition: background 0.25s ease;
}
.lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: rgba(251,241,221,0.2); }
.lightbox .lb-close { top: 28px; right: 28px; }
.lightbox .lb-prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 28px; top: 50%; transform: translateY(-50%); }
@media (max-width: 620px) {
  .lightbox .lb-prev, .lightbox .lb-next { padding: 10px 13px; }
}

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */
.svc-hero {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: flex-end;
  padding-top: 100px;
  overflow: hidden;
  background: var(--maroon-deep);
}
.svc-hero-media { position: absolute; inset: 0; }
.svc-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.05) saturate(1.05);
}
.svc-hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,4,7,0.55) 0%, rgba(20,4,7,0.25) 40%, rgba(14,3,5,0.88) 100%);
}
.svc-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px 44px;
}
.breadcrumb {
  font-family: var(--label);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: #F0DCB8;
  opacity: 0.85;
  margin-bottom: 14px;
}
.breadcrumb a { color: #F0DCB8; border-bottom: 1px solid rgba(240,220,184,0.35); }
.breadcrumb a:hover { border-color: #F0DCB8; }
.breadcrumb span { margin: 0 8px; opacity: 0.6; }
.svc-hero-content h1 {
  color: #fff;
  font-size: clamp(30px, 4.2vw, 50px);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  max-width: 16ch;
}

.svc-content { padding: 72px 0 20px; background: var(--ivory); }
.svc-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.svc-intro p { color: var(--maroon); font-size: 17.5px; line-height: 1.7; max-width: 46ch; }
.svc-included h3 {
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.svc-included ul { list-style: none; padding: 0; margin: 0 0 28px; }
.svc-included li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.55;
}
.svc-included li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
}
.svc-cta { display: inline-flex; }

.svc-gallery-section { padding: 20px 0 90px; background: var(--ivory); }
.svc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-gallery-item, .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 18px 34px -18px rgba(58,26,10,0.35);
  aspect-ratio: 4 / 5;
  background: var(--ivory-deep);
}
.svc-gallery-item img, .gallery-item img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 760px) { .svc-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .svc-gallery-grid { grid-template-columns: 1fr; } }

.related-services { padding: 90px 0 100px; background: var(--ivory-deep); }
.related-services .eyebrow { justify-content: flex-start; }
.related-services h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 30px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.related-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 6px;
  padding: 22px 18px;
  box-shadow: 0 12px 24px -16px rgba(67,32,11,0.3);
  border: 1px solid rgba(122,58,18,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 18px 32px -16px rgba(67,32,11,0.4); }
.related-card .icon { width: 30px; height: 30px; }
.related-card .icon path { stroke: var(--gold); fill: none; }
.related-card .icon circle { fill: var(--gold); stroke: none; }
.related-card span {
  font-family: var(--label);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--maroon-deep);
  line-height: 1.35;
}
@media (max-width: 980px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) {
  .svc-content-grid { grid-template-columns: 1fr; gap: 40px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 108px 0 100px;
  background: var(--ivory-deep);
}
.testimonials .section-head { max-width: 62ch; margin-bottom: 48px; }
.testimonials h2 { font-size: clamp(30px, 3.4vw, 44px); }
.testimonials .lede { color: var(--maroon); max-width: 52ch; font-size: 16px; margin-top: 10px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.testi-empty {
  grid-column: 1 / -1;
  color: var(--maroon);
  font-family: var(--label);
  font-size: 14px;
  opacity: 0.75;
  padding: 20px 0;
}
.testi-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 26px;
  box-shadow: 0 16px 34px -20px rgba(67,32,11,0.35);
  border: 1px solid rgba(122,58,18,0.1);
  display: flex;
  flex-direction: column;
}
.testi-card .quote-mark {
  font-family: var(--display);
  font-size: 46px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 6px;
}
.testi-card p.msg {
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0 0 18px;
  flex: 1;
}
.testi-card .who {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(122,58,18,0.12);
  padding-top: 14px;
}
.testi-card .who .name {
  font-family: var(--display);
  font-weight: 600;
  color: var(--maroon-deep);
  font-size: 16px;
}
.testi-card .who .event {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose);
}

.testi-form-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 36px 34px 32px;
  box-shadow: 0 20px 50px -24px rgba(67,32,11,0.4);
  border: 1px solid rgba(122,58,18,0.1);
}
.testi-form-card h3 {
  font-family: var(--display);
  font-size: 24px;
  text-align: center;
  color: var(--maroon-deep);
  margin: 0 0 24px;
}
.testi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.testi-row .field { margin-bottom: 0; }
#testi-form .field { margin-bottom: 18px; }
#testi-form .field label .opt { text-transform: none; font-weight: 400; color: #9a7a5c; letter-spacing: 0; }
#testi-form textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid rgba(90, 20, 32, 0.18);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  resize: vertical;
  min-height: 100px;
}
#testi-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,130,31,0.18);
}
.testi-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.testi-status {
  font-size: 13px;
  text-align: center;
  margin: 12px 0 0;
  min-height: 18px;
  color: var(--maroon);
}
.testi-status.error { color: var(--rose); }
.testi-status.success { color: #2E6B1F; }
#testi-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 860px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .testi-grid { grid-template-columns: 1fr; }
  .testi-row { grid-template-columns: 1fr; }
  .testi-form-card { padding: 28px 22px; }
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--gold);
  padding: 56px 0;
}
.cta-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  color: var(--maroon-deep);
  font-size: clamp(24px, 2.6vw, 34px);
  max-width: 20ch;
  margin: 0;
}
.cta-strip .btn-outline { border-color: rgba(67,32,11,0.4); color: var(--maroon-deep); }
.cta-strip .btn-outline:hover { background: rgba(67,32,11,0.08); border-color: var(--maroon-deep); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--maroon-deep);
  padding: 108px 0 90px;
}
.contact .section-head { max-width: 60ch; margin-bottom: 54px; }
.contact h2 { color: #FCF2E4; font-size: clamp(30px, 3.4vw, 44px); }
.contact .eyebrow { color: var(--gold-light); }
.contact .eyebrow .arch-mark { stroke: var(--gold-light); fill: var(--gold-light); }
.contact .lede { color: #E8C9A0; font-size: 17px; margin-top: 14px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 44px;
}
.contact-card h3 {
  color: var(--gold-light);
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.contact-card p {
  color: #F6E4C4;
  font-size: 16px;
  margin: 0 0 6px;
  line-height: 1.6;
}
.person {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.person .p-name { color: #FCF2E4; font-family: var(--display); font-size: 19px; }
.person a.phone {
  color: var(--gold-light);
  font-family: var(--label);
  font-size: 14.5px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(245,179,107,0.4);
}
.person a.phone:hover { border-color: var(--gold-light); }

.wa-btn {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--maroon-deep);
  background: var(--gold-light);
  padding: 9px 16px;
  border-radius: 2px;
  font-weight: 600;
  transition: background 0.25s ease;
}
.wa-btn:hover { background: #fff; }

.map-frame {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(251,241,221,0.18);
  height: 100%;
  min-height: 260px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 260px; border: 0; filter: grayscale(0.15) sepia(0.08); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  padding: 40px 0;
}
footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
footer .f-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  color: #F6E4C4;
  font-size: 18px;
}
footer .f-brand .arch-mark { width: 20px; height: 16px; stroke: var(--gold); fill: var(--gold); }
footer p { color: #B08A5E; font-size: 13px; margin: 0; font-family: var(--label); letter-spacing: 0.02em; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .about .wrap { grid-template-columns: 1fr; gap: 46px; }
  .about-media { max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid .map-card { grid-column: span 2; }
}

@media (max-width: 760px) {
  .nav-links, .topbar .call-btn { display: none; }
  .nav-toggle {
    display: block;
    background: none; border: none;
    color: #FBF1DD;
    font-size: 24px;
    cursor: pointer;
  }
  .nav-links.mobile-open {
    display: flex;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 74vw;
    max-width: 320px;
    background: var(--maroon-deep);
    color: #F6DFBE;
    flex-direction: column;
    padding: 100px 36px;
    gap: 26px;
    font-size: 16px;
    box-shadow: -20px 0 50px rgba(0,0,0,0.35);
  }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .map-card { grid-column: span 1; }
  .cta-strip .wrap { flex-direction: column; text-align: center; }
  .founder-row { gap: 24px; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  .hero-content { padding: 0 20px 64px; }
  .btn { padding: 14px 22px; font-size: 12px; }
}
