/* ============================================================
   Joyful Feast — Main Stylesheet
   WEINER PARTY LIMITED LLC
   Design: Festive grid, diagonal blocks, circular accents
   Colors: Coral #FF6B6B, Gold #FFD93D, Teal #2EC4B6,
           Warm White #FFF8F0, Charcoal #2D3436, Navy #1B1464
   ============================================================ */

/* ----- Custom Properties ----- */
:root {
  --coral: #FF6B6B;
  --coral-dark: #E55A5A;
  --gold: #FFD93D;
  --gold-dark: #E6C435;
  --teal: #2EC4B6;
  --teal-dark: #26A99D;
  --warm-white: #FFF8F0;
  --charcoal: #2D3436;
  --navy: #1B1464;
  --navy-light: #2A1F7A;
  --white: #FFFFFF;
  --black: #000000;

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --max-width: 1200px;
  --nav-height: 70px;
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: var(--coral);
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* ----- Navigation ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 3px solid var(--gold);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--warm-white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-logo:hover,
.nav-logo:focus-visible {
  color: var(--gold);
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--warm-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--coral);
  color: var(--white);
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy);
  margin-left: 0.25rem;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: var(--gold-dark);
  color: var(--navy);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--warm-white);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    transition: right 0.35s ease;
    border-left: 3px solid var(--gold);
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links .nav-cta {
    margin-top: 0.5rem;
    margin-left: 0;
    text-align: center;
  }
}

/* ----- Hero Section ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  padding: calc(var(--nav-height) + 3rem) 1.5rem 5rem;
}

/* Diagonal slice at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--warm-white);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

/* Large coral circle burst behind text */
.hero-circle-burst {
  position: absolute;
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  border-radius: 50%;
  background: var(--coral);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.25;
}

/* Confetti dots */
.hero-confetti {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.confetti-dot {
  position: absolute;
  border-radius: 50%;
}

.confetti-dot--gold {
  background: var(--gold);
}

.confetti-dot--teal {
  background: var(--teal);
}

.confetti-dot--coral {
  background: var(--coral);
}

.confetti-dot--sm {
  width: 8px;
  height: 8px;
}

.confetti-dot--md {
  width: 14px;
  height: 14px;
}

.confetti-dot--lg {
  width: 22px;
  height: 22px;
}

/* Confetti positions defined via nth-child — varied placement */
.hero-confetti .confetti-dot:nth-child(1)  { top: 8%; left: 5%; }
.hero-confetti .confetti-dot:nth-child(2)  { top: 12%; right: 8%; }
.hero-confetti .confetti-dot:nth-child(3)  { top: 25%; left: 12%; }
.hero-confetti .confetti-dot:nth-child(4)  { top: 20%; right: 15%; }
.hero-confetti .confetti-dot:nth-child(5)  { top: 60%; left: 8%; }
.hero-confetti .confetti-dot:nth-child(6)  { top: 55%; right: 6%; }
.hero-confetti .confetti-dot:nth-child(7)  { top: 75%; left: 18%; }
.hero-confetti .confetti-dot:nth-child(8)  { top: 70%; right: 20%; }
.hero-confetti .confetti-dot:nth-child(9)  { top: 35%; left: 4%; }
.hero-confetti .confetti-dot:nth-child(10) { top: 40%; right: 4%; }
.hero-confetti .confetti-dot:nth-child(11) { top: 85%; left: 10%; }
.hero-confetti .confetti-dot:nth-child(12) { top: 88%; right: 12%; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-title .accent {
  color: var(--gold);
}

.hero-subtitle {
  color: var(--warm-white);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 100px;
  text-decoration: none;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: var(--font-body);
}

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

.btn:active {
  transform: translateY(0);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 6px 24px rgba(255, 217, 61, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--warm-white);
  border-color: var(--warm-white);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--warm-white);
  color: var(--navy);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn--teal:hover,
.btn--teal:focus-visible {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: 0 6px 24px rgba(46, 196, 182, 0.4);
}

.btn--coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.btn--coral:hover,
.btn--coral:focus-visible {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ----- About Section — Diamond Focus ----- */
.about {
  position: relative;
  padding: 7rem 1.5rem 7rem;
  background: var(--warm-white);
  overflow: hidden;
}

/* Decorative circles peeking from edges */
.about::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.15;
  z-index: 0;
}

.about::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.12;
  z-index: 0;
}

.about-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* Diamond accent above heading */
.about-diamond {
  width: 48px;
  height: 48px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 auto 2.5rem;
}

.about h2 {
  margin-bottom: 1.5rem;
}

.about p {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: var(--charcoal);
}

.about-highlight {
  display: inline-block;
  background: var(--navy);
  color: var(--warm-white);
  padding: 0.2rem 0.6rem;
  font-weight: 700;
}

/* ----- Services — Diagonal Stack ----- */
.services {
  position: relative;
  padding: 7rem 1.5rem 7rem;
  background: var(--navy);
  overflow: hidden;
}

/* Diagonal teal stripe across the section */
.services-stripe {
  position: absolute;
  top: 0;
  left: -5%;
  width: 45%;
  height: 100%;
  background: var(--teal);
  transform: skewX(-8deg);
  opacity: 0.12;
  z-index: 0;
}

.services-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 4rem;
}

.services-header h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.services-header p {
  color: var(--warm-white);
  opacity: 0.85;
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.services-list {
  position: relative;
  z-index: 1;
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  border-left: 6px solid;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* Alternating left border colors */
.service-card:nth-child(1) { border-left-color: var(--coral); }
.service-card:nth-child(2) { border-left-color: var(--gold); }
.service-card:nth-child(3) { border-left-color: var(--teal); }
.service-card:nth-child(4) { border-left-color: var(--coral); }
.service-card:nth-child(5) { border-left-color: var(--gold); }

/* Alternating offset */
.service-card:nth-child(even) {
  margin-left: clamp(0px, 8%, 80px);
}

.service-card:nth-child(odd) {
  margin-right: clamp(0px, 8%, 80px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card:nth-child(1) .service-icon,
.service-card:nth-child(4) .service-icon {
  background: var(--coral);
  color: var(--white);
}

.service-card:nth-child(2) .service-icon,
.service-card:nth-child(5) .service-icon {
  background: var(--gold);
  color: var(--navy);
}

.service-card:nth-child(3) .service-icon {
  background: var(--teal);
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--charcoal);
  font-size: 1rem;
}

@media (max-width: 600px) {
  .service-card:nth-child(even) {
    margin-left: 0;
  }
  .service-card:nth-child(odd) {
    margin-right: 0;
  }
}

/* ----- Values Section — Overlapping Circles ----- */
.values {
  position: relative;
  padding: 7rem 1.5rem 7rem;
  background: var(--warm-white);
  overflow: hidden;
}

/* Decorative diagonal blocks */
.values::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: var(--gold);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.3;
  z-index: 0;
}

.values-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.values-header h2 {
  margin-bottom: 0.75rem;
}

.values-header p {
  color: var(--charcoal);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.values-cluster {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 500px;
  z-index: 1;
}

.value-bubble {
  position: absolute;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.value-bubble:hover {
  transform: scale(1.08);
}

/* Central large bubble */
.value-bubble--center {
  width: 200px;
  height: 200px;
  background: var(--navy);
  color: var(--warm-white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.value-bubble--center:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.value-bubble--center h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.value-bubble--center p {
  color: var(--warm-white);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Orbiting bubbles */
.value-bubble--1 {
  width: 150px;
  height: 150px;
  background: var(--coral);
  color: var(--white);
  top: 5%;
  left: 5%;
  z-index: 3;
}

.value-bubble--2 {
  width: 150px;
  height: 150px;
  background: var(--teal);
  color: var(--white);
  top: 5%;
  right: 5%;
  z-index: 3;
}

.value-bubble--3 {
  width: 150px;
  height: 150px;
  background: var(--gold);
  color: var(--navy);
  bottom: 5%;
  left: 10%;
  z-index: 3;
}

.value-bubble--4 {
  width: 140px;
  height: 140px;
  background: var(--navy-light);
  color: var(--warm-white);
  bottom: 8%;
  right: 8%;
  z-index: 3;
}

.value-bubble h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.value-bubble p {
  font-size: 0.78rem;
  line-height: 1.35;
}

.value-bubble--2 h4,
.value-bubble--2 p,
.value-bubble--1 h4,
.value-bubble--1 p {
  color: var(--white);
}

.value-bubble--3 h4,
.value-bubble--3 p {
  color: var(--navy);
}

.value-bubble--4 h4,
.value-bubble--4 p {
  color: var(--warm-white);
}

@media (max-width: 700px) {
  .values-cluster {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .value-bubble {
    position: static;
    width: 100% !important;
    max-width: 320px;
    height: auto !important;
    aspect-ratio: 1;
    border-radius: 28px;
    transform: none !important;
  }

  .value-bubble:hover {
    transform: scale(1.03) !important;
  }

  .value-bubble--center {
    order: -1;
    aspect-ratio: 1;
  }
}

/* ----- Counter Banner — Diagonal Stripe ----- */
.counter-banner {
  position: relative;
  padding: 5rem 1.5rem;
  background: var(--teal);
  overflow: hidden;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}

.counter-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 45% 100%);
  opacity: 0.15;
  z-index: 0;
}

.counter-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.counter-item {
  text-align: center;
  color: var(--white);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
  display: block;
}

.counter-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.counter-circle {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 3px;
}

/* ----- Contact Section — Circular Form ----- */
.contact {
  position: relative;
  padding: 7rem 1.5rem 7rem;
  background: var(--warm-white);
  overflow: hidden;
}

/* Diagonal gold slice */
.contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: var(--gold);
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  opacity: 0.2;
  z-index: 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.contact-header h2 {
  margin-bottom: 0.75rem;
}

.contact-header p {
  color: var(--charcoal);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.contact-form-wrapper {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 32px;
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 40px rgba(27, 20, 100, 0.1);
  border: 2px solid var(--gold);
}

/* Decorative circles around the form */
.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--coral);
  z-index: -1;
}

.contact-form-wrapper::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  z-index: -1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #D5CFE8;
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.15);
  outline: none;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.15);
}

.form-error {
  color: var(--coral);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.3rem;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.visible {
  display: block;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  color: var(--teal);
  margin-bottom: 0.5rem;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--navy);
  color: var(--warm-white);
  padding: 0;
  position: relative;
}

/* Wave top edge */
.site-footer::before {
  content: '';
  display: block;
  height: 50px;
  background: var(--warm-white);
  clip-path: polygon(0 0, 10% 40%, 20% 0, 30% 40%, 40% 0, 50% 40%, 60% 0, 70% 40%, 80% 0, 90% 40%, 100% 0, 100% 100%, 0 100%);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
  display: inline-flex;
}

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: var(--warm-white);
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  opacity: 1;
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ----- Scroll Animations ----- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Bubble pop-in animation */
.bubble-pop {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bubble-pop.visible {
  opacity: 1;
  transform: scale(1);
}

/* ----- Utility ----- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }

/* ----- Policy Pages ----- */
.policy-page {
  padding: calc(var(--nav-height) + 4rem) 1.5rem 5rem;
  background: var(--warm-white);
  max-width: 800px;
  margin: 0 auto;
}

.policy-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.policy-page .policy-meta {
  color: var(--charcoal);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.policy-page h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 0;
}

.policy-page p,
.policy-page li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.policy-page ul,
.policy-page ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-page address {
  font-style: normal;
  line-height: 1.8;
  margin: 1rem 0;
  padding: 1.5rem;
  background: var(--white);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
}

.policy-page address p {
  margin-bottom: 0.3rem;
}

/* ----- Responsive fine-tuning ----- */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .counter-inner {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-wrapper {
    padding: 2rem 1.25rem;
    border-radius: 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }
}
