@import url('https://fonts.googleapis.com/css2?family=Graduate&display=swap');

:root {
  --ink: #100e10;
  --ink-rgb: 16, 14, 16;
  --white: #ffffff;
  --petal: #ecb3b7;
  --rose: #e66e89;
  --ruby: #d8464d;
  --gold: #d1a641;
  --fern: #5d9443;
  --warm-gray: #f7f4ee;
  --sand: #f4efe6;
  --shadow-soft: 0 25px 60px rgba(16, 14, 16, 0.12);
  --shadow-card: 0 18px 35px rgba(16, 14, 16, 0.08);
  --radius: 1.35rem;
  --radius-lg: 2.75rem;
  --transition: 0.3s ease;
  --font-serif: "Playfair Display", "Cormorant Garamond", serif;
  --font-sans: "Space Grotesk", "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading > *:not(.site-loader) {
  visibility: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(216, 70, 77, 0.08), transparent 0.35rem);
  background-size: 32px 32px;
  opacity: 0.4;
  pointer-events: none;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(216, 70, 77, 0.6);
  outline-offset: 4px;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--white);
  border-bottom: 1px solid rgba(var(--ink-rgb), 0.1);
  box-shadow: 0 12px 35px rgba(16, 14, 16, 0.08);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.site-header > .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
}

.logo__img {
  width: 120px;
  height: auto;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  background: var(--white);
  scroll-margin-top: 120px;
}

.carousel {
  position: relative;
  width: 100%;
  margin: 0;
}

.carousel__track {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: clamp(520px, 70vh, 640px);
}

.carousel__slide {
  position: absolute;
  inset: 0;
  min-height: clamp(520px, 70vh, 640px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(7.5rem, 13vw, 10rem) clamp(1.5rem, 6vw, 5rem) clamp(3rem, 7vw, 5rem);
  color: var(--white);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(16, 14, 16, 0.9), rgba(16, 14, 16, 0.6));
}

.carousel__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.carousel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85);
  transform: scale(1.05);
  transition: transform 0.8s ease;
}

.carousel__slide--ceremony .carousel__media img {
  object-position: center 32%;
}

.carousel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(16, 14, 16, 0.7), rgba(16, 14, 16, 0.2));
  z-index: 1;
}

.carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.carousel__slide.is-active .carousel__media img {
  transform: scale(1);
}

.carousel__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-top: clamp(4rem, 6vw, 5rem);
  color: var(--white);
}

.carousel__content .eyebrow {
  color: var(--white);
}

.carousel__content h2,
.carousel__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(3rem, 5vw, 4.2rem);
  line-height: 1.15;
}

.carousel__cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.78rem;
  color: inherit;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.carousel__description {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1rem;
}


.carousel__cta::after {
  content: "→";
  font-size: 1rem;
}

.carousel__control {
  display: none;
}

.carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 1;
}

.carousel__dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.25s ease;
  cursor: pointer;
  padding: 0;
}

.carousel__dot.is-active {
  width: 22px;
  background: var(--white);
  border-color: var(--white);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.88rem;
}

.nav {
  position: relative;
  margin-right: auto;
  display: flex;
  align-items: center;
}

.nav__list a {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(216, 70, 77, 0.5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav__list a:hover::after,
.nav__list a:focus-visible::after {
  transform: scaleX(1);
}

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(var(--ink-rgb), 0.15);
  background: rgba(255, 255, 255, 0.8);
  padding: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: border var(--transition), box-shadow var(--transition);
}

.nav__toggle:hover,
.nav__toggle:focus-visible {
  border-color: rgba(216, 70, 77, 0.4);
  box-shadow: 0 6px 18px rgba(216, 70, 77, 0.22);
}

.nav__toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 0.28rem;
  align-items: center;
  justify-content: center;
}

.nav__toggle-icon span {
  display: block;
  width: 22px;
  height: 2px;
  background: linear-gradient(120deg, var(--ink), rgba(var(--ink-rgb), 0.5));
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav__toggle[aria-expanded='true'] .nav__toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__toggle[aria-expanded='true'] .nav__toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded='true'] .nav__toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cta {
  border-radius: 999px;
  padding: 0.85rem 1.9rem;
  letter-spacing: 0.24rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.cta--primary {
  background: linear-gradient(120deg, var(--gold), var(--rose));
  color: var(--white);
  box-shadow: 0 20px 45px rgba(216, 70, 77, 0.2);
}

.cta--primary:hover,
.cta--primary:focus-visible {
  transform: translateY(-2px);
}

.cta--ghost {
  border-color: rgba(16, 14, 16, 0.15);
  background: transparent;
  color: var(--ink);
}

.hero {
  padding: clamp(3.5rem, 6vw, 4.5rem) 0 clamp(1rem, 3vw, 1.8rem);
  min-height: clamp(360px, 52vh, 500px);
  background: radial-gradient(circle at 12% 20%, rgba(236, 179, 183, 0.5), transparent 50%),
    radial-gradient(circle at 80% 0%, rgba(214, 70, 77, 0.4), transparent 40%),
    linear-gradient(150deg, var(--white), #fdf7f0);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(0);
  opacity: 0.4;
}

.hero::before {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #e66e89, transparent 70%);
  top: 10%;
  left: 6%;
  animation: floaty 12s ease-in-out infinite;
}

.hero::after {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #5d9443, transparent 70%);
  bottom: 5%;
  right: 10%;
  animation: floaty 14s ease-in-out infinite reverse;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero__content {
  margin-top: clamp(0rem, 2vw, 1rem);
}

.hero__content h1,
.section__intro h2,
.signature__card h3,
.service-card h3,
.work__content h3,
.approach__panel h2,
.callout h2,
.process h3,
.policy-list h3,
.contact__content h2 {
  font-family: var(--font-serif);
  letter-spacing: 0.02em;
  margin: 0 0 0.6rem;
}

.hero__content h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.05;
}

.hero__highlight {
  display: inline-block;
  background: linear-gradient(120deg, var(--rose), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.hero__note {
  color: rgba(var(--ink-rgb), 0.75);
  margin-bottom: 1.2rem;
}

.site-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  min-height: min(540px, 90vh);
}

.site-loader__thread-wrap {
  position: relative;
  width: clamp(320px, 60vw, 540px);
  height: clamp(320px, 60vh, 440px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: -60px;
}

.site-loader__web {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  animation: webDrop 2.4s ease forwards;
  pointer-events: none;
}

.site-loader__logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(120px, 24vw, 180px);
  transform: translateY(-30px);
}

.site-loader__logo img {
  width: 100%;
  height: auto;
  opacity: 0;
  animation: logoReveal 0.8s ease forwards 1.6s;
}

.site-loader__flare {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(255, 138, 0, 0.8), rgba(255, 45, 85, 0.85)), url('loading/1Spider.png');
  background-size: 250% 250%, cover;
  background-position: 0% 50%, center;
  opacity: 0;
  animation: webFlash 1.8s ease-out forwards 1.5s;
  mix-blend-mode: screen;
  pointer-events: none;
}

@keyframes webDrop {
  0% {
    transform: translateY(-25%);
  }
  60% {
    transform: translateY(8%);
  }
  80% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes webFlash {
  0% {
    opacity: 0;
    background-position: 0% 50%;
  }
  30% {
    opacity: 1;
  }
  60% {
    background-position: 100% 50%;
  }
  100% {
    opacity: 0;
    background-position: 50% 50%;
  }
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}





.hero__chips span {
  position: relative;
  padding: 0.55rem 1.1rem;
  border-radius: 1.75rem;
  background: #fff6f1;
  border: 2px solid rgba(var(--ink-rgb), 0.1);
  box-shadow: 4px 6px 0 rgba(255, 164, 194, 0.4);
  font-size: 0.78rem;
  letter-spacing: 0.18rem;
  color: rgba(var(--ink-rgb), 0.82);
  font-family: var(--font-serif);
  animation: bubbleDrift 6s ease-in-out infinite;
  z-index: 0;
}

.hero__chips span::after,
.hero__chips span::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: #fff6f1;
  border: 2px solid rgba(var(--ink-rgb), 0.1);
}

.hero__chips span::after {
  width: 14px;
  height: 14px;
  bottom: -8px;
  right: 18px;
  box-shadow: 3px 4px 0 rgba(255, 164, 194, 0.35);
}

.hero__chips span::before {
  width: 6px;
  height: 6px;
  bottom: -18px;
  right: 8px;
  opacity: 0.9;
  box-shadow: 1px 1px 0 rgba(255, 164, 194, 0.35);
}

.hero__chips span:nth-child(odd) {
  animation-delay: 1s;
}

.hero__chips span:nth-child(3n) {
  animation-duration: 7s;
}

@keyframes bubbleDrift {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-4px) translateX(2px);
  }
  50% {
    transform: translateY(2px) translateX(-3px);
  }
  75% {
    transform: translateY(-2px) translateX(1px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.hero__badge {
  padding: 0.35rem 0.8rem;
  border-radius: 0.7rem;
  background: #fff9f0;
  border: 1px solid rgba(var(--ink-rgb), 0.12);
  font-size: 0.8rem;
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
  animation: badgePop 6s ease-in-out infinite;
}

.hero__badge:nth-child(2) {
  animation-delay: 1s;
}

.hero__badge:nth-child(3) {
  animation-delay: 2s;
}

.hero__badge::before {
  content: "✺";
  margin-right: 0.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
  justify-content: flex-start;
  align-self: center;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.2rem;
}

.stat__value {
  display: block;
  font-size: 2.1rem;
  font-family: var(--font-serif);
  opacity: 0;
}

.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.24rem;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), 0.6);
}

.hero__media {
  position: relative;
  min-height: clamp(520px, 60vw, 620px);
}

.hero__frame {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(var(--ink-rgb), 0.08);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.hero__frame--primary {
  inset: 0 5rem 3.5rem 0;
  background: url('../../FNL/FNL.png') center/cover;
  z-index: 3;
}

.hero__frame--secondary {
  width: clamp(240px, 28vw, 320px);
  height: clamp(220px, 30vw, 320px);
  top: -1.5rem;
  right: 2rem;
  border-radius: var(--radius-lg);
  background: url('../../LCS2.avif') center/cover;
  filter: saturate(0.85);
  opacity: 0.7;
  z-index: 2;
  transform: rotate(-8deg);
}

.hero__frame--tertiary {
  width: clamp(210px, 26vw, 300px);
  height: clamp(200px, 28vw, 320px);
  left: -2rem;
  bottom: -1rem;
  background: url('https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=600&q=60') center/cover;
  opacity: 0.75;
  z-index: 1;
  transform: rotate(10deg);
}

.hero__frame--quaternary {
  width: clamp(170px, 22vw, 240px);
  height: clamp(180px, 24vw, 260px);
  left: 40%;
  bottom: -2rem;
  background: url('https://images.unsplash.com/photo-1498098662025-04e60a212db4?auto=format&fit=crop&w=500&q=60') center/cover;
  opacity: 0.6;
  z-index: 0;
  box-shadow: 0 25px 35px rgba(16, 14, 16, 0.15);
  transform: rotate(-4deg);
}

.custom-scene {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: #5d9443;
  border-top: 2px solid rgba(var(--ink-rgb), 0.08);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.custom-scene::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 80px),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 22px);
  opacity: 0.6;
  pointer-events: none;
  transform: rotate(-2deg);
}

.custom-scene > .container {
  position: relative;
  z-index: 1;
}

.custom-scene__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.8rem;
}

.custom-scene__title {
  font-family: 'Graduate', var(--font-serif);
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin: 0 0 0.3rem;
  position: relative;
  display: inline-block;
}

.custom-scene__title::before,
.custom-scene__title::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0;
  animation: bokeh-on-text 5.5s ease-in-out infinite;
  pointer-events: none;
}

.custom-scene__title::before {
  top: -12px;
  left: -30px;
  animation-delay: 0.4s;
}

.custom-scene__title::after {
  bottom: -10px;
  right: -26px;
  animation-delay: 1s;
}

.custom-scene__subtitle {
  text-transform: uppercase;
  letter-spacing: 0.35rem;
  font-size: 1.1rem;
  margin: 0 0 1.2rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.custom-scene__subtitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.6rem;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%) rotate(-2deg);
  animation: underline-draw 1.3s ease forwards;
}

@keyframes underline-draw {
  0% {
    width: 0;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 90%;
  }
}

@keyframes bokeh-pulse {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  40% {
    opacity: 0.55;
    transform: scale(1);
  }
  70% {
    opacity: 0.12;
    transform: scale(1.25);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes bokeh-on-text {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  40% {
    opacity: 0.6;
    transform: scale(1);
  }
  70% {
    opacity: 0.18;
    transform: scale(1.08);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.scene-board {
  position: relative;
  border-radius: 2.4rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.08);
}

.scene-board__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

.scene-board__labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.custom-label {
  --x: 50%;
  --y: 50%;
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(var(--ink-rgb), 0.12);
  box-shadow: 0 18px 35px rgba(16, 14, 16, 0.16);
  font-size: 0.62rem;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), 0.78);
  text-align: center;
  max-width: 220px;
  pointer-events: none;
}

.custom-label__text {
  flex: 1 1 auto;
}

.custom-label__arrow {
  width: 40px;
  height: 1px;
  background: rgba(var(--ink-rgb), 0.4);
  position: relative;
  display: inline-block;
}

.custom-label__arrow::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(var(--ink-rgb), 0.4);
  border-top: 1px solid rgba(var(--ink-rgb), 0.4);
  transform: rotate(45deg);
  right: -3px;
  top: 50%;
  margin-top: -4px;
}

.custom-label--arrow-left {
  flex-direction: row-reverse;
}

.custom-label--arrow-left .custom-label__arrow {
  transform: scaleX(-1);
}

.custom-label--arrow-left .custom-label__arrow::after {
  transform: rotate(45deg) scaleX(-1);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35rem;
  font-size: 0.74rem;
  color: rgba(var(--ink-rgb), 0.6);
}

.marquee {
  background: var(--white);
  border-top: 1px solid rgba(var(--ink-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--ink-rgb), 0.08);
  overflow: hidden;
}

.marquee__track {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-weight: 600;
  padding: 0.9rem 0;
}

.marquee__track span::before {
  content: "✷";
  color: var(--gold);
  margin-right: 0.5rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes floaty {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes badgePop {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section--light {
  background: var(--sand);
}

.section--slate {
  background: var(--ink);
  color: var(--white);
}

.section--services {
  background: #ecb3b7;
  color: var(--white);
}

.section--services .section__intro h2,
.section--services .section__intro p {
  color: var(--ink);
}

.section--services .section__intro .eyebrow {
  color: rgba(var(--ink-rgb), 0.7);
}

.section--services .service-card {
  color: var(--ink);
}

.section__intro {
  max-width: 740px;
  margin-bottom: 2.5rem;
}

.moodboard {
  background: #d1a641;
  position: relative;
  overflow: hidden;
}

.moodboard::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.5), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(230, 110, 137, 0.5), transparent 55%);
  filter: blur(80px);
  opacity: 0.65;
  pointer-events: none;
}

.moodboard::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 8px, transparent 8px, transparent 24px),
    radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.14), transparent 45%);
  mix-blend-mode: screen;
  opacity: 0.6;
  pointer-events: none;
}


.moodboard__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.mood-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  border: 1px solid rgba(var(--ink-rgb), 0.08);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

.mood-card::after {
  content: attr(data-label);
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(236, 179, 183, 0.15);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  transform: rotate(-12deg);
}

.mood-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(209, 166, 65, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.cta--secondary {
  background: var(--white);
  border: 1px dashed rgba(16, 14, 16, 0.3);
  color: var(--ink);
}

@keyframes wiggle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.signature__grid,
.services__grid,
.work__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.signature__card,
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  border: 1px solid rgba(var(--ink-rgb), 0.08);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card:focus-visible,
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(16, 14, 16, 0.12);
}

.service-card.has-bg {
  border: none;
}

.service-card__media {
  width: 100%;
  height: clamp(180px, 16vw, 240px);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.service-card__body {
  padding: 1.6rem;
  display: grid;
  gap: 0.6rem;
  flex: 1;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.testimonials {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(236, 179, 183, 0.35), transparent 60%),
    radial-gradient(circle at 80% 0%, rgba(209, 166, 65, 0.3), transparent 50%),
    linear-gradient(135deg, #120f13, #1f1420 60%, #24131c);
  z-index: 0;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: calc(var(--radius-lg) * 1.1);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 5;
}

.testimonial-hero {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  min-height: clamp(360px, 40vw, 460px);
  color: var(--white);
  z-index: 1;
}

.testimonial-hero__track {
  position: relative;
  height: 100%;
  min-height: inherit;
}

.testimonial-hero__slide {
  position: absolute;
  inset: 0;
  background: var(--bg, linear-gradient(135deg, #1b1a1f, #2d1c2a 40%, #311a24)) center/cover no-repeat;
  opacity: 0;
  transform: scale(1.05);
  filter: blur(6px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3rem) 0;
  min-height: inherit;
}

.testimonial-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  z-index: 1;
}

.testimonial-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(16, 14, 16, 0.95), rgba(16, 14, 16, 0.7));
}

.testimonial-hero__content {
  position: relative;
  z-index: 2;
  width: min(860px, 90vw);
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  background: transparent;
  border-radius: var(--radius);
  border: none;
  backdrop-filter: none;
  display: grid;
  gap: 1.2rem;
  min-height: 320px;
  margin-top: clamp(5rem, 9vw, 6rem);
}

.testimonial-hero__content > * {
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.55);
}

.testimonial-hero__label {
  position: absolute;
  top: clamp(1.5rem, 4vw, 2.25rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-serif);
  text-align: center;
  margin: 0;
}

.testimonial-hero__intro {
  position: absolute;
  top: clamp(4rem, 10vw, 5.2rem);
  left: 50%;
  transform: translateX(-50%);
  width: min(860px, 90vw);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  z-index: 3;
  margin: 0;
}

.testimonial-story {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  font-size: 0.75rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin: 0;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.5;
  margin: 0;
}

.testimonial-hero__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.testimonial-role {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-tag {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.7rem;
}

.testimonial-controls {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 3;
}

.testimonial-control {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-control:hover,
.testimonial-control:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.signature__card p,
.service-card p {
  color: rgba(var(--ink-rgb), 0.72);
}

.work__grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.work__card {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: rgba(0, 0, 0, 0.6);
}

.work__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--image) center/cover;
  filter: saturate(0.8);
}

.work__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.85));
}

.work__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem;
  color: var(--white);
}

.work__tag {
  letter-spacing: 0.35rem;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 0.4rem;
}

.approach {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.approach__panel {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.approach__panel h2,
.approach__panel p,
.approach__panel li {
  color: var(--white);
}

.process {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.callout {
  background: var(--petal);
}

.callout__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.callout__actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.contact__content,
.contact__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem;
  border: 1px solid rgba(var(--ink-rgb), 0.08);
  box-shadow: var(--shadow-card);
}

.contact__details {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.contact__form {
  display: grid;
  gap: 1rem;
}

.contact__form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  border-radius: 0.9rem;
  border: 1px solid rgba(var(--ink-rgb), 0.15);
  padding: 0.85rem 1rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.95);
}

.contact__form textarea {
  min-height: 130px;
}

.contact__note {
  font-size: 0.9rem;
  color: rgba(var(--ink-rgb), 0.65);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.footer__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: background var(--transition), transform var(--transition);
}

.footer__icon-link:hover,
.footer__icon-link:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.footer__icon-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.site-footer__copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.form-card-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 14, 16, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 100;
}

.form-card-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.form-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  width: min(480px, 95vw);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.form-card__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
}

.form-card__form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.form-card__form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
}

.form-card__form input,
.form-card__form textarea {
  border-radius: 0.9rem;
  border: 1px solid rgba(var(--ink-rgb), 0.15);
  padding: 0.75rem 0.95rem;
  font: inherit;
}

.form-card__form textarea {
  min-height: 110px;
}

.form-card__cta {
  border-radius: 999px;
  border: none;
  padding: 0.85rem 1.2rem;
  background: linear-gradient(120deg, var(--gold), var(--rose));
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .nav__toggle {
    display: inline-flex;
  }

  .site-header .cta {
    padding: 0.45rem 0.95rem;
    letter-spacing: 0.08rem;
    font-size: 0.64rem;
    line-height: 1;
    margin-left: 0.75rem;
    margin-right: 0;
  }

  .nav__list {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    text-align: right;
    align-items: flex-end;
    min-width: 220px;
    flex-direction: column;
    background: var(--white);
    border-radius: 1.2rem;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(var(--ink-rgb), 0.08);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }

  .nav__list.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero__frame--primary {
    position: relative;
    inset: auto;
  }

  .hero__frame--secondary,
  .hero__frame--tertiary,
  .hero__frame--quaternary {
    display: none;
  }

  .scene-board {
    border-radius: var(--radius-lg);
  }

  .custom-label {
    font-size: 0.55rem;
    letter-spacing: 0.12rem;
    max-width: 200px;
  }

}

@media (max-width: 700px) {
  .site-header > .container {
    padding: 0.5rem 0;
  }

  .site-header .cta {
    padding: 0.3rem 0.8rem;
    letter-spacing: 0.05rem;
    font-size: 0.58rem;
    line-height: 1;
    margin-left: 0.75rem;
  }

  .custom-scene {
    padding: 3rem 0;
  }

  .scene-board {
    overflow: visible;
    padding: 1.2rem;
    border-radius: var(--radius);
  }

  .scene-board__image {
    border-radius: 1.35rem;
  }

  .scene-board__labels {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.7rem;
    margin-top: 1rem;
  }

  .custom-label {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    justify-content: center;
    box-shadow: none;
    max-width: none;
    padding: 0.5rem 0.85rem;
  }

  .custom-label__arrow {
    display: none;
  }

  .holiday__list--fnl {
    justify-content: center;
  }

}

@media (max-width: 600px) {
  

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

  .callout__actions {
    flex-direction: column;
  }
}
.holiday {
  position: relative;
  background: conic-gradient(from 120deg, rgba(216, 70, 77, 0.15), rgba(209, 166, 65, 0.15), rgba(236, 179, 183, 0.2));
  padding: 4rem clamp(1rem, 6vw, 5rem);
  overflow: hidden;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--ruby);
}

.holiday::before,
.holiday::after {
  content: "✷";
  position: absolute;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.3);
  mix-blend-mode: screen;
}

.holiday::before {
  top: -40px;
  left: 5%;
}

.holiday::after {
  bottom: -60px;
  right: 8%;
}

.holiday__content {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.holiday__content h2 {
  margin: 0.3rem 0;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--ruby);
  text-transform: uppercase;
  letter-spacing: 0.18rem;
}

.holiday__content p {
  font-size: 1.1rem;
  color: var(--ink);
  max-width: 520px;
  margin: 0 auto;
}

.holiday__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.holiday__actions .cta--primary {
  background: linear-gradient(120deg, var(--ruby), var(--rose));
  font-size: 0.9rem;
}

.holiday__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
}

.holiday__list li {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--ink-rgb), 0.15);
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  animation: jingle 3s ease-in-out infinite;
  cursor: pointer;
}

.holiday__list li span {
  margin-right: 0.35rem;
}

.holiday__list li::before,
.holiday__list li::after {
  content: "✨";
  position: absolute;
  font-size: 1.1rem;
  color: var(--gold);
}

.holiday__list li::before {
  left: -6px;
  top: -8px;
}

.holiday__list li::after {
  right: -6px;
  bottom: -8px;
  color: var(--rose);
}

.holiday__list--fnl {
  justify-content: flex-start;
  margin-top: 1.25rem;
}

.holiday__list--fnl li {
  background: linear-gradient(135deg, #cdaa53, #f3d98d);
  border-color: rgba(205, 170, 83, 0.65);
  color: rgba(var(--ink-rgb), 0.86);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}

@keyframes jingle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
}

.holiday__title {
  margin: 0;
  text-align: center;
}

.holiday__title .holiday__script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(5rem, 14vw, 9rem);
  color: var(--gold);
  text-shadow: 0 6px 15px rgba(255, 255, 255, 0.5);
  display: inline-block;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
}

.policies-page {
  background: var(--warm-gray);
  color: var(--ink);
}

.policies {
  width: min(840px, 90vw);
  margin: 4rem auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.policies header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin-bottom: 0.5rem;
}

.policies header p {
  color: rgba(var(--ink-rgb), 0.7);
  margin-bottom: 2rem;
}

.policies .policy-list {
  text-align: left;
  margin-bottom: 2rem;
}
