:root {
  --cream: #f8f3ea;
  --cream-2: #fffaf2;
  --white: #ffffff;
  --navy: #142033;
  --charcoal: #222326;
  --muted: #666b75;
  --gold: #b98a3c;
  --gold-dark: #8a6327;
  --line: rgba(20, 32, 51, 0.12);
  --shadow: 0 20px 60px rgba(20, 32, 51, 0.10);
  --radius: 24px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--cream-2);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 880px;
}

.section-pad {
  padding: 84px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 242, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.84;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold-dark);
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  padding-top: 110px;
  background:
    radial-gradient(circle at 85% 15%, rgba(185, 138, 60, 0.18), transparent 30%),
    linear-gradient(135deg, var(--cream-2), var(--cream));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(3.3rem, 9vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

h3 {
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-subheadline,
.section-intro,
.section-heading p,
.body-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-subheadline {
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(20, 32, 51, 0.18);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: min(100%, 390px);
  min-height: 560px;
  padding: 18px;
  border: 1px solid rgba(20, 32, 51, 0.15);
  border-radius: 42px;
  background: linear-gradient(160deg, var(--navy), #26334a);
  box-shadow: var(--shadow);
}

.phone-top {
  width: 116px;
  height: 24px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.sample-post {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 26px;
  border-radius: 28px;
  color: var(--white);
  background:
    linear-gradient(to top, rgba(20, 32, 51, 0.96), rgba(20, 32, 51, 0.2)),
    linear-gradient(135deg, rgba(185, 138, 60, 0.8), rgba(255, 255, 255, 0.22));
}

.sample-label {
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  font-weight: 800;
}

.sample-post h2 {
  color: var(--white);
  font-size: 2rem;
}

.sample-post p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.small-note {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  background: rgba(185, 138, 60, 0.10);
  color: var(--navy);
  font-weight: 700;
}

.account-note {
  grid-column: 1 / -1;
}

.section-soft {
  background: var(--cream);
}

.two-col,
.split-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: start;
}

.reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.body-copy {
  max-width: 700px;
}

.visual-section {
  background: linear-gradient(180deg, var(--cream-2), var(--white));
}

.visual-note {
  max-width: 820px;
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(185, 138, 60, 0.26);
  border-radius: 16px;
  background: rgba(185, 138, 60, 0.08);
  color: var(--muted);
  font-size: 0.92rem !important;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.wide-visual-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.visual-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 51, 0.12);
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 50px rgba(20, 32, 51, 0.10);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 32, 51, 0.94), rgba(20, 32, 51, 0.22), rgba(255, 255, 255, 0.04));
}

.visual-card::after {
  content: "▶";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.video-pill {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.visual-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  color: rgba(255, 255, 255, 0.82);
}

.visual-overlay span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(185, 138, 60, 0.24);
  color: #ffe0a4;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.visual-overlay h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.35rem;
}

.visual-overlay p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.live-gig {
  background-image:
    linear-gradient(135deg, rgba(185, 138, 60, 0.20), rgba(20, 32, 51, 0.15)),
    url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=1200&q=80");
}

.real-estate {
  background-image:
    linear-gradient(135deg, rgba(185, 138, 60, 0.16), rgba(20, 32, 51, 0.12)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1200&q=80");
}

.cafe-content {
  background-image:
    linear-gradient(135deg, rgba(185, 138, 60, 0.16), rgba(20, 32, 51, 0.12)),
    url("https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=1200&q=80");
}

.tradie-content {
  background-image:
    linear-gradient(135deg, rgba(185, 138, 60, 0.16), rgba(20, 32, 51, 0.12)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1200&q=80");
}

.fitness-content {
  background-image:
    linear-gradient(135deg, rgba(185, 138, 60, 0.16), rgba(20, 32, 51, 0.12)),
    url("https://images.unsplash.com/photo-1518611012118-696072aa579a?auto=format&fit=crop&w=1200&q=80");
}

.beauty-content {
  background-image:
    linear-gradient(135deg, rgba(185, 138, 60, 0.16), rgba(20, 32, 51, 0.12)),
    url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1200&q=80");
}

.product-content {
  background-image:
    linear-gradient(135deg, rgba(185, 138, 60, 0.16), rgba(20, 32, 51, 0.12)),
    url("https://images.unsplash.com/photo-1523275335684-37898b6baf30?auto=format&fit=crop&w=1200&q=80");
}

.event-content {
  background-image:
    linear-gradient(135deg, rgba(185, 138, 60, 0.16), rgba(20, 32, 51, 0.12)),
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1200&q=80");
}

.content-idea-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.content-idea-strip span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(20, 32, 51, 0.04);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.help-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(20, 32, 51, 0.06);
}

.help-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid span {
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(20, 32, 51, 0.04);
}

.note-card {
  padding: 28px;
  border: 1px solid rgba(185, 138, 60, 0.34);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #fbf2df);
  box-shadow: var(--shadow);
}

.note-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.centered {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(20, 32, 51, 0.06);
}

.package-card.featured {
  border-color: rgba(185, 138, 60, 0.5);
  box-shadow: 0 20px 60px rgba(185, 138, 60, 0.16);
}

.package-card.wide {
  grid-column: span 3;
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(185, 138, 60, 0.13);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 900;
}

.package-price {
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.package-price span {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.package-card ul {
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--muted);
}

.package-card li {
  margin: 8px 0;
}

.package-link {
  margin-top: auto;
  color: var(--navy);
  font-weight: 900;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.why-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.why-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.reviews-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(185, 138, 60, 0.16), transparent 28%),
    linear-gradient(180deg, var(--cream-2), var(--cream));
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  padding: 28px;
  border: 1px solid rgba(185, 138, 60, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(20, 32, 51, 0.08);
}

.stars {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.review-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.review-card p:not(.stars) {
  color: var(--muted);
}

.review-card span {
  display: inline-flex;
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(185, 138, 60, 0.12);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.review-disclaimer {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.94rem;
}

.review-support {
  margin-top: 40px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(20, 32, 51, 0.06);
}

.review-support h3 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.review-support p {
  color: var(--muted);
}

.ethics-note {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  background: rgba(185, 138, 60, 0.10);
  color: var(--navy) !important;
  font-weight: 700;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-weight: 900;
}

.process-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(135deg, var(--navy), #26334a);
}

.contact-card {
  max-width: 900px;
  padding: clamp(30px, 7vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.contact-card h2 {
  color: var(--white);
}

.contact-card .contact-actions {
  justify-content: center;
  margin-top: 26px;
}

.contact-card .btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.email-line {
  margin: 22px 0 0;
}

.email-line a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 24px 0;
  background: #101827;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--white);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero-grid,
  .two-col,
  .split-card,
  .reverse {
    grid-template-columns: 1fr;
  }

  .package-grid,
  .why-grid,
  .help-grid,
  .visual-grid,
  .reviews-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card.wide {
    grid-column: span 2;
  }

  .service-grid,
  .service-grid.compact {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 58px 0;
  }

  .hero {
    padding-top: 72px;
  }

  .container,
  .nav {
    width: min(100% - 24px, var(--max));
  }

  .brand small {
    display: none;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .phone-frame {
    min-height: 430px;
    border-radius: 32px;
  }

  .sample-post {
    min-height: 350px;
  }

  .sample-post h2 {
    font-size: 1.55rem;
  }

  .package-grid,
  .why-grid,
  .help-grid,
  .visual-grid,
  .reviews-grid,
  .process-list,
  .service-grid,
  .service-grid.compact {
    grid-template-columns: 1fr;
  }

  .package-card.wide {
    grid-column: span 1;
  }

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