:root {
  --bg: #f6fbff;
  --bg-soft: #eef5fb;
  --bg-deep: #e7f0f8;

  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-solid: #ffffff;

  --text: #162534;
  --text-soft: #41586c;
  --muted: #6c8295;

  --line: rgba(78, 112, 142, 0.16);
  --line-strong: rgba(78, 112, 142, 0.24);

  --primary: #5caee8;
  --primary-deep: #317ec0;
  --primary-soft: #dff2ff;
  --accent: #cdeeff;
  --accent-2: #f2f9ff;
  --pearl: #fffdf9;

  --shadow: 0 24px 70px rgba(32, 69, 102, 0.12);
  --shadow-soft: 0 14px 34px rgba(32, 69, 102, 0.08);
  --shadow-hover: 0 24px 50px rgba(32, 69, 102, 0.14);

  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --container: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(177, 223, 255, 0.3), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(205, 238, 255, 0.4), transparent 28%),
    linear-gradient(180deg, #f8fcff 0%, #f4f9fd 40%, #edf5fb 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 16%, rgba(122, 196, 242, 0.2), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(189, 229, 255, 0.26), transparent 22%),
    radial-gradient(circle at 86% 82%, rgba(104, 179, 234, 0.14), transparent 22%);
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.45;
}

.site-bg::before {
  width: 340px;
  height: 340px;
  top: 9%;
  left: -90px;
  background: rgba(178, 225, 255, 0.46);
}

.site-bg::after {
  width: 300px;
  height: 300px;
  right: -90px;
  bottom: 12%;
  background: rgba(143, 206, 245, 0.24);
}

.container {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    180deg,
    rgba(248, 252, 255, 0.9),
    rgba(248, 252, 255, 0.72)
  );
  border-bottom: 1px solid rgba(104, 145, 181, 0.12);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #ffffff 0%, rgba(255,255,255,0.9) 18%, transparent 19%),
    linear-gradient(135deg, #9fdcff, #70bae9 52%, #dff5ff 100%);
  color: #1f6da8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 24px rgba(49, 126, 192, 0.22);
  font-size: 16px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-sub {
  margin-top: 5px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

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

.nav a {
  position: relative;
  color: var(--text-soft);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.nav a:not(.nav-call)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
  background: linear-gradient(90deg, var(--primary), var(--primary-deep));
  border-radius: 999px;
}

.nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-call {
  padding: 11px 18px;
  border-radius: 999px;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 14px 26px rgba(49, 126, 192, 0.22);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 68px 0 28px;
}

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

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(98, 159, 202, 0.18);
  background: linear-gradient(180deg, rgba(244, 251, 255, 0.95), rgba(231, 245, 255, 0.84));
  color: #4d87b1;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(74, 138, 184, 0.08);
}

.hero h1,
.section h2,
.cta-card h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 18px 0 16px;
  overflow-wrap: anywhere;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  max-width: 10ch;
}

.hero-text {
  font-size: 1.06rem;
  color: var(--text-soft);
  max-width: 60ch;
  margin: 0;
}

.hero-text strong {
  color: var(--text);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-align: center;
  border: 1px solid transparent;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 16px 30px rgba(49, 126, 192, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 20px 36px rgba(49, 126, 192, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(105, 144, 178, 0.18);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  border-color: rgba(49, 126, 192, 0.2);
}

.btn-small {
  min-height: 46px;
  padding: 0 16px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
  max-width: 620px;
}

.badge {
  position: relative;
  padding: 18px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.72));
  border: 1px solid rgba(105, 144, 178, 0.14);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.badge::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), #97d8ff);
}

.badge-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text);
}

.badge-text {
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-trust span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(105, 144, 178, 0.14);
  box-shadow: var(--shadow-soft);
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card-main {
  inset: 0 56px 52px 0;
  background: var(--surface-solid);
  border: 1px solid rgba(116, 156, 189, 0.15);
}

.hero-card-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 35%, rgba(20, 41, 58, 0.18) 100%),
    linear-gradient(120deg, rgba(255,255,255,0.16), rgba(255,255,255,0));
  pointer-events: none;
}

.hero-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-float {
  right: 0;
  bottom: 0;
  width: 255px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(246,251,255,0.82));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(120, 162, 195, 0.16);
}

.mini-card {
  padding: 24px;
}

.mini-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #5a9bc7;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mini-title {
  font-family: "Playfair Display", serif;
  font-size: 1.18rem;
  line-height: 1.15;
}

.info-strip {
  padding: 8px 0 26px;
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.info-pill {
  padding: 18px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.72));
  border: 1px solid rgba(105, 144, 178, 0.14);
  box-shadow: var(--shadow-soft);
}

.info-label,
.contact-label,
.quick-label {
  display: block;
  margin-bottom: 7px;
  color: #5a9bc7;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section {
  padding: 82px 0;
}

.section-soft {
  position: relative;
  background:
    linear-gradient(180deg, rgba(236, 245, 252, 0.72), rgba(244, 250, 255, 0.88));
  border-top: 1px solid rgba(104, 145, 181, 0.1);
  border-bottom: 1px solid rgba(104, 145, 181, 0.1);
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}

.section h2,
.cta-card h2 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.section-subtext {
  color: var(--text-soft);
  max-width: 60ch;
  margin: 0 auto;
}

.split-layout,
.hours-layout,
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.section-copy p:not(.section-tag),
.location-copy p:not(.section-tag),
.cta-card p:not(.section-tag) {
  color: var(--text-soft);
  max-width: 60ch;
  margin: 0 0 14px;
}

.feature-grid,
.experience-grid,
.testimonial-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(2, 1fr);
}

.experience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.service-card,
.hours-card,
.quick-card,
.contact-card,
.cta-card,
.experience-card,
.testimonial-card,
.faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.76));
  border: 1px solid rgba(105, 144, 178, 0.14);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.service-card,
.quick-card,
.contact-card,
.experience-card,
.testimonial-card,
.faq-item {
  border-radius: 24px;
  padding: 22px;
}

.feature-card h3,
.service-card h3,
.quick-card h3,
.experience-card h3,
.testimonial-card h3 {
  margin: 0 0 9px;
  font-size: 1.08rem;
  overflow-wrap: anywhere;
  color: var(--text);
}

.feature-card p,
.service-card p,
.quick-card p,
.contact-card span:last-child,
.experience-card p,
.testimonial-card p {
  margin: 0;
  color: var(--text-soft);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(209, 239, 255, 0.22), transparent 55%);
  pointer-events: none;
}

.service-card:hover,
.gallery-item:hover,
.testimonial-card:hover,
.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover {
  border-color: rgba(74, 138, 184, 0.18);
}

.service-icon,
.experience-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #eaf7ff, #d4efff 55%, #f8fdff 100%);
  color: var(--primary-deep);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.service-note {
  margin-top: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 24, 36, 0) 45%, rgba(10, 24, 36, 0.24) 100%);
  opacity: 0.92;
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  line-height: 1;
  color: #75b8e2;
  margin-bottom: 10px;
}

.quote-name {
  margin-top: 12px;
  font-weight: 700;
  color: var(--text);
}

.quote-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 3px;
}

.hours-card {
  border-radius: 30px;
  padding: 28px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(247, 251, 255, 0.96);
  border: 1px solid rgba(105, 144, 178, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hour-row:hover {
  transform: translateX(2px);
  border-color: rgba(74, 138, 184, 0.16);
}

.hour-row.active {
  background: linear-gradient(135deg, #e8f7ff, #fafdff);
  border-color: rgba(49, 126, 192, 0.22);
  box-shadow: 0 12px 28px rgba(49, 126, 192, 0.12);
}

.quick-card {
  border-radius: 30px;
  padding: 28px;
  min-height: 100%;
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.map-wrap {
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.76));
  border: 1px solid rgba(105, 144, 178, 0.14);
  box-shadow: var(--shadow-soft);
}

.map {
  width: 100%;
  height: 470px;
  border: 0;
  border-radius: 22px;
}

.faq-wrap {
  max-width: 940px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.faq-question span:last-child {
  font-size: 1.3rem;
  color: var(--primary-deep);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--text-soft);
}

.cta-section {
  padding-top: 16px;
}

.cta-card {
  position: relative;
  padding: 38px;
  border-radius: 34px;
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(190, 232, 255, 0.26), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(137, 204, 245, 0.16), transparent 22%);
  pointer-events: none;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card p:not(.section-tag) {
  margin-inline: auto;
}

.footer {
  padding: 26px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 24px;
  color: var(--muted);
}

.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.footer p {
  margin: 0;
}

.footer-title {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a9bc7;
  font-weight: 700;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 16px 30px rgba(49, 126, 192, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
  z-index: 40;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 18, 29, 0.86);
  z-index: 100;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1000px, 92vw);
  max-height: 84vh;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .hours-layout,
  .location-layout,
  .info-strip-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .experience-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-visual {
    min-height: 450px;
    max-width: 720px;
  }

  .hero-card-main {
    inset: 0 34px 30px 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .header {
    backdrop-filter: blur(12px);
  }

  .nav-wrap {
    gap: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 10px;
    right: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(105, 144, 178, 0.16);
    box-shadow: var(--shadow-soft);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 11px 12px;
    border-radius: 12px;
    background: rgba(244, 250, 255, 0.96);
    color: var(--text);
  }

  .nav a::after {
    display: none;
  }

  .nav a.nav-call {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep)) !important;
    color: #ffffff !important;
    text-align: center;
  }

  .hero {
    padding: 30px 0 10px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.25rem, 10.5vw, 3.45rem);
    margin-top: 12px;
    margin-bottom: 10px;
  }

  .hero-text {
    font-size: 0.97rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-badges,
  .hero-trust {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .badge {
    padding: 15px 15px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-card-main {
    inset: 0 12px 16px 0;
    border-radius: 22px;
  }

  .hero-card-float {
    width: 155px;
    border-radius: 18px;
  }

  .mini-card {
    padding: 14px;
  }

  .mini-title {
    font-size: 0.95rem;
  }

  .info-strip {
    padding-top: 0;
    padding-bottom: 10px;
  }

  .info-pill {
    padding: 14px 14px;
  }

  .section {
    padding: 50px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section h2,
  .cta-card h2 {
    margin-top: 12px;
    margin-bottom: 10px;
  }

  .split-layout,
  .hours-layout,
  .location-layout,
  .feature-grid,
  .services-grid,
  .gallery-grid,
  .experience-grid,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card,
  .service-card,
  .hours-card,
  .quick-card,
  .contact-card,
  .cta-card,
  .experience-card,
  .testimonial-card,
  .faq-item {
    border-radius: 18px;
  }

  .feature-card,
  .service-card,
  .quick-card,
  .contact-card,
  .hours-card,
  .cta-card,
  .experience-card,
  .testimonial-card {
    padding: 16px;
  }

  .service-icon,
  .experience-icon {
    margin-bottom: 10px;
  }

  .gallery-item img {
    height: 215px;
  }

  .hours-list {
    gap: 8px;
  }

  .hour-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 11px 12px;
  }

  .contact-stack {
    gap: 10px;
    margin-top: 14px;
  }

  .map-wrap {
    padding: 8px;
    border-radius: 18px;
  }

  .map {
    height: 290px;
    border-radius: 14px;
  }

  .faq-question {
    padding: 16px;
  }

  .faq-answer p {
    padding: 0 16px 16px;
  }

  .cta-section {
    padding-top: 0;
  }

  .footer {
    padding-top: 14px;
    padding-bottom: 78px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox img {
    max-width: 96vw;
    max-height: 78vh;
    border-radius: 16px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 460px) {
  .container {
    width: calc(100% - 16px);
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-sub {
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 11vw, 2.85rem);
  }

  .eyebrow,
  .section-tag {
    font-size: 0.68rem;
  }
}

.promo-top-bar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(135deg, #1d6fa8, #5caee8 55%, #8ed8ff 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(30, 90, 137, 0.18);
}

.promo-top-bar-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 0;
  text-align: center;
}

.promo-top-bar-inner p {
  margin: 0;
  font-weight: 600;
}

.promo-top-bar-inner a {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 700;
  white-space: nowrap;
}

.promo-top-pill,
.special-badge,
.promo-highlight-kicker,
.promo-modal-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 800;
}

.promo-top-pill {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.promo-highlight-card {
  margin-top: 20px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(231,245,255,0.92));
  border: 1px solid rgba(74, 138, 184, 0.16);
  box-shadow: var(--shadow-soft);
}

.promo-highlight-card h3 {
  margin: 8px 0 6px;
  font-size: 1.3rem;
  line-height: 1.1;
}

.promo-highlight-card p {
  margin: 0;
  color: var(--text-soft);
}

.promo-highlight-kicker,
.special-badge,
.promo-modal-kicker {
  color: #1f6da8;
  background: #e9f7ff;
  border: 1px solid rgba(92, 174, 232, 0.22);
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.special-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(244,250,255,0.84));
  border: 1px solid rgba(105, 144, 178, 0.14);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.special-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 219, 255, 0.38), transparent 70%);
}

.special-card h3 {
  margin: 14px 0 8px;
  font-size: 1.2rem;
}

.special-card p {
  margin: 0;
  color: var(--text-soft);
}

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

.ownership-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.ownership-point {
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(244,250,255,0.8));
  border: 1px solid rgba(105, 144, 178, 0.14);
  box-shadow: var(--shadow-soft);
}

.ownership-point strong {
  display: block;
  margin-bottom: 4px;
}

.ownership-point span {
  color: var(--muted);
  font-size: 0.94rem;
}

.ownership-photo-stack {
  position: relative;
  min-height: 560px;
}

.ownership-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(116, 156, 189, 0.15);
  background: #ffffff;
}

.ownership-photo.large {
  inset: 0 80px 64px 0;
}

.ownership-photo.small {
  right: 0;
  bottom: 0;
  width: 250px;
  height: 220px;
}

.ownership-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-promo {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 41;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff, #e9f7ff);
  border: 1px solid rgba(92, 174, 232, 0.26);
  box-shadow: 0 18px 36px rgba(49, 126, 192, 0.18);
}

.floating-promo-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: #1f6da8;
}

.floating-promo-text {
  font-weight: 700;
  color: var(--text);
}

.promo-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 110;
}

.promo-modal.show {
  display: flex;
}

.promo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 29, 0.62);
}

.promo-modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239,248,255,0.94));
  box-shadow: 0 28px 70px rgba(7, 18, 29, 0.24);
  border: 1px solid rgba(105, 144, 178, 0.18);
}

.promo-modal-card h2 {
  margin: 12px 0 10px;
  font-family: "Playfair Display", serif;
  line-height: 1;
  font-size: clamp(2rem, 5vw, 3rem);
}

.promo-modal-card p {
  margin: 0;
  color: var(--text-soft);
}

.promo-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.promo-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(22, 37, 52, 0.08);
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .specials-grid,
  .ownership-grid,
  .ownership-points {
    grid-template-columns: 1fr;
  }

  .ownership-photo-stack {
    min-height: 420px;
  }

  .ownership-photo.large {
    inset: 0 48px 44px 0;
  }
}

@media (max-width: 760px) {
  .promo-top-bar {
    position: relative;
  }

  .promo-top-bar-inner,
  .promo-highlight-card,
  .promo-modal-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .promo-top-bar-inner {
    gap: 8px;
    min-height: unset;
    padding: 10px 0;
  }

  .promo-top-bar-inner a {
    text-align: center;
  }

  .promo-highlight-card {
    padding: 18px;
  }

  .ownership-photo-stack {
    min-height: 300px;
  }

  .ownership-photo.large {
    inset: 0 20px 20px 0;
    border-radius: 22px;
  }

  .ownership-photo.small {
    width: 140px;
    height: 120px;
    border-radius: 18px;
  }

  .floating-promo {
    left: 12px;
    bottom: 66px;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .promo-modal-card {
    padding: 22px 18px;
    border-radius: 24px;
  }
}