:root {
  --navy: #071521;
  --navy-soft: #102033;
  --ink: #111820;
  --muted: #5f6570;
  --gold: #bd8832;
  --gold-bright: #d8b26c;
  --champagne: #efe1c7;
  --ivory: #f8f3eb;
  --cream: #fffbf4;
  --wine: #6f2d2b;
  --sage: #6f7d67;
  --teal: #2d8881;
  --line: rgba(17, 24, 32, 0.12);
  --shadow: 0 24px 70px rgba(7, 21, 33, 0.16);
  --radius: 8px;
  --container: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(216, 178, 108, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--cream);
  color: var(--navy);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 24px;
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
}

.nav {
  width: min(100%, var(--container));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(255, 251, 244, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 251, 244, 0.9);
  box-shadow: 0 22px 70px rgba(7, 21, 33, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  width: 216px;
  min-height: 52px;
  display: grid;
  align-content: center;
  gap: 5px;
  overflow: hidden;
  flex: 0 0 auto;
  border-right: 1px solid rgba(7, 21, 33, 0.12);
  padding-right: 18px;
}

.brand-name {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 0.9;
  white-space: nowrap;
}

.brand-name span:last-child {
  color: var(--gold);
}

.brand-mark {
  width: 78px;
  height: 9px;
  display: block;
  margin-left: 58px;
  background:
    linear-gradient(var(--navy), var(--navy)) left 4px top 4px / 30px 1.5px no-repeat,
    radial-gradient(circle at center, var(--gold) 0 3px, transparent 3.5px),
    linear-gradient(var(--navy), var(--navy)) right 4px top 4px / 30px 1.5px no-repeat;
}

.nav-panel {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-panel > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 14px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-panel > a:hover {
  background: rgba(189, 136, 50, 0.11);
  transform: translateY(-1px);
}

.nav-cta {
  gap: 8px;
  margin-left: auto;
  background: var(--gold);
  color: #fff7e8;
  box-shadow: 0 12px 28px rgba(189, 136, 50, 0.28);
}

.nav-cta:hover {
  background: #a77327;
}

.icon-button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: rgba(7, 21, 33, 0.48);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled .icon-button {
  color: var(--navy);
  border-color: rgba(7, 21, 33, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: var(--navy);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(7, 21, 33, 0.92) 0%, rgba(7, 21, 33, 0.74) 42%, rgba(7, 21, 33, 0.32) 100%),
    url("assets/hero-restaurante.webp") center/cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(0deg, rgba(7, 21, 33, 0.98) 0%, rgba(7, 21, 33, 0.08) 36%, rgba(7, 21, 33, 0.42) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  min-height: 84svh;
  padding: 126px 0 54px;
}

.hero-copy {
  max-width: 760px;
}

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

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: 5.75rem;
  line-height: 0.94;
}

.hero-subtitle {
  max-width: 640px;
  color: rgba(255, 251, 244, 0.83);
  font-size: 1.14rem;
  line-height: 1.75;
}

.hero-signal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-signal span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 251, 244, 0.18);
  border-radius: 999px;
  color: rgba(255, 251, 244, 0.78);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-signal span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(216, 178, 108, 0.12);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 18px 36px rgba(189, 136, 50, 0.3);
}

.button-primary:hover {
  background: #a77327;
}

.button-secondary {
  border-color: rgba(255, 251, 244, 0.34);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(255, 251, 244, 0.6);
  background: rgba(255, 255, 255, 0.14);
}

.button-outline {
  width: 100%;
  color: var(--navy);
  border-color: rgba(7, 21, 33, 0.18);
  background: #ffffff;
}

.button-outline:hover {
  border-color: rgba(189, 136, 50, 0.42);
  box-shadow: 0 16px 34px rgba(7, 21, 33, 0.08);
}

.button-form {
  width: 100%;
  color: var(--cream);
  background: var(--navy);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 690px;
  margin: 42px 0 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-proof div {
  min-height: 82px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-proof dt {
  color: var(--gold-bright);
  font-weight: 800;
  font-size: 1.02rem;
}

.hero-proof dd {
  margin: 6px 0 0;
  color: rgba(255, 251, 244, 0.76);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-mockup {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: min(44vw, 540px);
  min-height: 382px;
}

.mockup-status {
  position: absolute;
  top: -17px;
  left: 22px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(7, 21, 33, 0.82);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 800;
}

.mockup-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #67c48d;
  box-shadow: 0 0 0 4px rgba(103, 196, 141, 0.15);
}

.desktop-frame {
  width: min(100%, 540px);
  min-height: 348px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fffaf2;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: #101922;
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.9;
}

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

.browser-bar span:nth-child(3) {
  background: #d96452;
}

.restaurant-page {
  padding: 18px;
}

.restaurant-hero {
  min-height: 180px;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(0deg, rgba(7, 21, 33, 0.76), rgba(7, 21, 33, 0.08)),
    url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1000&q=80") center/cover;
  color: #fffaf2;
}

.restaurant-hero p {
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-weight: 800;
  font-size: 0.88rem;
}

.restaurant-hero strong {
  max-width: 330px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.45rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.menu-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.menu-preview div {
  min-height: 82px;
  border: 1px solid rgba(7, 21, 33, 0.1);
  border-radius: var(--radius);
  padding: 14px;
  background: #fff;
}

.menu-preview span,
.menu-preview strong {
  display: block;
}

.menu-preview span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.menu-preview strong {
  margin-top: 8px;
  color: var(--navy);
  font-size: 0.9rem;
}

.phone-frame {
  position: absolute;
  right: clamp(8px, 6vw, 52px);
  bottom: -34px;
  width: 178px;
  height: 326px;
  border: 8px solid #07111c;
  border-radius: 30px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.phone-notch {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 56px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #07111c;
  z-index: 2;
}

.phone-screen {
  height: 100%;
  padding: 46px 18px 20px;
  color: var(--cream);
  background:
    linear-gradient(0deg, rgba(7, 21, 33, 0.88), rgba(7, 21, 33, 0.18)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=700&q=80") center/cover;
}

.phone-pill {
  display: inline-flex;
  margin-bottom: 78px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.17);
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 800;
}

.phone-screen h2 {
  margin-bottom: 14px;
  font-size: 1.55rem;
  line-height: 1;
}

.phone-screen .phone-button {
  display: grid;
  place-items: center;
  width: 100%;
  height: 39px;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--gold);
  font-weight: 800;
}

.value-strip {
  position: relative;
  z-index: 3;
  color: var(--cream);
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-strip-grid > div {
  min-height: 112px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.value-strip-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.value-strip-grid svg {
  width: 26px;
  color: var(--gold-bright);
}

.value-strip-grid p,
.value-strip-grid strong {
  display: block;
  margin: 0;
}

.value-strip-grid strong {
  margin-bottom: 4px;
  color: #fffaf2;
  font-size: 0.88rem;
}

.value-strip-grid p {
  color: rgba(255, 251, 244, 0.6);
  font-size: 0.76rem;
  line-height: 1.45;
}

section {
  scroll-margin-top: 110px;
}

.section-band {
  background: var(--ivory);
}

.problem,
.services,
.process,
.benefits {
  padding: clamp(72px, 10vw, 128px) 0;
}

.problem {
  position: relative;
  overflow: hidden;
  padding-top: clamp(58px, 7vw, 92px);
  background:
    linear-gradient(180deg, var(--ivory) 0%, #fff8ef 100%);
}

.problem .reveal {
  opacity: 1;
  transform: none;
}

.problem::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189, 136, 50, 0.42), transparent);
}

.problem-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.problem-copy {
  max-width: 630px;
}

.problem-copy h2 {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.35rem;
  line-height: 0.98;
  margin-bottom: 24px;
}

.problem-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

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

.problem-points article {
  min-height: 218px;
  padding: 22px;
  border: 1px solid rgba(7, 21, 33, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 45px rgba(7, 21, 33, 0.07);
}

.problem-points svg {
  width: 30px;
  height: 30px;
  margin-bottom: 22px;
  color: var(--gold);
}

.problem-points h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.35;
}

.problem-points p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.problem-showcase {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}

.problem-showcase > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 21, 33, 0.84), rgba(7, 21, 33, 0.1) 54%, rgba(7, 21, 33, 0.34)),
    linear-gradient(90deg, rgba(7, 21, 33, 0.55), transparent 56%);
}

.audit-card,
.audit-strip {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 251, 244, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.audit-card-main {
  left: 24px;
  right: 24px;
  bottom: 104px;
  padding: 24px;
}

.audit-card-main p {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.audit-card-main strong {
  display: block;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.audit-card-main span {
  display: block;
  max-width: 430px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.audit-card-small {
  top: 28px;
  right: 28px;
  width: min(260px, calc(100% - 56px));
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
}

.audit-card-small svg {
  color: var(--wine);
}

.audit-card-small strong {
  color: var(--navy);
  font-size: 0.94rem;
  line-height: 1.35;
}

.audit-strip {
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.audit-strip div {
  min-height: 62px;
  padding: 14px 18px;
  background: rgba(7, 21, 33, 0.88);
}

.audit-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.audit-strip strong,
.audit-strip span {
  display: block;
}

.audit-strip strong {
  color: var(--gold-bright);
  font-size: 1.18rem;
}

.audit-strip span {
  margin-top: 3px;
  color: rgba(255, 251, 244, 0.76);
  font-size: 0.78rem;
  line-height: 1.35;
}

.solution,
.packages,
.portfolio,
.final-cta {
  padding: clamp(78px, 11vw, 138px) 0;
}

.two-column,
.solution-grid,
.benefits-layout,
.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.cta-copy h2 {
  color: var(--navy);
  font-size: 4.35rem;
  line-height: 0.98;
  margin-bottom: 22px;
}

.section-copy p,
.text-stack p,
.cta-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.text-stack {
  border-left: 1px solid rgba(189, 136, 50, 0.32);
  padding-left: clamp(24px, 4vw, 48px);
}

.text-stack p:last-child,
.section-copy p:last-child {
  margin-bottom: 0;
}

.solution {
  background: var(--cream);
}

.solution-visual {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.solution-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.solution-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 33, 0.02), rgba(7, 21, 33, 0.48));
  pointer-events: none;
}

.solution-note {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(255, 251, 244, 0.92);
  box-shadow: 0 24px 60px rgba(7, 21, 33, 0.22);
  backdrop-filter: blur(14px);
}

.solution-note svg {
  color: var(--gold);
}

.solution-note strong,
.solution-note span {
  display: block;
}

.solution-note strong {
  font-size: 0.9rem;
}

.solution-note span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

.solution-note-top {
  top: 24px;
  right: 24px;
}

.solution-note-bottom {
  left: 24px;
  bottom: 24px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
}

.check-list svg {
  color: var(--gold);
}

.section-heading {
  position: relative;
  max-width: 780px;
  margin-bottom: clamp(34px, 6vw, 58px);
}

.section-heading::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--gold), rgba(189, 136, 50, 0.08));
}

.section-heading > p:not(.eyebrow) {
  max-width: 660px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 224px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 136, 50, 0.32);
  box-shadow: 0 20px 44px rgba(7, 21, 33, 0.08);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:nth-child(3n + 2)::after {
  background: var(--teal);
}

.service-card:nth-child(3n) > svg {
  color: var(--teal);
}

.service-card > svg,
.benefit-item > svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
}

.service-card h3 {
  min-height: 54px;
  margin: 22px 0 12px;
  color: var(--navy);
  font-size: 1.05rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.packages {
  background:
    linear-gradient(180deg, var(--cream) 0%, #ffffff 45%, var(--cream) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 2fr);
  align-items: stretch;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(9, 35, 53, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 48px rgba(7, 21, 33, 0.06);
}

.package-start-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  color: #fffaf2;
  background: var(--navy);
}

.package-start-price span {
  margin-bottom: 6px;
  color: rgba(255, 251, 244, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-start-price strong {
  color: var(--gold-bright);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.package-included {
  padding: 24px 28px;
}

.package-included > p {
  margin-bottom: 14px;
  color: var(--navy);
  font-weight: 800;
}

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

.package-included li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.package-included li svg {
  width: 18px;
  flex: 0 0 18px;
  color: var(--gold);
}

.package-included small {
  margin-left: auto;
  color: var(--gold);
  font-weight: 800;
}

.price-card {
  position: relative;
  min-height: 470px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 48px rgba(7, 21, 33, 0.06);
}

.price-card.featured {
  color: #fffaf2;
  background:
    linear-gradient(180deg, rgba(111, 45, 43, 0.25), rgba(111, 45, 43, 0) 34%),
    var(--navy);
  border-color: rgba(216, 178, 108, 0.48);
  box-shadow: 0 28px 80px rgba(7, 21, 33, 0.24);
}

.recommended {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(216, 178, 108, 0.16);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
}

.package-kicker {
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.package-card-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  margin-bottom: 18px;
  padding-right: 2px;
}

.featured .package-card-head {
  padding-right: 112px;
}

.featured .package-kicker {
  color: var(--gold-bright);
}

.price-card h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.05;
}

.featured h3 {
  color: #fffaf2;
}

.package-copy {
  color: var(--muted);
  line-height: 1.7;
}

.featured .package-copy {
  color: rgba(255, 251, 244, 0.72);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.price strong {
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
}

.featured .price {
  color: rgba(255, 251, 244, 0.7);
}

.featured .price strong {
  color: var(--gold-bright);
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  line-height: 1.45;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.featured li {
  color: rgba(255, 251, 244, 0.88);
}

.price-card .button {
  margin-top: auto;
}

.custom-packages {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.custom-package {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 26px 28px;
  border: 1px solid rgba(41, 135, 129, 0.38);
  border-top: 7px solid #2d8881;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 48px rgba(7, 21, 33, 0.06);
}

.custom-package-dark {
  color: #fffaf2;
  border: 0;
  background: var(--navy);
}

.custom-package-number {
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  background: #2d8881;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.custom-package-dark .custom-package-number {
  color: var(--navy);
  background: var(--gold-bright);
}

.custom-package h3 {
  margin-bottom: 6px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
}

.custom-package p {
  color: var(--muted);
  line-height: 1.55;
}

.custom-package-dark h3 {
  color: #fffaf2;
}

.custom-package-dark p {
  color: rgba(255, 251, 244, 0.72);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.timeline li {
  min-height: 272px;
  padding: 24px;
  border-left: 1px solid rgba(189, 136, 50, 0.36);
  background: rgba(255, 255, 255, 0.42);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 999px;
  color: #fff8e8;
  background: var(--gold);
  font-weight: 800;
}

.timeline h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.35;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.portfolio {
  background: var(--cream);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-card {
  position: relative;
  min-height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fffaf2;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.portfolio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 33, 0.08) 0%, rgba(7, 21, 33, 0.34) 42%, rgba(7, 21, 33, 0.9) 100%);
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px;
}

.portfolio-content p {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-content h3 {
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.72rem;
  line-height: 1;
}

.portfolio-content span {
  display: block;
  min-height: 66px;
  color: rgba(255, 251, 244, 0.78);
  line-height: 1.55;
  font-size: 0.92rem;
}

.portfolio-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--gold-bright);
  font-weight: 800;
}

.portfolio-content a svg {
  width: 17px;
  transition: transform 180ms ease;
}

.portfolio-content a:hover svg {
  transform: translate(2px, -2px);
}

.benefits {
  background:
    linear-gradient(180deg, var(--ivory), #fff8ef);
}

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

.benefit-item {
  min-height: 126px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 136, 129, 0.35);
  background: rgba(255, 255, 255, 0.96);
}

.benefit-item p {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.5;
}

.impact {
  padding: 34px 0;
  color: var(--cream);
  background: var(--cream);
}

.impact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 5vw, 62px);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, transparent 0 28px, rgba(255, 255, 255, 0.018) 28px 29px),
    var(--navy);
  box-shadow: var(--shadow);
}

.impact-shell::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold), var(--teal));
}

.impact-copy h2 {
  margin-bottom: 16px;
  color: #fffaf2;
  font-size: 3rem;
  line-height: 1;
}

.impact-copy > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 251, 244, 0.68);
  line-height: 1.75;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
}

.impact-metrics div {
  min-height: 168px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
}

.impact-metrics div:last-child {
  border-right: 0;
}

.impact-metrics dt {
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1;
}

.impact-metrics dd {
  margin: 0;
  color: rgba(255, 251, 244, 0.68);
  font-size: 0.82rem;
  line-height: 1.55;
}

.faq {
  padding: clamp(72px, 10vw, 128px) 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(7, 21, 33, 0.018) 119px 120px),
    var(--ivory);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 130px;
}

.faq-copy h2 {
  font-size: 3.7rem;
}

.faq-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(189, 136, 50, 0.5);
  color: var(--navy);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.faq-email svg {
  width: 19px;
  flex: 0 0 19px;
  color: var(--gold);
}

.faq-list {
  border-top: 1px solid rgba(7, 21, 33, 0.16);
}

.faq-list details {
  border-bottom: 1px solid rgba(7, 21, 33, 0.16);
}

.faq-list summary {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
  color: var(--navy);
  cursor: pointer;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 20px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-list details p {
  max-width: 620px;
  margin: -4px 0 24px;
  padding-right: 46px;
  color: var(--muted);
  line-height: 1.75;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(7, 21, 33, 0.94), rgba(7, 21, 33, 0.76)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1800&q=84") center/cover;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background: repeating-linear-gradient(135deg, transparent 0 34px, rgba(255, 255, 255, 0.16) 34px 35px);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.cta-copy h2,
.cta-copy p {
  color: #fffaf2;
}

.contact-assurances {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-assurances li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 251, 244, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-assurances svg {
  width: 18px;
  color: var(--gold-bright);
}

.cta-copy p {
  max-width: 600px;
  color: rgba(255, 251, 244, 0.76);
}

.contact-form {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 251, 244, 0.94);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.25);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(7, 21, 33, 0.12);
}

.form-heading > svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
}

.form-heading p,
.form-heading h3 {
  margin: 0;
}

.form-heading p {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-heading h3 {
  margin-top: 3px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
}

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

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
}

.form-row-full {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(7, 21, 33, 0.18);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--navy);
  background: #ffffff;
}

.form-row textarea {
  min-height: 108px;
  resize: vertical;
  padding-block: 13px;
  line-height: 1.55;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(189, 136, 50, 0.74);
  outline: none;
  box-shadow: 0 0 0 4px rgba(216, 178, 108, 0.16);
}

.form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 18px 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  line-height: 1.5;
}

.form-consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

.contact-form.is-success {
  border-color: rgba(45, 136, 129, 0.6);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.25), inset 0 4px 0 var(--teal);
}

.contact-form.is-success .form-note {
  color: #1f6f69;
  font-weight: 700;
}


@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .hero-mockup {
    perspective: 1200px;
    transform-style: preserve-3d;
    animation: heroDepthFloat 5.5s ease-in-out infinite alternate;
  }

  .desktop-frame {
    transform: rotateX(1.5deg) rotateY(-5deg) translateZ(8px);
    transform-origin: right center;
  }

  .phone-frame {
    transform: translateZ(72px) rotateY(-4deg);
  }

  .mockup-status {
    transform: translateZ(90px);
  }

  .solution-note {
    transform: translateZ(42px);
  }

  .tilt-surface {
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 160ms ease-out, box-shadow 220ms ease, border-color 220ms ease;
  }

  .tilt-surface.is-tilting {
    z-index: 4;
    border-color: rgba(216, 178, 108, 0.48);
    box-shadow: 0 30px 70px rgba(7, 21, 33, 0.2);
  }

  .tilt-glare {
    position: absolute;
    inset: 0;
    z-index: 5;
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(
      circle at var(--glare-x, 50%) var(--glare-y, 50%),
      rgba(255, 255, 255, 0.24),
      rgba(255, 255, 255, 0.06) 20%,
      transparent 48%
    );
    transition: opacity 180ms ease;
  }

  .tilt-surface.is-tilting .tilt-glare {
    opacity: 1;
  }

  @keyframes heroDepthFloat {
    from {
      transform: translateY(0) rotateZ(0deg);
    }
    to {
      transform: translateY(-8px) rotateZ(0.2deg);
    }
  }
}

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

.form-note a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background: #050e17;
  color: rgba(255, 251, 244, 0.72);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 0.7fr));
  gap: 38px;
}

.footer-brand img {
  width: min(260px, 100%);
  height: auto;
  aspect-ratio: 1060 / 320;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
  border-radius: 0;
}

.footer-brand p {
  max-width: 320px;
  line-height: 1.7;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--gold-bright);
  font-size: 0.88rem;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.86rem;
}

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

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

@media (max-width: 1080px) {
  .nav {
    gap: 10px;
  }

  .brand {
    width: 190px;
    padding-right: 14px;
  }

  .nav-panel > a {
    padding: 0 10px;
  }

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

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

  .value-strip-grid > div:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .value-strip-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

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

  .custom-package {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .custom-package .button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .price-card,
  .price-card.featured {
    min-height: auto;
    transform: none;
  }
}

@media (max-width: 920px) {
  section {
    scroll-margin-top: 84px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .icon-button {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 84px;
    display: grid;
    gap: 8px;
    padding: 16px;
    color: var(--navy);
    background: rgba(255, 251, 244, 0.97);
    border: 1px solid rgba(7, 21, 33, 0.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel > a {
    justify-content: flex-start;
    min-height: 48px;
  }

  .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .two-column,
  .problem-layout,
  .solution-grid,
  .benefits-layout,
  .cta-layout,
  .impact-shell,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 126px;
    min-height: auto;
  }

  h1 {
    font-size: 4.7rem;
  }

  .section-copy h2,
  .section-heading h2,
  .problem-copy h2,
  .cta-copy h2 {
    font-size: 3.35rem;
  }

  .problem-copy {
    max-width: 760px;
  }

  .problem-showcase {
    min-height: 460px;
  }

  .hero-mockup {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 390px;
    margin-top: 34px;
  }

  .desktop-frame {
    margin-left: 0;
    width: min(100%, 620px);
  }

  .phone-frame {
    right: 18px;
  }

  .text-stack {
    border-left: 0;
    padding-left: 0;
  }

  .faq-copy {
    position: static;
  }

  .impact-metrics {
    max-width: 680px;
  }

  .solution-visual,
  .solution-visual img {
    min-height: 380px;
  }

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

@media (max-width: 680px) {
  .container,
  .hero-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    width: 164px;
    min-height: 46px;
    padding-right: 0;
    border-right: 0;
  }

  .brand-name {
    font-size: 1.36rem;
    gap: 5px;
  }

  .brand-mark {
    width: 62px;
    margin-left: 45px;
    background:
      linear-gradient(var(--navy), var(--navy)) left 4px top 4px / 23px 1.5px no-repeat,
      radial-gradient(circle at center, var(--gold) 0 2.5px, transparent 3px),
      linear-gradient(var(--navy), var(--navy)) right 4px top 4px / 23px 1.5px no-repeat;
  }

  .nav {
    min-height: 62px;
    padding: 7px 8px;
  }

  h1 {
    font-size: 3.05rem;
    line-height: 0.98;
  }

  .hero-subtitle,
  .section-copy p,
  .text-stack p,
  .problem-copy > p,
  .cta-copy p {
    font-size: 0.98rem;
  }

  .hero-signal {
    gap: 7px;
  }

  .hero-signal span {
    font-size: 0.7rem;
  }

  .hero-inner {
    min-height: 78svh;
    padding: 94px 0 34px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-mockup {
    display: none;
  }

  .hero-proof {
    display: none;
  }

  .desktop-frame {
    min-height: 292px;
  }

  .restaurant-page {
    padding: 12px;
  }

  .restaurant-hero {
    min-height: 148px;
  }

  .restaurant-hero strong {
    font-size: 1.55rem;
  }

  .menu-preview {
    grid-template-columns: 1fr;
  }

  .menu-preview div:nth-child(3) {
    display: none;
  }

  .phone-frame {
    width: 140px;
    height: 256px;
    border-width: 6px;
    bottom: -24px;
  }

  .phone-screen {
    padding: 40px 14px 16px;
  }

  .phone-pill {
    margin-bottom: 44px;
  }

  .phone-screen h2 {
    font-size: 1.18rem;
  }

  .problem,
  .services,
  .process,
  .benefits,
  .solution,
  .packages,
  .portfolio,
  .final-cta {
    padding: 66px 0;
  }

  .value-strip-grid {
    grid-template-columns: 1fr;
  }

  .value-strip-grid > div,
  .value-strip-grid > div:first-child,
  .value-strip-grid > div:nth-child(2) {
    min-height: 94px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .value-strip-grid > div:last-child {
    border-bottom: 0;
  }

  .section-copy h2,
  .section-heading h2,
  .problem-copy h2,
  .cta-copy h2 {
    font-size: 2.55rem;
  }

  .solution-note {
    min-width: 0;
    width: calc(100% - 28px);
  }

  .solution-note-top {
    top: 14px;
    right: 14px;
  }

  .solution-note-bottom {
    left: 14px;
    bottom: 14px;
  }

  .impact {
    padding: 18px 0;
  }

  .impact-shell {
    gap: 28px;
    padding: 30px 22px;
  }

  .impact-copy h2 {
    font-size: 2.45rem;
  }

  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .impact-metrics div {
    min-height: 0;
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;
    gap: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .impact-metrics div:last-child {
    border-bottom: 0;
  }

  .impact-metrics dt {
    margin-bottom: 0;
    font-size: 1.75rem;
  }

  .faq-copy h2 {
    font-size: 2.55rem;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 1.08rem;
  }

  .faq-list details p {
    padding-right: 12px;
  }

  .form-fields {
    grid-template-columns: 1fr;
  }

  .form-row-full {
    grid-column: auto;
  }

  .package-intro {
    grid-template-columns: 1fr;
  }

  .package-start-price {
    padding: 24px;
  }

  .package-start-price strong {
    font-size: 2.7rem;
  }

  .package-included {
    padding: 22px;
  }

  .package-included ul {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 24px 22px;
  }

  .package-card-head,
  .featured .package-card-head {
    align-items: flex-start;
    padding-right: 0;
  }

  .featured .package-card-head {
    padding-top: 34px;
  }

  .price strong {
    font-size: 1.75rem;
  }

  .custom-package {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 22px;
  }

  .custom-package .button {
    grid-column: auto;
  }

  .custom-package-number {
    justify-self: start;
  }

  .problem-points {
    grid-template-columns: 1fr;
  }

  .problem-points article {
    min-height: auto;
  }

  .problem-showcase {
    min-height: 430px;
  }

  .audit-card-main {
    left: 14px;
    right: 14px;
    bottom: 100px;
    padding: 18px;
  }

  .audit-card-main strong {
    font-size: 1.72rem;
  }

  .audit-card-small {
    top: 14px;
    right: 14px;
    width: calc(100% - 28px);
  }

  .audit-strip {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .audit-strip div {
    padding: 12px;
  }

  .service-grid,
  .portfolio-grid,
  .benefit-list,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card,
  .price-card,
  .contact-form {
    padding: 22px;
  }

  .portfolio-card {
    min-height: 370px;
  }

  .portfolio-content span {
    min-height: auto;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* 2026 art direction: cinematic depth and scroll-led product story */
:root {
  --acid: #d9ff5f;
  --coral: #ff6b4a;
  --electric: #5eead4;
  --story-progress: 0;
  --hero-shift: 0px;
  --container: 1240px;
}

body {
  overflow-x: hidden;
  background: #f6f2ea;
}

::selection {
  color: #071521;
  background: var(--acid);
}

.site-header {
  mix-blend-mode: normal;
}

.nav {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(248, 243, 235, 0.86);
  box-shadow: 0 18px 60px rgba(3, 12, 18, 0.24);
}

.nav-cta {
  color: #071521;
  background: var(--acid);
  box-shadow: 0 12px 28px rgba(122, 148, 38, 0.28);
}

.nav-cta:hover,
.button-primary:hover {
  color: #071521;
  background: #c6ef47;
}

.hero {
  min-height: 100svh;
  isolation: isolate;
  align-items: stretch;
  background: #06111a;
}

.hero-media {
  inset: -5%;
  background: url("assets/hero-restaurante.webp") 58% center / cover no-repeat;
  filter: saturate(0.86) contrast(1.12);
  transform: scale(1.08) translate3d(0, var(--hero-shift), 0);
  will-change: transform;
}

.hero-overlay {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(3, 12, 18, 0.98) 0%, rgba(3, 12, 18, 0.9) 41%, rgba(3, 12, 18, 0.32) 72%, rgba(3, 12, 18, 0.56) 100%),
    linear-gradient(0deg, #06111a 0%, transparent 22%, rgba(3, 12, 18, 0.3) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-inner {
  z-index: 3;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 142px 0 90px;
}

.hero-copy {
  width: min(61%, 790px);
  max-width: none;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--acid);
}

.hero .eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(4.7rem, 7.2vw, 7.6rem);
  line-height: 0.84;
  text-wrap: balance;
}

.hero h1::first-line {
  color: #fffdf8;
}

.hero-subtitle {
  max-width: 590px;
  border-left: 2px solid var(--acid);
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-signal span {
  border-radius: 3px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(4, 14, 22, 0.46);
}

.hero-signal span::before {
  border-radius: 1px;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(217, 255, 95, 0.85);
}

.button-primary {
  color: #071521;
  background: var(--acid);
  box-shadow: 0 18px 40px rgba(130, 157, 42, 0.32);
}

.hero-proof {
  max-width: 650px;
  border-radius: 3px;
  transform: translateZ(30px);
}

.hero-proof dt {
  color: var(--acid);
}

.hero-mockup {
  right: -5%;
  bottom: 11%;
  width: min(43vw, 650px);
  min-height: 430px;
  transform-style: preserve-3d;
  perspective: 1300px;
}

.desktop-frame {
  width: 100%;
  max-width: 620px;
  min-height: 398px;
  border-radius: 5px;
  transform: rotateX(4deg) rotateY(-12deg) rotateZ(1deg) translateZ(22px);
  box-shadow: -20px 38px 90px rgba(0, 0, 0, 0.54);
}

.phone-frame {
  right: 2%;
  bottom: -44px;
  transform: translateZ(120px) rotateY(-9deg) rotateZ(2deg);
  box-shadow: -16px 34px 70px rgba(0, 0, 0, 0.55);
}

.mockup-status {
  top: -30px;
  left: 10%;
  color: #071521;
  background: var(--acid);
  border-color: transparent;
  transform: translateZ(140px) rotate(-2deg);
}

.mockup-status span {
  background: #0a664f;
}

.hero-depth {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.depth-ring {
  position: absolute;
  right: -12vw;
  top: 9vh;
  width: min(58vw, 840px);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 255, 95, 0.2);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(12deg);
}

.depth-ring-two {
  right: -3vw;
  top: 17vh;
  width: min(42vw, 610px);
  border-color: rgba(255, 255, 255, 0.16);
}

.depth-line {
  position: absolute;
  right: 8vw;
  top: 14%;
  width: 1px;
  height: 52%;
  background: rgba(255, 255, 255, 0.17);
}

.depth-index {
  position: absolute;
  right: 2vw;
  top: 43%;
  color: rgba(255, 255, 255, 0.16);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 9rem;
  line-height: 1;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 17px;
  color: var(--acid);
  animation: cueBounce 1.6s ease-in-out infinite;
}

@keyframes cueBounce {
  50% { transform: translateY(5px); }
}

.value-strip {
  position: relative;
  z-index: 6;
  margin-top: -1px;
  background: var(--acid);
  color: #071521;
  transform: rotate(-0.65deg) scale(1.015);
  transform-origin: center;
}

.value-strip-grid > div,
.value-strip-grid > div:first-child {
  border-color: rgba(7, 21, 33, 0.16);
}

.value-strip-grid svg,
.value-strip-grid p {
  color: #071521;
}

.section-band {
  background-color: #f3eee5;
}

.problem {
  padding-top: clamp(110px, 12vw, 170px);
}

.problem-copy h2,
.section-copy h2,
.section-heading h2,
.cta-copy h2 {
  font-size: clamp(3.7rem, 5.2vw, 5.8rem);
  line-height: 0.9;
  text-wrap: balance;
}

.problem-showcase,
.solution-visual {
  border-radius: 4px;
  transform: perspective(1200px) rotateY(-3deg);
  box-shadow: 30px 40px 90px rgba(7, 21, 33, 0.2);
}

.problem-showcase::before,
.solution-visual::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.solution-visual {
  transform: perspective(1200px) rotateY(3deg);
}

.audit-card,
.audit-strip,
.solution-note {
  border-radius: 4px;
}

.scroll-story {
  position: relative;
  height: 320vh;
  color: #fffaf2;
  background: #050d14;
}

.story-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.story-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.story-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.story-orbit {
  position: absolute;
  left: 60%;
  top: 50%;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 255, 95, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(66deg) rotateZ(calc(var(--story-progress) * 140deg));
}

.story-orbit-two {
  width: min(39vw, 560px);
  border-color: rgba(94, 234, 212, 0.16);
  transform: translate(-50%, -50%) rotateX(72deg) rotateZ(calc(var(--story-progress) * -180deg));
}

.story-axis {
  position: absolute;
  left: 60%;
  top: 50%;
  width: 1px;
  height: 130vh;
  background: rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%) rotate(calc(24deg + var(--story-progress) * 26deg));
}

.story-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
}

.story-copy {
  position: relative;
  z-index: 4;
}

.story-copy .eyebrow {
  color: var(--acid);
}

.story-copy h2 {
  margin-bottom: 38px;
  color: #fffaf2;
  font-size: clamp(4rem, 5.5vw, 6.6rem);
  line-height: 0.86;
  text-wrap: balance;
}

.story-steps {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.story-step {
  min-height: 106px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0.34;
  transform: translateX(0);
  transition: opacity 320ms ease, transform 320ms ease, background 320ms ease;
}

.story-step.is-active {
  opacity: 1;
  transform: translateX(12px);
}

.story-step > span {
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 800;
}

.story-step h3 {
  margin: 0 0 3px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.story-step p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  line-height: 1.55;
}

.story-stage {
  position: relative;
  min-height: 620px;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.story-device {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #f8f4ec;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.62);
  will-change: transform;
}

.story-desktop {
  left: 1%;
  top: 14%;
  width: min(46vw, 650px);
  height: 420px;
  transform: translate3d(calc(var(--story-progress) * -26px), calc(var(--story-progress) * -24px), 0) rotateX(calc(8deg - var(--story-progress) * 5deg)) rotateY(calc(-16deg + var(--story-progress) * 12deg)) rotateZ(calc(-2deg + var(--story-progress) * 2deg));
}

.story-browser {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.5);
  background: #0b151e;
  font-size: 0.66rem;
}

.story-browser i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.story-browser i:nth-child(2) { background: var(--acid); }
.story-browser i:nth-child(3) { background: var(--electric); }
.story-browser span { margin-left: 10px; }

.story-screen {
  position: relative;
  height: calc(100% - 42px);
  color: #fff;
}

.story-screen-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4, 13, 20, 0.88), rgba(4, 13, 20, 0.04) 72%),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1200&q=84") center / cover;
  transform: scale(calc(1.08 - var(--story-progress) * 0.06));
}

.story-screen-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 32px;
  transform: translateY(calc((1 - var(--story-progress)) * 18px));
}

.story-screen-copy small {
  display: block;
  margin-bottom: 9px;
  color: var(--acid);
  font-weight: 800;
}

.story-screen-copy strong {
  display: block;
  max-width: 430px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.8rem;
  line-height: 0.92;
}

.story-screen-copy > span {
  display: inline-flex;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 14px;
  font-size: 0.72rem;
  font-weight: 800;
}

.story-mobile {
  right: 0;
  bottom: 3%;
  z-index: 3;
  width: 210px;
  min-height: 410px;
  border: 8px solid #0b151e;
  border-radius: 28px;
  padding: 16px 14px 18px;
  color: #071521;
  transform: translate3d(calc((1 - var(--story-progress)) * 70px), calc((1 - var(--story-progress)) * 80px), 110px) rotateY(calc(12deg - var(--story-progress) * 9deg)) rotateZ(calc(6deg - var(--story-progress) * 4deg));
}

.story-mobile-top {
  width: 56px;
  height: 5px;
  margin: 0 auto 14px;
  border-radius: 99px;
  background: #0b151e;
}

.story-mobile-photo {
  height: 208px;
  margin-bottom: 18px;
  background: url("https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?auto=format&fit=crop&w=500&q=82") center / cover;
}

.story-mobile strong,
.story-mobile span,
.story-mobile b {
  display: block;
}

.story-mobile strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.38rem;
  line-height: 1;
}

.story-mobile span {
  margin-top: 8px;
  color: #677079;
  font-size: 0.68rem;
}

.story-mobile b {
  margin-top: 18px;
  padding: 12px;
  text-align: center;
  color: #071521;
  background: var(--acid);
  font-size: 0.7rem;
}

.story-float {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  padding: 14px 16px;
  color: #fff;
  background: rgba(8, 20, 29, 0.84);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.story-float svg { color: var(--acid); }
.story-float small,
.story-float strong { display: block; }
.story-float small { color: rgba(255, 255, 255, 0.55); }
.story-float strong { margin-top: 3px; font-size: 0.82rem; }

.story-float-reserve {
  left: -5%;
  top: 4%;
  transform: translate3d(calc(var(--story-progress) * 34px), calc(var(--story-progress) * 48px), 160px) rotate(-3deg);
}

.story-float-score {
  right: 5%;
  top: 18%;
  display: grid;
  transform: translate3d(0, calc((1 - var(--story-progress)) * -55px), 190px) rotate(3deg);
}

.story-float-score strong {
  color: var(--acid);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
}

.story-float-score span {
  font-size: 0.68rem;
}

.story-progress {
  position: absolute;
  right: -34px;
  top: 50%;
  width: 2px;
  height: 280px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-50%);
}

.story-progress span {
  display: block;
  width: 100%;
  height: calc(var(--story-progress) * 100%);
  background: var(--acid);
  box-shadow: 0 0 16px rgba(217, 255, 95, 0.8);
}

.services .section-heading,
.packages .section-heading,
.portfolio .section-heading {
  max-width: 980px;
}

.service-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
}

.service-card {
  grid-column: span 3;
  min-height: 260px;
  border-radius: 4px;
}

.service-card:nth-child(1),
.service-card:nth-child(6) {
  grid-column: span 6;
  color: #fff;
  background: #071521;
}

.service-card:nth-child(1) h3,
.service-card:nth-child(6) h3 {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
}

.service-card:nth-child(1) p,
.service-card:nth-child(6) p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.66);
}

.service-card:nth-child(1) > svg,
.service-card:nth-child(6) > svg {
  color: var(--acid);
}

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

.price-card {
  min-height: 520px;
  border-radius: 4px;
}

.price-card.featured {
  transform: translateY(-14px);
  background: #071521;
}

.recommended,
.custom-package-number {
  border-radius: 3px;
}

.portfolio-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

.portfolio-card {
  grid-column: span 3;
  min-height: 530px;
  border-radius: 4px;
}

.portfolio-card:nth-child(even) {
  margin-top: 70px;
}

.impact-shell,
.contact-form,
.custom-package,
.package-intro,
.benefit-item {
  border-radius: 4px;
}

.final-cta {
  background:
    linear-gradient(90deg, rgba(3, 12, 18, 0.97), rgba(3, 12, 18, 0.62)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1800&q=84") center / cover;
}

@media (max-width: 1180px) {
  .hero-copy { width: 64%; }
  .hero-mockup { right: -12%; width: min(48vw, 610px); }
  .story-layout { grid-template-columns: minmax(320px, 0.9fr) minmax(440px, 1.1fr); }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card.featured { transform: none; }
}

@media (max-width: 920px) {
  .hero-inner { padding-bottom: 70px; }
  .hero-copy { width: min(100%, 720px); }
  .hero h1 { font-size: clamp(4rem, 11vw, 6rem); max-width: 760px; }
  .hero-mockup { right: auto; width: min(100%, 680px); }
  .depth-index { display: none; }
  .scroll-cue { display: none; }
  .story-layout { grid-template-columns: 1fr; padding-block: 100px 50px; }
  .story-copy h2 { max-width: 750px; }
  .story-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .story-step { min-height: 150px; padding: 14px; grid-template-columns: 1fr; align-content: start; }
  .story-step.is-active { transform: translateY(-8px); }
  .story-stage { width: min(100%, 720px); min-height: 520px; }
  .story-desktop { width: min(82vw, 610px); height: 390px; }
  .story-progress { right: 0; }
  .service-card { grid-column: span 6; }
  .service-card:nth-child(1), .service-card:nth-child(6) { grid-column: span 12; }
  .portfolio-card { grid-column: span 6; }
  .portfolio-card:nth-child(even) { margin-top: 0; }
}

@media (max-width: 680px) {
  .hero { min-height: auto; }
  .hero-inner { min-height: auto; padding-top: 112px; }
  .hero h1 { font-size: 3.65rem; line-height: 0.88; }
  .hero-subtitle { padding-left: 14px; line-height: 1.65; }
  .hero-proof { margin-top: 30px; }
  .hero-mockup { min-height: 330px; margin-top: 44px; }
  .desktop-frame { min-height: 300px; transform: rotateX(2deg) rotateY(-5deg) rotateZ(0.5deg); }
  .restaurant-hero { min-height: 142px; }
  .restaurant-hero strong { font-size: 1.8rem; }
  .menu-preview div:last-child { display: none; }
  .menu-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .phone-frame { right: 2px; bottom: -28px; transform: translateZ(70px) rotateY(-5deg) rotateZ(2deg) scale(0.78); transform-origin: right bottom; }
  .mockup-status { left: 6px; }
  .value-strip { transform: none; }
  .problem-copy h2, .section-copy h2, .section-heading h2, .cta-copy h2 { font-size: 3.05rem; line-height: 0.94; }
  .problem-showcase, .solution-visual { transform: none; }
  .scroll-story { height: auto; }
  .story-sticky { position: relative; min-height: auto; }
  .story-layout { padding-block: 88px; gap: 48px; }
  .story-copy h2 { font-size: 3.25rem; line-height: 0.9; }
  .story-steps { grid-template-columns: 1fr; }
  .story-step { min-height: auto; grid-template-columns: 32px 1fr; padding: 18px 0; opacity: 1; }
  .story-step.is-active { transform: none; }
  .story-stage { min-height: 430px; }
  .story-desktop { left: 0; top: 20px; width: calc(100% - 28px); height: 330px; transform: rotateY(-5deg); }
  .story-screen-copy { left: 20px; right: 20px; bottom: 22px; }
  .story-screen-copy strong { font-size: 2rem; }
  .story-mobile { right: -8px; bottom: -5px; width: 155px; min-height: 310px; padding: 10px; border-width: 6px; border-radius: 20px; transform: translateZ(70px) rotateY(3deg) rotateZ(2deg); }
  .story-mobile-photo { height: 145px; margin-bottom: 12px; }
  .story-mobile strong { font-size: 1rem; }
  .story-mobile b { margin-top: 12px; padding: 9px; }
  .story-float-reserve { left: 4px; top: 0; transform: translateZ(90px) scale(0.86); transform-origin: left top; }
  .story-float-score, .story-progress { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(1), .service-card:nth-child(6) { grid-column: auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card { grid-column: auto; min-height: 430px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .story-desktop,
  .story-mobile,
  .story-orbit,
  .story-axis,
  .story-float {
    transform: none !important;
  }

  .scroll-story {
    height: auto;
  }

  .story-sticky {
    position: relative;
  }
}
