:root {
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #f6f2ea;
  --paper: #fffdf8;
  --ink: #111312;
  --muted: #666962;
  --line: #ded6c8;
  --green: #3f8068;
  --blue: #2f7fbd;
  --coral: #df735d;
  --yellow: #edbd57;
  --shadow: 0 26px 80px rgba(17, 19, 18, 0.14);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --shift-x: 0rem;
  --shift-y: 0rem;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0;
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 18, 0.045) 1px, transparent 1px) 0 0 / 5rem 5rem,
    linear-gradient(180deg, rgba(17, 19, 18, 0.045) 1px, transparent 1px) 0 0 / 5rem 5rem,
    linear-gradient(135deg, rgba(63, 128, 104, 0.1), transparent 42%),
    var(--bg);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 0.28rem;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--coral), var(--yellow));
  transform: scaleX(0);
  transform-origin: left center;
}

.kinetic-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.kinetic-line,
.kinetic-frame {
  position: absolute;
  display: block;
  border-radius: 8px;
}

.kinetic-line {
  height: 0.62rem;
  border: 1px solid rgba(17, 19, 18, 0.12);
  opacity: 0.28;
}

.kinetic-line--one {
  top: 18%;
  left: -14rem;
  width: 28rem;
  background: var(--green);
  transform: rotate(-16deg);
  animation: kinetic-slide 18s linear infinite;
}

.kinetic-line--two {
  right: -12rem;
  bottom: 18%;
  width: 24rem;
  background: var(--coral);
  transform: rotate(14deg);
  animation: kinetic-slide 20s linear reverse infinite;
}

.kinetic-frame {
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(17, 19, 18, 0.1);
  opacity: 0.36;
}

.kinetic-frame--one {
  top: 28%;
  right: 8%;
  transform: rotate(11deg);
  animation: corner-breathe 8s ease-in-out infinite;
}

.kinetic-frame--two {
  left: 5%;
  bottom: 8%;
  width: 8rem;
  height: 8rem;
  transform: rotate(-8deg);
  animation: corner-breathe 9s ease-in-out 0.7s infinite;
}

[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.parallax-mark {
  position: absolute;
  display: block;
  border: 1px solid rgba(17, 19, 18, 0.12);
  border-radius: 8px;
  opacity: 0.38;
}

.parallax-mark--one {
  left: 12%;
  top: 14%;
  width: 5.6rem;
  height: 5.6rem;
  background: rgba(237, 189, 87, 0.26);
  animation: mark-spin 18s linear infinite;
}

.parallax-mark--two {
  right: 14%;
  bottom: 24%;
  width: 7.4rem;
  height: 7.4rem;
  background: rgba(47, 127, 189, 0.16);
  animation: mark-spin 22s linear reverse infinite;
}

.ambient-dot {
  position: absolute;
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid rgba(17, 19, 18, 0.16);
  border-radius: 999px;
  background: var(--paper);
  opacity: 0.68;
  animation: ambient-float 10s ease-in-out infinite;
}

.ambient-dot--one {
  left: 19%;
  top: 32%;
  background: var(--yellow);
}

.ambient-dot--two {
  right: 21%;
  top: 22%;
  width: 1rem;
  height: 1rem;
  background: var(--green);
  animation-delay: 1.2s;
}

.ambient-dot--three {
  left: 10%;
  bottom: 22%;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--blue);
  animation-delay: 2.4s;
}

.ambient-dot--four {
  right: 9%;
  bottom: 34%;
  background: var(--coral);
  animation-delay: 3.6s;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.2rem;
  padding: 0.95rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(17, 19, 18, 0.12);
  background: rgba(246, 242, 234, 0.9);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.85rem;
}

.logo-mark {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  width: 3.35rem;
  height: 3.35rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(63, 128, 104, 0.24), rgba(47, 127, 189, 0.18)),
    var(--paper);
  overflow: hidden;
}

.logo-mark span,
.logo-mark::before,
.logo-mark::after {
  position: absolute;
  content: "";
  border-radius: 8px;
}

.logo-mark span {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid var(--ink);
  transform: rotate(45deg);
}

.logo-mark::before {
  width: 0.45rem;
  height: 2.45rem;
  background: var(--ink);
  transform: rotate(38deg);
}

.logo-mark::after {
  width: 2.4rem;
  height: 0.45rem;
  background: var(--coral);
  transform: translateY(0.72rem);
}

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

.brand strong {
  font-size: 1.08rem;
  font-weight: 920;
}

.brand small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 820;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.58rem;
}

.top-nav a,
.button,
.price-grid a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.92rem 1.22rem;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 880;
  cursor: pointer;
  overflow: hidden;
  transition:
    background 170ms ease,
    border-color 170ms ease,
    color 170ms ease,
    transform 170ms ease,
    box-shadow 170ms ease;
}

.top-nav a::after,
.button::after,
.price-grid a::after {
  position: absolute;
  inset: -40% auto -40% -65%;
  width: 55%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: skewX(-18deg);
  transition: left 360ms ease;
  pointer-events: none;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.button:hover,
.button:focus-visible,
.price-grid a:hover,
.price-grid a:focus-visible {
  background: var(--ink);
  color: var(--paper);
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(17, 19, 18, 0.16);
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after,
.button:hover::after,
.button:focus-visible::after,
.price-grid a:hover::after,
.price-grid a:focus-visible::after {
  left: 112%;
}

.nav-action,
.button--primary {
  background: var(--ink) !important;
  color: var(--paper) !important;
}

.nav-action:hover,
.nav-action:focus-visible,
.button--primary:hover,
.button--primary:focus-visible {
  background: var(--green) !important;
  border-color: var(--green) !important;
}

.top-nav a:active,
.button:active,
.price-grid a:active {
  transform: translateY(0) scale(0.98);
}

.press-ripple {
  position: absolute;
  z-index: 1;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple-pop 620ms ease-out forwards;
}

main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 0.78fr);
  align-items: center;
  gap: 3rem;
  min-height: min(47rem, calc(100vh - 5.2rem));
  padding: 5.6rem clamp(1rem, 5vw, 4.5rem) 4.8rem;
  border-bottom: 1px solid var(--line);
}

.hero-orbit {
  position: absolute;
  display: block;
  border: 1px solid rgba(17, 19, 18, 0.14);
  border-radius: 8px;
  pointer-events: none;
}

.hero-orbit--one {
  left: clamp(1rem, 4vw, 4rem);
  bottom: 12%;
  width: 9rem;
  height: 9rem;
  background: rgba(63, 128, 104, 0.1);
  animation: orbit-drift 9s ease-in-out infinite;
}

.hero-orbit--two {
  right: 44%;
  top: 10%;
  width: 5.4rem;
  height: 5.4rem;
  background: rgba(223, 115, 93, 0.12);
  animation: orbit-drift 8s ease-in-out 0.7s infinite reverse;
}

.hero::before {
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 28%, rgba(47, 127, 189, 0.1) 28% 54%, transparent 54%),
    linear-gradient(45deg, transparent 0 38%, rgba(223, 115, 93, 0.1) 38% 63%, transparent 63%);
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 54rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.02;
}

h1 {
  max-width: 11ch;
  font-size: 5.8rem;
  font-weight: 950;
}

.animated-title {
  display: grid;
  gap: 0.08em;
}

.animated-title span {
  display: block;
  transform-origin: left center;
  animation: title-pop 5.8s ease-in-out infinite;
}

.animated-title span:nth-child(2) {
  animation-delay: 0.16s;
}

.animated-title span:nth-child(3) {
  animation-delay: 0.32s;
}

h2 {
  max-width: 14ch;
  font-size: 3.25rem;
  font-weight: 930;
}

h3 {
  font-size: 1.45rem;
  font-weight: 900;
}

.hero__lead,
.section__copy p,
.price-grid p,
.contact-facts dd,
.form-status {
  color: var(--muted);
  line-height: 1.58;
}

.hero__lead {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.48rem;
  row-gap: 0.46rem;
  max-width: 42rem;
  margin: 1.35rem 0 2rem;
  font-size: 1.35rem;
  font-weight: 650;
}

.word-cycle {
  position: relative;
  display: inline-grid;
  width: 11.5ch;
  height: 1.72em;
  place-items: center;
  padding: 0 0.62rem;
  border: 1px solid rgba(17, 19, 18, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(63, 128, 104, 0.12), rgba(47, 127, 189, 0.1)),
    rgba(255, 253, 248, 0.78);
  overflow: hidden;
  color: var(--green);
  font-weight: 920;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(17, 19, 18, 0.08);
}

.word-cycle span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(0.8em);
  animation: word-swap 6.6s ease-in-out infinite;
}

.word-cycle span:nth-child(2) {
  color: var(--blue);
  animation-delay: 2.2s;
}

.word-cycle span:nth-child(3) {
  color: var(--coral);
  animation-delay: 4.4s;
}

.actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero .button {
  min-height: 3.65rem;
  padding-inline: 1.55rem;
  font-size: 1.12rem;
}

.motion-stage {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.stage-shell {
  position: relative;
  min-height: 34rem;
  border: 1px solid rgba(17, 19, 18, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(239, 246, 241, 0.9)),
    var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform:
    perspective(72rem)
    rotateX(var(--tilt-y))
    rotateY(var(--tilt-x))
    translate3d(var(--shift-x), var(--shift-y), 0);
  transform-style: preserve-3d;
  transition: transform 180ms ease;
  will-change: transform;
}

.stage-shell::before {
  position: absolute;
  inset: -20% -28%;
  content: "";
  background:
    linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.8) 42%, transparent 58%),
    linear-gradient(135deg, rgba(237, 189, 87, 0.18), transparent 52%);
  animation: sweep 7s ease-in-out infinite;
}

.stage-grid {
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(17, 19, 18, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(17, 19, 18, 0.055) 1px, transparent 1px) 0 0 / 3rem 3rem,
    linear-gradient(180deg, rgba(17, 19, 18, 0.055) 1px, transparent 1px) 0 0 / 3rem 3rem;
}

.stage-panel,
.stage-line,
.stage-tile,
.stage-scan,
.stage-corner {
  position: absolute;
  display: block;
  border-radius: 8px;
}

.stage-scan {
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 28%;
  border-radius: 0;
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.66), transparent),
    linear-gradient(90deg, transparent, rgba(47, 127, 189, 0.18), transparent);
  mix-blend-mode: screen;
  animation: scan 4.8s ease-in-out infinite;
  pointer-events: none;
}

.stage-panel {
  border: 1px solid rgba(17, 19, 18, 0.13);
  box-shadow: 0 18px 48px rgba(17, 19, 18, 0.12);
  transform: translateZ(2rem);
}

.stage-panel--main {
  left: 11%;
  top: 13%;
  width: 54%;
  height: 46%;
  background:
    linear-gradient(135deg, rgba(63, 128, 104, 0.28), transparent 58%),
    var(--paper);
  animation: panel-float 6s ease-in-out infinite;
}

.stage-panel--side {
  right: 10%;
  top: 24%;
  width: 28%;
  height: 52%;
  background:
    linear-gradient(160deg, rgba(47, 127, 189, 0.28), transparent 62%),
    var(--paper);
  animation: panel-float 7s ease-in-out 0.35s infinite;
}

.stage-panel--small {
  left: 20%;
  bottom: 12%;
  width: 46%;
  height: 18%;
  background:
    linear-gradient(120deg, rgba(223, 115, 93, 0.34), transparent 58%),
    var(--paper);
  animation: panel-float 5.6s ease-in-out 0.7s infinite;
}

.stage-line {
  height: 0.5rem;
  border: 1px solid rgba(17, 19, 18, 0.12);
  background: var(--ink);
  transform-origin: left center;
  opacity: 0.9;
  z-index: 2;
}

.stage-line--one {
  left: 9%;
  top: 72%;
  width: 58%;
  transform: rotate(-10deg);
  animation: line-slide 5s ease-in-out infinite;
}

.stage-line--two {
  right: 8%;
  top: 15%;
  width: 34%;
  background: var(--coral);
  transform: rotate(18deg);
  animation: line-slide 5.8s ease-in-out 0.4s infinite;
}

.stage-line--three {
  left: 16%;
  top: 22%;
  width: 31%;
  background: var(--green);
  transform: rotate(90deg);
  animation: line-slide 6.4s ease-in-out 0.8s infinite;
}

.stage-tile {
  width: 4.4rem;
  height: 4.4rem;
  border: 1px solid rgba(17, 19, 18, 0.14);
  background: var(--yellow);
  animation: tile-pulse 4.8s ease-in-out infinite;
  z-index: 3;
}

.stage-tile--a {
  right: 16%;
  bottom: 10%;
}

.stage-tile--b {
  left: 10%;
  bottom: 27%;
  width: 3.2rem;
  height: 3.2rem;
  background: var(--blue);
  animation-delay: 0.45s;
}

.stage-tile--c {
  right: 35%;
  top: 9%;
  width: 3.7rem;
  height: 3.7rem;
  background: var(--green);
  animation-delay: 0.9s;
}

.stage-corner {
  width: 5.8rem;
  height: 5.8rem;
  border: 1px solid rgba(17, 19, 18, 0.16);
  background:
    linear-gradient(90deg, rgba(17, 19, 18, 0.12) 1px, transparent 1px) 0 0 / 1.1rem 1.1rem,
    linear-gradient(180deg, rgba(17, 19, 18, 0.12) 1px, transparent 1px) 0 0 / 1.1rem 1.1rem;
  animation: corner-breathe 7s ease-in-out infinite;
}

.stage-corner--a {
  left: 1.7rem;
  top: 1.7rem;
}

.stage-corner--b {
  right: 1.7rem;
  bottom: 1.7rem;
  animation-delay: 0.8s;
}

.stage-wave {
  position: absolute;
  left: -18%;
  z-index: 1;
  display: block;
  width: 138%;
  height: 7.2rem;
  border: 1px solid rgba(17, 19, 18, 0.1);
  border-radius: 50%;
  opacity: 0.42;
  pointer-events: none;
}

.stage-wave--one {
  bottom: 17%;
  background: rgba(47, 127, 189, 0.22);
  animation: stage-wave 6.8s ease-in-out infinite;
}

.stage-wave--two {
  bottom: 8%;
  background: rgba(63, 128, 104, 0.2);
  animation: stage-wave 7.6s ease-in-out 0.55s infinite reverse;
}

.wave-band {
  position: relative;
  z-index: 1;
  height: 8.2rem;
  margin-top: -1px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  overflow: hidden;
}

.wave-band svg {
  position: absolute;
  left: -10%;
  top: 0;
  width: 120%;
  height: 100%;
  animation: wave-flow 10s ease-in-out infinite;
}

.wave-band svg:nth-child(2) {
  top: 0.7rem;
  animation-duration: 12s;
  animation-direction: reverse;
}

.wave-path {
  fill: rgba(255, 253, 248, 0.86);
}

.wave-path--one {
  fill: rgba(63, 128, 104, 0.18);
}

.wave-path--two {
  fill: rgba(47, 127, 189, 0.14);
}

.wave-band--dark {
  height: 6.8rem;
  background: #f1ece3;
}

.wave-band--dark .wave-path--three {
  fill: rgba(17, 19, 18, 0.88);
}

.motion-ribbon {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(8, minmax(3rem, 1fr));
  min-height: 5.2rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}

.motion-ribbon span {
  display: block;
  min-height: 5.2rem;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(125deg, transparent 0 42%, rgba(17, 19, 18, 0.1) 42% 48%, transparent 48%),
    linear-gradient(135deg, rgba(63, 128, 104, 0.16), rgba(255, 253, 248, 0.1));
  animation: ribbon-drift 5.8s ease-in-out infinite;
}

.motion-ribbon span:nth-child(2n) {
  background:
    linear-gradient(125deg, transparent 0 42%, rgba(17, 19, 18, 0.1) 42% 48%, transparent 48%),
    linear-gradient(135deg, rgba(47, 127, 189, 0.16), rgba(255, 253, 248, 0.1));
  animation-delay: 0.25s;
}

.motion-ribbon span:nth-child(3n) {
  background:
    linear-gradient(125deg, transparent 0 42%, rgba(17, 19, 18, 0.1) 42% 48%, transparent 48%),
    linear-gradient(135deg, rgba(223, 115, 93, 0.16), rgba(255, 253, 248, 0.1));
  animation-delay: 0.5s;
}

.section {
  padding: 5.2rem clamp(1rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}

.section--split,
.pricing {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: 2.2rem;
  align-items: start;
}

.section__copy {
  max-width: 38rem;
}

.section__copy--wide {
  max-width: 58rem;
  margin-bottom: 2.1rem;
}

.visual-services {
  background: var(--ink);
  color: var(--paper);
}

.visual-services h2 {
  color: var(--paper);
}

.experience-grid,
.gallery-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.experience-card,
.gallery-grid article,
.price-grid article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.experience-card {
  position: relative;
  display: grid;
  min-height: 20rem;
  align-content: end;
  gap: 0.7rem;
  padding: 1.35rem;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--paper);
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform 190ms ease,
    box-shadow 190ms ease;
}

.experience-card::before,
.experience-card::after {
  position: absolute;
  content: "";
  border-radius: 8px;
}

.experience-card::before {
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px) 0 0 / 2.3rem 2.3rem,
    linear-gradient(180deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px) 0 0 / 2.3rem 2.3rem;
}

.experience-card::after {
  left: 1.4rem;
  top: 1.4rem;
  width: 44%;
  height: 28%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.13);
  animation: tile-pulse 5.4s ease-in-out infinite;
}

.experience-card--brand {
  background:
    linear-gradient(135deg, rgba(63, 128, 104, 0.96), rgba(17, 19, 18, 0.72)),
    var(--green);
}

.experience-card--work {
  background:
    linear-gradient(135deg, rgba(47, 127, 189, 0.96), rgba(17, 19, 18, 0.72)),
    var(--blue);
}

.experience-card--action {
  background:
    linear-gradient(135deg, rgba(223, 115, 93, 0.96), rgba(17, 19, 18, 0.72)),
    var(--coral);
}

.experience-card span,
.gallery-grid span,
.price-grid span,
.contact-facts dt {
  color: currentColor;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-card span,
.experience-card h3 {
  position: relative;
  z-index: 1;
}

.experience-card:hover {
  transform: translateY(-0.45rem);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.has-reveal .experience-card.is-visible:hover {
  transform: translateY(-0.45rem);
}

.experience-card:focus-visible,
.gallery-grid article:focus-visible,
.price-grid article:focus-visible {
  outline: 3px solid rgba(237, 189, 87, 0.85);
  outline-offset: 4px;
}

.experience-card.is-active,
.gallery-grid article.is-active,
.price-grid article.is-active {
  border-color: var(--yellow);
  box-shadow:
    0 24px 58px rgba(17, 19, 18, 0.18),
    0 0 0 0.28rem rgba(237, 189, 87, 0.24);
}

.experience-card.is-active {
  transform: translateY(-0.7rem) scale(1.012);
}

.has-reveal .experience-card.is-visible.is-active {
  transform: translateY(-0.7rem) scale(1.012);
}

.gallery {
  background: #f1ece3;
}

.gallery-grid article {
  position: relative;
  display: grid;
  min-height: 22rem;
  align-content: end;
  gap: 0.5rem;
  padding: 1.25rem;
  overflow: hidden;
}

.gallery-grid article::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(47, 127, 189, 0.24), transparent 48%),
    linear-gradient(40deg, transparent 42%, rgba(17, 19, 18, 0.08) 42% 48%, transparent 48%),
    var(--paper);
  transition: transform 260ms ease;
}

.gallery-grid article:nth-child(2)::before {
  background:
    linear-gradient(135deg, rgba(63, 128, 104, 0.24), transparent 48%),
    linear-gradient(40deg, transparent 42%, rgba(17, 19, 18, 0.08) 42% 48%, transparent 48%),
    var(--paper);
}

.gallery-grid article:nth-child(3)::before {
  background:
    linear-gradient(135deg, rgba(223, 115, 93, 0.24), transparent 48%),
    linear-gradient(40deg, transparent 42%, rgba(17, 19, 18, 0.08) 42% 48%, transparent 48%),
    var(--paper);
}

.gallery-grid article::after {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 46%;
  height: 34%;
  content: "";
  border: 1px solid rgba(17, 19, 18, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.62);
  animation: panel-float 6.2s ease-in-out infinite;
}

.gallery-grid article:hover::before {
  transform: scale(1.04);
}

.gallery-grid article:hover::after,
.gallery-grid article.is-active::after {
  animation-duration: 2.8s;
  background: rgba(255, 253, 248, 0.82);
}

.gallery-grid span,
.gallery-grid strong {
  position: relative;
  z-index: 1;
}

.gallery-grid span,
.price-grid span,
.contact-facts dt {
  color: var(--muted);
}

.gallery-grid strong {
  font-size: 2.2rem;
  line-height: 1;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.gallery-grid article:hover strong,
.gallery-grid article.is-active strong {
  color: var(--green);
  transform: translateX(0.35rem);
}

.pricing {
  background: #fbfaf6;
}

.price-grid article {
  display: grid;
  min-height: 18rem;
  padding: 1.45rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.price-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(17, 19, 18, 0.12);
}

.has-reveal .price-grid article.is-visible:hover {
  transform: translateY(-4px);
}

.price-grid article.is-active {
  transform: translateY(-0.55rem) scale(1.01);
}

.has-reveal .price-grid article.is-visible.is-active {
  transform: translateY(-0.55rem) scale(1.01);
}

.price-grid strong {
  margin: 0.85rem 0 0.75rem;
  color: var(--green);
  font-size: 2.55rem;
  font-weight: 950;
}

.price-grid p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 720;
}

.price-card--featured {
  border-color: rgba(63, 128, 104, 0.46) !important;
  background:
    linear-gradient(135deg, rgba(63, 128, 104, 0.18), transparent 56%),
    var(--paper) !important;
}

.price-grid a {
  align-self: end;
  margin-top: 1.4rem;
}

.booking-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 4rem clamp(1rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, var(--ink), #26332e 62%, #334d43);
  color: var(--paper);
}

.booking-band h2 {
  color: var(--paper);
}

.booking-band .button {
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
  color: var(--paper);
}

.booking-band .button--primary {
  border-color: var(--paper) !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
}

.section--contact {
  background: var(--bg);
}

.contact-facts {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0 0;
}

.contact-facts div {
  display: grid;
  gap: 0.22rem;
  padding: 0 0 0.85rem;
  border-bottom: 1px solid var(--line);
}

.contact-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.contact-facts a:hover,
.contact-facts a:focus-visible,
footer a:hover,
footer a:focus-visible {
  color: var(--green);
  outline: none;
}

.maps-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  transition:
    background 170ms ease,
    color 170ms ease,
    transform 170ms ease;
}

.maps-link:hover,
.maps-link:focus-visible {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.contact-form {
  display: grid;
  gap: 1.05rem;
  padding: 1.35rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  color: var(--ink);
  padding: 0.8rem 0.9rem;
}

.contact-form textarea {
  min-height: 7.6rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  outline: 2px solid rgba(63, 128, 104, 0.18);
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  white-space: pre-wrap;
}

footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem clamp(1rem, 5vw, 4.5rem);
  background: var(--ink);
  color: var(--paper);
}

footer span {
  font-weight: 900;
}

footer a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 780;
}

.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(1.1rem);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

@keyframes panel-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.55rem);
  }
}

@keyframes line-slide {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0.7rem -0.15rem;
  }
}

@keyframes tile-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes sweep {
  0%,
  100% {
    transform: translateX(-10%) rotate(0deg);
  }
  50% {
    transform: translateX(10%) rotate(3deg);
  }
}

@keyframes scan {
  0%,
  100% {
    transform: translateY(-110%);
    opacity: 0.12;
  }
  45%,
  55% {
    opacity: 0.75;
  }
  50% {
    transform: translateY(265%);
  }
}

@keyframes corner-breathe {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.06) rotate(4deg);
  }
}

@keyframes kinetic-slide {
  0% {
    translate: 0 0;
  }
  100% {
    translate: calc(100vw + 28rem) 0;
  }
}

@keyframes ribbon-drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.42rem);
  }
}

@keyframes title-pop {
  0%,
  100% {
    transform: translateX(0) skewX(0deg);
  }
  42% {
    transform: translateX(0) skewX(0deg);
  }
  50% {
    transform: translateX(0.18em) skewX(-4deg);
  }
  58% {
    transform: translateX(0) skewX(0deg);
  }
}

@keyframes word-swap {
  0% {
    opacity: 0;
    transform: translateY(0.8em);
  }
  8%,
  28% {
    opacity: 1;
    transform: translateY(0);
  }
  36%,
  100% {
    opacity: 0;
    transform: translateY(-0.8em);
  }
}

@keyframes orbit-drift {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }
  50% {
    translate: 0.7rem -0.9rem;
    rotate: 8deg;
  }
}

@keyframes mark-spin {
  to {
    rotate: 360deg;
  }
}

@keyframes stage-wave {
  0%,
  100% {
    transform: translateX(0) scaleY(1);
  }
  50% {
    transform: translateX(1.4rem) scaleY(1.16);
  }
}

@keyframes wave-flow {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5%);
  }
}

@keyframes ambient-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.46;
  }
  50% {
    transform: translate3d(1rem, -1.4rem, 0) scale(1.32);
    opacity: 0.9;
  }
}

@keyframes ripple-pop {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(22);
  }
}

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

  @media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .hero,
  .section--split,
  .pricing {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4.4rem;
  }

  h1 {
    font-size: 4.3rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  .hero__lead {
    max-width: 48rem;
  }

  .word-cycle {
    width: 11.8ch;
  }

  .stage-shell {
    min-height: 28rem;
  }

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

  .booking-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .top-nav {
    width: 100%;
  }

  .top-nav a {
    flex: 1 1 auto;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero__lead {
    font-size: 1.12rem;
    row-gap: 0.62rem;
  }

  .word-cycle {
    width: 100%;
    max-width: 12.5rem;
    height: 2.2rem;
    justify-self: start;
  }

  .stage-shell {
    min-height: 23rem;
  }

  .experience-grid,
  .gallery-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .experience-card,
  .gallery-grid article {
    min-height: 16rem;
  }

  .actions,
  .form-actions {
    flex-direction: column;
  }

  .button,
  .price-grid a {
    width: 100%;
  }
}
