:root {
  color-scheme: dark;
  --bg: #151514;
  --bg-soft: #1d1d1b;
  --panel: #242421;
  --text: #f6f3ee;
  --muted: #c7c1b8;
  --line: rgba(246, 243, 238, 0.18);
  --red: #f32620;
  --red-deep: #bb1713;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::selection {
  background: var(--red);
  color: var(--text);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(21, 21, 20, 0.92), rgba(21, 21, 20, 0.55) 70%, transparent);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover,
.cookie-link:hover,
.nav-dropdown-toggle:hover {
  color: var(--text);
}

.cookie-link,
.nav-dropdown-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: inherit;
  padding: 0;
  text-transform: uppercase;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-toggle::after {
  width: 7px;
  height: 7px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 250px;
  padding: 10px;
  border: 1px solid rgba(246, 243, 238, 0.18);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(14px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 12px 13px;
  border-radius: 6px;
  color: var(--text);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(243, 38, 32, 0.14);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(22px, 5vw, 72px) 54px;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(21, 21, 20, 0.96) 0%, rgba(21, 21, 20, 0.74) 44%, rgba(21, 21, 20, 0.18) 100%),
    linear-gradient(0deg, rgba(21, 21, 20, 0.95) 0%, rgba(21, 21, 20, 0.18) 45%, rgba(21, 21, 20, 0.52) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.88;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 850;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

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

.button-secondary:hover {
  border-color: rgba(246, 243, 238, 0.54);
}

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(68px, 10vw, 128px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  margin-bottom: 44px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.intro .section-heading {
  display: block;
  margin: 0;
}

.intro-copy {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.intro-copy p:last-child,
.service-card p:last-child,
.story-copy p:last-child,
.method-steps p:last-child {
  margin-bottom: 0;
}

.vision {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vision-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vision-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--red);
  background: var(--bg-soft);
  color: var(--text);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 850;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--bg);
}

.service-card span {
  display: block;
  margin-bottom: 54px;
  color: var(--red);
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
}

.story {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 0.78fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.story-image {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  background: var(--panel);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.restaurant-hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(22px, 5vw, 72px) 58px;
  isolation: isolate;
}

.restaurant-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(21, 21, 20, 0.98) 0%, rgba(21, 21, 20, 0.78) 46%, rgba(21, 21, 20, 0.24) 100%),
    linear-gradient(0deg, rgba(21, 21, 20, 0.96) 0%, rgba(21, 21, 20, 0.12) 54%, rgba(21, 21, 20, 0.46) 100%);
}

.restaurant-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.restaurant-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.restaurant-hero-content {
  width: min(780px, 100%);
}

.restaurant-hero-content h1 {
  max-width: 820px;
}

.restaurant-hero-content p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.restaurant-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.proof-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-grid article {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--bg-soft);
}

.proof-grid strong {
  color: var(--text);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 950;
  line-height: 1;
}

.proof-grid span {
  color: var(--muted);
}

.restaurant-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.restaurant-service-grid article {
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--bg);
}

.restaurant-service-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--red);
  font-weight: 950;
}

.restaurant-service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.restaurant-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 0.78fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.restaurant-split-reverse {
  border-top: 0;
}

.restaurant-packages {
  border-top: 1px solid var(--line);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.package-grid article {
  display: grid;
  min-height: 330px;
  align-content: start;
  padding: clamp(24px, 3vw, 36px);
  background: var(--bg-soft);
}

.package-grid span {
  width: fit-content;
  margin-bottom: 52px;
  padding: 8px 12px;
  border: 1px solid rgba(243, 38, 32, 0.52);
  border-radius: 999px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.package-grid p {
  color: var(--muted);
}

.package-grid .button {
  width: fit-content;
  margin-top: auto;
}

.sector-showcase {
  border-top: 1px solid var(--line);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  background: transparent;
}

.sector-card {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
}

.sector-card a {
  display: grid;
  height: 100%;
  grid-template-rows: 230px auto auto 1fr;
  padding: 0 0 clamp(22px, 2.5vw, 30px);
  transition: background 160ms ease, transform 160ms ease;
}

.sector-card a:hover {
  background: rgba(246, 243, 238, 0.035);
}

.sector-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(0.96) contrast(1.04);
}

.sector-card span {
  width: fit-content;
  margin: 28px clamp(22px, 2.2vw, 32px) 38px;
  padding: 8px 12px;
  border: 1px solid rgba(243, 38, 32, 0.52);
  border-radius: 999px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.sector-card h3 {
  margin-right: clamp(22px, 2.2vw, 32px);
  margin-left: clamp(22px, 2.2vw, 32px);
}

.sector-card p {
  margin: 0 clamp(22px, 2.2vw, 32px);
  color: var(--muted);
}

.method {
  border-top: 1px solid var(--line);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.method-steps div {
  min-height: 230px;
  padding: 28px;
  background: var(--bg-soft);
}

.method-steps span {
  display: block;
  margin-bottom: 46px;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
}

.method-steps p {
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(34px, 7vw, 90px);
  align-items: end;
  width: 100%;
  max-width: none;
  padding-right: clamp(22px, 5vw, 72px);
  padding-left: clamp(22px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(21, 21, 20, 0.94), rgba(21, 21, 20, 0.8)),
    url("assets/iko-closing.jpg") center / cover;
}

.contact-details {
  display: grid;
  gap: 7px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(21, 21, 20, 0.74);
  color: var(--muted);
  font-style: normal;
}

.contact-details strong {
  color: var(--text);
  font-size: 22px;
}

.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid var(--red);
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-weight: 850;
  text-align: center;
}

.download-link:hover {
  background: var(--red-deep);
}

.plans {
  width: min(1500px, calc(100% - 28px));
}

.plans .section-heading {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}

.plan-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 4px solid #050505;
  border-radius: 2px;
  background: #111;
  color: var(--text);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.plan-top {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: 28px 28px 22px;
  background: #10100f;
  color: #fff;
  isolation: isolate;
}

.plan-top::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(110deg, rgba(12, 12, 11, 0.98) 0%, rgba(12, 12, 11, 0.92) 36%, rgba(12, 12, 11, 0.36) 66%, rgba(12, 12, 11, 0.12) 100%),
    linear-gradient(0deg, #10100f 0%, rgba(16, 16, 15, 0.52) 48%, rgba(16, 16, 15, 0.1) 100%);
}

.plan-top::after {
  position: absolute;
  right: -12%;
  bottom: -36px;
  width: 118%;
  height: 78px;
  content: "";
  border-radius: 50% 0 0 0;
  background: #111;
}

.plan-top img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.plan-title {
  position: absolute;
  bottom: 42px;
  left: 22px;
  right: 22px;
  z-index: 2;
  max-width: none;
  text-align: center;
  text-transform: uppercase;
}

.plan-title span {
  display: block;
  margin-bottom: -4px;
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 950;
  line-height: 1;
}

.plan-title h3 {
  margin: 0;
  color: var(--red);
  font-size: clamp(46px, 4.15vw, 64px);
  font-weight: 950;
  line-height: 0.9;
}

.plan-title p {
  max-width: 360px;
  margin: 12px 0 0;
  margin-right: auto;
  margin-left: auto;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.plan-symbol {
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  border: 3px solid #050505;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 3px var(--red-deep), 0 10px 20px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%);
}

.plan-symbol svg {
  width: 62px;
  height: 62px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.plan-ribbon,
.plan-badge {
  position: absolute;
  z-index: 4;
  background: var(--red);
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-ribbon {
  top: 18px;
  right: -40px;
  width: 188px;
  padding: 9px 10px;
  text-align: center;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.34);
  transform: rotate(45deg);
}

.plan-ribbon::before,
.plan-ribbon::after {
  position: absolute;
  bottom: -7px;
  width: 0;
  height: 0;
  content: "";
  border-top: 7px solid #8f100d;
}

.plan-ribbon::before {
  left: 0;
  border-left: 7px solid transparent;
}

.plan-ribbon::after {
  right: 0;
  border-right: 7px solid transparent;
}

.plan-badge {
  top: 0;
  right: 18px;
  display: grid;
  width: 92px;
  height: 122px;
  place-items: start center;
  padding-top: 54px;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 50% 100%, 0 86%);
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
}

.plan-badge::before {
  position: absolute;
  top: 18px;
  width: 36px;
  height: 24px;
  content: "";
  border: 3px solid #fff;
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.plan-badge::after {
  position: absolute;
  top: 14px;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(45deg);
}

.plan-business .plan-title h3,
.plan-premium .plan-title h3 {
  font-size: clamp(42px, 3.7vw, 56px);
}

.plan-body {
  flex: 1;
  padding: 26px clamp(20px, 2.4vw, 38px) 24px;
  background:
    linear-gradient(180deg, rgba(29, 29, 27, 0.98), #111 72%),
    #111;
}

.include-label {
  display: inline-flex;
  min-width: 190px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 6px 20px;
  background: var(--red);
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  text-transform: uppercase;
  clip-path: polygon(0 14%, 88% 8%, 100% 50%, 88% 91%, 0 86%, 6% 50%);
}

.plan-features {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-features li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 3px solid #d71918;
  border-radius: 10px;
  background: rgba(243, 38, 32, 0.08);
  color: #d71918;
  font-size: 23px;
  font-weight: 950;
  line-height: 1;
}

.plan-features strong {
  display: block;
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
}

.plan-features small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.28;
}

.plan-footer {
  margin-top: auto;
  color: #fff;
}

.plan-price {
  display: grid;
  grid-template-columns: auto auto minmax(52px, 74px);
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 18px 18px 20px;
  border-top: 1px solid rgba(246, 243, 238, 0.12);
  background: #080808;
  text-transform: uppercase;
}

.plan-price span {
  font-size: 20px;
  font-weight: 950;
}

.plan-price strong {
  color: var(--red);
  font-size: clamp(46px, 4.7vw, 66px);
  font-weight: 950;
  line-height: 0.9;
  white-space: nowrap;
}

.plan-price small {
  font-size: 17px;
  font-weight: 950;
  line-height: 1.2;
}

.plan-audience {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 98px;
  padding: 20px 28px;
  background: var(--red);
}

.plan-audience strong {
  position: relative;
  font-size: 20px;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-audience strong::before {
  content: "◎";
  margin-right: 8px;
}

.plan-audience strong::after {
  position: absolute;
  top: 50%;
  right: -10px;
  width: 2px;
  height: 44px;
  content: "";
  background: #fff;
  transform: translateY(-50%) rotate(10deg);
}

.plan-audience span {
  font-size: 13px;
  line-height: 1.35;
}

.plan-cta {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-top: 1px solid rgba(246, 243, 238, 0.14);
  background: #080808;
  color: var(--text);
  font-weight: 950;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.plan-cta:hover {
  background: var(--red);
  color: #fff;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
  border-top: 1px solid var(--line);
}

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

.lead-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(246, 243, 238, 0.2);
  border-radius: 6px;
  background: #111;
  color: var(--text);
  font: inherit;
  outline: none;
  padding: 12px 13px;
}

.lead-form textarea {
  min-height: 132px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(243, 38, 32, 0.18);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(199, 193, 184, 0.58);
}

.privacy-check {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  text-transform: none;
}

.captcha-field {
  padding: 14px;
  border: 1px solid rgba(243, 38, 32, 0.28);
  border-radius: 6px;
  background: rgba(243, 38, 32, 0.06);
}

.captcha-field input {
  max-width: 180px;
}

.privacy-check input {
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.form-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.is-success {
  color: #f6f3ee;
}

.form-status.is-error {
  color: #ff766f;
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.faq-list article {
  min-height: 210px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--bg-soft);
}

.faq-list h3 {
  margin-bottom: 18px;
  color: var(--text);
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1fr) auto;
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  padding: 34px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #111;
  color: var(--muted);
  font-size: 13px;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-brand div,
.footer-company,
.footer-links {
  display: grid;
  gap: 5px;
}

.footer strong {
  color: var(--text);
  font-size: 15px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-company {
  font-style: normal;
}

.footer-links {
  justify-items: end;
  font-weight: 850;
}

.footer-links a {
  color: var(--text);
}

.footer-links button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: inherit;
  padding: 0;
  text-align: right;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--red);
}

.admin-key {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(246, 243, 238, 0.22);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.86);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.admin-key:hover {
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-2px);
}

.admin-key svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.cookie-banner {
  position: fixed;
  inset: auto clamp(14px, 3vw, 34px) clamp(14px, 3vw, 34px);
  z-index: 80;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(246, 243, 238, 0.24);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(14px);
}

.cookie-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 46px);
}

.cookie-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.cookie-preferences {
  display: grid;
  gap: 18px;
}

.cookie-options {
  display: grid;
  gap: 10px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(246, 243, 238, 0.14);
  border-radius: 6px;
  background: var(--bg-soft);
}

.cookie-option input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.cookie-option strong {
  display: block;
  color: var(--text);
  font-weight: 950;
}

.cookie-option small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.35;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
  }

  .brand img {
    width: 72px;
    height: 72px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .section-heading,
  .intro,
  .vision,
  .story,
  .restaurant-proof,
  .restaurant-split,
  .contact,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .lead-copy {
    position: static;
  }

  .service-grid,
  .method-steps,
  .restaurant-service-grid,
  .package-grid,
  .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

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

  .footer-links {
    justify-items: start;
  }

  .footer-links button {
    text-align: left;
  }

  .cookie-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 130px;
  }

  .restaurant-hero {
    min-height: 88svh;
    padding-top: 130px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(21, 21, 20, 0.98) 0%, rgba(21, 21, 20, 0.62) 58%, rgba(21, 21, 20, 0.46) 100%);
  }

  .restaurant-hero::after {
    background:
      linear-gradient(0deg, rgba(21, 21, 20, 0.98) 0%, rgba(21, 21, 20, 0.7) 60%, rgba(21, 21, 20, 0.44) 100%);
  }

  .hero-media img {
    object-position: 58% bottom;
    opacity: 0.48;
  }

  .restaurant-hero-media img {
    object-position: 62% center;
    opacity: 0.58;
  }

  .hero .eyebrow {
    max-width: 270px;
    font-size: 11px;
    line-height: 1.2;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .method-steps,
  .restaurant-service-grid,
  .package-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .method-steps div,
  .restaurant-service-grid article,
  .package-grid article,
  .sector-card {
    min-height: auto;
  }

  .service-card span,
  .method-steps span,
  .restaurant-service-grid span,
  .package-grid span {
    margin-bottom: 28px;
  }

  .footer {
    gap: 22px;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

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

  .form-submit {
    width: 100%;
  }

  .cookie-banner {
    inset: auto 9px 9px;
  }

  .admin-key {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
  }

  .cookie-actions .button {
    width: 100%;
  }

  .plans {
    width: min(100% - 18px, 430px);
  }

  .plan-top {
    min-height: 310px;
    padding: 22px;
  }

  .plan-title {
    left: 18px;
    right: 18px;
    bottom: 46px;
  }

  .plan-title p {
    max-width: 290px;
    font-size: 13px;
  }

  .plan-symbol {
    top: 24px;
    left: 50%;
    width: 82px;
    height: 82px;
    transform: translateX(-50%);
  }

  .plan-symbol svg {
    width: 52px;
    height: 52px;
  }

  .plan-ribbon {
    top: 16px;
    right: 14px;
    width: auto;
    padding: 8px 10px;
    transform: none;
    border-radius: 4px;
    font-size: 13px;
  }

  .plan-ribbon::before,
  .plan-ribbon::after {
    display: none;
  }

  .plan-body {
    padding: 22px 18px;
  }

  .plan-features li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }

  .plan-price {
    grid-template-columns: 1fr;
    gap: 4px;
    text-align: center;
  }

  .plan-audience {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .plan-audience strong::after {
    display: none;
  }

  .sector-card a {
    grid-template-rows: 210px auto auto 1fr;
  }

  .sector-card img {
    height: 210px;
  }
}
