:root {
  --navy: #010e28;
  --navy-deep: #010a1c;
  --gold: #c9a227;
  --gold-soft: #e8d48b;
  --ink: #1a1a2e;
  --muted: #4a4a5c;
  --bg: #f7f6f2;
  --bg-alt: #efeee8;
  --white: #ffffff;
  --line: #d8d6ce;
  --max: 1120px;
  --narrow: 680px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
}

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

a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--gold);
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, var(--narrow));
}

.site-header {
  background: var(--navy);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

.wordmark {
  width: min(360px, 72vw);
  height: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
}

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

/* Pie Push-style bleed: copy on light field, photo full-bleed right, no card frame */
.hero {
  position: relative;
  background: var(--bg);
  color: var(--ink);
  padding: 0;
  overflow: hidden;
  min-height: clamp(440px, 56vh, 600px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.2fr);
  align-items: stretch;
  min-height: inherit;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: 1rem;
  gap: 0;
  position: relative;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 1.25rem 3rem 0;
  z-index: 2;
  max-width: 34rem;
}

.hero-visual {
  margin: 0;
  position: relative;
  min-height: inherit;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

/* Soft fade into copy */
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 28%;
  z-index: 1;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(247, 246, 242, 0.65) 45%, transparent 100%);
  pointer-events: none;
}

/* Full photo, zoomed OUT: show face + kitchen (bias top/right) */
.hero-visual img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -5%;
  width: calc(100% + 5% + 40vw);
  max-width: none;
  height: 100%;
  opacity: 1;
  object-fit: cover;
  object-position: 58% 8%;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.15;
  font-weight: 750;
  max-width: 16ch;
  color: var(--navy);
}

.tell {
  margin: 0 0 1.1rem;
  max-width: 28rem;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  line-height: 1.3;
  font-weight: 750;
  color: var(--navy-deep);
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  font-size: 1.08rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.2rem;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white) !important;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--navy);
}

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

.btn-ghost {
  background: transparent;
  color: var(--navy) !important;
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--navy-deep) !important;
  background: transparent;
}

.section {
  padding: 2.75rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: 1.45rem;
}

.section p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.section p:last-child {
  margin-bottom: 0;
}

.bullets {
  margin: 1.25rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.bullets li {
  margin-bottom: 0.65rem;
}

.bullets strong {
  color: var(--ink);
}

.fine {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--gold-soft);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.footer-inner p {
  margin: 0;
}

.site-footer .fine {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0;
  }

  .hero-copy {
    padding: 2.5rem 1rem 2rem;
    max-width: none;
    order: 2;
  }

  .hero-visual {
    min-height: 280px;
    order: 1;
  }

  .hero-visual::after {
    inset: auto 0 0 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  }

  .hero-visual img {
    left: 0;
    width: 100%;
    object-position: 55% 10%;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .wordmark {
    width: min(300px, 85vw);
  }

  .footer-inner {
    flex-direction: column;
  }
}



/* —— Talk to Danna orb (Clara-style glass) —— */
.danna-orb {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 40;
  width: 72px;
  height: 72px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 12px 28px rgba(1, 14, 40, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.25) inset;
  isolation: isolate;
}

.danna-orb-glass {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.08) 28%, transparent 45%),
    radial-gradient(circle at 70% 75%, rgba(201, 162, 39, 0.45) 0%, transparent 42%),
    linear-gradient(145deg, rgba(48, 70, 140, 0.92) 0%, rgba(1, 14, 40, 0.88) 48%, rgba(20, 36, 90, 0.95) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 1px rgba(232, 212, 139, 0.35),
    0 0 24px rgba(32, 60, 140, 0.45),
    inset 0 -10px 18px rgba(0, 0, 0, 0.28),
    inset 0 10px 16px rgba(255, 255, 255, 0.18);
  animation: danna-orb-breathe 3.6s ease-in-out infinite;
}

.danna-orb-shine {
  position: absolute;
  inset: 8% 12% auto 18%;
  height: 38%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  filter: blur(0.2px);
  pointer-events: none;
  animation: danna-orb-shine 4.8s ease-in-out infinite;
}

.danna-orb-icon {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.danna-orb:hover .danna-orb-glass {
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(232, 212, 139, 0.55),
    0 0 32px rgba(201, 162, 39, 0.4),
    inset 0 -10px 18px rgba(0, 0, 0, 0.28),
    inset 0 10px 16px rgba(255, 255, 255, 0.22);
}

.danna-orb:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@keyframes danna-orb-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

@keyframes danna-orb-shine {
  0%, 100% { opacity: 0.75; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(1px); }
}

body.danna-open {
  overflow: hidden;
}

.danna-modal[hidden] {
  display: none !important;
}

.danna-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.danna-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 14, 40, 0.55);
}

.danna-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(92vh, 820px);
  overflow: auto;
  background: var(--white);
  border-radius: 14px;
  padding: 1.5rem 1.4rem 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.danna-panel h2 {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-size: 1.55rem;
}

.danna-frame {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.danna-close {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}

.script-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem 1rem 0.85rem;
  margin-bottom: 1.15rem;
}

.script-card h3 {
  margin: 0 0 0.25rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.script-note {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.script-lines {
  margin: 0 0 0.85rem;
  padding-left: 1.2rem;
  color: var(--ink);
}

.script-lines li {
  margin-bottom: 0.35rem;
}

.script-extras p {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.script-extras strong {
  color: var(--navy);
}

.danna-actions {
  margin-bottom: 0.65rem;
}

.danna-actions .btn {
  cursor: pointer;
}

.danna-fine {
  margin: 0;
}

button.btn {
  font: inherit;
  cursor: pointer;
}

@media (max-width: 640px) {
  .danna-orb {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 64px;
    height: 64px;
  }

  .danna-orb-icon {
    width: 30px;
    height: 30px;
  }
}
