/* GSK Productions — shared site chrome (nav, footer, hero, bands, cards, forms)
   Reconciled light-mode design system — see DESIGN-SYSTEM.md.
   Page-specific sections (Agency orbit/capabilities, Music equalizer/genres,
   Social funnel/packages) live in css/agency.css, css/music.css, css/social.css
   and are scoped under body.page-agency / .page-music / .page-social so they
   can coexist with these shared atoms without colliding. */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--cyan);
  color: #fff;
}

img {
  max-width: 100%;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
}

a {
  color: inherit;
}

/* ---------- Header / Nav ---------- */
header.site-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

header.site-nav .nav__logo {
  display: flex;
  align-items: center;
}

header.site-nav .nav__logo .logo-full {
  height: 48px;
  width: auto;
  display: block;
}

header.site-nav .nav__logo .logo-mark {
  height: 40px;
  width: auto;
  display: none;
}

@media (max-width: 480px) {
  header.site-nav .nav__logo .logo-full {
    display: none;
  }

  header.site-nav .nav__logo .logo-mark {
    display: block;
  }
}

header.site-nav .nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

header.site-nav .nav-links a {
  color: var(--body);
  text-decoration: none;
  font-size: .86rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color .2s;
}

header.site-nav .nav-links a:hover,
header.site-nav .nav-links a.active {
  color: var(--cyan);
}

header.site-nav .nav-cta {
  padding: 10px 22px;
  background: var(--navy);
  border-radius: 100px;
  color: #fff !important;
  font-weight: 600;
  transition: all .25s;
}

header.site-nav .nav-cta:hover {
  background: var(--cyan);
  box-shadow: 0 8px 22px -8px var(--glow);
}

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
  border-radius: 2px;
}

.burger-menu {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: fixed;
  transition: .3s transform;
  z-index: 2000;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: min(320px, 84vw);
  height: 100vh;
  background: var(--navy-ink);
  padding: 90px 32px 40px;
  box-shadow: -20px 0 60px rgba(28, 33, 56, .25);
}

.burger-menu.active {
  transform: translateX(0);
}

.burger-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.burger-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
}

.burger-menu li a:hover,
.burger-menu li a.active {
  color: var(--cyan-bright);
}

.burger-menu .close-menu {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 22px;
  height: 22px;
  fill: #fff;
  cursor: pointer;
}

.burger-menu .socials-menu {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Social icon row (burger menu + footer) ---------- */
.social-icons {
  display: flex;
  gap: 10px;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  color: #9AA4C6;
  transition: background .2s, color .2s;
}

.social-icons a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  background: var(--cyan);
  color: #fff;
}

/* light-background context (e.g. Contact page details column) */
.contact-details .social-icons {
  margin-top: 4px;
}

.contact-details .social-icons a {
  background: var(--mist);
  color: var(--navy);
}

.contact-details .social-icons a:hover,
.contact-details .social-icons a:focus-visible {
  background: var(--cyan);
  color: #fff;
}

footer.site-footer .social-icons {
  margin-top: 16px;
}

footer.site-footer .social-icons a {
  display: flex;
  margin-bottom: 0;
}

/* icon + text rows (footer Connect column) */
footer.site-footer a.icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

footer.site-footer a.icon-row svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--cyan-bright);
}

@media (max-width: 1040px) {
  header.site-nav .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }
}

/* ---------- Decorative aperture rings (hero / cta-band signature) ---------- */
.aperture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.iris {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  animation: spin 60s linear infinite;
}

.iris.i1 { width: 820px; height: 820px; top: -180px; right: -220px; opacity: .5; }
.iris.i2 { width: 520px; height: 520px; top: -30px; right: -40px; animation-duration: 44s; animation-direction: reverse; opacity: .4; }

.hero em,
.cta-band em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--cyan-bright);
}

/* ---------- Hero stats strip (4-up, wedding hero variant) ---------- */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  position: relative;
  z-index: 2;
}

.hero-stats .stat .n { font-size: 1.2rem; font-weight: 800; color: #fff; }
.hero-stats .stat .l { font-size: .8rem; color: #9AA4C6; margin-top: 4px; }

@media (max-width: 760px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Hero (shared shell — dark navy, used on inner pages) ---------- */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 96px 0 100px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 120% at 78% 8%, #3C477A 0%, var(--navy) 42%, var(--navy-deep) 100%);
}

.hero h1,
.hero .display {
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  margin: 6px 0 18px;
  line-height: 1.08;
}

.hero .lead {
  font-size: 1.1rem;
  color: #C9D0E6;
  max-width: 58ch;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---------- Home hero signature grid (2x2 real-moment tiles) ---------- */
.home-signature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.sig-tile {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}

.sig-tile:hover {
  transform: translateY(-4px);
}

.sig-tile span {
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: -.01em;
}

@media (max-width: 640px) {
  .home-signature {
    gap: 12px;
  }
}

/* ---------- Section shell ---------- */
.band {
  padding: 100px 0;
}

.band-alt {
  background: var(--mist);
}

.sec-head {
  max-width: 680px;
  margin-bottom: 50px;
}

.sec-head.center {
  margin-inline: auto;
  text-align: center;
}

.sec-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin: 0 0 14px;
}

.sec-head p {
  color: var(--body);
  font-size: 1.05rem;
}

/* ---------- Two pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: transform .25s, box-shadow .25s;
  box-shadow: var(--shadow-sm);
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pillar .k {
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
}

.pillar h3 {
  font-size: 1.6rem;
  margin: 14px 0 10px;
}

.pillar p {
  color: var(--body);
  margin-bottom: 20px;
}

.pillar .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.pillar .tags span {
  font-size: .78rem;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 4px 12px;
}

.pillar .go {
  color: var(--cyan);
  font-weight: 700;
  font-size: .92rem;
}

/* ---------- Card grid (generic services / process cards) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--cyan);
}

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--cyan-soft);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card .icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: 1.16rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--body);
  font-size: .95rem;
}

.card ul {
  list-style: none;
  margin-top: 12px;
}

.card ul li {
  font-size: .88rem;
  color: var(--body);
  padding: 4px 0 4px 20px;
  position: relative;
}

.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

/* ---------- Process strip (4-step, dot) ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 10px;
}

.process::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), var(--cyan), var(--line), transparent);
}

.process .step {
  position: relative;
  text-align: center;
  padding: 0 12px;
}

.process .step .dot {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--cyan);
  position: relative;
  z-index: 2;
}

.process .step h4 {
  font-size: .96rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.process .step p {
  font-size: .84rem;
  color: var(--body);
}

/* ---------- Photo grid (real production stills — no video embeds) ---------- */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.media-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.media-item .still {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.media-item .caption {
  font-size: .9rem;
  color: var(--body);
}

/* ---------- Click-to-load YouTube embed ---------- */
/* Shows a poster image; the real iframe (and YouTube's JS) is only created
   on click/keyboard-activate, so a grid of these costs nothing until a
   visitor actually presses play. */
.yt-lite {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.yt-lite img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-lite .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.yt-lite .play-btn svg {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .45));
  transition: transform .2s;
}

.yt-lite:hover .play-btn svg,
.yt-lite:focus-visible .play-btn svg {
  transform: scale(1.08);
}

.yt-lite:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.yt-lite iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-lite.featured-reel {
  max-width: 900px;
  margin: 0 auto;
}

.yt-lite.featured-reel .play-btn svg {
  width: 72px;
  height: 72px;
}

.media-item .caption .cat {
  color: var(--cyan);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  margin-left: 8px;
}

.media-item[hidden] {
  display: none;
}

.youtube-cta-row {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Filters ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filters button {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--body);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
}

.filters button:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.filters button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  font-weight: 600;
}

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stats .stat .n {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--ink);
}

.stats .stat .l {
  font-size: .82rem;
  color: var(--body);
  margin-top: 6px;
}

/* ---------- CTA band ---------- */
.cta-band {
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(120% 140% at 20% 10%, #3A4576 0%, var(--navy) 45%, var(--navy-deep) 100%);
}

.cta-band h2,
.cta-band .display {
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  margin-bottom: 16px;
  position: relative;
}

.cta-band p {
  color: #C9D0E6;
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0 auto 32px;
  position: relative;
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 40px;
  max-width: 640px;
}

.form-card label {
  display: block;
  font-size: .82rem;
  color: var(--body);
  margin-bottom: 6px;
  font-weight: 600;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--mist);
  color: var(--ink);
  font-family: inherit;
  font-size: .95rem;
}

.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-soft);
}

.form-card button {
  width: 100%;
}

.form-status {
  font-size: .85rem;
  margin-top: 14px;
  min-height: 1.2em;
}

.form-status--success {
  color: #1e8a4c;
}

.form-status--error {
  color: #c0392b;
}

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

.contact-details h3 {
  font-size: 1rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.contact-details p {
  color: var(--body);
  margin-bottom: 26px;
}

.contact-details a {
  text-decoration: none;
  color: var(--ink);
}

.contact-details a:hover {
  color: var(--cyan);
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy-ink);
  padding: 60px 0 32px;
  color: #AEB7D4;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

footer.site-footer img {
  height: 40px;
  margin-bottom: 16px;
}

footer.site-footer .tag2 {
  color: #8E97BD;
  font-size: .9rem;
  max-width: 34ch;
}

footer.site-footer h5 {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin-bottom: 16px;
}

footer.site-footer a {
  color: #AEB7D4;
  text-decoration: none;
  font-size: .9rem;
  display: block;
  margin-bottom: 10px;
  transition: color .2s;
}

footer.site-footer a:hover {
  color: var(--cyan-bright);
}

.foot-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #7C86A8;
  font-size: .8rem;
}

.foot-bottom a {
  display: inline;
  color: #7C86A8;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .pillars,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .process::before {
    display: none;
  }

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

@media (max-width: 760px) {
  .wrap {
    padding: 0 20px;
  }

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

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

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

  .band {
    padding: 70px 0;
  }
}

/* ==================== Shared pricing / differentiator / timeline
   components (reused by Wedding & Events and Social Media Marketing) ==================== */

.hero-emblem-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-emblem {
  width: min(100%, 320px);
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, .35));
  animation: emblem-float 7s ease-in-out infinite;
}

@keyframes emblem-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.emblem-ring {
  position: absolute;
  width: 118%;
  height: 118%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, .25);
  animation: spin 90s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Ethos ---------- */
.ethos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.ethos .cell {
  background: #fff;
  padding: 34px 30px;
}

.ethos .cell h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}

.ethos .cell p {
  color: var(--body);
  font-size: .95rem;
}

.ethos .num {
  font-size: .85rem;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: .1em;
}

/* ---------- Services (image cards, Wedding & Events) ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.svc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0 0 34px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  box-shadow: var(--shadow-sm);
}

.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.svc-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  margin-bottom: 22px;
}

.svc .k, .svc h3, .svc p, .svc ul {
  margin-left: 34px;
  margin-right: 34px;
}

.svc .k {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
}

.svc h3 {
  font-size: 1.5rem;
  margin-top: 14px;
  margin-bottom: 12px;
}

.svc p {
  color: var(--body);
  font-size: .97rem;
  margin-bottom: 18px;
}

.svc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.svc li {
  font-size: .9rem;
  color: var(--body);
  padding-left: 22px;
  position: relative;
}

.svc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

/* ---------- Packages (pricing cards — shared: Wedding & Events, Social Media) ---------- */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pkg {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  position: relative;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  box-shadow: var(--shadow-sm);
}

.pkg:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: var(--shadow);
}

.pkg.feat {
  border-color: var(--cyan);
  border-width: 2px;
  background: linear-gradient(180deg, var(--cyan-soft), #fff 40%);
}

.pkg .tag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: #fff;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  white-space: nowrap;
}

.pkg .pname {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  min-height: 2.4em;
}

.pkg .pfor {
  font-size: .8rem;
  color: var(--body);
  margin-bottom: 20px;
  min-height: 2.6em;
}

.pkg .price {
  margin-bottom: 22px;
}

.pkg .price .from {
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-bottom: 2px;
}

.pkg .price .amt {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.pkg .price .amt small {
  font-size: .9rem;
  color: var(--body);
  font-weight: 500;
}

.pkg ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 26px;
  flex: 1;
}

.pkg li {
  font-size: .85rem;
  color: var(--body);
  padding-left: 24px;
  position: relative;
  line-height: 1.45;
}

.pkg li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .35em;
  width: 12px;
  height: 12px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2332AADC' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.pkg .pcta {
  text-align: center;
  padding: 12px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  transition: all .25s;
}

.pkg .pcta.solid {
  background: var(--cyan);
  color: #fff;
}

.pkg .pcta.solid:hover {
  box-shadow: 0 0 26px var(--glow);
}

.pkg .pcta.line {
  border: 1px solid var(--line);
  color: var(--ink);
}

.pkg .pcta.line:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.pkg-note {
  text-align: center;
  color: var(--body);
  font-size: .82rem;
  margin-top: 26px;
  max-width: 820px;
  margin-inline: auto;
}

/* ---------- Pre-wedding split ---------- */
.pre-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pre {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color .3s, transform .3s;
}

.pre:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.pre h4 {
  font-size: 1.14rem;
  margin-bottom: 6px;
}

.pre .pp {
  color: var(--cyan);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.pre .pp small {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--body);
  display: block;
  font-weight: 500;
  margin-bottom: 1px;
}

.pre ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pre li {
  font-size: .82rem;
  color: var(--body);
  padding-left: 16px;
  position: relative;
}

.pre li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--cyan);
}

/* ---------- Process timeline (5-step variant) ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), var(--cyan), var(--line), transparent);
}

.tl {
  position: relative;
  text-align: center;
  padding: 0 12px;
}

.tl .dot {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--cyan);
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.tl h4 {
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tl p {
  font-size: .82rem;
  color: var(--body);
}

/* ---------- Add-ons ---------- */
.addons {
  columns: 2;
  column-gap: 48px;
}

.addon {
  break-inside: avoid;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}

.addon span:first-child {
  color: var(--body);
}

.addon span:last-child {
  color: var(--cyan);
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- Why / trust (row-style, About + Wedding & Events) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 44px;
}

.why-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-row .ic {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cyan-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-row .ic svg {
  width: 22px;
  height: 22px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.7;
}

.why-row h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-row p {
  font-size: .9rem;
  color: var(--body);
}

.cta-note {
  margin-top: 26px !important;
  font-size: .88rem !important;
}

.cta-note a {
  color: var(--cyan);
}

@media (max-width: 1024px) {
  .pkg-grid, .pre-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-emblem-wrap {
    order: -1;
  }

  .hero-emblem {
    width: 200px;
  }

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

  .pkg-grid, .pre-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .timeline::before {
    display: none;
  }

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

  .addons {
    columns: 1;
  }
}
