:root {
  --pink-50: #fff7fb;
  --pink-100: #ffe6f1;
  --pink-200: #f8c4dc;
  --pink-300: #f2a8ca;
  --rose: #d96f98;
  --brown-950: #301517;
  --brown-900: #431d20;
  --brown-800: #552429;
  --brown-700: #70373f;
  --cream: #fffaf5;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(67, 29, 32, 0.16);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --shell: min(1180px, calc(100% - 40px));
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}
body {
  margin: 0;
  color: var(--brown-900);
  background: var(--pink-50);
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.nav-open {
  overflow: hidden;
}
img,
video {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}
a {
  color: inherit;
}
button,
input,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
::selection {
  background: var(--brown-900);
  color: var(--pink-100);
}

.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;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--brown-950);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
}
.skip-link:focus {
  transform: translateY(0);
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.section {
  padding: clamp(72px, 9vw, 124px) 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--pink-50) 92%, transparent);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(67, 29, 32, 0.08);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.header-brand:hover {
  text-decoration: none;
}

.header-brand .brand {
  text-decoration: none;
}
.nav-logo-img {
  display: block;
  height: 80px;
  width: auto;
}
.brand {
  font-family: "Great Vibes", "Brush Script MT", cursive;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1;
  text-decoration: none;
  color: var(--brown-900);
  white-space: nowrap;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}
.site-nav a:not(.nav-cta) {
  position: relative;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--brown-900);
  left: 0;
  bottom: -5px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  padding: 11px 18px;
  color: var(--pink-50);
  background: var(--brown-900);
  border-radius: 999px;
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--brown-900);
  transition: 0.2s ease;
}

.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(48px, 7vw, 90px));
  display: grid;
  align-items: center;
  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(255, 255, 255, 0.75) 0 7%,
      transparent 8%
    ),
    radial-gradient(
      circle at 68% 0%,
      rgba(255, 255, 255, 0.62) 0 9%,
      transparent 22%
    ),
    var(--pink-200);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: clamp(44px, 8vw, 112px);
}
.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}
.hero h1,
.section-heading h2,
.about-copy h2,
.services-intro h2,
.contact-card h2 {
  margin: 0;
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.hero h1 {
  max-width: 720px;
  font-size: clamp(3.5rem, 8vw, 7.2rem);
}
.hero h1 span {
  display: block;
  font-family: "Great Vibes", "Brush Script MT", cursive;
  text-transform: none;
  font-weight: 400;
  line-height: 0.85;
  font-size: 1.08em;
  letter-spacing: 0;
}
.hero-lede {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.8vw, 1.26rem);
  margin: 28px 0 0;
}
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 2px solid var(--brown-900);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(67, 29, 32, 0.14);
}
.button-primary {
  background: var(--brown-900);
  color: var(--white);
}
.button-secondary {
  background: transparent;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 36px 0 0;
}
.hero-stats div {
  border-top: 1px solid rgba(67, 29, 32, 0.35);
  padding-top: 12px;
}
.hero-stats dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.hero-stats dd {
  margin: 2px 0 0;
  font-weight: 600;
}
.hero-visual {
  position: relative;
  max-width: 480px;
  justify-self: end;
  align-self: start;
  margin-top: 24px;
}
.portrait-frame {
  position: relative;
  border: 12px solid var(--brown-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brown-900);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portrait-frame-large {
  transform: rotate(1.5deg);
}
.portrait-frame-large::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 50%;
  width: 78px;
  height: 18px;
  transform: translateX(-50%);
  background: var(--brown-950);
  border-radius: 999px;
}
.doodle {
  position: absolute;
  z-index: 3;
  color: var(--brown-900);
  font-size: 2.2rem;
  letter-spacing: -9px;
}
.doodle-top {
  top: -38px;
  right: 14px;
  transform: rotate(12deg);
}
.doodle-bottom {
  bottom: -32px;
  right: -20px;
  font-size: 4rem;
  letter-spacing: 0;
  transform: rotate(-12deg);
}
.floating-note {
  position: absolute;
  z-index: 4;
  left: -52px;
  bottom: 42px;
  background: var(--cream);
  border: 2px solid var(--brown-900);
  box-shadow: 8px 8px 0 var(--brown-900);
  padding: 15px 18px;
  border-radius: 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee {
  overflow: hidden;
  background: var(--brown-900);
  color: var(--pink-100);
  padding: 15px 0;
}
.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  padding-inline: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: drift 28s linear infinite;
}
.marquee-track i {
  font-style: normal;
  color: var(--pink-300);
}
@keyframes drift {
  to {
    transform: translateX(calc(-50% - 11px));
  }
}

.about {
  background: var(--pink-50);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.15fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: center;
}
.about-image {
  max-width: 470px;
}
.about-image .portrait-frame {
  transform: rotate(-1deg);
}
.image-caption {
  margin: 12px 0 0;
  text-align: center;
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
}
.about-copy h2,
.services-intro h2,
.contact-card h2,
.section-heading h2 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}
.about-copy > p {
  font-size: 1.06rem;
}
.about-copy h3 {
  margin: 30px 0 8px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}
.pill-row span {
  border: 1px solid var(--brown-700);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.section-deep {
  color: var(--pink-50);
  background: var(--brown-900);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 45px;
}
.section-heading > p {
  max-width: 430px;
  margin: 0;
}
.section-heading-light .section-kicker {
  color: var(--pink-300);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px) 24px;
  align-items: start;
}
.video-card {
  min-width: 0;
}
.phone-shell {
  position: relative;
  margin-inline: auto;
  width: min(100%, 260px);
  aspect-ratio: 9 / 16;
  padding: 8px;
  border: 4px solid #11090a;
  border-radius: 34px;
  background: #11090a;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.phone-shell::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 50%;
  width: 30%;
  height: 16px;
  transform: translateX(-50%);
  background: #11090a;
  border-radius: 0 0 12px 12px;
  pointer-events: none;
}
.phone-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  background: #160c0d;
}
.video-meta {
  max-width: 260px;
  margin: 16px auto 0;
}
.video-meta span {
  color: var(--pink-300);
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.video-meta h3 {
  margin: 3px 0 0;
  font-size: 1rem;
  line-height: 1.3;
}

.photos {
  background: var(--pink-100);
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  gap: 14px;
}
.photo-tile {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  background: var(--pink-300);
  box-shadow: 0 8px 25px rgba(67, 29, 32, 0.09);
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.photo-tile:hover img,
.photo-tile:focus-visible img {
  transform: scale(1.045);
}
.tile-tall {
  grid-row: span 2;
}
.tile-wide {
  grid-column: span 2;
}

.services {
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}
.services-intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}
.service-list {
  border-top: 1px solid rgba(67, 29, 32, 0.35);
}
.service-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(67, 29, 32, 0.25);
}
.service-list span {
  grid-row: span 2;
  font-family: "Oswald", sans-serif;
  color: var(--rose);
  font-weight: 700;
}
.service-list h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}
.service-list p {
  margin: 5px 0 0;
}
.testimonials {
  background: var(--pink-100);
}

.testimonial-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
}

.testimonial-brands span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(67, 29, 32, 0.25);
  border-radius: 999px;
  background: var(--pink-50);
  font-size: 0.84rem;
  font-weight: 700;
}

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

.testimonial-card {
  height: 100%;
  background: var(--white);
  border: 2px solid var(--brown-900);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 8px 8px 0 rgba(67, 29, 32, 0.14);
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.testimonial-brand {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--pink-200);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-rating {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--rose);
  white-space: nowrap;
}

.testimonial-quote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
}

.testimonial-quote::before {
  content: "“";
  display: block;
  margin-bottom: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--rose);
}

.testimonial-meta {
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(67, 29, 32, 0.15);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown-700);
}
.contact {
  background: var(--pink-200);
}
.contact-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  background: var(--pink-50);
  border: 2px solid var(--brown-900);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 64px);
  box-shadow: 12px 12px 0 var(--brown-900);
}
.contact-card h2 {
  max-width: 700px;
}
.contact-copy > p {
  margin-top: 22px;
}
.email-link {
  font-weight: 800;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
.contact-profile {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}
.contact-profile img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 3px solid var(--brown-900);
  border-radius: 50%;
}
.contact-profile p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}
.social-links a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 2px solid var(--brown-900);
  border-radius: 50%;
  transition: 0.2s ease;
}
.social-links a:hover {
  background: var(--brown-900);
  color: var(--pink-50);
  transform: translateY(-3px);
}
.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
}
.social-links svg rect,
.social-links svg circle:not(.fill-dot) {
  fill: none;
}

.contact-form {
  min-width: 0;
  padding: clamp(22px, 4vw, 36px);
  background: var(--white);
  border: 2px solid var(--brown-900);
  border-radius: var(--radius);
  box-shadow: 7px 7px 0 rgba(67, 29, 32, 0.18);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}
.form-field-full {
  grid-column: 1 / -1;
}
.form-field > span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-field b {
  color: #a92e4f;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1.5px solid rgba(67, 29, 32, 0.45);
  border-radius: 11px;
  padding: 12px 14px;
  color: var(--brown-950);
  background: var(--pink-50);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.form-field textarea {
  min-height: 160px;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(67, 29, 32, 0.56);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brown-900);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(217, 111, 152, 0.2);
}
.form-field [aria-invalid="true"] {
  border-color: #a62849;
  box-shadow: 0 0 0 4px rgba(166, 40, 73, 0.14);
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}
.form-submit-row p {
  margin: 0;
  max-width: 390px;
  color: var(--brown-700);
  font-size: 0.78rem;
  line-height: 1.45;
}
.contact-form button[disabled] {
  opacity: 0.62;
  cursor: wait;
  transform: none;
  box-shadow: none;
}
.form-status {
  display: none;
  margin-top: 18px;
  padding: 13px 15px;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1.45;
}
.form-status:not(:empty),
.form-status-info {
  display: block;
}
.form-status-success {
  color: #174a31;
  background: #dff5e8;
  border: 1px solid #86c9a2;
}
.form-status-error {
  color: #76213a;
  background: #ffe4ec;
  border: 1px solid #df91aa;
}
.form-status-info {
  color: var(--brown-800);
  background: var(--pink-100);
  border: 1px solid var(--pink-300);
}

.site-footer {
  background: var(--brown-950);
  color: var(--pink-100);
  padding: 30px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-inner .brand {
  color: var(--pink-100);
}
.footer-inner p {
  margin: 0;
  font-size: 0.84rem;
}

.lightbox {
  width: min(92vw, 980px);
  height: min(92vh, 920px);
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #180c0e;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}
.lightbox::backdrop {
  background: rgba(20, 8, 10, 0.82);
  backdrop-filter: blur(8px);
}
.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brown-950);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr 0.72fr;
    gap: 44px;
  }
  .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-card {
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 620px);
    --header-height: 68px;
  }
  .section {
    padding: 76px 0;
  }
  .site-header {
    background: color-mix(in srgb, var(--pink-50) 94%, transparent);
    backdrop-filter: blur(14px);
  }
  .nav-toggle {
    display: block;
    z-index: 102;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    padding: 110px 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 5px;
    background: var(--pink-200);
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }
  .site-nav.is-open {
    transform: translateX(0);
  }
  .site-nav a {
    font-family: "Oswald", sans-serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    padding: 7px 0;
  }
  .site-nav .nav-cta {
    margin-top: 14px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    padding: 14px;
  }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }
  .hero-grid,
  .about-grid,
  .services-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    order: 2;
  }
  .hero-visual {
    order: 1;
    max-width: 390px;
    width: 84%;
    justify-self: center;
    align-self: center;
    margin-top: 0;
  }
  .hero h1 {
    font-size: clamp(3.6rem, 16vw, 6rem);
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .floating-note {
    left: -24px;
    bottom: 28px;
  }
  .about-image {
    width: 80%;
    justify-self: center;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 18px;
  }
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap-inline: 14px;
  }
  .phone-shell {
    border-radius: 28px;
    padding: 6px;
  }
  .phone-shell video {
    border-radius: 20px;
  }
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 205px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-top {
    flex-wrap: wrap;
  }
  .testimonial-card {
    padding: 22px;
  }
  .tile-wide {
    grid-column: span 2;
  }
  .services-intro {
    position: static;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field-full {
    grid-column: auto;
  }
  .form-submit-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 440px) {
  .hero-actions .button,
  .contact-actions .button,
  .form-submit-row .button {
    width: 100%;
  }
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
  .phone-shell {
    width: 100%;
    border-width: 3px;
    border-radius: 23px;
  }
  .phone-shell::before {
    top: 6px;
    height: 12px;
  }
  .phone-shell video {
    border-radius: 16px;
  }
  .video-meta h3 {
    font-size: 0.88rem;
  }
  .photo-grid {
    grid-auto-rows: 175px;
    gap: 9px;
  }
  .contact-card {
    padding: 26px 20px;
    box-shadow: 7px 7px 0 var(--brown-900);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Keeps the logo and the numbers perfectly side-by-side */
.social-stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-stat-link {
  position: relative;
  width: 100%;
  min-height: 72px;
  padding: 12px 14px;
  margin: 0;
  color: var(--brown-900);
  background: rgba(255, 255, 255, 0.82);
  border: 2px solid var(--brown-900);
  border-radius: var(--radius-sm);
  box-shadow: 0 5px 0 var(--brown-900);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.social-stat-link::after {
  content: "↗";
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  margin-left: auto;
  color: var(--white);
  background: var(--brown-900);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.social-stat-link .stat-icon {
  flex: 0 0 24px;
  width: 24px;
}

.social-stat-link:hover {
  color: var(--brown-900);
  background: var(--pink-100);
  border-color: var(--rose);
  box-shadow: 0 8px 0 var(--brown-900);
  transform: translateY(-3px);
}

.social-stat-link:hover::after {
  background: var(--rose);
  transform: rotate(8deg) scale(1.08);
}

.social-stat-link:active {
  box-shadow: 0 2px 0 var(--brown-900);
  transform: translateY(3px);
}

.social-stat-link:focus-visible {
  outline: 4px solid var(--rose);
  outline-offset: 4px;
}

/* Locks the icon size so it never breaks the design */
.stat-icon {
  width: 18px;
  height: auto;
  display: block;
}

/* =========================================================
   Permanent dark burgundy theme
   ========================================================= */

:root {
  color-scheme: dark;
}

body {
  color: #f8e7ee;
  background: #21161b;
}

::selection {
  color: #21161b;
  background: #f08b70;
}

/* Header */

.site-header,
.site-header.is-scrolled {
  color: #f8e7ee;
  background: rgba(34, 26, 31, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.brand,
.site-nav a {
  color: #f8e7ee;
}

.site-nav a:not(.nav-cta)::after,
.nav-toggle span:not(.sr-only) {
  background: #f3d6e1;
}

.nav-cta {
  color: #32101d;
  background: #f3d6e1;
}

/* Dark burgundy opening section */

.hero {
  color: #f8e7ee;
  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(27, 19, 23, 0.72) 0 7%,
      transparent 8%
    ),
    radial-gradient(
      circle at 68% 0%,
      rgba(86, 18, 44, 0.34) 0 9%,
      transparent 22%
    ),
    #3a0b1e;
}

.hero .button {
  border-color: #f3d6e1;
}

.hero .button-primary {
  color: #3a0b1e;
  background: #f3d6e1;
}

.hero .button-secondary {
  color: #f8e7ee;
  background: transparent;
}

.hero-stats div {
  border-top-color: rgba(248, 231, 238, 0.38);
}

.hero .portrait-frame {
  background: #72505a;
  border-color: #72505a;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.hero .portrait-frame-large::before {
  background: #21161b;
}

.hero .doodle {
  color: #f8dce7;
}

/* Social profile buttons in the hero */

.social-stat-link {
  color: #f8e7ee;
  background: #2b1b21;
  border-color: #8f5a6e;
  box-shadow: 0 5px 0 #160b10;
}

.social-stat-link::after {
  color: #32101d;
  background: #f08b70;
}

.social-stat-link:hover {
  color: #ffffff;
  background: #43172a;
  border-color: #f08b70;
  box-shadow: 0 8px 0 #160b10;
}

.social-stat-link:hover::after {
  background: #f2a8ca;
}

.social-stat-link:active {
  box-shadow: 0 2px 0 #160b10;
}

/* Moving specialty banner */

.marquee {
  color: #f6dbe5;
  background: #160c10;
}

/* About section */

.about {
  color: #f8e7ee;
  background: #24181d;
}

.portrait-frame {
  background: #704557;
  border-color: #704557;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.pill-row span {
  border-color: rgba(248, 231, 238, 0.48);
}

/* Video section */

.section-deep {
  color: #f8e7ee;
  background: #160c10;
}

/* Photo section */

.photos {
  color: #f8e7ee;
  background: #35111f;
}

.photo-tile {
  background: #5c1e36;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Services section */

.services {
  color: #f8e7ee;
  background: #24181d;
}

.service-list {
  border-top-color: rgba(248, 231, 238, 0.35);
}

.service-list > div {
  border-bottom-color: rgba(248, 231, 238, 0.25);
}

.service-list span {
  color: #f08b70;
}

/* Testimonials section */

.testimonials {
  color: #f8e7ee;
  background: #35111f;
}

.testimonial-brands span {
  color: #f8e7ee;
  background: #2b1b21;
  border-color: rgba(248, 231, 238, 0.3);
}

.testimonial-card {
  color: #f8e7ee;
  background: #24181d;
  border-color: #8f5a6e;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}

.testimonial-brand {
  color: #f8e7ee;
  background: #5a1831;
}

.testimonial-rating,
.testimonial-quote::before {
  color: #f08b70;
}

.testimonial-meta {
  color: #d9acbc;
  border-top-color: rgba(248, 231, 238, 0.2);
}

/* Contact section */

.contact {
  color: #f8e7ee;
  background: #3a0b1e;
}

.contact-card {
  color: #f8e7ee;
  background: #24181d;
  border-color: #8f5a6e;
  box-shadow: 12px 12px 0 #160b10;
}

.contact-profile img {
  border-color: #8f5a6e;
}

.social-links a {
  color: #f8e7ee;
  border-color: #8f5a6e;
}

.social-links a:hover {
  color: #32101d;
  background: #f3d6e1;
}

/* Contact form */

.contact-form {
  color: #f8e7ee;
  background: #1c1216;
  border-color: #8f5a6e;
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.32);
}

.form-field input,
.form-field select,
.form-field textarea {
  color: #f8e7ee;
  background: #2b1b21;
  border-color: rgba(248, 231, 238, 0.42);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(248, 231, 238, 0.58);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  color: #ffffff;
  background: #321f27;
  border-color: #f2a8ca;
  box-shadow: 0 0 0 4px rgba(242, 168, 202, 0.2);
}

.contact-form .button-primary {
  color: #32101d;
  background: #f3d6e1;
  border-color: #f3d6e1;
}

/* Footer */

.site-footer {
  color: #f3d6e1;
  background: #150b0f;
}

.footer-inner .brand {
  color: #f3d6e1;
}

/* Dark mobile navigation */

@media (max-width: 760px) {
  .site-nav {
    color: #f8e7ee;
    background: #24181d;
  }

  .site-nav .nav-cta {
    color: #32101d;
    background: #f3d6e1;
  }
}