/* ── TOKENS ──────────────────────────────────────────────────────────────── */
:root {
  --teal:       #2AADA5;
  --teal-dark:  #1e8a83;
  --teal-deep:  #145f5b;
  --blue:       #1A8EC4;
  --off-white:  #f7fafa;
  --text-dark:  #142826;
  --text-mid:   #3a5452;
  --text-light: #6b8f8d;
  --white:      #ffffff;
  --radius:     14px;
  --shadow:     0 4px 24px rgba(26, 142, 196, .13);
}

/* ── RESET ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul[role="list"] { list-style: none; }
address { font-style: normal; }

/* ── NAVBAR ──────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 250, 250, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 173, 165, .12);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(42, 173, 165, .18); }

.navbar-logo { height: 44px; width: auto; }

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  font-size: .82rem;
  padding: 9px 18px;
  border-radius: 40px;
  letter-spacing: .02em;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.navbar-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 20px 140px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0d5c72 0%, #1a8ec4 35%, #2AADA5 65%, #1e8a83 100%);
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-circle:nth-child(1) { width: 280px; height: 280px; top: -80px;  left: -80px;  animation-delay: 0s; }
.hero-circle:nth-child(2) { width: 180px; height: 180px; top: 30%;    right: -60px; animation-delay: 3s; }
.hero-circle:nth-child(3) { width: 130px; height: 130px; bottom: 20%; left: 8%;     animation-delay: 5s; }
@keyframes pulse {
  0%, 100% { transform: scale(1);    opacity: .5; }
  50%       { transform: scale(1.08); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7fe8df;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 8vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 16px;
}
.hero h1 em {
  font-style: italic;
  color: #a8eee9;
}

.hero-sub {
  font-size: clamp(.95rem, 3vw, 1.15rem);
  color: rgba(255, 255, 255, .82);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.65;
}
.hero-sub strong { color: #fff; font-weight: 600; }

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
  transition: transform .2s, box-shadow .2s;
}
.hero-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0, 0, 0, .25); }

.hero-scroll {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .5);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%       { opacity: 1; transform: scaleY(1); }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
}
.hero-wave svg { width: 100%; height: 100%; }

/* ── HIGHLIGHTS STRIP ────────────────────────────────────────────────────── */
.highlights {
  background: var(--white);
  padding: 0 20px;
  position: relative;
  z-index: 3;
}
.highlights-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(-36px);
  border: 1px solid rgba(42, 173, 165, .1);
}

.highlight-item {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  background: var(--white);
  border-right: 1px solid rgba(42, 173, 165, .1);
  border-bottom: 1px solid rgba(42, 173, 165, .1);
  transition: background .2s;
}
/* Remove borders on edge items */
.highlight-item:nth-child(2n) { border-right: none; }
.highlight-item:nth-last-child(-n+2):nth-child(odd),
.highlight-item:last-child { border-bottom: none; }

.highlight-item:hover { background: #f0faf9; }

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f7f6, #d0f0ee);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-icon svg { width: 24px; height: 24px; }

.highlight-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.35;
}

/* ── SECTION WRAPPER ─────────────────────────────────────────────────────── */
section { padding: 56px 20px; }
.section-inner { max-width: 980px; margin: 0 auto; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.22;
  margin-bottom: 20px;
}

/* ── ABOUT ───────────────────────────────────────────────────────────────── */
.about { background: var(--off-white); }

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.about-visual { position: relative; }

.about-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  background: linear-gradient(135deg, #d0f0ee 0%, #b0dff7 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--teal-dark);
  font-size: .8rem;
  letter-spacing: .05em;
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(42, 173, 165, .06) 0px,
    rgba(42, 173, 165, .06) 1px,
    transparent 1px,
    transparent 12px
  );
}
.about-img-placeholder-text {
  position: relative;
  z-index: 1;
  opacity: .7;
}

.about-badge-float {
  position: absolute;
  bottom: -16px;
  left: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(42, 173, 165, .12);
}
.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  white-space: nowrap;
}
.about-badge-label {
  font-size: .75rem;
  color: var(--text-light);
  line-height: 1.4;
  max-width: 100px;
}

/* ── LOCATION ────────────────────────────────────────────────────────────── */
.location { background: var(--white); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
}

.location-card {
  background: var(--off-white);
  border: 1px solid rgba(42, 173, 165, .1);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--teal);
}

.location-card--featured {
  background: linear-gradient(135deg, #e8f7f6, #e0f4fb);
  border-color: rgba(42, 173, 165, .2);
}

.location-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-card--featured .location-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--teal-dark), var(--blue));
}
.location-icon svg { width: 20px; height: 20px; }

.location-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-dark);
  line-height: 1.3;
}
.location-card--featured .location-name { font-size: 1rem; }

.location-dist {
  font-size: .78rem;
  color: var(--teal);
  font-weight: 600;
  margin-top: 2px;
}

/* ── REVIEW ──────────────────────────────────────────────────────────────── */
.review-section { background: var(--off-white); padding: 40px 20px; }

.review-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.review-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  padding: 28px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 36px rgba(42, 173, 165, .3);
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.review-score {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
}
.review-score sup {
  font-size: 1.3rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  vertical-align: super;
}

.review-divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, .3);
}

.review-text { text-align: center; }
.review-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.review-text span {
  font-size: .85rem;
  opacity: .85;
  line-height: 1.5;
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-top: 8px;
}
.star { color: #FFE066; font-size: .95rem; }

/* ── CTA BANNER ──────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 50%, var(--blue) 100%);
  padding: 72px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, .03) 0px,
    rgba(255, 255, 255, .03) 1px,
    transparent 1px,
    transparent 18px
  );
  pointer-events: none;
}
.cta-banner-content { position: relative; z-index: 1; }

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 6vw, 3rem);
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}
.cta-banner p {
  color: rgba(255, 255, 255, .78);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
  transition: transform .2s, box-shadow .2s;
}
.cta-banner-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0, 0, 0, .28); }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--text-dark);
  padding: 48px 20px 28px;
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1) opacity(.8);
  margin-bottom: 14px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 14px;
}

.footer-tagline {
  color: rgba(255, 255, 255, .5);
  font-size: .83rem;
  line-height: 1.65;
}

.footer-addr-title {
  color: var(--teal);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-addr {
  color: rgba(255, 255, 255, .65);
  font-size: .85rem;
  line-height: 1.75;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copy {
  color: rgba(255, 255, 255, .3);
  font-size: .72rem;
  text-align: center;
  line-height: 1.5;
}

.footer-maker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI Symbol', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 6px;
  padding: 3px 10px 4px;
  line-height: 1;
  transition: color .2s, border-color .2s;
}
.footer-maker:hover {
  color: rgba(255, 255, 255, .85);
  border-color: rgba(255, 255, 255, .35);
}

@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-copy { text-align: left; }
}

/* ── ADMIN BAR OFFSET ────────────────────────────────────────────────────── */
.admin-bar .navbar { top: 46px; }

/* ── RESPONSIVE — TABLET (≥ 600px) ──────────────────────────────────────── */
@media (min-width: 600px) {
  .hero { padding: 80px 24px 150px; }

  .highlights-inner { grid-template-columns: repeat(4, 1fr); transform: translateY(-40px); }
  .highlight-item { border-bottom: none; }
  .highlight-item:nth-child(2n) { border-right: 1px solid rgba(42, 173, 165, .1); }
  .highlight-item:last-child { border-right: none; }

  .location-grid { grid-template-columns: 1fr 1fr; }
  .location-card--featured { grid-column: span 2; }

  .review-badge {
    flex-direction: row;
    text-align: left;
    max-width: 100%;
    gap: 20px;
  }
  .review-divider { width: 1px; height: 60px; }
  .review-text { text-align: left; }
  .review-stars { justify-content: flex-start; }
}

/* ── RESPONSIVE — DESKTOP (≥ 900px) ─────────────────────────────────────── */
@media (min-width: 900px) {
  .navbar { padding: 12px 32px; }
  .navbar-logo { height: 48px; }
  .navbar-cta { font-size: .85rem; padding: 10px 22px; }

  .hero { min-height: 92vh; padding: 80px 32px 160px; }
  .hero-circle:nth-child(1) { width: 400px; height: 400px; }
  .hero-circle:nth-child(2) { width: 250px; height: 250px; }

  .highlights-inner { transform: translateY(-48px); }
  .highlight-item { padding: 32px 20px; }

  section { padding: 80px 32px; }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .about-badge-float { left: -24px; bottom: -20px; }

  .location-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    gap: 16px;
  }
  .location-card--featured { grid-column: span 3; }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
}

@media (min-width: 900px) {
  .admin-bar .navbar { top: 32px; }
}
