@font-face {
  font-family: "NunitoSans";
  src: url("NunitoSans.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "DMSerifText";
  src: url("DMSerifText.woff2") format("woff2");
  font-display: swap;
}

:root {
  --ink: #10243a;
  --night: #002b47;
  --deep: #00385b;
  --bay: #1267a5;
  --sky: #eaf6ff;
  --paper: #f7fbff;
  --white: #ffffff;
  --amber: #d98919;
  --green: #0b7a75;
  --line: rgba(0, 43, 71, 0.14);
  --shadow: 0 22px 64px rgba(0, 43, 71, 0.22);
  --sans: "NunitoSans", "Segoe UI", sans-serif;
  --serif: "DMSerifText", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background: var(--paper);
}

img,
svg {
  display: block;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(90deg, rgba(0, 43, 71, 0.98), rgba(0, 82, 140, 0.95));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 30px rgba(0, 24, 40, 0.18);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-logo {
  width: 284px;
  max-width: 52vw;
  height: auto;
}

.phone-link,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
}

.phone-link {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.button-primary {
  color: var(--white);
  background: var(--bay);
  box-shadow: 0 14px 28px rgba(18, 103, 165, 0.24);
}

.button-light {
  color: var(--night);
  background: var(--white);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(0, 27, 48, 0.96) 0%, rgba(0, 43, 71, 0.9) 42%, rgba(0, 43, 71, 0.46) 74%, rgba(0, 43, 71, 0.2) 100%), url("../media/restaurant-audit-hero.png");
  background-size: cover;
  background-position: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 42px;
  align-items: center;
  padding: 56px 0;
}

.kicker {
  color: #8fd1ff;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  line-height: 1.48;
}

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

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

.proof {
  min-height: 118px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-left: 3px solid #8fd1ff;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.proof strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.proof span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

.form-card {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.form-head {
  padding: 22px 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--night), var(--bay));
}

.form-head strong {
  color: #8fd1ff;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-head h2 {
  margin: 8px 0 0;
  font-size: 26px;
  line-height: 1.15;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px 24px 24px;
}

.field,
.honeypot {
  position: relative;
}

.field svg {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: rgba(16, 36, 58, 0.5);
  pointer-events: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px 0 44px;
  color: var(--ink);
  background: var(--white);
  outline: 0;
}

.field input,
.field select {
  height: 52px;
}

.field textarea {
  min-height: 104px;
  padding-top: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--bay);
  box-shadow: 0 0 0 4px rgba(18, 103, 165, 0.14);
}

.form-note {
  margin: 0;
  color: rgba(16, 36, 58, 0.66);
  font-size: 12px;
  line-height: 1.42;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section {
  padding: 74px 0;
}

.section h2 {
  margin: 0;
  color: var(--night);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-lead {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(16, 36, 58, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.tile {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 43, 71, 0.08);
}

.tile strong {
  display: block;
  color: var(--night);
  font-size: 20px;
}

.tile p {
  margin: 10px 0 0;
  color: rgba(16, 36, 58, 0.76);
  line-height: 1.55;
}

.band {
  color: var(--white);
  background: linear-gradient(115deg, var(--night), var(--deep));
}

.band h2,
.band .section-lead {
  color: var(--white);
}

.band .section-lead {
  color: rgba(255, 255, 255, 0.82);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #001d31;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .form-card {
    width: min(100%, 460px);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-logo {
    width: 220px;
    max-width: 64vw;
  }

  .phone-link {
    width: 46px;
    padding: 0;
    font-size: 0;
  }

  .hero-grid {
    padding: 38px 0 46px;
    gap: 28px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 18px;
  }

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

  .form-head,
  .lead-form {
    padding-left: 18px;
    padding-right: 18px;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}
