:root {
  --bg: #eef2f6;
  --bg-deep: #05080f;
  --ink: #0c1420;
  --muted: #5a6778;
  --accent: #2a5a8c;
  --accent-soft: rgba(42, 90, 140, 0.14);
  --line: rgba(12, 20, 32, 0.1);
  --white: #f7f9fc;
  --header: 84px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
}

/* Hidden bot trap; assistive technologies should not encounter this field. */
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 10px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  line-height: 1.65;
}

body.nav-open,
body.lightbox-open { overflow: hidden; }

body[data-page="home"] .gallery-section {
  display: none;
}

body[data-page="gallery"] main > section:not(.gallery-section) {
  display: none;
}

body[data-page="gallery"] .gallery-section {
  min-height: calc(100vh - var(--header));
  background:
    radial-gradient(circle at 94% 4%, rgba(42, 90, 140, 0.11), transparent 28%),
    #e5ebf1;
}

[data-gallery-nav][aria-current="page"] {
  color: #8fc1eb;
}

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

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

h1, h2, h3, blockquote {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 6vw;
  background: #05080f;
  border-bottom: 1px solid rgba(232, 238, 246, 0.06);
}

.brand img {
  height: 52px;
  width: auto;
}

.nav {
  display: flex;
  gap: 26px;
}

.nav a,
.mobile-nav a:not(.btn) {
  color: #e8eef6;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.nav a:hover { color: var(--accent); }

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,250,243,0.2);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 1.5px;
  margin: 7px 8px;
  background: #e8eef6;
}

.mobile-nav { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--accent);
  color: #f4f8fc;
}

.btn-ghost,
.btn-line {
  border-color: rgba(232, 238, 246, 0.28);
  color: var(--white);
  background: rgba(232, 238, 246, 0.08);
  backdrop-filter: blur(12px);
}

.btn-line {
  border-color: var(--line);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: grid;
  place-items: end start;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.04);
  animation: ken 18s ease-in-out infinite alternate;
}

.hero-shade {
  background: linear-gradient(180deg, rgba(5, 8, 15, 0.28), rgba(5, 8, 15, 0.72));
}

.hero-copy {
  position: relative;
  z-index: 1;
  margin: 0 6vw 8vh;
  padding: 36px 32px;
  max-width: 760px;
  border-radius: 28px;
  background: rgba(5, 12, 24, 0.45);
  border: 1px solid rgba(180, 206, 232, 0.18);
  box-shadow: 0 24px 60px rgba(5, 8, 15, 0.28);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
}

.eyebrow,
.index {
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

.eyebrow {
  color: #d7e7f6;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

h1 {
  margin: 14px 0 0;
  font-size: clamp(3.2rem, 8vw, 7rem);
}

h1 em { font-style: italic; }

.lead,
.section-intro,
.about-copy p,
.service p,
.event p,
.faq-item p {
  color: var(--muted);
}

.lead { color: #d7e0ec; font-size: 1.12rem; }

.hero-actions,
.form-actions,
.process-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 6vw;
}

.trust article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px;
  display: grid;
  gap: 6px;
}

.trust strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.trust span {
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  min-height: 240px;
}

.step-num {
  margin: 0 0 18px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.7rem;
}

.step p:last-child {
  margin: 0;
  color: var(--muted);
}

.event-featured {
  min-height: 520px;
}

.event-featured .event-copy {
  padding: 48px 42px;
  gap: 8px;
}

.event-featured h3 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin: 8px 0 16px;
}

.event-featured .btn {
  margin-top: 18px;
  align-self: flex-start;
}

.event-featured .event-media img {
  min-height: 420px;
}

.event-copy .eyebrow {
  color: var(--accent);
}

.care-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.care-note article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 26px;
  display: grid;
  gap: 8px;
}

.care-note .eyebrow {
  margin: 0;
  color: var(--accent);
}

.care-note h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
}

.care-note p {
  margin: 0;
  color: var(--muted);
}

.featured-extra {
  margin: 18px 0 0;
  border-radius: 28px;
  overflow: hidden;
  max-height: 340px;
}

.featured-extra img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.events-dots {
  display: none;
}

.other-events {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.other-event {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  min-width: 0;
}

.other-event figure {
  margin: 0;
}

.other-event img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.other-event div {
  padding: 20px 18px 22px;
}

.other-event h3 {
  font-size: 1.45rem;
  margin: 0 0 8px;
}

.other-event p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.quote-section {
  padding-top: 8vh;
}

.quote-board {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 760px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(5, 8, 15, 0.08);
}

.quote-visual {
  position: relative;
  color: var(--white);
  min-height: 520px;
}

.quote-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-visual-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 36px;
  background: linear-gradient(180deg, rgba(5, 8, 15, 0.18), rgba(5, 8, 15, 0.82));
}

.quote-visual h2 {
  margin: 10px 0 14px;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.quote-visual p:not(.eyebrow) {
  margin: 0 0 22px;
  color: #d7e0ec;
  max-width: 36ch;
}

.quote-wa {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  margin-bottom: 10px;
  border-radius: 16px;
  background: rgba(247, 249, 252, 0.12);
  border: 1px solid rgba(232, 238, 246, 0.16);
  backdrop-filter: blur(16px);
  min-width: 0;
}

.quote-wa strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.quote-wa span {
  color: #d7e0ec;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.4;
}

.quote-form {
  padding: 42px 40px 36px;
  background:
    radial-gradient(circle at 100% 0, rgba(42, 90, 140, 0.08), transparent 42%),
    #fbfcfe;
}

.form-head {
  margin-bottom: 28px;
}

.form-head h3 {
  margin: 6px 0 10px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.form-head p:last-child {
  margin: 0;
  color: var(--muted);
}

.form-block {
  border: 0;
  margin: 0 0 26px;
  padding: 0 0 4px;
}

.form-block legend,
.form-kicker,
.field-label {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.type-pills,
.chips {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.type-pills {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.type-pill,
.chip {
  position: relative;
  cursor: pointer;
}

.type-pill span:hover,
.chip span:hover {
  border-color: var(--accent);
}

.type-pill input,
.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.type-pill span,
.chip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.type-pill input:checked + span,
.chip input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: #f4f8fc;
}

.type-pill input:focus-visible + span,
.chip input:focus-visible + span {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

.form-note {
  margin: 4px 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.section,
.quote,
.site-footer {
  padding-left: 6vw;
  padding-right: 6vw;
}

.section {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.about-photo {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.event-list {
  display: grid;
  gap: 28px;
}

.event {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}

.event.reverse .event-media { order: 2; }
.event.reverse .event-copy { order: 1; }

.event-media {
  margin: 0;
  min-height: 0;
}

.event-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.event-copy {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service,
.faq-item,
.channel,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.service {
  padding: 24px;
  min-height: 210px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(5, 8, 15, 0.08);
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.service-shot {
  position: relative;
  height: 340px;
  min-height: 340px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--bg-deep);
  color: var(--white);
}

.service-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 8, 15, 0.86));
}

.service-shot div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 20px;
}

.service-shot span {
  color: #d7e7f6;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-shot h3 {
  margin: 7px 0 0;
  font-size: 1.65rem;
}

.service-shot:hover img {
  transform: scale(1.04);
}

.gallery-section {
  background: #e5ebf1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 32px;
  align-items: end;
}

.gallery-heading > div {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.gallery-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  max-width: 48ch;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.gallery-filters button {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(12, 20, 32, 0.14);
  border-radius: 999px;
  background: rgba(247, 249, 252, 0.62);
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gallery-filters button:hover,
.gallery-filters button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.gallery-filters button:focus-visible,
.gallery-card:focus-visible,
.lightbox-close:focus-visible {
  outline: 3px solid rgba(42, 90, 140, 0.38);
  outline-offset: 3px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 190px;
  gap: 14px;
}

.gallery-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: var(--bg-deep);
  cursor: zoom-in;
}

.gallery-card:nth-child(8n + 1),
.gallery-card:nth-child(8n + 6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid.is-filtered .gallery-card {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-card[hidden] {
  display: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, opacity 0.35s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(5, 8, 15, 0.7));
  pointer-events: none;
}

.gallery-card span {
  position: absolute;
  z-index: 1;
  bottom: 15px;
  left: 16px;
  color: #f7f9fc;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-card:hover img {
  transform: scale(1.045);
  opacity: 0.92;
}

.gallery-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: right;
}

.gallery-page-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

body[data-page="home"] .gallery-page-actions {
  display: none;
}

.reviews-section {
  background:
    radial-gradient(circle at 96% 8%, rgba(42, 90, 140, 0.1), transparent 34%),
    var(--bg);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.reviews-heading > div {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.source-link,
.reviews-footer-link {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.source-link {
  margin-bottom: 12px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(42, 90, 140, 0.32);
}

.source-link:hover,
.reviews-footer-link:hover {
  color: #1c4168;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.8fr);
  gap: 18px;
  align-items: stretch;
}

.rating-summary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  padding: 32px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 12%, rgba(112, 171, 222, 0.28), transparent 32%),
    var(--bg-deep);
  color: var(--white);
  box-shadow: 0 22px 58px rgba(5, 8, 15, 0.16);
}

.rating-source {
  margin: 0;
  color: #b9d4ec;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rating-main {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 28px 0;
}

.rating-main > strong {
  font-family: var(--serif);
  font-size: clamp(4.2rem, 7vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.85;
}

.stars {
  color: #efb549;
  font-size: 1.12rem;
  letter-spacing: 0.08em;
}

.rating-main p {
  margin: 5px 0 0;
  color: #d7e0ec;
  font-size: 0.92rem;
}

.rating-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.rating-facts div {
  padding: 14px 10px;
  border: 1px solid rgba(232, 238, 246, 0.13);
  border-radius: 16px;
  background: rgba(247, 249, 252, 0.06);
  text-align: center;
}

.rating-facts dt {
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1;
}

.rating-facts dd {
  margin: 5px 0 0;
  color: #b9c8da;
  font-size: 0.68rem;
  line-height: 1.2;
}

.rating-updated {
  margin: 22px 0 0;
  color: #8fa3bb;
  font-size: 0.72rem;
}

.reviews-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(247, 249, 252, 0.84);
}

.official-reviews-widget {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.official-reviews-widget iframe,
.official-reviews-widget > div {
  max-width: 100% !important;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  height: 100%;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 300px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.review-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.72rem;
}

.review-top span {
  color: #b4740d;
  font-weight: 700;
}

.review-card h3 {
  margin: 38px 0 16px;
  font-size: 1.85rem;
}

.review-card blockquote {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.96rem;
  font-style: italic;
  line-height: 1.7;
  text-align: left;
}

.reviews-footer-link {
  align-self: flex-end;
  margin: 16px 4px 2px;
}

.awards-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.8fr);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
}

.awards-copy .eyebrow {
  margin: 0;
  color: var(--accent);
}

.awards-copy h3 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.awards-copy p:last-child {
  margin: 0;
  color: var(--muted);
}

.award-badges {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.award-badges a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.award-badges a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(5, 8, 15, 0.12);
}

.award-badges img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.instagram-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(92, 72, 146, 0.34), transparent 30%),
    radial-gradient(circle at 88% 88%, rgba(42, 90, 140, 0.28), transparent 34%),
    var(--bg-deep);
  color: var(--white);
}

.instagram-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  margin-bottom: 30px;
}

.instagram-head > div {
  max-width: 760px;
}

.instagram-head .index {
  margin: 0 0 5px;
  color: #a7cff0;
}

.instagram-head h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.instagram-head p:last-child {
  margin: 14px 0 0;
  color: #b9c8da;
}

.btn-instagram {
  gap: 10px;
  background: linear-gradient(112deg, #7b3dbd, #d83a76 58%, #e9a03b);
  color: #fff;
}

.btn-instagram svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 250px;
  gap: 12px;
}

.instagram-post {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #111a27;
}

.instagram-post-wide {
  grid-column: span 2;
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.instagram-post::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(5, 8, 15, 0.8));
}

.instagram-post span {
  position: absolute;
  z-index: 1;
  bottom: 16px;
  left: 17px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.instagram-post b {
  margin-left: 4px;
  font-weight: 500;
}

.instagram-post:hover img {
  transform: scale(1.045);
  opacity: 0.9;
}

.instagram-sync-status {
  margin: 16px 0 0;
  color: #8fa3bb;
  font-size: 0.76rem;
  text-align: right;
}

.lightbox {
  width: min(1100px, calc(100vw - 32px));
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 22px;
  background: #05080f;
  color: var(--white);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.48);
}

.lightbox::backdrop {
  background: rgba(2, 5, 10, 0.86);
  backdrop-filter: blur(8px);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  border-radius: 22px 22px 0 0;
  object-fit: contain;
  background: #05080f;
}

.lightbox figcaption {
  padding: 16px 20px 18px;
  color: #d7e0ec;
  font-size: 0.92rem;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -14px;
  right: -10px;
  width: 42px;
  height: 42px;
  padding: 0 0 3px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: #f7f9fc;
  color: var(--ink);
  font: 400 1.8rem/1 var(--sans);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.service h3,
.event h3,
.channel strong {
  font-size: 1.7rem;
  margin: 0 0 10px;
}

.quote {
  background: var(--bg-deep);
  color: var(--white);
  padding-top: 12vh;
  padding-bottom: 12vh;
}

blockquote {
  margin: 0 auto;
  max-width: 16ch;
  font-size: clamp(2.4rem, 6vw, 5rem);
  text-align: center;
}

blockquote cite {
  display: block;
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
}

.faq { display: grid; gap: 12px; }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.faq-item[open] summary::after { content: "–"; }

.faq-item p {
  margin: 0;
  padding: 0 26px 22px;
  max-width: 70ch;
}

.channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.channel {
  padding: 24px;
  transition: transform 0.3s ease;
}

.channel:hover { transform: translateY(-4px); }

.channel span {
  display: block;
  color: var(--muted);
}

.contact-form { padding: 26px; }

.field { display: grid; gap: 8px; margin-bottom: 16px; }

.field label {
  font-size: 0.86rem;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.address {
  margin-top: 28px;
  font-style: normal;
  color: var(--muted);
}

.site-footer {
  background: var(--bg-deep);
  color: #e8eef6;
  padding-top: 48px;
  padding-bottom: 48px;
  display: grid;
  gap: 16px;
  justify-items: start;
}

.site-footer img { height: 54px; }

.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

.footer-links a:hover { color: var(--accent); }

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #3d7eb8;
  filter: drop-shadow(0 8px 16px rgba(5, 8, 15, 0.45));
}

.whatsapp-fab svg {
  width: 40px;
  height: 40px;
  display: block;
}

@keyframes ken {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

@media (max-width: 1100px) {
  .steps,
  .chips {
    grid-template-columns: 1fr 1fr;
  }

  .service-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .award-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav, .site-header .btn-gold { display: none; }
  .menu-btn { display: block; }
  .mobile-nav {
    display: grid;
    gap: 20px;
    position: fixed;
    inset: var(--header) 0 0;
    z-index: 19;
    padding: 32px 6vw;
    background: var(--bg-deep);
  }
  .mobile-nav[hidden] { display: none; }
  .about-grid,
  .event,
  .services,
  .channels,
  .trust,
  .steps,
  .quote-board,
  .form-grid,
  .care-note {
    grid-template-columns: 1fr;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .reviews-heading,
  .reviews-layout,
  .awards-panel,
  .instagram-head {
    grid-template-columns: 1fr;
  }

  .reviews-heading,
  .instagram-head {
    gap: 10px;
  }

  .source-link,
  .btn-instagram {
    justify-self: start;
  }

  .rating-summary {
    min-height: 0;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-card:nth-child(8n + 1),
  .gallery-card:nth-child(8n + 6) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-grid.is-filtered .gallery-card {
    grid-column: span 1;
    grid-row: span 2;
  }

  .type-pills,
  .chips {
    grid-template-columns: 1fr 1fr;
  }

  .event-featured .event-copy {
    padding: 22px 20px 26px;
  }

  .event-media img,
  .event-featured .event-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .event-copy {
    padding: 22px 20px 26px;
  }

  .quote-form {
    padding: 28px 22px 24px;
  }

  .quote-visual-copy {
    padding: 28px 22px;
    min-width: 0;
  }

  .quote-visual {
    min-height: 420px;
    min-width: 0;
  }

  .quote-wa,
  .quote-wa span {
    max-width: 100%;
  }

  .quote-wa span {
    font-size: 0.84rem;
  }

  .events-carousel {
    margin-right: -6vw;
  }

  .other-events {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 6vw;
    padding-right: 6vw;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .other-events::-webkit-scrollbar {
    display: none;
  }

  .other-event {
    flex: 0 0 min(78vw, 340px);
    scroll-snap-align: start;
  }

  .other-event img {
    height: auto;
    aspect-ratio: 1;
  }

  .events-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .events-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(12, 20, 32, 0.22);
    cursor: pointer;
  }

  .events-dots button.is-active {
    width: 18px;
    background: var(--accent);
  }

  .hero-copy {
    margin: 0 5vw 6vh;
    padding: 26px 22px;
  }

  .about-photo img {
    aspect-ratio: 16 / 10;
  }

  .featured-extra,
  .featured-extra img {
    max-height: 220px;
    height: 220px;
  }
}

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

  .service-shot,
  .service-shot img {
    height: 300px;
    min-height: 300px;
  }

  .reviews-heading > div {
    display: block;
  }

  .reviews-heading .index {
    margin-bottom: 4px;
  }

  .rating-summary,
  .awards-panel {
    padding: 24px 20px;
  }

  .rating-main {
    gap: 14px;
  }

  .rating-facts {
    gap: 6px;
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 220px;
  }

  .review-card h3 {
    margin-top: 28px;
  }

  .reviews-footer-link {
    align-self: flex-start;
  }

  .award-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-grid {
    grid-auto-rows: 170px;
    gap: 8px;
  }

  .instagram-post {
    border-radius: 14px;
  }

  .instagram-post span {
    bottom: 11px;
    left: 12px;
    font-size: 0.67rem;
  }

  .gallery-filters {
    flex-wrap: nowrap;
    margin-right: -6vw;
    padding-right: 6vw;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .gallery-filters button {
    flex: 0 0 auto;
  }

  .gallery-grid {
    gap: 9px;
    grid-auto-rows: 140px;
  }

  .gallery-card {
    border-radius: 14px;
  }

  .gallery-grid.is-filtered .gallery-card {
    grid-row: span 2;
  }

  .gallery-card span {
    bottom: 11px;
    left: 12px;
    font-size: 0.62rem;
  }

  .lightbox {
    width: calc(100vw - 20px);
  }

  .lightbox-close {
    top: -12px;
    right: -4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img, .btn, .service, .channel, .service-shot img, .gallery-card img, .award-badges a, .instagram-post img { animation: none; transition: none; transform: none; }
}
