:root {
  --ink: #151119;
  --charcoal: #211625;
  --muted: #706873;
  --paper: #f7f3ec;
  --white: #fffdf8;
  --plum: #4a1278;
  --violet: #6f32b8;
  --gold: #c8a45d;
  --gold-bright: #e3c57d;
  --champagne: #efe4cf;
  --line: rgba(45, 27, 54, 0.16);
  --line-light: rgba(255, 253, 248, 0.18);
  --shadow: 0 28px 80px rgba(33, 22, 37, 0.2);
  --font-display: "Cormorant Garamond", "Bodoni 72", Didot, Georgia, "Times New Roman", serif;
  --font-body: Lora, Georgia, "Times New Roman", serif;
  --font-ui: Montserrat, "Avenir Next", Avenir, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font-family: var(--font-ui);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line), 0 16px 40px rgba(74, 18, 120, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: block;
  width: 58px;
  height: 50px;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.34));
}

.site-header.scrolled .brand-mark,
.site-header.menu-open .brand-mark {
  border-color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 11px;
  color: currentColor;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-action {
  border: 1px solid var(--gold);
  color: var(--gold-bright) !important;
  padding-inline: 16px !important;
}

.site-header.scrolled .nav-action,
.site-header.menu-open .nav-action {
  color: var(--plum) !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  height: 90svh;
  min-height: 680px;
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-scrim,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(18, 10, 24, 0.88) 0%, rgba(49, 17, 72, 0.58) 42%, rgba(38, 15, 48, 0.08) 78%),
    linear-gradient(180deg, rgba(18, 10, 24, 0.52) 0%, rgba(18, 10, 24, 0.08) 48%, rgba(18, 10, 24, 0.36) 100%);
}

.hero-content {
  position: relative;
  align-self: center;
  width: min(820px, 100%);
  padding: 112px clamp(20px, 5vw, 72px) 76px;
  color: var(--white);
  transform: translateY(-14px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--plum);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-bright);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.2vw, 5.7rem);
  font-weight: 600;
  letter-spacing: 0;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.5vw, 4.9rem);
  font-weight: 600;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 600;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 253, 248, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1020;
  box-shadow: 0 16px 36px rgba(200, 164, 93, 0.26);
}

.button.secondary {
  border-color: rgba(227, 197, 125, 0.76);
  color: var(--white);
}

.band {
  padding: clamp(76px, 10vw, 144px) clamp(20px, 5vw, 72px);
}

.band.light {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.97)),
    url("assets/background-masked-celebration.png") center / cover;
}

.band.color {
  background: var(--champagne);
}

.band.owner {
  background:
    linear-gradient(135deg, rgba(22, 13, 29, 0.96) 0%, rgba(41, 18, 56, 0.9) 52%, rgba(21, 17, 25, 0.96) 100%),
    url("assets/purple-reception-2026.jpg") center / cover;
  color: var(--white);
}

.band.credentials {
  background:
    linear-gradient(135deg, rgba(21, 17, 25, 0.98) 0%, rgba(42, 14, 58, 0.95) 54%, rgba(21, 17, 25, 0.97) 100%),
    url("assets/background-purple-reception.png") center / cover;
  color: var(--white);
}

.band.investment {
  background:
    linear-gradient(180deg, rgba(247, 243, 236, 0.94), rgba(247, 243, 236, 0.98)),
    url("assets/circle-dance-2026.jpg") center / cover;
}

.band.expertise {
  background:
    linear-gradient(135deg, #151119 0%, #351549 100%);
  color: var(--white);
}

.band.investment {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(247, 243, 236, 0.98)),
    url("assets/background-school-dance.png") center / cover;
}

/* credentials band retains its dark gradient background defined above */

.band#services {
  background:
    linear-gradient(180deg, rgba(247, 243, 236, 0.96), rgba(255, 253, 248, 0.98)),
    url("assets/background-purple-reception.png") center / cover;
}

.band.moments {
  background: var(--white);
}

.brand-system {
  padding: 0 clamp(20px, 5vw, 72px) clamp(52px, 7vw, 84px);
  background: var(--paper);
}

.proof-strip {
  padding: 0 clamp(20px, 5vw, 72px) clamp(70px, 8vw, 104px);
  background: var(--paper);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid,
.split,
.contact-grid,
.expertise-grid,
.investment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.intro p:last-child,
.contact-grid > div p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.brand-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.brand-system-grid article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 160px;
  padding: 24px;
  background: var(--white);
}

.brand-system-grid img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--white);
}

.brand-system-grid span {
  display: block;
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-system-grid strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 600;
}

.brand-system-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-grid article {
  min-height: 138px;
  padding: 24px;
  background: var(--white);
  border-top: 3px solid rgba(200, 164, 93, 0.64);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 600;
  line-height: 1.05;
}

.proof-grid span {
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.moments-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(420px, 1.48fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.moments-copy {
  position: sticky;
  top: 110px;
}

.moments-copy p:last-child {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.moment-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 118px;
  gap: 10px;
}

.moment-gallery figure {
  grid-column: span 3;
  grid-row: span 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.moment-gallery .moment-large {
  grid-column: span 4;
  grid-row: span 3;
}

.moment-gallery figure:nth-child(2) {
  grid-column: span 2;
  grid-row: span 3;
}

.moment-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.owner-copy {
  max-width: 560px;
}

.animale-logo {
  width: min(220px, 62vw);
  margin: 0 0 28px;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.42));
}

.owner-copy .eyebrow {
  color: #d9bdff;
}

.owner-copy p {
  color: rgba(255, 254, 249, 0.74);
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
}

.owner-copy p:last-child {
  color: var(--white);
  font-weight: 780;
}

.owner-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 0;
  background: rgba(255, 253, 248, 0.16);
  border: 1px solid rgba(255, 253, 248, 0.16);
}

.owner-stats div {
  min-height: 100px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.07);
}

.owner-stats dt,
.owner-stats dd {
  margin: 0;
}

.owner-stats dt {
  color: rgba(255, 253, 248, 0.56);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner-stats dd {
  margin-top: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
}

.owner-feature {
  margin: 0;
  border: 1px solid rgba(255, 253, 248, 0.16);
  background: rgba(255, 253, 248, 0.08);
  box-shadow: var(--shadow);
}

.owner-feature img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.credentials-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.credentials-copy > p {
  max-width: 760px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.46);
}

.credentials-copy h2 {
  color: var(--white);
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.58);
}

.credentials .eyebrow {
  color: var(--gold-bright);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.46);
}

.credential-lists {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.credential-lists article {
  min-height: 300px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
}

.credential-lists h3 {
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
}

.credential-lists p {
  margin: 18px 0 0;
  color: var(--muted);
}

.client-logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  background: rgba(255, 253, 248, 0.18);
}

.client-logo-wall span {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
  text-align: center;
  line-height: 1;
  transition: color 160ms ease, background 160ms ease;
}

.client-logo-wall span:hover {
  background: #faf6ee;
  color: var(--plum);
}

.client-logo-tile img {
  width: 100%;
  max-width: 170px;
  max-height: 58px;
  object-fit: contain;
}

.client-logo-tile:nth-child(4) img,
.client-logo-tile:nth-child(5) img,
.client-logo-tile:nth-child(6) img {
  max-width: 190px;
  max-height: 68px;
}

.client-logo-tile:nth-child(7) img,
.client-logo-tile:nth-child(9) img {
  max-width: 180px;
}

.logo-more {
  font-family: var(--font-ui);
  font-size: clamp(0.95rem, 1.45vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-more {
  color: var(--muted) !important;
  font-size: clamp(0.82rem, 1.1vw, 0.96rem);
}

.instagram-panel {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 18px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  background: rgba(21, 17, 25, 0.5);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.instagram-panel span {
  display: block;
  color: var(--gold-bright);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-panel p {
  margin: 10px 0 0;
  color: rgba(255, 253, 248, 0.88);
}

.clip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.clip-grid a {
  position: relative;
  min-height: 122px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.18);
  background: #1b1022;
}

.clip-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 220ms ease;
}

.clip-grid a:hover img {
  transform: scale(1.04);
}

.clip-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 17, 25, 0.02), rgba(21, 17, 25, 0.72));
}

.clip-grid a span {
  position: absolute;
  z-index: 1;
  left: 10px;
  right: 10px;
  bottom: 10px;
  color: var(--white);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.community-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.community-note span {
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.community-note a {
  border: 1px solid var(--line);
  padding: 12px 16px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.work-card,
.service-list article,
.review-card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(22px, 3vw, 34px);
}

.work-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 0;
  background: var(--white);
}

.work-card.accent {
  background: linear-gradient(135deg, var(--charcoal), var(--plum));
  color: var(--white);
}

.work-index {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.work-card p,
.service-list p,
.process-list p {
  margin: 16px 0 0;
  color: var(--muted);
}

.work-card.accent p {
  color: rgba(255, 254, 249, 0.72);
}

.work-card.accent h3 {
  color: var(--white);
}

.sticky-heading {
  position: sticky;
  top: 110px;
}

.service-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-list article {
  border: 0;
  background: rgba(255, 253, 248, 0.76);
}

.expertise-grid .eyebrow {
  color: var(--gold-bright);
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.expertise-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255, 253, 248, 0.18);
  padding: 10px 14px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.investment-copy p {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.investment-card {
  border: 1px solid rgba(200, 164, 93, 0.72);
  border-top: 3px solid var(--gold);
  background:
    linear-gradient(180deg, rgba(74, 18, 120, 0.96), rgba(31, 11, 48, 0.98)),
    var(--plum);
  padding: clamp(24px, 4vw, 42px);
}

.pricing-stack {
  display: grid;
  gap: 18px;
}

.featured-price {
  box-shadow: var(--shadow);
}

.price-line {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(200, 164, 93, 0.45);
  padding-bottom: 24px;
}

.price-line span,
.add-on span {
  color: rgba(255, 253, 248, 0.78);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.price-line strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.75rem);
  font-weight: 600;
  line-height: 0.9;
}

.investment-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.investment-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 253, 248, 0.9);
  font-size: 0.98rem;
  line-height: 1.45;
}

.investment-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
}

.add-on {
  border-top: 1px solid rgba(200, 164, 93, 0.45);
  border-bottom: 1px solid rgba(200, 164, 93, 0.45);
  padding: 22px 0;
}

.add-on strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
}

.add-on p,
.investment-note {
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.94rem;
  line-height: 1.45;
}

.investment-note {
  margin: 20px 0 0;
}

.event-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pricing-card {
  min-height: 220px;
  border: 1px solid rgba(200, 164, 93, 0.72);
  border-top: 3px solid var(--gold);
  background:
    linear-gradient(180deg, rgba(74, 18, 120, 0.96), rgba(31, 11, 48, 0.98)),
    var(--plum);
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vw, 28px);
}

.pricing-card span {
  display: block;
  color: rgba(255, 253, 248, 0.78);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 18px 0 22px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.18;
}

.pricing-card strong {
  display: block;
  margin-top: auto;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.34rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.18;
}

.pricing-card strong + strong {
  margin-top: 6px;
}

.market-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.pricing-disclaimer {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(200, 164, 93, 0.72);
  border-top: 3px solid var(--gold);
  background:
    linear-gradient(180deg, rgba(74, 18, 120, 0.94), rgba(31, 11, 48, 0.98)),
    var(--plum);
  padding: clamp(18px, 3vw, 26px);
}

.pricing-disclaimer p {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.94rem;
  line-height: 1.5;
}

.pricing-disclaimer p:first-child {
  color: var(--white);
  font-weight: 600;
}

.reviews {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.98)),
    url("assets/background-masked-celebration.png") center / cover;
}

.review-proof {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.review-proof span {
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-proof strong {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 600;
  line-height: 0.95;
}

.review-proof p {
  margin: 0;
  color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.review-card {
  display: flex;
  min-height: 178px;
  flex-direction: column;
  justify-content: space-between;
  border: 0;
  background: var(--paper);
  padding: clamp(18px, 2.1vw, 24px);
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.92rem, 1.15vw, 1.04rem);
  line-height: 1.38;
}

.review-card span {
  display: block;
  margin-top: 20px;
  color: var(--plum);
  font-size: 0.76rem;
  font-weight: 820;
  font-family: var(--font-ui);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-review {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--charcoal), #351549);
  color: var(--white);
}

.feature-review p {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.18rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.feature-review span {
  color: var(--gold-bright);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(21, 19, 22, 0.16);
  border: 1px solid rgba(21, 19, 22, 0.16);
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 240px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 0;
}

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

.process-list strong {
  display: block;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.contact {
  background:
    linear-gradient(135deg, #151119 0%, #2b133b 100%);
  color: var(--white);
}

.contact .eyebrow {
  color: var(--gold-bright);
}

.contact-grid > div p {
  margin-top: 22px;
  color: rgba(255, 254, 249, 0.72);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.contact-details a,
.contact-details p {
  min-width: 0;
  min-height: 104px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  background: rgba(255, 253, 248, 0.07);
}

.contact-details span {
  display: block;
  color: rgba(255, 254, 249, 0.58);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.contact-details strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  overflow-wrap: anywhere;
  font-size: clamp(0.92rem, 1.55vw, 1.12rem);
  line-height: 1.25;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 30px);
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.18);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 254, 249, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 254, 249, 0.22);
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form select {
  min-height: 51px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(227, 197, 125, 0.2);
}

.form-help {
  margin: 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.88rem;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 254, 249, 0.74);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  background: #0f0d10;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.92rem;
}

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

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: rgba(255, 254, 249, 0.96);
    color: var(--ink);
    box-shadow: 0 1px 0 var(--line);
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 2px;
  }

  .nav-action {
    margin-top: 8px;
    padding-left: 14px !important;
    text-align: center;
  }

  .hero {
    height: auto;
    min-height: 84svh;
  }

  .hero-image {
    object-position: center center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(18, 10, 24, 0.86) 0%, rgba(49, 17, 72, 0.62) 66%, rgba(38, 15, 48, 0.26) 100%),
      linear-gradient(180deg, rgba(18, 10, 24, 0.48) 0%, rgba(18, 10, 24, 0.08) 54%, rgba(18, 10, 24, 0.3) 100%);
  }

  .intro-grid,
  .split,
  .contact-grid,
  .owner-grid,
  .expertise-grid,
  .investment-grid,
  .credentials-grid,
  .moments-grid {
    grid-template-columns: 1fr;
  }

  .moments-copy {
    position: static;
  }

  .moment-gallery {
    grid-auto-rows: 98px;
  }

  .credential-lists {
    grid-template-columns: 1fr;
  }

  .client-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-panel {
    grid-template-columns: 1fr;
  }

  .instagram-panel > div {
    grid-column: auto;
  }

  .community-note,
  .review-proof,
  .event-pricing-grid {
    grid-template-columns: 1fr;
  }

  .community-note a {
    width: fit-content;
  }

  .proof-grid,
  .contact-details {
    grid-template-columns: 1fr 1fr;
  }

  .brand-system-grid {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

  .work-grid,
  .review-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .feature-review {
    grid-column: auto;
  }

  .work-card,
  .process-list li {
    min-height: 210px;
  }

  .review-card {
    min-height: 160px;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 64px;
  }

  .brand span:last-child {
    font-size: 0.96rem;
  }

  .hero-content {
    padding-top: 92px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .proof-grid,
  .contact-details,
  .owner-stats,
  .form-row {
    grid-template-columns: 1fr;
  }

  .brand-system-grid article {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
  }

  .brand-system-grid img {
    width: 72px;
    height: 72px;
  }

  .investment-card ul {
    grid-template-columns: 1fr;
  }

  .client-logo-wall {
    grid-template-columns: 1fr;
  }

  .client-logo-wall span {
    min-height: 96px;
  }

  .instagram-panel {
    grid-template-columns: 1fr;
  }

  .instagram-panel > div {
    grid-column: auto;
    grid-row: auto;
  }

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

  .moment-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .moment-gallery figure,
  .moment-gallery .moment-large,
  .moment-gallery figure:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .price-line {
    display: grid;
  }

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

/* ── Back-to-top button ──────────────────────────────── */
.back-to-top {
  position: fixed;
  z-index: 30;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--charcoal), var(--plum));
  color: var(--gold-bright);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 240ms ease, transform 240ms ease;
  pointer-events: none;
  box-shadow: 0 8px 28px rgba(74, 18, 120, 0.32);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--plum), var(--violet));
  color: var(--white);
}

/* ── Form field validation errors ───────────────────── */
.field-error {
  display: block;
  margin-top: 4px;
  color: #e07070;
  font-size: 0.78rem;
  font-family: var(--font-ui);
}

.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #e07070 !important;
  box-shadow: 0 0 0 3px rgba(224, 112, 112, 0.18);
}
