/* Sunshine State Backyard Cinema — shared styles */

:root {
  --coral: #FF6B5B;
  --coral-dark: #E8523F;
  --coral-light: #FF9B85;
  --sky: #4FB0E8;
  --sky-dark: #2E8FC7;
  --sky-light: #8FD4F5;
  --gold: #FFC857;
  --navy: #1E3A4C;
  --navy-light: #2A4E63;
  --cream: #FFF8F2;
  --gray-text: #55606B;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(30, 58, 76, 0.10);
  --shadow-hover: 0 12px 32px rgba(30, 58, 76, 0.16);
  --shadow-glow: 0 10px 30px rgba(255, 107, 91, 0.25);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-16px, 18px) scale(1.08); }
}

@keyframes softPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 91, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(255, 107, 91, 0); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4, .logo {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */

header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(30, 58, 76, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo {
  font-size: 1.3rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span { color: var(--coral); }

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  transition: color 0.2s ease;
  position: relative;
}

nav ul > li > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: width 0.25s ease;
}

nav ul > li > a:not(.nav-cta):hover::after,
nav ul > li > a.active::after { width: 100%; }

nav a:hover, nav a.active { color: var(--coral); }

.nav-cta {
  background: linear-gradient(120deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(255, 107, 91, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}

.nav-cta:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 107, 91, 0.45); }

/* Hamburger (CSS-only) */
.menu-toggle { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 200;
  padding: 12px;
  margin: -12px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 72%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    transition: right 0.35s ease;
    padding: 100px 32px 32px;
  }

  nav ul {
    flex-direction: column;
    gap: 24px;
  }

  .menu-toggle:checked ~ nav { right: 0; }

  .menu-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
  .menu-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30,58,76,0.4);
    z-index: 150;
  }

  .menu-toggle:checked ~ .nav-overlay { display: block; }
}

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.06) 0%, transparent 45%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 100px 24px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,107,91,0.3) 0%, transparent 70%);
  animation: floatBlob 9s ease-in-out infinite;
}

.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(79,176,232,0.28) 0%, transparent 70%);
  animation: floatBlob 11s ease-in-out infinite reverse;
}

.hero .container { position: relative; z-index: 1; }

.hero h1 {
  font-size: 2.7rem;
  max-width: 780px;
  margin: 0 auto 18px;
  animation: fadeInUp 0.7s ease both;
}

.hero p.subhead {
  font-size: 1.15rem;
  color: #CFE3EE;
  max-width: 600px;
  margin: 0 auto 32px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.badge-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-height: 44px;
  box-sizing: border-box;
}

.btn-primary {
  background: linear-gradient(120deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(255, 107, 91, 0.3);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); background: var(--coral-dark); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover { border-color: var(--white); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--sky-dark);
  border: 2px solid var(--sky);
}

.btn-outline:hover { background: var(--sky); color: var(--white); }

/* ---------- Sections ---------- */

section { padding: 80px 0; }

.section-label {
  color: var(--coral);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: block;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  color: var(--gray-text);
  max-width: 620px;
  margin: 0 auto 50px;
}

.bg-white { background: var(--white); }
.bg-sky-tint { background: #EAF6FD; }

/* ---------- Grids / Cards ---------- */

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

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

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(30,58,76,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: fadeInUp 0.6s ease both;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,107,91,0.25);
}

.grid-2 .card:nth-child(1), .grid-3 .card:nth-child(1), .grid-4 .card:nth-child(1) { animation-delay: 0.05s; }
.grid-2 .card:nth-child(2), .grid-3 .card:nth-child(2), .grid-4 .card:nth-child(2) { animation-delay: 0.12s; }
.grid-3 .card:nth-child(3), .grid-4 .card:nth-child(3) { animation-delay: 0.19s; }
.grid-3 .card:nth-child(4), .grid-4 .card:nth-child(4) { animation-delay: 0.26s; }
.grid-3 .card:nth-child(5) { animation-delay: 0.33s; }
.grid-3 .card:nth-child(6) { animation-delay: 0.4s; }
.grid-3 .card:nth-child(7) { animation-delay: 0.47s; }
.grid-3 .card:nth-child(8) { animation-delay: 0.54s; }
.grid-3 .card:nth-child(9) { animation-delay: 0.61s; }

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFEAE6 0%, #FFD9D2 100%);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: transform 0.25s ease;
}

.card:hover .icon { transform: scale(1.1) rotate(-4deg); }

.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--gray-text); font-size: 0.95rem; }

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  text-align: center;
  position: relative;
}

.step {
  animation: fadeInUp 0.6s ease both;
}

.step:nth-child(1) { animation-delay: 0.05s; }
.step:nth-child(2) { animation-delay: 0.15s; }
.step:nth-child(3) { animation-delay: 0.25s; }
.step:nth-child(4) { animation-delay: 0.35s; }

.step .num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 16px rgba(255, 107, 91, 0.35);
}

.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--gray-text); font-size: 0.9rem; }

@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeInUp 0.6s ease both;
}

.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.pricing-card.featured {
  border-color: var(--coral);
  position: relative;
  transform: scale(1.03);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }

/* Card-level badge removed — "Most Popular" now marks a specific
   package + screen-size combination via .price-option.popular */

.pricing-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.pricing-card .price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--coral);
  margin: 14px 0 4px;
}
.pricing-card .price span { font-size: 0.95rem; color: var(--gray-text); font-weight: 500; }
.pricing-card .tagline { color: var(--gray-text); font-size: 0.9rem; margin-bottom: 20px; }

.price-split {
  display: flex;
  gap: 12px;
  margin: 26px 0 22px;
}

.price-option {
  flex: 1;
  background: #F7FBFE;
  border: 1.5px solid #DCEBF5;
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  position: relative;
}

.price-option.popular {
  background: #FFF3F0;
  border-color: var(--coral);
  border-width: 2px;
  box-shadow: 0 6px 20px rgba(255, 107, 91, 0.22);
}

.price-option.popular .price-amount { font-size: 1.7rem; }

.price-option .popular-flag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-option .price-size {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.price-option .price-amount {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1.1;
}

.pricing-card ul { list-style: none; margin: 0 0 26px; flex-grow: 1; }
.pricing-card ul li {
  padding: 9px 0;
  border-bottom: 1px solid #F0EDE8;
  font-size: 0.93rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pricing-card ul li::before { content: "✓"; color: var(--sky-dark); font-weight: 700; }

@media (max-width: 860px) {
  .pricing-card.featured { transform: none; }
}

/* ---------- CTA banner ---------- */

.cta-banner {
  background: linear-gradient(120deg, var(--coral) 0%, #FF8A6E 100%);
  color: var(--white);
  text-align: center;
  padding: 64px 24px;
  border-radius: var(--radius);
  margin: 0 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(255, 107, 91, 0.25);
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.cta-banner h2, .cta-banner p, .cta-banner a { position: relative; z-index: 1; }
.cta-banner h2 { font-size: 1.8rem; margin-bottom: 12px; }
.cta-banner p { margin-bottom: 28px; opacity: 0.95; }
.cta-banner a.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.2); }

/* ---------- FAQ accordion (CSS-only) ---------- */

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover { border-color: rgba(255,107,91,0.2); box-shadow: var(--shadow-hover); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  box-sizing: border-box;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-answer {
  padding: 0 26px 22px;
  color: var(--gray-text);
}

/* ---------- Contact ---------- */

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

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}

.contact-info-card .row {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-info-card .row .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #EAF6FD;
  color: var(--sky-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card h4 { font-size: 0.95rem; margin-bottom: 2px; }
.contact-info-card p, .contact-info-card a { color: var(--gray-text); font-size: 0.95rem; }
.contact-info-card a:hover { color: var(--coral); }

form.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E4E0DA;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky);
}

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Booking picker (Cal.com) ---------- */

.booking-step { text-align: center; margin-bottom: 26px; }

.booking-step-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-text);
  margin-bottom: 14px;
}

.booking-options {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-options .btn small { font-size: 0.78rem; opacity: 0.85; font-weight: 600; }

.btn-price {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.22);
  color: inherit;
}

.btn-outline .btn-price {
  background: rgba(79, 176, 232, 0.15);
  color: var(--sky-dark);
}

.booking-summary {
  text-align: center;
  color: var(--gray-text);
  font-size: 0.92rem;
  font-weight: 600;
  margin: 8px auto 30px;
  padding: 10px 18px;
  background: #EAF6FD;
  border-radius: 30px;
  display: table;
}

.cal-embed-wrap {
  width: 100%;
  min-height: 620px;
  border-radius: var(--radius);
  overflow: hidden;
}

.booking-policy {
  max-width: 720px;
  margin: 26px auto 0;
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--gray-text);
  background: var(--cream);
  border: 1px solid #EFE7DE;
  border-radius: 10px;
  padding: 14px 20px;
}

.booking-policy a { color: var(--sky-dark); font-weight: 600; }
.booking-policy a:hover { color: var(--coral); }

@media (max-width: 480px) {
  .booking-options { flex-direction: column; align-items: stretch; }
  .booking-options .btn { text-align: center; }
  .booking-summary { display: block; font-size: 0.86rem; }
}

/* ---------- Occasion tags ---------- */

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 50px; }
.tag {
  background: var(--white);
  border: 1.5px solid #E4E0DA;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tag:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
}

/* ---------- Footer ---------- */

footer {
  background: var(--navy);
  color: #C9D6DE;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-grid p { font-size: 0.9rem; line-height: 1.7; }

.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a { font-size: 0.9rem; transition: color 0.2s ease; }
.footer-grid ul a:hover { color: var(--coral); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  text-align: center;
  font-size: 0.82rem;
  color: #8FA2AF;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 70px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255,107,91,0.25) 0%, transparent 70%);
  animation: floatBlob 10s ease-in-out infinite;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { font-size: 2.1rem; margin-bottom: 12px; animation: fadeInUp 0.6s ease both; }
.page-hero p { color: #CFE3EE; max-width: 560px; margin: 0 auto; animation: fadeInUp 0.6s ease 0.1s both; }

.breadcrumb {
  font-size: 0.85rem;
  color: #A9C4D4;
  margin-bottom: 14px;
}

.breadcrumb a:hover { color: var(--white); }

/* ---------- Mobile tuning ---------- */

@media (max-width: 860px) {
  section { padding: 60px 0; }
  .section-title { font-size: 1.7rem; }
  .section-sub { margin-bottom: 36px; }

  .hero { padding: 70px 20px 90px; clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%); }
  .page-hero { padding: 56px 20px 70px; }

  .cta-banner { margin: 0 8px; padding: 48px 22px; }
  .cta-banner h2 { font-size: 1.5rem; }

  .contact-grid, .grid-2 { gap: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }

  .hero h1 { font-size: 1.65rem; }
  .hero p.subhead { font-size: 1rem; }
  .page-hero h1 { font-size: 1.6rem; }

  .hero-buttons, .badge-row { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { text-align: center; }

  .section-title { font-size: 1.45rem; }

  .pricing-card { padding: 28px 20px; }
  .pricing-card .price { font-size: 1.8rem; }
  .pricing-card.featured { transform: none; }

  .card, .contact-info-card, form.contact-form { padding: 24px 20px; }

  .logo { font-size: 1.05rem; }

  .calendly-inline-widget { height: 620px !important; min-width: 0 !important; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 1.5rem; }
  .btn { padding: 13px 22px; font-size: 0.95rem; }
}
