@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Source+Sans+3:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: #FAFAF8;
  font-family: 'Source Sans 3', -apple-system, sans-serif;
  color: #42525b;
  -webkit-font-smoothing: antialiased;
}

a {
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

img {
  max-width: 100%;
}

/* ===================== SITE HEADER / NAV ===================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid #e7eced;
  box-shadow: 0 1px 0 rgba(47, 76, 98, 0.04);
}

.site-header__bar {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo img {
  width: 314px;
  display: block;
  height: 80px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav__link {
  position: relative;
  font-family: 'Source Sans 3', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: #2F4C62;
  text-decoration: none;
  padding: 8px 0;
}

.site-nav__link:hover {
  color: #6c8071;
}

.site-nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #809385;
  border-radius: 2px;
}

.btn-tour {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  margin-left: 6px;
  background: #2F4C62;
  color: #fafaf8;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid #2F4C62;
  border-radius: 4px;
}

.btn-tour:hover {
  background: #233a4b;
  border-color: #233a4b;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid #d8e0e1;
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #2F4C62;
  border-radius: 2px;
}

.mobile-nav {
  border-top: 1px solid #e7eced;
  background: #fafaf8;
  padding: 10px 18px 22px;
  display: none;
  flex-direction: column;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  min-height: 54px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #2F4C62;
  text-decoration: none;
  border-bottom: 1px solid #eef2f2;
  padding: 0 4px;
}

.mobile-nav .btn-tour {
  height: 54px;
  margin-top: 16px;
  margin-left: 0;
  font-size: 17px;
}

@media (max-width: 920px) {
  .site-nav,
  .site-header__bar > .btn-tour {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* ===================== HERO ===================== */

.hero {
  position: relative;
  min-height: clamp(440px, 52vw, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(28,46,60,0.86) 0%, rgba(28,46,60,0.62) 46%, rgba(28,46,60,0.18) 100%);
}

.hero__inner {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(48px,7vw,88px) 24px;
  width: 100%;
}

.hero__content {
  max-width: 600px;
}

.hero__eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bcd0c4;
}

.hero__eyebrow span {
  color: #FFFFFF;
  letter-spacing: 2.34px;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(32px,4.4vw,50px);
  line-height: 1.12;
  color: #fafaf8;
  margin: 0 0 22px;
}

.hero__lede {
  font-size: clamp(18px,2vw,20px);
  line-height: 1.7;
  color: #e4eaec;
  margin: 0 0 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 28px;
  background: #fafaf8;
  color: #2F4C62;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
}

.btn-primary-light:hover {
  background: #fff;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 26px;
  background: transparent;
  color: #fafaf8;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(250,250,248,0.55);
  border-radius: 4px;
}

.btn-outline-light:hover {
  border-color: #fafaf8;
}

/* ===================== WHY FAMILIES CHOOSE ===================== */

.why-choose {
  padding: clamp(64px,9vw,116px) 24px;
  background-color: #E9E7E3;
}

.why-choose__wrap {
  max-width: 1220px;
  margin: 0 auto;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px,5vw,72px);
  align-items: start;
}

.why-choose__intro {
  position: sticky;
  top: 110px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6c8071;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(30px,4vw,46px);
  line-height: 1.12;
  color: #2F4C62;
  margin: 0 0 20px;
}

.why-choose__intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #4f5e68;
  margin: 0 0 30px;
  max-width: 40ch;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 28px;
  background: #2F4C62;
  color: #fafaf8;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
}

.btn-primary:hover {
  background: #233a4b;
}

.why-choose__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.why-card {
  background: #fff;
  border: 1px solid #eaefef;
  border-radius: 6px;
  padding: 22px 22px;
}

.why-card p:first-child {
  margin: 0;
  font-size: 16.5px;
  font-weight: 600;
  color: #2F4C62;
}

.why-card p:last-child {
  margin: 6px 0 0;
  font-size: 14.5px;
  color: #67757d;
}

/* ===================== TRUST STRIP ===================== */

.trust-strip {
  border-top: 1px solid #e9eded;
  border-bottom: 1px solid #e9eded;
  background: #f3f6f6;
}

.trust-strip__wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 40px;
  text-align: center;
}

.trust-strip__wrap span.item {
  font-size: 15.5px;
  color: #516069;
}

.trust-strip__wrap strong {
  color: #2F4C62;
  font-weight: 600;
}

.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #bcc9cc;
}

/* ===================== ABOUT TEASER ===================== */

.about-teaser {
  padding: clamp(56px,8vw,104px) 24px;
  background: #f1f4f4;
  border-top: 1px solid #e7eded;
}

.about-teaser__wrap {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(36px,5vw,72px);
  align-items: center;
}

.about-teaser__img {
  width: 100%;
  height: clamp(340px,40vw,480px);
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 26px 56px -30px rgba(47,76,98,0.45);
  display: block;
}

.about-teaser__title {
  text-transform: capitalize;
}

.about-teaser p {
  font-size: 18px;
  line-height: 1.7;
  color: #4f5e68;
  margin: 0 0 18px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16.5px;
  font-weight: 600;
  color: #2F4C62;
  text-decoration: none;
  border-bottom: 1.5px solid #809385;
  padding-bottom: 3px;
}

.link-arrow:hover {
  color: #6c8071;
}

/* ===================== FINAL CTA ===================== */

.final-cta {
  padding: clamp(40px,6vw,84px) 24px clamp(48px,7vw,96px);
  background-color: #cccccc;
}

.final-cta__wrap {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: clamp(36px,5vw,72px);
  align-items: center;
}

.final-cta__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(42px,5.6vw,72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #2F4C62;
  margin: 0 0 26px;
  text-transform: capitalize;
}

.final-cta__lede {
  font-size: clamp(18px,2vw,21px);
  line-height: 1.65;
  color: #516069;
  max-width: 38ch;
  margin: 0 0 36px;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 26px;
  background: transparent;
  color: #2F4C62;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #c2cfd2;
  border-radius: 4px;
}

.btn-outline-dark:hover {
  border-color: #2F4C62;
  background: rgba(47,76,98,0.04);
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 30px;
  background: #2F4C62;
  color: #fafaf8;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid #2F4C62;
  border-radius: 4px;
}

.btn-primary-lg:hover {
  background: #233a4b;
  border-color: #233a4b;
}

.final-cta__note {
  margin: 30px 0 0;
  font-size: 14.5px;
  color: #7c8a90;
}

.final-cta__imgwrap {
  position: relative;
}

.final-cta__img {
  width: 100%;
  height: clamp(380px,46vw,560px);
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 30px 60px -28px rgba(47,76,98,0.4);
  display: block;
}

.final-cta__badge {
  position: absolute;
  left: -18px;
  bottom: -18px;
  background: #fafaf8;
  border: 1px solid #e7eced;
  border-radius: 6px;
  padding: 18px 22px;
  box-shadow: 0 18px 40px -22px rgba(47,76,98,0.35);
  display: flex;
  align-items: center;
  gap: 14px;
}

.final-cta__badge img {
  height: 46px;
  width: auto;
  display: block;
}

.final-cta__badge p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.25;
  color: #2F4C62;
  max-width: 18ch;
}

@media (max-width: 720px) {
  .final-cta__badge {
    left: 0;
    bottom: -18px;
  }
}

/* ===================== SITE FOOTER ===================== */

.site-footer {
  background: #eef2f3;
  border-top: 1px solid #e1e8e9;
  color: #3a4a52;
  font-family: 'Source Sans 3', -apple-system, sans-serif;
}

.site-footer__grid {
  max-width: 1220px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.1fr;
  gap: 48px;
}

.site-footer__brand {
  min-width: 240px;
}

.site-footer__brand img {
  height: 73px;
  width: 302px;
  display: block;
  margin-bottom: 18px;
  object-fit: fill;
}

.site-footer__tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.3;
  color: #2F4C62;
  margin: 0 0 14px;
}

.site-footer__brand p:last-child {
  font-size: 15px;
  line-height: 1.7;
  color: #586870;
  margin: 0;
  max-width: 34ch;
}

.site-footer h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #809385;
  margin: 0 0 18px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer ul li a {
  color: #3a4a52;
  text-decoration: none;
  font-size: 16px;
}

.site-footer ul li a:hover {
  color: #2F4C62;
}

.site-footer__contact li:first-child a {
  color: #2F4C62;
  font-size: 18px;
  font-weight: 600;
}

.site-footer__contact li:first-child a:hover {
  color: #809385;
}

.site-footer address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
  color: #3a4a52;
}

.site-footer__visit p {
  font-size: 14px;
  color: #6c7a81;
  margin: 14px 0 0;
}

.site-footer__bottom {
  border-top: 1px solid #dde5e6;
}

.site-footer__bottom-wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-footer__bottom-wrap p:first-child {
  margin: 0;
  font-size: 13.5px;
  color: #6c7a81;
}

.site-footer__bottom-wrap p:last-child {
  margin: 0;
  font-size: 13.5px;
  color: #8c989e;
}

@media (max-width: 860px) {
  .site-footer__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* ===================== PAGE INTRO (About/Services/Gallery/FAQ/Contact) ===================== */

.page-intro {
  padding: clamp(56px,8vw,104px) 24px clamp(40px,5vw,64px);
  text-align: center;
}

.page-intro--tight {
  padding-bottom: clamp(32px,4vw,48px);
}

.page-intro__wrap {
  max-width: 780px;
  margin: 0 auto;
}

.page-intro__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(40px,5.4vw,68px);
  line-height: 1.06;
  color: #2F4C62;
  margin: 0 0 22px;
}

.page-intro__lede {
  font-size: clamp(18px,2vw,21px);
  line-height: 1.65;
  color: #516069;
  margin: 0;
}

/* ===================== AERIAL / IMAGE BAND WITH CAPTION ===================== */

.image-band {
  padding: 0 24px;
}

.image-band__wrap {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -34px rgba(47,76,98,0.4);
}

.image-band__img {
  width: 100%;
  height: clamp(300px,42vw,520px);
  object-fit: cover;
  display: block;
}

.image-band__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 40px 32px 26px;
  background: linear-gradient(0deg, rgba(28,46,60,0.78), rgba(28,46,60,0));
}

.image-band__eyebrow {
  margin: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #dbe6e2;
  text-transform: uppercase;
}

.image-band__title {
  margin: 6px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px,2.4vw,28px);
  color: #fafaf8;
}

/* ===================== STORY / SPLIT SECTION ===================== */

.split-section {
  padding: clamp(64px,9vw,112px) 24px;
}

.split-section--shaded {
  background: #f1f4f4;
  border-top: 1px solid #e7eded;
}

.split-section__wrap {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(36px,5vw,72px);
  align-items: center;
}

.split-section__img {
  width: 100%;
  height: clamp(340px,42vw,520px);
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 26px 56px -30px rgba(47,76,98,0.45);
  display: block;
}

.split-section p {
  font-size: 18px;
  line-height: 1.72;
  color: #4f5e68;
  margin: 0 0 18px;
}

.split-section p:last-of-type {
  margin-bottom: 0;
}

.split-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-section__list li {
  display: flex;
  gap: 12px;
  font-size: 17px;
  color: #42525b;
}

.split-section__list svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================== VALUES GRID (About) ===================== */

.values-section {
  padding: clamp(64px,9vw,112px) 24px;
  background: #f1f4f4;
  border-top: 1px solid #e7eded;
}

.values-section__wrap {
  max-width: 1220px;
  margin: 0 auto;
}

.values-section__intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(40px,5vw,60px);
}

.values-section__intro .section-title {
  font-size: clamp(30px,4.2vw,48px);
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.value-card {
  background: #fff;
  border: 1px solid #eaefef;
  border-radius: 8px;
  padding: 34px 30px;
}

.value-card__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: #809385;
  margin-bottom: 12px;
}

.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  color: #2F4C62;
  margin: 0 0 10px;
}

.value-card p {
  font-size: 16px;
  line-height: 1.66;
  color: #566570;
  margin: 0;
}

/* ===================== MISSION QUOTE ===================== */

.mission-quote {
  padding: clamp(64px,9vw,112px) 24px;
  text-align: center;
}

.mission-quote__wrap {
  max-width: 880px;
  margin: 0 auto;
}

.mission-quote img {
  height: 58px;
  width: auto;
  display: block;
  margin: 0 auto 28px;
}

.mission-quote p:first-of-type {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(26px,3.6vw,40px);
  line-height: 1.3;
  color: #2F4C62;
  margin: 0;
}

.mission-quote__attr {
  margin: 26px 0 0;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #7c8a90;
}

/* ===================== SIMPLE CENTERED CTA ===================== */

.simple-cta {
  padding: clamp(56px,8vw,96px) 24px;
  background: #f1f4f4;
  border-top: 1px solid #e7eded;
  text-align: center;
}

.simple-cta__wrap {
  max-width: 680px;
  margin: 0 auto;
}

.simple-cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(28px,4vw,44px);
  line-height: 1.12;
  color: #2F4C62;
  margin: 0 0 18px;
}

.simple-cta--tight .simple-cta__title {
  margin-bottom: 16px;
}

.simple-cta__lede {
  font-size: 19px;
  line-height: 1.65;
  color: #566570;
  margin: 0 0 32px;
}

.simple-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 26px;
  background: transparent;
  color: #2F4C62;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #c2cfd2;
  border-radius: 4px;
}

.btn-outline:hover {
  border-color: #2F4C62;
}

/* ===================== SERVICES GRID (Services) ===================== */

.services-grid-section {
  padding: clamp(20px,3vw,40px) 24px clamp(64px,9vw,104px);
}

.services-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 20px;
}

.service-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid #eaefef;
  border-radius: 8px;
  padding: 30px 28px;
}

.service-card__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #eaf0ef;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  color: #2F4C62;
  margin: 0 0 8px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.65;
  color: #566570;
  margin: 0;
}

/* ===================== NOTE / INLINE LINK SECTION ===================== */

.note-section {
  padding: clamp(48px,7vw,80px) 24px;
  text-align: center;
}

.note-section__wrap {
  max-width: 720px;
  margin: 0 auto;
}

.note-section p {
  font-size: 16.5px;
  line-height: 1.7;
  color: #67757d;
  margin: 0;
}

.note-section a {
  color: #2F4C62;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid #809385;
}

/* ===================== GALLERY ===================== */

.gallery-feature {
  padding: 0 24px;
}

.gallery-feature__wrap {
  max-width: 1320px;
  margin: 0 auto;
}

.gallery-feature__btn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -34px rgba(47,76,98,0.4);
}

.gallery-feature__btn img {
  width: 100%;
  height: clamp(320px,46vw,580px);
  object-fit: cover;
  display: block;
}

.gallery-feature__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 30px 24px;
  text-align: left;
  background: linear-gradient(0deg, rgba(28,46,60,0.72), rgba(28,46,60,0));
  color: #fafaf8;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px,2.4vw,28px);
}

.gallery-grid-section {
  padding: clamp(28px,3vw,40px) 24px clamp(64px,9vw,104px);
}

.gallery-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-tile {
  position: relative;
  padding: 0;
  border: 1px solid #eaefef;
  background: #eef2f3;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-tile:hover {
  border-color: #bcc9cc;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-tile:hover img {
  transform: scale(1.04);
}

.gallery-tile__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 16px 12px;
  text-align: left;
  background: linear-gradient(0deg, rgba(28,46,60,0.66), rgba(28,46,60,0));
  color: #fafaf8;
  font-size: 14px;
  font-weight: 500;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(22,32,40,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__icon-btn {
  position: absolute;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}

.lightbox__icon-btn:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__close {
  top: 20px;
  right: 20px;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
}

.lightbox__prev {
  left: max(20px,3vw);
}

.lightbox__next {
  right: max(20px,3vw);
}

.lightbox__figure {
  margin: 0;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}

.lightbox__caption {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #dce4e6;
  font-size: 15.5px;
}

.lightbox__counter {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: #9fb0b4;
}

/* ===================== FAQ ACCORDION ===================== */

.faq-section {
  padding: clamp(20px,3vw,32px) 24px clamp(56px,8vw,96px);
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e7eded;
  border-radius: 8px;
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 24px 26px;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-item__q-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(20px,2.4vw,25px);
  line-height: 1.25;
  color: #2F4C62;
}

.faq-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef2f3;
}

.faq-item__icon svg:first-child {
  display: none;
}

.faq-item.is-open .faq-item__icon svg:first-child {
  display: block;
}

.faq-item.is-open .faq-item__icon svg:last-child {
  display: none;
}

.faq-item__a {
  padding: 0 26px 26px;
  display: none;
}

.faq-item.is-open .faq-item__a {
  display: block;
}

.faq-item__a p {
  font-size: 17px;
  line-height: 1.72;
  color: #516069;
  margin: 0;
}

/* ===================== CONTACT ===================== */

.contact-section {
  padding: clamp(20px,3vw,40px) 24px clamp(64px,9vw,104px);
}

.contact-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px,4vw,56px);
  align-items: start;
}

.contact-details h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(26px,3vw,34px);
  color: #2F4C62;
  margin: 0 0 28px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 34px;
}

.contact-method {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  text-decoration: none;
}

.contact-method__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #eaf0ef;
}

.contact-method__label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #809385;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-method__value {
  display: block;
  font-size: 21px;
  font-weight: 600;
  color: #2F4C62;
}

.contact-method__value--sm {
  font-size: 19px;
}

.contact-method__value--address {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #3a4a52;
}

.contact-map {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 22px 48px -30px rgba(47,76,98,0.5);
  text-decoration: none;
}

.contact-map img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.contact-map__pill {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fafaf8;
  color: #2F4C62;
  font-size: 14.5px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 4px;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,0.3);
}

.contact-details__note {
  margin: 18px 0 0;
  font-size: 15px;
  color: #7c8a90;
}

.contact-form-card {
  background: #fff;
  border: 1px solid #e7eded;
  border-radius: 10px;
  padding: clamp(28px,4vw,44px);
  box-shadow: 0 24px 56px -36px rgba(47,76,98,0.4);
}

.contact-form-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(24px,3vw,32px);
  color: #2F4C62;
  margin: 0 0 8px;
}

.contact-form-card__sub {
  font-size: 15.5px;
  color: #67757d;
  margin: 0 0 28px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: #2F4C62;
  margin-bottom: 8px;
}

.form-field .required {
  color: #a98a6b;
}

.form-field input,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0 16px;
  font-size: 16px;
  font-family: inherit;
  color: #2c3a44;
  background: #fafbfb;
  border: 1.5px solid #d8e0e1;
  border-radius: 6px;
  outline: none;
}

.form-field input {
  height: 52px;
}

.form-field textarea {
  padding: 14px 16px;
  line-height: 1.55;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #2F4C62;
  background: #fff;
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #c47b64;
}

.form-field__error {
  margin: 7px 0 0;
  font-size: 14px;
  color: #b4553f;
}

.form-submit {
  width: 100%;
  height: 56px;
  background: #2F4C62;
  color: #fafaf8;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: inherit;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.form-submit:hover {
  background: #233a4b;
}

.contact-form-card__disclaimer {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #8c989e;
  text-align: center;
}

.contact-success {
  text-align: center;
  padding: 20px 0;
  display: none;
}

.contact-success.is-active {
  display: block;
}

.contact-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #eaf0ef;
  margin-bottom: 22px;
}

.contact-success h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 30px;
  color: #2F4C62;
  margin: 0 0 12px;
}

.contact-success p {
  font-size: 17px;
  line-height: 1.65;
  color: #566570;
  margin: 0 0 26px;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}

.contact-success p a {
  color: #2F4C62;
  font-weight: 600;
  text-decoration: none;
}

.contact-success__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 26px;
  background: transparent;
  color: #2F4C62;
  font-size: 15.5px;
  font-weight: 600;
  font-family: inherit;
  border: 1.5px solid #c2cfd2;
  border-radius: 6px;
  cursor: pointer;
}

.contact-success__btn:hover {
  border-color: #2F4C62;
}

.contact-form.is-hidden {
  display: none;
}
