/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-block: calc(var(--nav-h) + 60px) 120px;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}
/* Decorative discs carried over from the brochure cover. */
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(154, 232, 221, .09);
  pointer-events: none;
}
.hero::before { top: -140px; right: -90px; width: 420px; height: 420px; }
.hero::after  { bottom: 40px; left: -120px; width: 340px; height: 340px; background: rgba(154, 232, 221, .07); }

.hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

.hero__rings { position: absolute; top: 8%; right: 6%; width: 190px; opacity: .16; pointer-events: none; }
.hero__dots  { position: absolute; bottom: 20%; left: 5%; width: 96px; opacity: .22; pointer-events: none; }

.hero__wave { position: absolute; inset: auto 0 -1px 0; z-index: 1; width: 100%; height: 120px; pointer-events: none; }

.hero__title { margin: 0; line-height: 0; }

.hero__logo {
  width: clamp(230px, 34vw, 380px);
  filter: brightness(0) invert(1);
}

.hero__divider { width: 62px; height: 1px; margin: 34px 0 30px; background: var(--mint); border: 0; }

.hero__tagline {
  max-width: 540px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(19px, 2.5vw, 25px);
  line-height: 1.5;
  color: var(--mint);
}

.hero__pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 30px; }
.pill {
  padding: 7px 18px;
  border: 1px solid rgba(154, 232, 221, .4);
  border-radius: 999px;
  background: rgba(154, 232, 221, .12);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .4px;
  color: var(--mint);
}

.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 38px; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 34px;
  margin-top: 48px;
  font-size: 14px;
  color: rgba(255, 255, 255, .62);
}
.hero__meta li { display: flex; align-items: center; gap: 9px; }
.hero__meta svg { width: 16px; height: 16px; color: var(--mint); flex-shrink: 0; }

/* ── Services ─────────────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
  align-items: start;
}

.svc-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.svc-card__head {
  position: relative;
  padding: 26px 28px 22px;
  background: var(--teal);
  color: var(--white);
  overflow: hidden;
}
.svc-card:nth-child(even) .svc-card__head { background: var(--dark); }
.svc-card__head::after {
  content: "";
  position: absolute;
  right: -34px; bottom: -46px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
}
.svc-card__title { position: relative; z-index: 2; font-size: 21px; }
.svc-card__tagline {
  position: relative; z-index: 2;
  margin-top: 5px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .78);
}

.svc-card__body { display: flex; flex-direction: column; flex: 1; padding: 10px 28px 26px; }

.svc-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.svc-row:last-of-type { border-bottom: 0; }
.svc-row__name { flex: 1; font-size: 15.5px; font-weight: 500; }
.svc-row__detail { font-size: 13px; color: var(--grey); white-space: nowrap; }
.svc-row__price {
  min-width: 84px;
  font-size: 16px;
  font-weight: 700;
  color: var(--teal);
  text-align: right;
  white-space: nowrap;
}

.note {
  margin-top: auto;
  padding: 15px 18px;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  background: var(--light);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--grey);
}
.note strong { color: var(--teal); }
.note + .note { margin-top: 12px; }

/* ── Features ─────────────────────────────────────────────────────── */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
}

.feature {
  display: flex;
  gap: 18px;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover { background: rgba(154, 232, 221, .07); border-color: rgba(154, 232, 221, .25); }

.feature__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(154, 232, 221, .13);
}
.feature__icon svg { width: 22px; height: 22px; color: var(--mint); }
.feature__title { font-size: 16.5px; font-weight: 600; margin-bottom: 6px; }
.feature__desc { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, .58); }

/* ── About ────────────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.about__body { font-size: 17px; line-height: 1.8; color: var(--grey); margin-top: 22px; }

.about__stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 36px; }
.about__stat-value {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.about__stat-label {
  margin-top: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
}

.about__figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  max-width: 100%;
  border-radius: var(--radius);
  background: var(--dark);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__figure img { width: 100%; height: 100%; object-fit: cover; }
/* Scrim keeps the badge legible against the brighter part of the photo. */
.about__figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(7, 48, 42, .78), transparent);
}
.about__badge {
  position: absolute;
  z-index: 3;
  left: 26px; bottom: 26px;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(154, 232, 221, .14);
  border: 1px solid rgba(154, 232, 221, .3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mint);
}

/* ── Contact ──────────────────────────────────────────────────────── */
.contact { background: var(--dark); color: var(--white); }
.contact .section-title { color: var(--white); }
.contact .eyebrow { color: var(--mint); }
.contact .section-sub { color: rgba(255, 255, 255, .6); }

.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.contact__rows { display: flex; flex-direction: column; gap: 24px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-row__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal);
}
.contact-row__icon svg { width: 18px; height: 18px; color: var(--white); }
.contact-row__label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 4px;
}
.contact-row__value { font-size: 15.5px; line-height: 1.6; color: rgba(255, 255, 255, .88); }
.contact-row__value a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(154, 232, 221, .4); }
.contact-row__value a:hover { color: var(--mint); }

.hours-box {
  margin-top: 28px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: var(--teal);
  text-align: center;
}
.hours-box__title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint);
}
.hours-box__value { margin-top: 7px; font-size: 23px; font-weight: 700; }
.hours-box__days { margin-top: 4px; font-size: 13.5px; color: var(--pale); }

.map-link {
  display: block;
  margin-top: 24px;
  border: 1px solid rgba(154, 232, 221, .25);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.map-link:hover { border-color: var(--mint); transform: translateY(-2px); }

/* ── Inquiry form ─────────────────────────────────────────────────── */
.form-card {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.form-card__title { font-family: var(--font-serif); font-size: 26px; }
.form-card__sub { margin-top: 8px; font-size: 14.5px; color: var(--grey); }

.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field .hint { font-weight: 400; color: var(--grey); }

.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 122, 110, .12);
  outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: #A9B6B4; }

.form__errors {
  margin-top: 20px;
  padding: 14px 18px;
  border-left: 4px solid #C0392B;
  border-radius: var(--radius-sm);
  background: #FDF0EE;
  font-size: 14px;
  color: #8E2C20;
}
.form__errors ul { margin-top: 6px; }
.form__errors li { list-style: disc; margin-left: 18px; }

.form__actions { margin-top: 22px; }
.form__note { margin-top: 14px; font-size: 12.5px; color: var(--grey); text-align: center; }

.form-success { text-align: center; padding-block: 26px; }
.form-success__icon {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--light);
}
.form-success__icon svg { width: 30px; height: 30px; color: var(--teal); }
.form-success__title { font-family: var(--font-serif); font-size: 25px; }
.form-success__body { margin-top: 12px; font-size: 15px; line-height: 1.7; color: var(--grey); }

/* ── Footer ───────────────────────────────────────────────────────── */
.footer { background: var(--deeper); color: rgba(255, 255, 255, .55); padding-block: 60px 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer__logo { width: 116px; filter: brightness(0) invert(1); opacity: .92; }
.footer__blurb { margin-top: 18px; font-size: 14px; line-height: 1.7; max-width: 330px; }
.footer__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 16px;
}
.footer__list { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer__list a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
.footer__list a:hover { color: var(--mint); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: 13px;
}
