:root {
  --forest: #5f7f52;
  --moss: #8ea35c;
  --ink: #172018;
  --charcoal: #232722;
  --paper: #f5f4ef;
  --white: #ffffff;
  --steel: #d7ddd8;
  --copper: #c36f3e;
  --gold: #d6b85c;
  --muted: #657062;
  --shadow: 0 22px 60px rgba(23, 32, 24, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header:not(.is-scrolled) .brand {
  width: clamp(112px, 13vw, 168px);
  min-width: 112px;
  opacity: 0.82;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(245, 244, 239, 0.92);
  box-shadow: 0 12px 34px rgba(23, 32, 24, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: clamp(132px, 17vw, 212px);
  min-width: 132px;
  filter: brightness(0) invert(1);
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-header.is-scrolled .brand {
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 5vw, 74px) 42px;
  overflow: hidden;
  color: var(--white);
}

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

.hero-media {
  background-image: url("assets/hero-kitchen.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 32, 24, 0.88), rgba(23, 32, 24, 0.62) 44%, rgba(23, 32, 24, 0.1)),
    linear-gradient(0deg, rgba(23, 32, 24, 0.88), rgba(23, 32, 24, 0.08) 54%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  min-width: 0;
  padding-bottom: 118px;
}

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

.eyebrow.dark {
  color: var(--forest);
}

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

h1,
h2 {
  font-family: "Fraunces", serif;
  line-height: 0.95;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(4.1rem, 11vw, 9.3rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-logo {
  width: min(650px, 58vw);
  height: auto;
  margin: 0 0 30px;
  object-fit: contain;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
}

h3 {
  font-size: 1.04rem;
  line-height: 1.2;
}

.hero-claim {
  margin-bottom: 14px;
  color: #dce8d6;
  font-size: clamp(1.35rem, 3vw, 2.45rem);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.hero-copy,
.section-copy p,
.contact-copy p,
.tech-content p,
.presence-copy p {
  color: rgba(23, 32, 24, 0.72);
  font-size: 1.04rem;
  line-height: 1.8;
}

.hero-copy {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: currentColor;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-links i svg,
.social-links > a > svg:not([viewBox]) {
  fill: none;
}

.hero-social {
  margin-top: 18px;
  color: var(--white);
}

.hero-social a {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-social a:hover {
  color: var(--ink);
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}

.button svg,
.nav-toggle svg {
  width: 19px;
  height: 19px;
}

.button.primary {
  color: var(--white);
  background: var(--copper);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
}

.hero-proof {
  position: absolute;
  left: clamp(18px, 5vw, 74px);
  right: clamp(18px, 5vw, 74px);
  bottom: 32px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-proof div {
  min-height: 92px;
  padding: 22px 20px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.88;
}

.hero-proof span {
  display: block;
  max-width: 190px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.4;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: var(--white);
}

.strip-item {
  min-height: 250px;
  padding: clamp(28px, 5vw, 56px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.strip-item svg {
  width: 30px;
  height: 30px;
  margin-bottom: 34px;
  color: var(--gold);
}

.strip-item h2 {
  margin-bottom: 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  line-height: 1.15;
}

.strip-item p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.section {
  padding: clamp(70px, 10vw, 130px) clamp(18px, 5vw, 74px);
}

.split-section,
.quality-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.quality-section {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
  background: var(--white);
}

.image-panel,
.tech-image,
.menu-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel {
  aspect-ratio: 1.28;
}

.section-copy h2,
.section-heading h2,
.tech-content h2,
.presence-copy h2,
.contact-copy h2 {
  max-width: 820px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.values-grid span {
  padding: 10px 13px;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  color: var(--charcoal);
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.5);
}

.service-section {
  background:
    linear-gradient(90deg, rgba(95, 127, 82, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(95, 127, 82, 0.1) 1px, transparent 1px),
    #f8f8f5;
  background-size: 44px 44px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(23, 32, 24, 0.05);
}

.service-card span {
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card svg {
  display: block;
  width: 34px;
  height: 34px;
  margin: 34px 0 28px;
  color: var(--forest);
}

.service-card p,
.menu-list p {
  color: var(--muted);
  line-height: 1.65;
}

.menu-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  min-height: 680px;
  color: var(--white);
  background: var(--charcoal);
}

.menu-image {
  border-radius: 0;
  box-shadow: none;
}

.menu-content {
  align-self: center;
  padding: clamp(46px, 7vw, 86px);
}

.menu-content h2 {
  max-width: 640px;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.menu-list article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.menu-list p {
  color: rgba(255, 255, 255, 0.68);
}

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

.check-list li {
  display: flex;
  gap: 12px;
  color: var(--charcoal);
  font-weight: 700;
}

.check-list svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  color: var(--forest);
}

.tech-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(70px, 10vw, 120px) clamp(18px, 5vw, 74px);
  background: #edf1ee;
}

.tech-image {
  aspect-ratio: 1.14;
}

.tech-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.tech-tools span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px;
  border-radius: var(--radius);
  color: var(--charcoal);
  font-weight: 800;
  background: var(--white);
}

.tech-tools svg {
  flex: 0 0 auto;
  color: var(--copper);
}

.tech-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(95, 127, 82, 0.22);
  border-radius: var(--radius);
  background: rgba(95, 127, 82, 0.22);
}

.tech-flow article {
  position: relative;
  min-height: 104px;
  padding: 16px 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 241, 238, 0.92));
}

.tech-flow article::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  z-index: 1;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(95, 127, 82, 0.28);
  border-right: 1px solid rgba(95, 127, 82, 0.28);
  background: #f4f7f2;
  transform: translateY(-50%) rotate(45deg);
}

.tech-flow article:last-child::after {
  display: none;
}

.tech-flow span {
  display: block;
  margin-bottom: 28px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 900;
}

.tech-flow strong {
  display: block;
  color: var(--ink);
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  line-height: 1.15;
}

.ai-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(78px, 11vw, 136px) clamp(18px, 5vw, 74px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(214, 184, 92, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(214, 184, 92, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 78% 20%, rgba(195, 111, 62, 0.28), transparent 28%),
    linear-gradient(135deg, #101711, #1d2b20 58%, #101711);
  background-size: 52px 52px, 52px 52px, auto, auto;
  overflow: hidden;
}

.ai-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 184, 92, 0.48), transparent);
}

.ai-copy,
.ai-console {
  position: relative;
  z-index: 1;
}

.ai-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
  line-height: 1.8;
}

.ai-signals {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 34px;
}

.ai-signals span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.ai-signals svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.ai-console {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(14, 22, 16, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.ai-gate {
  display: grid;
  gap: 14px;
  padding: 22px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ai-gate-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ai-gate h3 {
  max-width: 420px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.ai-gate label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-gate input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 13px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.ai-gate-status {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.ai-console:not(.is-locked) .ai-gate {
  display: none;
}

.ai-console.is-locked .ai-diagnostic-panel {
  opacity: 0.38;
  filter: grayscale(0.35);
  pointer-events: none;
}

.ai-diagnostic-panel {
  transition: opacity 180ms ease, filter 180ms ease;
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.console-top span,
.ai-result span,
.ai-note {
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.console-top span {
  color: var(--gold);
}

.console-top strong {
  font-size: 0.95rem;
}

.ai-control {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-control label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-control output {
  color: var(--white);
}

.ai-control input[type="range"] {
  padding: 0;
  accent-color: var(--gold);
  background: transparent;
}

.ai-control select {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

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

.ai-result div {
  min-height: 122px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-result div:nth-child(2n) {
  border-right: 0;
}

.ai-result div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.ai-result span {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.ai-result strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  line-height: 1.2;
}

.ai-note {
  margin: 0;
  padding: 16px 20px 20px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.presence-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: clamp(26px, 6vw, 80px);
  align-items: center;
  padding: clamp(76px, 11vw, 136px) clamp(18px, 5vw, 74px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 28%, rgba(214, 184, 92, 0.28), transparent 24%),
    linear-gradient(135deg, #344734, #172018 62%);
}

.presence-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.map-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.map-card span {
  padding: 18px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  background: var(--paper);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  padding: clamp(76px, 10vw, 124px) clamp(18px, 5vw, 74px);
  background: var(--paper);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 13px 12px;
  color: var(--ink);
  background: #fbfbf8;
  font: inherit;
}

textarea {
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--paper);
}

.thanks-card {
  width: min(560px, 100%);
  padding: clamp(28px, 6vw, 52px);
  border: 1px solid rgba(35, 48, 37, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(25, 35, 27, 0.14);
}

.thanks-card img {
  width: 170px;
  margin-bottom: 30px;
}

.thanks-card h1 {
  margin: 8px 0 14px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.thanks-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: var(--radius);
  color: var(--forest);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 74px);
  color: var(--white);
  background: var(--ink);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span,
.footer-links a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 18px !important;
}

.footer-social {
  display: flex !important;
  color: var(--white);
}

.footer-social a {
  background: rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  color: var(--ink);
  background: var(--paper);
}

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

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

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

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 72px 14px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px;
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 15px;
  }

  .nav-toggle {
    display: grid;
  }

  .hero-content {
    padding-bottom: 290px;
  }

  .hero-proof,
  .trust-strip,
  .split-section,
  .quality-section,
  .service-grid,
  .menu-band,
  .tech-section,
  .ai-section,
  .presence-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    gap: 0;
  }

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

  .menu-image {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    width: 146px;
    min-width: 146px;
  }

  .hero {
    min-height: 100svh;
    display: block;
    padding: 108px 18px 26px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(23, 32, 24, 0.96), rgba(23, 32, 24, 0.7) 68%, rgba(23, 32, 24, 0.42)),
      linear-gradient(90deg, rgba(23, 32, 24, 0.7), rgba(23, 32, 24, 0.28));
  }

  .hero-media {
    background-position: 58% center;
    transform: none;
  }

  .hero-content {
    width: auto;
    max-width: min(320px, calc(100vw - 36px));
    padding-bottom: 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 13.5vw, 4rem);
    overflow-wrap: anywhere;
  }

  .hero-logo {
    width: min(100%, 320px);
    margin-bottom: 22px;
  }

  .hero .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.18em;
  }

  .hero-claim {
    max-width: 330px;
    font-size: clamp(1.16rem, 5.4vw, 1.32rem);
    line-height: 1.25;
  }

  .hero-copy {
    max-width: min(320px, calc(100vw - 36px));
    font-size: 0.98rem;
  }

  h2 {
    font-size: clamp(2rem, 13vw, 3.5rem);
  }

  .hero-actions,
  .button {
    width: min(100%, 320px);
  }

  .hero-proof {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(100%, 320px);
    margin-top: 22px;
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    min-height: auto;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .strip-item {
    min-height: auto;
  }

  .service-grid,
  .menu-list,
  .tech-tools,
  .tech-flow,
  .ai-result,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .tech-flow article::after {
    display: none;
  }

  .ai-result div,
  .ai-result div:nth-child(2n),
  .ai-result div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ai-result div:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: auto;
  }

  .section,
  .tech-section,
  .ai-section,
  .presence-section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-footer {
    display: grid;
  }

  .thanks-card {
    border-radius: 18px;
  }

  .thanks-card img {
    width: min(160px, 70%);
  }
}
