: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: 220px;
  max-width: 100%;
  margin-bottom: 18px;
  border-radius: var(--radius);
}

.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;
  }
}
