/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--grey-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }


/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  /* Colours */
  --emerald:       #0f5132;
  --emerald-dark:  #0a3d26;
  --emerald-light: #157347;
  --emerald-glow:  rgba(15, 81, 50, 0.15);
  --emerald-subtle: rgba(15, 81, 50, 0.06);
  --gold:          #c9a84c;
  --gold-light:    #d4b965;
  --gold-pale:     rgba(201, 168, 76, 0.15);
  --white:         #ffffff;
  --off-white:     #f8f6f2;
  --grey-50:       #f9fafb;
  --grey-100:      #f3f4f6;
  --grey-200:      #e5e7eb;
  --grey-400:      #9ca3af;
  --grey-600:      #4b5563;
  --grey-700:      #374151;
  --grey-800:      #1f2937;
  --grey-900:      #111827;

  /* Typography */
  --font-script:  'Kaushan Script', cursive;
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-py: 96px;
  --container:  1200px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.25s var(--ease);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}


/* ============================================================
   UTILITY
============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--grey-600);
  max-width: 560px;
  margin-bottom: 48px;
}


/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--emerald);
  color: var(--white);
  border: 2px solid var(--emerald);
}
.btn-primary:hover {
  background: var(--emerald-light);
  border-color: var(--emerald-light);
  box-shadow: 0 8px 24px var(--emerald-glow);
}

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

.btn-ghost {
  background: transparent;
  color: var(--grey-600);
  border: 2px solid var(--grey-200);
}
.btn-ghost:hover {
  background: var(--grey-100);
  border-color: var(--grey-400);
}

.btn-large {
  padding: 18px 36px;
  font-size: 0.9rem;
  letter-spacing: 2.5px;
}

.btn-full { width: 100%; }

.btn-inline { margin-top: 24px; }


/* ============================================================
   LOGO COMPONENT
============================================================ */
.logo-script {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--emerald);
  line-height: 1;
  letter-spacing: 0.5px;
}

.logo-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  margin: 5px 0 4px;
}

.logo-sub {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.5px;
}

/* White variant (footer) */
.logo-script--white { color: var(--white); }
.logo-sub--white    { color: rgba(255,255,255,0.85); }


/* ============================================================
   HEADER / NAV
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--grey-200);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.25em;
  line-height: 1;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-700);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--emerald); }
.nav-link:hover::after { width: 100%; }

.nav-cta { padding: 10px 20px; font-size: 0.75rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1800&q=80') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 61, 38, 0.88) 0%,
    rgba(10, 61, 38, 0.75) 50%,
    rgba(10, 61, 38, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 100px 24px 60px;
  max-width: 720px;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-script {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
  display: block;
  position: relative;
  z-index: 2;
}

.hero-logo-rule {
  display: block;
  width: 80%;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 16px;
  position: relative;
  z-index: 1;
}

.hero-logo-sub {
  font-family: var(--font-script);
  font-size: clamp(3.2rem, 9vw, 5.8rem);
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: none;
  line-height: 1;
  display: block;
  margin-top: -0.1em;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { opacity: 1; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}


/* ============================================================
   QUIZ
============================================================ */
.quiz-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.quiz-section .section-label,
.quiz-section .section-heading,
.quiz-section .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.quiz-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeInUp 0.3s var(--ease); }

.quiz-question {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--grey-900);
  text-align: center;
  margin-bottom: 24px;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-option {
  padding: 18px 16px;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-md);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--grey-700);
  text-align: center;
  transition: border-color var(--transition), background var(--transition),
              color var(--transition), transform var(--transition);
  cursor: pointer;
}

.quiz-option:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  background: var(--emerald-subtle);
  transform: translateY(-2px);
}

.quiz-option.selected {
  border-color: var(--emerald);
  background: var(--emerald);
  color: var(--white);
}

.quiz-progress {
  height: 3px;
  background: var(--grey-200);
  border-radius: 2px;
  margin-top: 36px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.4s var(--ease);
  width: 25%;
}

.quiz-progress-label {
  font-size: 0.8rem;
  color: var(--grey-400);
  text-align: center;
  margin-top: 8px;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.quiz-result {
  animation: fadeInUp 0.4s var(--ease);
  margin-top: 8px;
}

.quiz-result-inner {
  background: var(--white);
  border: 2px solid var(--emerald);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.quiz-result-label {
  font-size: 0.85rem;
  color: var(--grey-400);
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.quiz-result-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 8px;
}

.quiz-result-tagline {
  color: var(--grey-600);
  margin-bottom: 28px;
}

.quiz-result-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   PACKAGES
============================================================ */
.packages-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.packages-section .section-label,
.packages-section .section-heading,
.packages-section .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.package-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
}

.package-card:hover {
  border-color: var(--emerald);
  box-shadow: 0 12px 40px var(--emerald-glow);
  transform: translateY(-4px);
}

.package-card.highlighted {
  border-color: var(--emerald);
  background: var(--off-white);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.package-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 6px;
}

.package-tagline {
  font-size: 0.9rem;
  color: var(--grey-600);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-200);
}

.package-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 20px;
}

.package-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.package-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--grey-700);
}

.package-includes li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f5132' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
  margin-top: 2px;
}

.package-cta { width: 100%; margin-top: auto; }


/* ============================================================
   ABOUT AMY
============================================================ */
.about-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.about-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--grey-100);
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 2px dashed var(--grey-400);
  border-radius: var(--radius-lg);
  color: var(--grey-400);
  font-size: 0.9rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  min-height: 380px;
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 100%;
  transform: scale(1.2) translateX(-6%);
  transform-origin: bottom center;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-heading .kaushan {
  font-family: var(--font-script);
  font-size: 1.3em;
  color: var(--emerald);
}

.about-text-col p {
  color: var(--grey-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 48px;
  border-top: 1px solid var(--grey-200);
}

.about-value {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-value-icon {
  width: 44px;
  height: 44px;
  background: var(--emerald-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
}

.about-value h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--grey-900);
}

.about-value p {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.6;
}


/* ============================================================
   PHILOSOPHY
============================================================ */
.philosophy-section {
  position: relative;
  padding: 120px 0;
  background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600&q=80') center center / cover no-repeat;
}

.philosophy-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 61, 38, 0.87);
}

.philosophy-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.philosophy-quote {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--white);
  line-height: 1.4;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 16px;
}

.philosophy-quote em {
  color: var(--gold);
  font-style: normal;
}

.philosophy-attr {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}


/* ============================================================
   CONTACT
============================================================ */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

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

.contact-info .section-heading { max-width: 320px; }
.contact-info p { color: var(--grey-600); line-height: 1.75; margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--grey-700);
}

.contact-detail svg { color: var(--gold); flex-shrink: 0; }

.contact-detail a {
  color: var(--emerald);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-detail a:hover { color: var(--emerald-light); }

/* Form */
.contact-form-wrap {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

/* Honeypot — invisible to humans */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--grey-800);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px var(--emerald-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-400); }

.email-error {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 4px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239ca3af' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px;
  color: var(--emerald);
}
.form-success[hidden] { display: none; }
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--grey-900);
}
.form-success p { color: var(--grey-600); }


/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--emerald-dark);
  padding: 56px 0 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.25em;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}


/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.kaushan { font-family: var(--font-script); }


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-photo-frame {
    max-width: 360px;
    margin: 0 auto;
    aspect-ratio: 1/1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--grey-200);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-links.open {
    display: flex;
    animation: fadeInUp 0.2s var(--ease);
  }

  .nav-links .nav-link,
  .nav-links .nav-cta {
    padding: 14px 0;
    border-bottom: 1px solid var(--grey-100);
    border-radius: 0;
    font-size: 0.95rem;
    text-align: center;
    justify-content: center;
  }

  .nav-links .nav-cta {
    margin-top: 4px;
    border: none;
    border-bottom: none;
    background: none;
    color: var(--emerald);
    font-weight: 600;
    text-align: center;
    justify-content: center;
    border-radius: 0;
  }

  .nav-hamburger { display: flex; }

  .about-values { grid-template-columns: 1fr; }

  .quiz-options { grid-template-columns: 1fr; }

  .packages-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 28px 20px; }

  .hero-ctas { flex-direction: column; align-items: center; }

  .quiz-result-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-logo-script { font-size: 3rem; }
  .section-heading  { font-size: 1.6rem; }
  .btn-large        { padding: 15px 28px; font-size: 0.8rem; }
}
