:root {
  --ink: #16201f;
  --muted: #61706d;
  --paper: #f7f3ec;
  --surface: #fffaf2;
  --line: rgba(22, 32, 31, 0.13);
  --teal: #0b6f68;
  --mint: #b9ded3;
  --coral: #ec765f;
  --gold: #d8a642;
  --shadow: 0 24px 80px rgba(22, 32, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(185, 222, 211, 0.55), transparent 28rem),
    linear-gradient(180deg, #fffaf2 0%, #f7f3ec 48%, #eef6f3 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(22, 32, 31, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 32, 31, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 82%);
  z-index: -1;
}

body.home-page {
  background:
    linear-gradient(180deg, #eaf5fb 0%, #f7f1ea 42%, #fffaf2 100%);
}

body.home-page::before {
  background-image: none;
}

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

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

.cursor-light {
  position: fixed;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(236, 118, 95, 0.14);
  filter: blur(34px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.65rem 0.7rem;
  border: 1px solid rgba(22, 32, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 46px rgba(22, 32, 31, 0.08);
}

.brand,
.nav-links,
.hero-actions,
.hero-stats,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.55rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.65rem;
  background: var(--ink);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.nav-links {
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.header-cta,
.button {
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.header-cta {
  padding: 0.75rem 1rem;
  color: white;
  background: var(--teal);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.86);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.12rem;
  height: 2px;
  grid-area: 1 / 1;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-0.36rem);
}

.nav-toggle span:last-child {
  transform: translateY(0.36rem);
}

.site-header.nav-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.section-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 1.08fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 5.5rem);
  padding: 4.5rem 0 3rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.25rem, 9vw, 6.9rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 39rem;
  color: #40504d;
  font-size: 1.13rem;
  line-height: 1.75;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.2rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: var(--ink);
  box-shadow: 0 14px 36px rgba(22, 32, 31, 0.18);
}

.button.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.72);
}

.hero-stats {
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-stats span {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.68);
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-stats strong {
  color: var(--ink);
}

.hero-visual {
  position: relative;
  perspective: 1000px;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 2rem;
  box-shadow: var(--shadow);
  transform: rotateX(2deg) rotateY(-5deg);
  animation: floatFrame 6s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 0.2rem;
  min-width: 7rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  background: rgba(255, 250, 242, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 44px rgba(22, 32, 31, 0.14);
  animation: drift 5s ease-in-out infinite;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
}

.floating-card strong {
  font-size: 1.45rem;
}

.card-one {
  top: 12%;
  left: -1.5rem;
}

.card-two {
  right: -1rem;
  bottom: 16%;
  animation-delay: -1.8s;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(22, 32, 31, 0.92);
  color: #fffaf2;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 1rem 0;
  animation: marquee 22s linear infinite;
}

.marquee span {
  font-weight: 800;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  padding: 7rem 0;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-title {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.feature-grid,
.pricing-panel,
.process-line,
.route-grid,
.service-list {
  display: grid;
  gap: 1rem;
}

.feature,
.route-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 250, 242, 0.72);
}

.route-card {
  color: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.route-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(22, 32, 31, 0.11);
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 1.4rem;
  color: var(--coral);
  font-weight: 900;
}

.feature h3,
.price-card h3,
.process-step h3 {
  margin-bottom: 0.5rem;
}

.feature p,
.price-card li,
.process-step p,
.template-copy p,
.contact-card p {
  color: var(--muted);
  line-height: 1.65;
}

.comparison {
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 250, 242, 0.76);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1.4fr;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-head {
  color: var(--ink);
  background: rgba(185, 222, 211, 0.36);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison strong {
  color: var(--ink);
}

.pricing-tabs {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.35rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
}

.tab-button {
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1rem;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tab-button.active {
  color: white;
  background: var(--teal);
}

.pricing-panel {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.pricing-panel.active {
  display: grid;
}

.price-card {
  position: relative;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 250, 242, 0.82);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(22, 32, 31, 0.12);
}

.price-card.highlighted {
  border-color: rgba(11, 111, 104, 0.45);
  background: #ffffff;
}

.badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  font-size: 0.76rem;
  font-weight: 900;
}

.price {
  margin-bottom: 1.2rem;
  font-size: 2rem;
  font-weight: 900;
}

.price-card ul {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0 0 1.2rem;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.4rem;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--coral);
}

.template-market {
  padding-bottom: 2rem;
}

.sale-template {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  gap: 2rem;
  align-items: stretch;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 24px 80px rgba(22, 32, 31, 0.1);
}

.section-heading + .sale-template {
  margin-top: 0;
}

.sale-template__preview {
  overflow: hidden;
  min-height: 29rem;
  border: 1px solid rgba(22, 32, 31, 0.14);
  border-radius: 0.5rem;
  background: #111817;
}

.browser-bar {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  height: 2.25rem;
  padding: 0 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #16201f;
}

.browser-bar span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.48);
}

.browser-bar span:first-child {
  background: var(--coral);
}

.browser-bar span:nth-child(2) {
  background: var(--gold);
}

.browser-bar span:nth-child(3) {
  background: var(--mint);
}

.sale-template iframe {
  width: 100%;
  height: calc(100% - 2.25rem);
  min-height: 26.75rem;
  border: 0;
  background: #111817;
}

.sale-template__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}

.sale-template__copy h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.sale-template__copy p {
  color: var(--muted);
  line-height: 1.65;
}

.sale-template__meta {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0 1.5rem;
}

.sale-template__meta span {
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
}

.sale-template__meta strong {
  color: var(--ink);
}

.sale-template__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.template-section {
  margin: 7rem 0;
  background: var(--ink);
  color: var(--surface);
}

.standalone-template {
  margin-top: 0;
}

.template-inner {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
}

.template-copy p {
  color: rgba(255, 250, 242, 0.74);
}

.template-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.template-prices span {
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 999px;
}

.template-stack {
  display: grid;
  gap: 1rem;
}

.template-stack article {
  min-height: 8rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(255, 250, 242, 0.13), rgba(185, 222, 211, 0.08));
  transform: rotate(-2deg);
}

.template-stack article:nth-child(2) {
  transform: rotate(2deg) translateX(1.5rem);
}

.template-stack article:nth-child(3) {
  transform: rotate(-1deg) translateX(0.5rem);
}

.template-stack span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-weight: 900;
}

.template-stack strong {
  font-size: 1.6rem;
}

.process-section {
  padding-bottom: 6rem;
}

.process-line {
  grid-template-columns: repeat(3, 1fr);
}

.process-step {
  padding: 1.35rem;
  border-top: 3px solid var(--teal);
  background: rgba(255, 250, 242, 0.58);
}

.process-step span {
  display: inline-flex;
  margin-bottom: 2.5rem;
  color: var(--coral);
  font-weight: 900;
}

.contact-section {
  padding-bottom: 3rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: 0.5rem;
  color: white;
  background: linear-gradient(135deg, #0b6f68 0%, #16201f 72%);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-info {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.2rem;
  color: white;
  font-size: 1rem;
  font-weight: 800;
}

.contact-info a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0.5rem;
  padding: 0.9rem;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.contact-form select {
  appearance: none;
}

.contact-form .button {
  width: fit-content;
  color: var(--ink);
  background: var(--surface);
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.site-footer {
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  color: var(--muted);
}

.page-hero {
  padding: 5.5rem 0 3rem;
}

.page-hero h1 {
  max-width: 12ch;
}

.home-proof {
  padding-bottom: 6rem;
}

.seo-content {
  padding: 0 0 6rem;
}

.seo-copy {
  display: grid;
  gap: 1rem;
  max-width: 56rem;
  margin-bottom: 1.5rem;
}

.seo-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.seo-process {
  grid-template-columns: repeat(3, 1fr);
}

.faq-section {
  padding-bottom: 6rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 250, 242, 0.72);
}

.faq-item h3 {
  margin-bottom: 0.6rem;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.studio-hero {
  min-height: calc(100vh - 5.5rem);
  padding: 7rem 0 3rem;
  text-align: center;
}

.studio-hero .eyebrow {
  color: #293331;
}

.studio-title {
  max-width: 12ch;
  margin: 0 auto;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.inline-work-tiles {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(7.6rem, 16vw, 15rem);
  height: clamp(3.2rem, 6vw, 5.6rem);
  margin: 0 0.08em;
  opacity: var(--morph-tiles-opacity, 1);
  vertical-align: 0.03em;
  transition: opacity 120ms linear;
}

.inline-work-tiles img {
  width: clamp(4.4rem, 8vw, 7.2rem);
  height: clamp(3.1rem, 5.6vw, 5rem);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 0.6rem;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(22, 32, 31, 0.14);
}

.inline-work-tiles img + img {
  margin-left: clamp(-3.2rem, -4vw, -1.6rem);
}

.inline-work-tiles img:nth-child(1) {
  transform: rotate(-5deg);
}

.inline-work-tiles img:nth-child(2) {
  transform: translateY(-0.18em);
}

.inline-work-tiles img:nth-child(3) {
  transform: rotate(5deg);
}

.inline-work-tiles img:nth-child(4) {
  transform: rotate(8deg) translateY(0.14em);
}

.inline-tile {
  display: inline-grid;
  place-items: center;
  width: clamp(4.2rem, 8vw, 7rem);
  height: clamp(3.4rem, 6vw, 5.6rem);
  margin: 0 0.1em;
  vertical-align: 0.04em;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 0.6rem;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(22, 32, 31, 0.12);
}

.inline-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-coral {
  background: var(--coral);
}

.scribble-arrow {
  display: inline-block;
  width: clamp(4rem, 9vw, 8rem);
  height: clamp(1.7rem, 4vw, 3rem);
  margin: 0 0.02em;
  vertical-align: 0.05em;
  background:
    radial-gradient(ellipse at 34% 58%, transparent 43%, #d17845 45% 51%, transparent 53%),
    linear-gradient(24deg, transparent 38%, #d17845 40% 45%, transparent 47%),
    linear-gradient(-26deg, transparent 50%, #d17845 52% 57%, transparent 59%);
  background-repeat: no-repeat;
}

.studio-hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100%, 58rem);
  margin: 3rem auto 0;
  text-align: left;
}

.studio-hero-bottom p {
  max-width: 35rem;
  margin-bottom: 0;
  color: #41504d;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-stack {
  position: relative;
  min-height: 220vh;
  background:
    linear-gradient(180deg, rgba(234, 245, 251, 0) 0%, rgba(247, 241, 234, 0.9) 62%, rgba(255, 250, 242, 0) 100%);
}

.home-page .hero-stack + .hero {
  padding-top: clamp(4rem, 8vw, 6rem);
}

.intro {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 5.5rem);
  padding: 5.5rem 0 3rem;
  text-align: center;
}

.morph-hero-copy .eyebrow {
  color: #293331;
}

.hero-reel {
  opacity: var(--hero-reel-opacity, 1);
}

.reel-full {
  min-height: 100vh;
  padding: 5.5rem 0 3rem;
}

.reel-full__card {
  width: 100%;
  height: min(72vh, 44rem);
  border-radius: 0.72rem;
}

.reel-morph {
  position: fixed;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  opacity: var(--reel-morph-opacity, 0);
  perspective: 1200px;
}

.reel-morph__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.webgl-reel .morph-frame {
  display: none;
}

.morph-frame {
  --morph-width: 16rem;
  --morph-height: 10rem;
  --morph-radius: 0.65rem;
  --morph-left: 50%;
  --morph-top: 50%;
  --morph-rotate: 0deg;
  --morph-tilt: 0deg;
  --morph-lift: 0px;
  --morph-wobble: 0px;
  position: absolute;
  left: var(--morph-left);
  top: var(--morph-top);
  width: var(--morph-width);
  height: var(--morph-height);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--morph-radius);
  background: var(--ink);
  box-shadow: 0 28px 90px rgba(22, 32, 31, 0.22);
  pointer-events: none;
  transform:
    translate3d(var(--morph-wobble), var(--morph-lift), 0)
    rotate(var(--morph-rotate))
    rotateX(var(--morph-tilt));
  transform-origin: 50% 50%;
  will-change: left, top, width, height, border-radius, transform;
}

.morph-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 520ms ease, transform 1200ms ease;
}

.morph-image.active {
  opacity: 1;
  transform: scale(1);
}

.studio-showcase {
  position: relative;
  overflow: hidden;
  min-height: 33rem;
  border-radius: 0.7rem;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.studio-showcase img {
  width: 100%;
  height: min(68vh, 42rem);
  object-fit: cover;
  opacity: 0.6;
  filter: saturate(0.85) contrast(1.05);
}

.showcase-caption {
  position: absolute;
  left: clamp(1.2rem, 4vw, 3rem);
  bottom: clamp(1.2rem, 4vw, 3rem);
  display: grid;
  gap: 0.6rem;
  color: white;
}

.showcase-caption span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.showcase-caption strong {
  max-width: 12ch;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 0.9;
}

.studio-services {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  padding: 7rem 0;
}

.studio-section-head h2 {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.92;
}

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

.studio-service {
  display: grid;
  grid-template-columns: 4rem minmax(10rem, 0.8fr) 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
}

.studio-service span {
  color: var(--coral);
  font-weight: 900;
}

.studio-service strong {
  font-size: 1.35rem;
}

.studio-service p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.studio-work {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  padding-bottom: 7rem;
}

.work-card {
  display: grid;
  align-content: space-between;
  min-height: 26rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-radius: 0.7rem;
}

.work-card.dark {
  color: white;
  background:
    linear-gradient(rgba(22, 32, 31, 0.68), rgba(22, 32, 31, 0.86)),
    url("assets/ansel-hero.png") center / cover;
}

.work-card.light {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.82);
}

.work-card span {
  font-weight: 900;
  color: var(--coral);
}

.work-card h2 {
  max-width: 10ch;
  margin: 6rem 0 1.4rem;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.94;
}

.work-card a {
  width: fit-content;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

.home-entry {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.65fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 5.5rem);
  padding: 4.5rem 0 3rem;
}

.home-entry-copy h1 {
  max-width: 10ch;
}

.home-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.home-entry-logo {
  display: grid;
  place-items: center;
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px solid rgba(22, 32, 31, 0.12);
  border-radius: 0.5rem;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: var(--shadow);
}

.home-entry-logo img {
  width: min(100%, 18rem);
}

.home-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-bottom: 6rem;
}

.home-link-grid h2 {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

.three-columns {
  grid-template-columns: repeat(3, 1fr);
}

.service-list {
  padding-bottom: 6rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1.25rem;
  align-items: start;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 250, 242, 0.78);
}

.service-detail h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.service-detail p {
  color: var(--muted);
  line-height: 1.65;
}

.service-detail ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.card-action {
  width: 100%;
  margin-top: auto;
}

.contact-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: flex-end;
}

.button.light {
  color: white;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatFrame {
  0%,
  100% {
    transform: rotateX(2deg) rotateY(-5deg) translateY(0);
  }
  50% {
    transform: rotateX(3deg) rotateY(-3deg) translateY(-14px);
  }
}

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

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

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    width: min(100% - 1rem, 42rem);
    margin-top: 0.5rem;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0.45rem;
    border: 1px solid rgba(22, 32, 31, 0.12);
    border-radius: 1rem;
    background: rgba(255, 250, 242, 0.96);
    box-shadow: 0 22px 58px rgba(22, 32, 31, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.4rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links a {
    min-height: 2.95rem;
    padding: 0.9rem 1rem;
    border-radius: 0.65rem;
    color: var(--ink);
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(185, 222, 211, 0.32);
  }

  .nav-toggle {
    display: grid;
  }

  .site-header.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .studio-services,
  .studio-work,
  .home-entry,
  .split-section,
  .sale-template,
  .template-inner,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    display: grid;
    justify-items: start;
  }

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

  .studio-hero-bottom {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .studio-service {
    grid-template-columns: 3rem 1fr;
  }

  .studio-service p {
    grid-column: 2;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-visual img {
    aspect-ratio: 4 / 3;
    transform: none;
  }

  .comparison {
    border-radius: 0.5rem;
  }

  .comparison-row {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-tabs {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pricing-tabs::-webkit-scrollbar {
    display: none;
  }

  .pricing-panel,
  .process-line,
  .home-link-grid,
  .three-columns,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .split-section,
  .studio-services {
    padding: 5rem 0;
  }

  .seo-content,
  .faq-section,
  .home-proof,
  .service-list,
  .home-link-grid {
    padding-bottom: 5rem;
  }

  .service-detail .button {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  body {
    background:
      radial-gradient(circle at 18% 4%, rgba(185, 222, 211, 0.42), transparent 18rem),
      linear-gradient(180deg, #fffaf2 0%, #f7f3ec 54%, #eef6f3 100%);
  }

  body::before,
  .cursor-light {
    display: none;
  }

  .site-header {
    width: calc(100% - 1rem);
    border-radius: 1rem;
    padding: 0.55rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 2.05rem;
    height: 2.05rem;
    border-radius: 0.55rem;
  }

  .header-cta {
    display: none;
  }

  .section-shell {
    width: min(100% - 1.25rem, 1120px);
  }

  .hero {
    gap: 1.65rem;
    padding-top: 2.25rem;
    padding-bottom: 3rem;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 11.5vw, 3.35rem);
    line-height: 0.96;
  }

  .hero-lead,
  .seo-copy p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .section-title {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
    line-height: 1.02;
  }

  .studio-title {
    max-width: 10.5ch;
    font-size: clamp(2.85rem, 13vw, 4.15rem);
    line-height: 0.91;
  }

  .studio-showcase {
    min-height: 24rem;
    border-radius: 0.5rem;
  }

  .studio-showcase img {
    height: 28rem;
  }

  .inline-work-tiles {
    display: flex !important;
    width: clamp(6rem, 36vw, 8.4rem);
    height: clamp(2.85rem, 15vw, 3.7rem);
    margin: 0.08em auto 0.02em;
    vertical-align: initial;
  }

  .studio-title .inline-work-tiles {
    display: flex !important;
  }

  .inline-work-tiles img {
    width: clamp(3.5rem, 20vw, 4.5rem);
    height: clamp(2.55rem, 14vw, 3.35rem);
    border-width: 1px;
  }

  .hero-stack {
    min-height: 170svh;
    margin-bottom: 0.75rem;
  }

  .intro {
    min-height: calc(88svh - 4.5rem);
    padding-top: 3.75rem;
    padding-bottom: 2.5rem;
  }

  .studio-hero-bottom {
    gap: 1.35rem;
    margin-top: 2rem;
  }

  .studio-hero-bottom .button,
  .hero-actions .button,
  .contact-shortcuts .button {
    width: 100%;
  }

  .reel-full {
    min-height: 70svh;
    padding: 3rem 0 2rem;
  }

  .reel-full__card {
    height: min(58svh, 31rem);
  }

  .studio-services {
    padding: 4rem 0;
  }

  .studio-service {
    grid-template-columns: 2.25rem 1fr;
    gap: 0.8rem;
  }

  .studio-service strong {
    font-size: 1.18rem;
  }

  .studio-section-head h2,
  .work-card h2 {
    max-width: 12ch;
  }

  .floating-card {
    position: static;
    margin-top: 1rem;
    min-width: 0;
    width: fit-content;
    padding: 0.72rem 0.85rem;
  }

  .card-one,
  .card-two {
    display: inline-grid;
    margin-right: 0.5rem;
  }

  .hero-stats {
    gap: 0.85rem;
    margin-top: 1.4rem;
  }

  .hero-stats span {
    width: 100%;
    line-height: 1.45;
  }

  .home-page .hero-stack + .hero {
    padding-top: 3.25rem;
  }

  .pricing-tabs {
    display: grid;
    width: 100%;
    border-radius: 0.5rem;
  }

  .tab-button {
    border-radius: 0.35rem;
    min-height: 2.85rem;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 1rem 0.95rem;
  }

  .comparison-head {
    display: none;
  }

  .template-section {
    margin: 4rem 0;
  }

  .feature,
  .route-card,
  .faq-item,
  .price-card,
  .process-step,
  .service-detail {
    padding: 1.05rem;
  }

  .split-section,
  .studio-services {
    gap: 1.6rem;
    padding: 3.5rem 0;
  }

  .seo-content,
  .faq-section,
  .home-proof,
  .service-list,
  .home-link-grid,
  .process-section {
    padding-bottom: 3.5rem;
  }

  .contact-card {
    gap: 1.25rem;
  }

  .template-market {
    padding-bottom: 0;
  }

  .sale-template {
    padding: 0.7rem;
  }

  .sale-template__preview {
    min-height: 22rem;
  }

  .sale-template iframe {
    min-height: 19.75rem;
  }

  .sale-template__copy {
    padding: 0.3rem;
  }

  .sale-template__actions .button {
    width: 100%;
  }

  .template-stack article,
  .template-stack article:nth-child(2),
  .template-stack article:nth-child(3) {
    transform: none;
  }

  .contact-card {
    padding: 1.2rem;
  }

  .contact-card h2 {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
  }

  .page-hero {
    padding-top: 2.75rem;
    padding-bottom: 2.25rem;
  }

  .contact-shortcuts {
    justify-content: flex-start;
  }

  .site-footer {
    display: grid;
    width: min(100% - 1.25rem, 1120px);
    padding-bottom: 1.35rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 390px) {
  .section-shell {
    width: min(100% - 1rem, 1120px);
  }

  .site-header {
    width: calc(100% - 0.75rem);
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 2.85rem);
  }

  .studio-title {
    font-size: clamp(2.55rem, 12.5vw, 3.35rem);
  }

  .button {
    padding-inline: 1rem;
  }

  .inline-work-tiles {
    width: 5.6rem;
  }

  .inline-work-tiles img {
    width: 3.25rem;
  }
}

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