/* =========================================================
   Advanced Sports Center (ASC) — style.css
   Fonts: Inter (body) + Montserrat (headings)
   ========================================================= */

:root {
  --green: #1D9E75;
  --green-dark: #157a5a;
  --green-darker: #0f5b43;
  --grey: #888780;
  --grey-light: #f4f5f3;
  --black: #2C2C2A;
  --white: #ffffff;
  --star: #f5b301;
  --wa: #25D366;
  --wa-dark: #1da851;

  --border: #e6e7e3;
  --shadow-sm: 0 2px 8px rgba(44, 44, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(44, 44, 42, 0.10);
  --shadow-lg: 0 18px 50px rgba(44, 44, 42, 0.16);

  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --nav-h: 74px;

  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--black);
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-block { width: 100%; }
.wa-icon { width: 19px; height: 19px; flex: none; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(29, 158, 117, 0.28);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(29, 158, 117, 0.36);
}

.btn-whatsapp {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.32);
}
.btn-whatsapp:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.42);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

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

.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.brand:hover .brand-logo { transform: scale(1.04); }
.brand-fallback {
  display: none; /* shown via onerror when logo image is missing */
  align-items: center;
  justify-content: center;
  height: 46px;
  width: 46px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  flex: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--black);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--green);
  transition: width 0.25s ease;
}
.nav-link:hover { color: var(--green); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--green); }

.nav-cta { color: var(--white); padding: 10px 20px; }
.nav-cta:hover { color: var(--white); }
.nav-cta::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-darker);
  text-align: center;
  padding: 90px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(15, 91, 67, 0.94) 0%, rgba(21, 122, 90, 0.80) 45%, rgba(28, 44, 42, 0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto;
  color: var(--white);
}
.hero-logo {
  display: inline-block;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 24px;
  margin-bottom: 26px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}
.hero-logo img {
  height: 74px;
  width: auto;
  display: block;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2.5rem, 6.5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.hero-title .hl {
  color: #6ff0c0;
  position: relative;
  white-space: nowrap;
}
.hero-title .hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: rgba(37, 211, 102, 0.35);
  border-radius: 4px;
  z-index: -1;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin: 0 auto 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating geometric accents (echo the angular logo) */
.hero-shape {
  position: absolute;
  z-index: 1;
  display: block;
  transform: skewX(-20deg);
  border-radius: 8px;
  opacity: 0.16;
  pointer-events: none;
}
.hero-shape--1 {
  width: 230px; height: 70px;
  top: 16%; left: -40px;
  background: linear-gradient(90deg, #1D9E75, #6ff0c0);
  animation: floatY 9s ease-in-out infinite;
}
.hero-shape--2 {
  width: 160px; height: 52px;
  bottom: 18%; right: -30px;
  background: linear-gradient(90deg, #ffffff, #c8d2cd);
  opacity: 0.12;
  animation: floatY 11s ease-in-out infinite reverse;
}
.hero-shape--3 {
  width: 120px; height: 40px;
  top: 24%; right: 12%;
  background: linear-gradient(90deg, #6ff0c0, #1D9E75);
  opacity: 0.12;
  animation: floatX 13s ease-in-out infinite;
}

/* Scroll-down indicator */
.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.1s forwards;
}
.scroll-mouse {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  position: relative;
}
.scroll-wheel {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: wheel 1.6s ease-in-out infinite;
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--grey-light); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}
.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: var(--green);
  margin: 18px auto 0;
}
.section-lead {
  margin-top: 18px;
  color: var(--grey);
  font-size: 1.05rem;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
}

/* Desktop: center the trailing two service cards under the top row of three */
@media (min-width: 992px) {
  .services-grid { grid-template-columns: repeat(6, 1fr); }
  .service-card { grid-column: span 2; }
  .service-card:nth-child(4) { grid-column: 2 / span 2; }
  .service-card:nth-child(5) { grid-column: 4 / span 2; }
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 4px;
  width: 100%;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(29, 158, 117, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card:hover .service-icon {
  background: var(--green);
  color: var(--white);
  transform: scale(1.08) rotate(-4deg);
}
.service-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-desc {
  color: var(--grey);
  font-size: 0.98rem;
}
.service-more {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green);
}
.service-more span { transition: transform 0.2s ease; }
.service-card:hover .service-more span { transform: translateX(4px); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-media {
  position: relative;
  padding: 18px 0 38px 38px;
}
.about-shape {
  position: absolute;
  top: -16px;
  left: 0;
  width: 60%;
  height: 72%;
  background: rgba(29, 158, 117, 0.12);
  border-radius: var(--radius);
  z-index: 0;
}
.about-img-main {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 45%;
  border-radius: var(--radius);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-title {
  text-align: left;
  font-size: clamp(1.7rem, 3.3vw, 2.5rem);
  margin-bottom: 22px;
}
.about-title::after { margin-left: 0; margin-right: auto; }
.about-text {
  color: var(--grey);
  font-size: 1.04rem;
  margin-bottom: 16px;
}
.about-values {
  list-style: none;
  margin: 26px 0 30px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--black);
}
.value-icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(29, 158, 117, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 17px; height: 17px; }

/* ---------- Treatments ---------- */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.treat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.treat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.treat-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.treat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.treat-card:hover .treat-media img { transform: scale(1.06); }
.treat-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.treat-body { padding: 24px 26px 28px; }
.treat-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.treat-text {
  color: var(--grey);
  font-size: 0.98rem;
}

/* Desktop: center the trailing two treatment cards */
@media (min-width: 992px) {
  .treatments-grid { grid-template-columns: repeat(6, 1fr); }
  .treat-card { grid-column: span 2; }
  .treat-card:nth-child(4) { grid-column: 2 / span 2; }
  .treat-card:nth-child(5) { grid-column: 4 / span 2; }
}

/* About / Treatments responsive */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-media { max-width: 480px; margin: 0 auto; }
  .about-title { text-align: left; }
}
@media (max-width: 540px) {
  .about-values { grid-template-columns: 1fr; }
}

/* ---------- Service detail pages ---------- */
.svc-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-darker) 0%, var(--green) 100%);
}
.svc-hero .container { position: relative; z-index: 2; }
.svc-hero-content {
  color: var(--white);
  max-width: 52%;
  padding: 64px 0;
}
.svc-hero--plain .svc-hero-content { max-width: 100%; }
.svc-hero-media {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 47%;
}
.svc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.svc-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 91, 67, 0.55) 0%, rgba(15, 91, 67, 0) 24%);
  pointer-events: none;
}
.svc-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 20px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.svc-back:hover { color: var(--white); transform: translateX(-3px); }
.svc-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 700;
  font-size: 0.78rem;
  color: #9ff0cf;
  margin-bottom: 12px;
}
.svc-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.svc-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
}

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 48px;
  align-items: start;
}
.svc-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.svc-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 32px 0 14px;
}
.svc-content p {
  color: var(--grey);
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.svc-list li {
  position: relative;
  padding-left: 32px;
  color: var(--black);
  font-size: 1rem;
}
.svc-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(29, 158, 117, 0.14);
}
.svc-list li::after {
  content: "";
  position: absolute;
  left: 6px; top: 7px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.price-panel {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 28px 28px 30px;
}
.price-panel-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.price-panel-note {
  color: var(--grey);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.price-panel .price-list { margin: 0 0 22px; }
.price-panel .btn { margin-bottom: 10px; }
.price-panel .btn:last-child { margin-bottom: 0; }

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .svc-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .price-panel { position: static; }
  .svc-hero { display: block; min-height: 0; }
  .svc-hero-content { max-width: 100%; padding: 30px 0 38px; }
  .svc-hero-media { position: relative; width: 100%; height: 250px; }
  .svc-hero-media::before { background: linear-gradient(180deg, rgba(15, 91, 67, 0) 55%, rgba(15, 91, 67, 0.5) 100%); }
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.stars {
  display: flex;
  gap: 3px;
  color: var(--star);
  margin-bottom: 16px;
}
.stars svg { width: 20px; height: 20px; }
.review-quote {
  font-size: 1.02rem;
  color: var(--black);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
}
.review-role {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- Pricing placeholder ---------- */
.pricing-placeholder {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 54px 40px;
  box-shadow: var(--shadow-sm);
}
.badge {
  display: inline-block;
  background: rgba(29, 158, 117, 0.12);
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.pricing-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.pricing-text {
  color: var(--grey);
  margin-bottom: 18px;
}
.pricing-note {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 28px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 4px; width: 100%;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.price-card:hover::before { transform: scaleX(1); }

.price-cat {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.price-sub {
  color: var(--grey);
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.price-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.price-list li:last-child { border-bottom: none; padding-bottom: 0; }

.price-list li.is-offer {
  align-items: center;
  background: rgba(29, 158, 117, 0.08);
  border-bottom: none;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 6px -14px;
}
.pl-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  margin-right: 9px;
  vertical-align: middle;
}
.pl-name {
  color: var(--black);
  font-size: 0.98rem;
}
.pl-price {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--green);
  font-size: 1.08rem;
  white-space: nowrap;
}

.pricing-cta {
  text-align: center;
  margin-top: 50px;
}
.pricing-cta-text {
  color: var(--grey);
  font-size: 1.02rem;
  margin-bottom: 20px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
a.info-item:hover {
  transform: translateY(-2px) translateX(2px);
  box-shadow: var(--shadow-md);
}
.info-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(29, 158, 117, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon svg { width: 22px; height: 22px; }
.info-text {
  display: flex;
  flex-direction: column;
  font-size: 0.98rem;
  color: var(--black);
  word-break: break-word;
}
.info-text strong {
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--grey);
  margin-bottom: 2px;
  font-weight: 700;
}

.book-card {
  margin-top: auto;
  background: linear-gradient(135deg, var(--green-darker), var(--green));
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 28px;
  box-shadow: var(--shadow-md);
}
.book-title {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.book-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  margin-bottom: 20px;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  min-height: 480px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 480px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 48px;
}
.footer-logo {
  display: inline-block;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  margin-bottom: 18px;
}
.footer-logo img { height: 56px; width: auto; }
.footer-desc {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.98rem;
  max-width: 320px;
}
.footer-heading {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 11px; font-size: 0.96rem; }
.footer-links a { transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-links a:hover { color: var(--green); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); }

/* ---------- Scroll-reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Hero entrance */
.reveal-hero {
  opacity: 0;
  animation: heroUp 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-eyebrow.reveal-hero { animation-delay: 0.10s; }
.hero-title.reveal-hero  { animation-delay: 0.25s; }
.hero-sub.reveal-hero    { animation-delay: 0.45s; }
.hero-actions.reveal-hero { animation-delay: 0.62s; }

/* ---------- Keyframes ---------- */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes kenburns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.18); }
}
@keyframes floatY {
  0%, 100% { transform: skewX(-20deg) translateY(0); }
  50%      { transform: skewX(-20deg) translateY(-26px); }
}
@keyframes floatX {
  0%, 100% { transform: skewX(-20deg) translateX(0); }
  50%      { transform: skewX(-20deg) translateX(-30px); }
}
@keyframes wheel {
  0%   { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    height: calc(100vh - var(--nav-h));
    width: min(82vw, 320px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 28px 28px;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
    transform: translateX(105%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link {
    width: 100%;
    padding: 12px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-link::after { display: none; }
  .nav-cta { margin-top: 16px; width: 100%; }

  .contact-grid { grid-template-columns: 1fr; gap: 26px; }
  .map-wrap, .map-wrap iframe { min-height: 320px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .section { padding: 68px 0; }
  .container { padding: 0 18px; }
  .hero { min-height: auto; padding: 70px 0 90px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .reveal-hero { opacity: 1 !important; }
  .scroll-down { opacity: 1 !important; }
}
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
