/* ================================================================
   Cedar Breeze Hospitality — Stylesheet
   ================================================================ */

/* ----------------------------------------------------------------
   Custom Properties
---------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --c-green-900:  #111f0b;
  --c-green-800:  #1a3410;
  --c-green-700:  #2b5218;
  --c-green-600:  #3b6e28;
  --c-green-500:  #4d8a35;
  --c-gold-600:   #a37820;
  --c-gold-500:   #c4952a;
  --c-gold-400:   #d4af52;
  --c-gold-300:   #e8cf84;
  --c-cream-300:  #ede0c4;
  --c-cream-200:  #f4ead2;
  --c-cream-100:  #f9f3e5;
  --c-warm-white: #fdfaf5;
  --c-dark:       #1a120a;
  --c-text:       #2c1f0e;
  --c-muted:      #7a6050;
  --c-white:      #ffffff;

  /* Typography */
  --f-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --f-script: 'Dancing Script', cursive;
  --f-sans:   'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-w:     1200px;
  --pad-x:     clamp(1.25rem, 4vw, 2rem);
  --section-y: clamp(4rem, 8vw, 7rem);

  /* Effects */
  --shadow-sm: 0 2px 8px  rgba(0,0,0,.08);
  --shadow:    0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.20);
  --radius:    .75rem;
  --radius-lg: 1.25rem;
  --ease:      280ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  font-family: var(--f-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-text);
  background: var(--c-warm-white);
  -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
p    { max-width: 68ch; }

/* ----------------------------------------------------------------
   Utility
---------------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section {
  padding-block: var(--section-y);
}

/* Backgrounds */
.bg-warm       { background: var(--c-warm-white); }
.bg-cream      { background: var(--c-cream-100); }
.bg-green      { background: var(--c-green-700); }
.bg-dark-green { background: var(--c-green-800); }

/* ----------------------------------------------------------------
   Reveal Animations (Intersection Observer)
---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.reveal-delay   { transition-delay: .15s; }
.reveal.reveal-delay-2 { transition-delay: .3s;  }
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ----------------------------------------------------------------
   Navigation
---------------------------------------------------------------- */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  padding-block: 1rem;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}

.navbar.scrolled {
  background: rgba(26, 52, 16, .96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: .6rem;
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.nav-brand img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.4));
}

.nav-brand span {
  font-family: var(--f-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: .02em;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  white-space: nowrap;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-white);
  padding: .5rem 1rem;
  border-radius: 999px;
  transition: color var(--ease), background var(--ease);
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--c-gold-300);
  background: rgba(255,255,255,.1);
}

.nav-links a.nav-cta {
  background: var(--c-gold-500);
  color: var(--c-dark) !important;
  text-shadow: none !important;
}

.nav-links a.nav-cta:hover {
  background: var(--c-gold-400);
}

/* Active state */
.nav-links a.active {
  color: var(--c-gold-300);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg);  }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   Hero
---------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-photo.jpg');
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 14,  4, .68) 0%,
    rgba(5, 14,  4, .32) 28%,
    rgba(5, 14,  4, .42) 52%,
    rgba(5, 14,  4, .58) 75%,
    rgba(5, 14,  4, .74) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: var(--pad-x);
  max-width: 780px;
  animation: fadeUp .9s ease both;
}

.hero-logo {
  width: clamp(280px, 44vw, 420px);
  margin-inline: auto;
  margin-bottom: 1.75rem;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.45));
}

.hero-tagline {
  font-family: var(--f-script);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}

.hero-sub {
  font-family: var(--f-sans);
  font-size: clamp(.9rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.88);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 2.25rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}

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

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.55);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: fadeUp .9s ease .5s both;
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
  animation: bounce 1.6s ease-in-out infinite;
}

/* ----------------------------------------------------------------
   Buttons
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--f-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .8rem 2rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease),
              transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}

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

.btn-gold {
  background: var(--c-gold-500);
  color: var(--c-dark);
  border-color: var(--c-gold-500);
}
.btn-gold:hover {
  background: var(--c-gold-400);
  border-color: var(--c-gold-400);
  box-shadow: 0 6px 24px rgba(196,149,42,.45);
}

.btn-green {
  background: var(--c-green-700);
  color: var(--c-white);
  border-color: var(--c-green-700);
}
.btn-green:hover {
  background: var(--c-green-800);
  border-color: var(--c-green-800);
  box-shadow: 0 6px 24px rgba(43,82,24,.4);
}

.btn-ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--c-white);
}

.btn-outline-green {
  background: transparent;
  color: var(--c-green-700);
  border-color: var(--c-green-700);
}
.btn-outline-green:hover {
  background: var(--c-green-700);
  color: var(--c-white);
}

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

/* ----------------------------------------------------------------
   Section Headers (shared)
---------------------------------------------------------------- */
.section-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gold-500);
  margin-bottom: .6rem;
}
.eyebrow.light { color: var(--c-gold-300); }

.section-intro h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.2;
  margin-bottom: .85rem;
}
.section-intro h2.light { color: var(--c-white); }

.rule {
  width: 56px;
  height: 3px;
  background: var(--c-gold-500);
  border-radius: 2px;
  margin-inline: auto;
}
.rule.light { background: var(--c-gold-300); }

.section-sub {
  font-size: 1rem;
  color: var(--c-muted);
  margin-inline: auto;
  margin-top: 1rem;
}
.section-sub.light { color: rgba(255,255,255,.72); }

/* ----------------------------------------------------------------
   About
---------------------------------------------------------------- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: center;
}

.about-copy p {
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
  color: var(--c-text);
}

.about-copy p.lead {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--c-green-700);
  margin-bottom: 1.4rem;
  max-width: 52ch;
}

.about-copy .btn {
  margin-top: .75rem;
}

/* Portrait card */
.portrait-card {
  background: var(--c-cream-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--c-cream-300);
}

.portrait-img {
  width: 100%;
  height: 220px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 20%;
  margin-bottom: 1.25rem;
  border: 3px solid var(--c-gold-500);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.portrait-card h3 {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  color: var(--c-dark);
  margin-bottom: .3rem;
}

.portrait-role {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-gold-500);
  margin-bottom: 1.1rem;
}

.portrait-badges {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.portrait-badges li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--c-muted);
  justify-content: center;
}

.portrait-badges li svg {
  width: 14px;
  height: 14px;
  color: var(--c-gold-500);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   Services (What We Do)
---------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.service-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0,0,0,.22);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(196,149,42,.18);
  border-radius: .65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--c-gold-300);
}

.service-card h3 {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  color: var(--c-white);
  margin-bottom: .6rem;
  line-height: 1.3;
}

.service-card p {
  font-size: .93rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   Packages
---------------------------------------------------------------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.package-card {
  position: relative;
  background: var(--c-white);
  border: 2px solid var(--c-cream-300);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}

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

.package-card--featured {
  border-color: var(--c-gold-500);
  background: var(--c-green-700);
  box-shadow: var(--shadow);
}

.package-card--featured:hover {
  box-shadow: var(--shadow-lg);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-gold-500);
  color: var(--c-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.package-header {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.package-icon {
  width: 44px;
  height: 44px;
  background: var(--c-cream-200);
  border-radius: .65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.package-card--featured .package-icon {
  background: rgba(255,255,255,.15);
}

.package-icon svg {
  width: 24px;
  height: 24px;
  color: var(--c-gold-500);
}

.package-card--featured .package-icon svg {
  color: var(--c-gold-300);
}

.package-header h3 {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  color: var(--c-dark);
  line-height: 1.2;
}

.package-card--featured .package-header h3 {
  color: var(--c-white);
}

.package-card p {
  font-size: .95rem;
  color: var(--c-muted);
  line-height: 1.75;
  flex: 1;
}

.package-card--featured p {
  color: rgba(255,255,255,.78);
}

.package-card .btn {
  margin-top: auto;
}

/* ----------------------------------------------------------------
   Why Cedar Breeze — Stats
---------------------------------------------------------------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-block {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--c-gold-500);
  transition: transform var(--ease), box-shadow var(--ease);
}

.stat-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-num {
  font-family: var(--f-serif);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--c-green-700);
  line-height: 1;
  margin-bottom: .75rem;
}

.stat-desc {
  font-size: .83rem;
  font-weight: 600;
  color: var(--c-muted);
  line-height: 1.5;
}

/* Credential badges */
.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.1rem;
  background: var(--c-green-700);
  color: var(--c-white);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--c-gold-300);
}

/* ----------------------------------------------------------------
   Reviews
---------------------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: background var(--ease), transform var(--ease);
}

.review-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}

.review-stars {
  font-size: 1rem;
  color: var(--c-gold-400);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-card blockquote {
  font-size: .95rem;
  color: rgba(255,255,255,.84);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.25rem;
}

.review-card blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -.25rem;
  font-family: var(--f-serif);
  font-size: 2.5rem;
  color: var(--c-gold-600);
  line-height: 1;
}

.review-card footer {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1rem;
}

.review-card footer strong {
  display: block;
  color: var(--c-white);
  font-size: .93rem;
  font-weight: 700;
}

.review-card footer span {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: .2rem;
}

/* ----------------------------------------------------------------
   Contact
---------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--c-cream-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--c-cream-300);
}

.contact-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--c-green-700);
}

.contact-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-gold-500);
  margin-bottom: .2rem;
}

.contact-val {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text);
  transition: color var(--ease);
}

.contact-val:hover { color: var(--c-green-700); }

/* Social buttons */
.social-row {
  display: flex;
  gap: .75rem;
  margin-top: .5rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.25rem;
  border: 2px solid var(--c-green-700);
  color: var(--c-green-700);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  transition: background var(--ease), color var(--ease);
}

.social-btn svg {
  width: 15px;
  height: 15px;
}

.social-btn:hover {
  background: var(--c-green-700);
  color: var(--c-white);
}

/* CTA box */
.contact-cta-box {
  background: var(--c-cream-100);
  border: 1px solid var(--c-cream-300);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow);
}

.contact-cta-logo {
  width: 110px;
}

.contact-cta-text {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  color: var(--c-dark);
  line-height: 1.4;
  max-width: 28ch;
  margin-inline: auto;
}

/* ----------------------------------------------------------------
   Footer
---------------------------------------------------------------- */
.site-footer {
  background: var(--c-green-800);
  padding-block: 3rem;
  border-top: 3px solid var(--c-gold-500);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
}

.footer-logo {
  height: 64px;
  width: auto;
}

.footer-tagline {
  font-family: var(--f-script);
  font-size: 1.15rem;
  color: var(--c-gold-300);
  max-width: unset;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .75rem;
  justify-content: center;
}

.footer-nav a {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  padding: .25rem .5rem;
  border-radius: 4px;
  transition: color var(--ease);
}

.footer-nav a:hover { color: var(--c-gold-300); }

.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  max-width: unset;
}

.footer-copy a {
  color: rgba(255,255,255,.55);
  transition: color var(--ease);
}

.footer-copy a:hover { color: var(--c-gold-300); }

/* ----------------------------------------------------------------
   Animations
---------------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* ----------------------------------------------------------------
   Easter Egg — Cabin Crew Game
---------------------------------------------------------------- */
.egg-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0 2rem;
  background: var(--c-green-900);
  border-top: 1px solid rgba(255,255,255,.06);
}

.egg-trigger {
  background: none;
  border: 2px solid #c02020;
  border-radius: 8px;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 1;
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease);
  line-height: 1;
  padding: .4rem .75rem;
  filter: none;
  color: #c02020;
  box-shadow: 0 0 10px rgba(192, 32, 32, 0.4);
}

.egg-trigger:hover {
  transform: scale(1.12) rotate(-8deg);
  background: rgba(192, 32, 32, 0.15);
  box-shadow: 0 0 18px rgba(192, 32, 32, 0.7);
}

.egg-panel {
  width: 100%;
  max-width: 580px;
  margin-top: 1rem;
  background: #000;
  border: 3px solid #c4952a;
  border-radius: 8px;
  overflow: hidden;
}

.egg-header {
  background: #000880;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem .75rem;
  border-bottom: 2px solid #c4952a;
}

.egg-title {
  font-family: 'Press Start 2P', monospace;
  font-size: .65rem;
  color: #f8d020;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.egg-badge {
  font-family: 'Press Start 2P', monospace;
  font-size: .45rem;
  background: #c4952a;
  color: #000;
  padding: .15rem .4rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.egg-close {
  background: none;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  cursor: pointer;
  padding: .2rem .5rem;
  border-radius: 3px;
  transition: all var(--ease);
  font-family: var(--f-sans);
}

.egg-close:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

#cbCanvas {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.dpad {
  background: #080808;
  border-top: 2px solid #222;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dpad-cross {
  position: relative;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.dpad-btn {
  position: absolute;
  width: 28px;
  height: 28px;
  background: #222;
  border: 2px solid #444;
  color: #ccc;
  font-size: .65rem;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-user-select: none;
  transition: background 100ms;
}

.dpad-btn:active { background: #555; }

.dpad-up    { top: 0;    left: 50%;  transform: translateX(-50%); }
.dpad-down  { bottom: 0; left: 50%;  transform: translateX(-50%); }
.dpad-left  { left: 0;   top: 50%;   transform: translateY(-50%); }
.dpad-right { right: 0;  top: 50%;   transform: translateY(-50%); }

.dpad-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  background: #181818;
  border-radius: 50%;
  border: 1px solid #333;
}

.dpad-reply {
  flex: 1;
  background: #000880;
  border: 2px solid #c4952a;
  color: #f8d020;
  font-family: 'Press Start 2P', monospace;
  font-size: .5rem;
  padding: .75rem .5rem;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: .05em;
  line-height: 1.8;
  transition: background 100ms;
}

.dpad-reply:active { background: #0010c0; }

/* ----------------------------------------------------------------
   Responsive — Tablet
---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-portrait {
    max-width: 360px;
    margin-inline: auto;
    width: 100%;
  }
}

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

  .nav-brand span { display: none; }

  .nav-links {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    background: rgba(26, 52, 16, .98);
    flex-direction: column;
    align-items: stretch;
    padding: 5.5rem 1.5rem 2rem;
    gap: .25rem;
    transform: translateY(-110%);
    transition: transform var(--ease);
    z-index: 5;
  }

  .nav-links.open {
    transform: none;
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: .85rem 1.25rem;
    border-radius: var(--radius);
    text-align: center;
  }

  .nav-links a.nav-cta {
    margin-top: .5rem;
    justify-content: center;
  }

  /* Hero */
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  /* Stats */
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-cta-box {
    padding: 2.25rem 1.75rem;
  }
}

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    width: 260px;
  }
}
