:root {
  --ink: #111114;
  --muted: #666a73;
  --soft: #f6f7f9;
  --line: #e4e7ec;
  --white: #ffffff;
  --blue: #1677ff;
  --aqua: #4bd4c7;
  --shadow: 0 26px 80px rgba(18, 20, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(228, 231, 236, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 50px rgba(15, 17, 20, 0.08);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--ink), #50555f);
  font-size: 15px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: #4c5058;
  font-size: 14px;
}

nav a,
.footer-links a {
  transition: color 160ms ease;
}

nav a:hover,
.footer-links a:hover {
  color: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 15px;
}

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

.button.primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 35px rgba(17, 17, 20, 0.18);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 52px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 94px);
  margin: 0 auto;
  padding: 82px 0 56px;
}

.hero::before {
  position: absolute;
  inset: 2% -9% auto auto;
  width: 430px;
  height: 430px;
  content: "";
  background: radial-gradient(circle, rgba(75, 212, 199, 0.22), rgba(22, 119, 255, 0.09) 42%, transparent 68%);
  filter: blur(4px);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
}

.hero-text,
.split-copy p,
.consult-copy p,
.section-heading h2 + p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.hero-text {
  max-width: 650px;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
}

.hero-stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-stats strong {
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.device-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 488px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  border-radius: 34px;
  background: linear-gradient(160deg, #ffffff 0%, #f5f7fb 48%, #fefefe 100%);
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d8dce4;
}

.browser-bar p {
  flex: 1;
  margin: 0 0 0 10px;
  color: #7b8089;
  font-size: 13px;
  text-align: center;
}

.site-preview {
  padding: 28px;
}

.preview-nav,
.preview-grid {
  display: grid;
  gap: 12px;
}

.preview-nav {
  grid-template-columns: 1.2fr 0.5fr 0.5fr;
  margin-bottom: 34px;
}

.preview-nav span,
.preview-line,
.preview-button,
.preview-pill,
.preview-title,
.preview-grid span {
  display: block;
  border-radius: 999px;
  background: #dfe4ec;
}

.preview-nav span {
  height: 12px;
}

.preview-hero {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 24px;
  align-items: center;
}

.preview-pill {
  width: 92px;
  height: 12px;
  margin-bottom: 22px;
  background: rgba(22, 119, 255, 0.28);
}

.preview-title {
  width: 100%;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: #17191f;
}

.preview-line {
  width: 72%;
  height: 12px;
  margin-bottom: 10px;
}

.preview-line.wide {
  width: 92%;
}

.preview-button {
  width: 120px;
  height: 36px;
  margin-top: 26px;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
}

.preview-photo {
  min-height: 210px;
  border-radius: 26px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.65), transparent 38%),
    linear-gradient(145deg, #111114 0%, #323844 54%, #ccd8e8 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.preview-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.preview-grid span {
  height: 94px;
  border-radius: 18px;
  background: #eef1f6;
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 4px;
  width: 172px;
  padding: 16px;
  border: 1px solid rgba(228, 231, 236, 0.78);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(18, 20, 24, 0.12);
  backdrop-filter: blur(18px);
}

.floating-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-card strong {
  font-size: 18px;
}

.floating-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.floating-card.before {
  left: -18px;
  bottom: 74px;
}

.floating-card.after {
  right: -18px;
  top: 82px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.feature-grid,
.example-grid,
.pricing-grid,
.steps {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
}

.feature-grid article,
.price-card,
.steps div,
.outcome-list div {
  border: 1px solid var(--line);
  background: var(--white);
}

.feature-grid article {
  min-height: 260px;
  padding: 28px;
  border-radius: 28px;
}

.feature-grid p,
.price-card li,
.plan-copy,
.steps p,
.outcome-list span,
.site-footer p {
  color: var(--muted);
  line-height: 1.58;
}

.feature-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.transformation {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  background: #f7f8fa;
}

.split-copy {
  max-width: 570px;
}

.outcome-list {
  display: grid;
  gap: 14px;
}

.outcome-list div {
  display: grid;
  gap: 6px;
  padding: 22px 24px;
  border-radius: 22px;
}

.examples {
  padding-bottom: 100px;
}

.example-carousel {
  position: relative;
  width: min(1030px, 100%);
  margin: 44px auto 0;
  padding: 36px 58px 58px;
  border-radius: 8px;
  background: #f7f7f8;
}

.carousel-window {
  overflow: hidden;
  border-radius: 2px;
  background: var(--white);
}

.example-grid {
  display: flex;
  gap: 0;
  margin-top: 0;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.example-card {
  position: relative;
  flex: 0 0 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
  cursor: zoom-in;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: grid;
  width: 52px;
  height: 74px;
  place-items: center;
  border: 0;
  color: #050506;
  background: transparent;
  cursor: pointer;
  font-size: 76px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-arrow-prev {
  left: 8px;
}

.carousel-arrow-next {
  right: 8px;
}

.carousel-arrow:focus-visible {
  outline: 3px solid rgba(22, 119, 255, 0.42);
  outline-offset: 2px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c8ccd4;
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 26px;
  background: var(--blue);
}

.preview-trigger {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.preview-trigger:focus-visible {
  outline: 3px solid rgba(22, 119, 255, 0.42);
  outline-offset: -8px;
}

.example-browser {
  height: 640px;
  min-height: 0;
  overflow: hidden;
  padding: 18px;
  background: #f5f7fb;
}

.example-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 10px;
  border-radius: 16px 16px 0 0;
  background: rgba(255, 255, 255, 0.78);
}

.example-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cdd3de;
}

.example-topbar p {
  flex: 1;
  margin: 0;
  color: #78808c;
  font-size: 11px;
  text-align: center;
}

.restaurant-site,
.retail-site,
.service-site {
  overflow: hidden;
  height: 566px;
  min-height: 0;
  padding: 18px;
  border-radius: 0 0 22px 22px;
  transition: transform 240ms ease;
}

.example-card:hover .restaurant-site,
.example-card:hover .retail-site,
.example-card:hover .service-site {
  transform: translateY(-8px);
}

.mini-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  margin-bottom: 16px;
  font-size: 11px;
}

.mini-nav strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  font-size: 15px;
}

.mini-nav span {
  opacity: 0.72;
}

.client-logo {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-wordmark > span:last-child {
  line-height: 1;
}

.restaurant-logo {
  color: #2a120d;
  background: #f8c978;
}

.restaurant-wordmark > span:last-child {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 19px;
}

.logo-flame {
  width: 12px;
  height: 17px;
  border-radius: 10px 10px 10px 2px;
  background: linear-gradient(160deg, #fff8ec, #c24b1d);
  transform: rotate(42deg);
}

.retail-logo {
  color: #fff;
  background: #111114;
}

.retail-wordmark > span:last-child {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}

.logo-stitch {
  position: relative;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.logo-stitch::before,
.logo-stitch::after {
  position: absolute;
  inset: 5px -4px auto;
  height: 2px;
  content: "";
  background: #fff;
}

.logo-stitch::after {
  transform: rotate(90deg);
}

.service-logo {
  color: #fff;
  background: linear-gradient(145deg, #0c5dff, #01b8ff);
}

.service-wordmark > span:last-child {
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.logo-bolt {
  width: 10px;
  height: 18px;
  clip-path: polygon(46% 0, 100% 0, 62% 42%, 100% 42%, 28% 100%, 45% 55%, 0 55%);
  background: #fff;
}

.restaurant-site {
  color: #fff8ec;
  background:
    linear-gradient(140deg, rgba(49, 20, 13, 0.08), rgba(49, 20, 13, 0.68)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1200&q=80") center / cover,
    linear-gradient(145deg, #5f2318, #1e1512 58%, #080706);
  font-family: "Playfair Display", Georgia, serif;
}

.restaurant-hero {
  display: grid;
  align-content: end;
  min-height: 244px;
  padding: 24px;
  border: 1px solid rgba(255, 248, 236, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(15, 8, 5, 0.04), rgba(15, 8, 5, 0.84)),
    rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1px);
}

.restaurant-hero p,
.retail-hero p {
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.restaurant-hero h3,
.retail-hero h3,
.service-hero h3 {
  max-width: 360px;
  margin-bottom: 18px;
  font-size: 32px;
  line-height: 1;
}

.restaurant-hero button,
.retail-hero button,
.service-hero button {
  width: max-content;
  min-height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.restaurant-hero button {
  color: #2a120d;
  background: #f8c978;
}

.restaurant-feature-row,
.restaurant-menu-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.restaurant-feature-row div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 248, 236, 0.12);
}

.restaurant-feature-row span,
.restaurant-feature-row strong {
  display: block;
}

.restaurant-feature-row span {
  color: rgba(255, 248, 236, 0.72);
  font-family: Inter, sans-serif;
  font-size: 11px;
}

.restaurant-feature-row strong {
  margin-top: 4px;
  font-size: 15px;
}

.restaurant-menu-strip img {
  width: 100%;
  height: 94px;
  object-fit: cover;
  border-radius: 16px;
}

.restaurant-menu-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(18, 7, 4, 0.48);
}

.restaurant-menu-board article {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 9px;
  align-items: center;
}

.restaurant-menu-board img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 12px;
}

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

.restaurant-menu-board strong {
  font-size: 13px;
}

.restaurant-menu-board span {
  color: rgba(255, 248, 236, 0.66);
  font-family: Inter, sans-serif;
  font-size: 10px;
  line-height: 1.25;
}

.restaurant-menu-board b {
  color: #f8c978;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.restaurant-proof {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: 16px;
  background: rgba(18, 7, 4, 0.38);
}

.restaurant-proof p {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.2;
}

.restaurant-proof span {
  color: rgba(255, 248, 236, 0.7);
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.restaurant-site {
  color: #20150f;
  background:
    radial-gradient(circle at 5% 20%, rgba(231, 73, 43, 0.2), transparent 26%),
    radial-gradient(circle at 94% 16%, rgba(244, 177, 83, 0.34), transparent 24%),
    linear-gradient(180deg, #faefe2, #f5e5d2);
  font-family: Inter, sans-serif;
}

.capri-nav {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-bottom: 10px;
  color: #3a2b22;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.capri-brand {
  display: grid;
  justify-items: center;
  margin-bottom: 4px;
}

.capri-seal {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 2px solid #2c1c13;
  border-radius: 50%;
  color: #2c1c13;
  background: #f3c27c;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.capri-seal i {
  width: 18px;
  height: 24px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #e44f2f, #732613);
}

.capri-brand h3 {
  margin: 4px 0 0;
  color: #20150f;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(88px, 13vw, 160px);
  font-weight: 400;
  line-height: 0.68;
  text-align: center;
}

.capri-hero {
  display: grid;
  grid-template-columns: 0.74fr 1fr 0.74fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.capri-image-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 12px;
  border: 1px solid rgba(32, 21, 15, 0.16);
  border-radius: 44px;
}

.capri-red {
  background: #e9502e;
}

.capri-gold {
  background: #e8ad45;
}

.capri-image-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 34px;
}

.capri-image-card span {
  display: block;
  margin-top: 9px;
  color: #fff7ec;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.capri-hero div {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.capri-hero p {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 0.96;
}

.capri-hero button,
.capri-menu-feature a {
  width: max-content;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid #20150f;
  border-radius: 999px;
  color: #f7eee3;
  background: #20150f;
  font-weight: 900;
}

.capri-about {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 22px;
  align-items: start;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(32, 21, 15, 0.18);
  border-radius: 34px;
  background: rgba(255, 250, 242, 0.48);
}

.capri-about span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.capri-about p {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.capri-menu-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 16px;
  margin-top: 20px;
}

.capri-menu-feature article {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 18px;
  border: 1px solid rgba(32, 21, 15, 0.16);
  border-radius: 38px;
  background: #fff7eb;
}

.capri-menu-feature img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 26px;
}

.capri-menu-feature h4 {
  margin: 16px 0 8px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 34px;
  line-height: 0.95;
}

.capri-menu-feature p {
  color: #6d5a4b;
  font-size: 13px;
  line-height: 1.45;
}

.capri-menu-feature span {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff8ef;
  background: #e64e2c;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.capri-menu-feature a {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: #20150f;
  background: transparent;
  font-size: 12px;
}

.capri-menu-feature b {
  display: inline-flex;
  margin-top: 8px;
  color: #e64e2c;
  font-size: 18px;
}

.capri-stockists {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 20px;
  border-radius: 34px;
  color: #f7eee3;
  background: #24140e;
}

.capri-stockists strong,
.capri-stockists span {
  display: block;
}

.capri-stockists strong {
  margin-bottom: 10px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 36px;
  line-height: 0.95;
}

.capri-stockists span {
  color: rgba(247, 238, 227, 0.74);
  line-height: 1.45;
}

.capri-stockists img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 26px;
}

.capri-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(32, 21, 15, 0.18);
  color: #4c3b31;
  font-size: 12px;
  font-weight: 800;
}

.restaurant-site {
  padding: 0;
  color: #080808;
  background: #f8f7f3;
  --ember-font: "Refinery", "Refinery 95", Impact, "Arial Narrow", "Roboto Condensed", sans-serif;
  font-family: var(--ember-font);
}

.restaurant-site * {
  font-family: inherit;
}

.veloce-welcome {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.1) 28%, rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.veloce-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  gap: 28px;
  align-items: start;
  min-height: auto;
  padding: 28px 34px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent);
}

.veloce-logo {
  color: #fff;
  font-family: var(--ember-font);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.82;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.35);
}

.veloce-logo span {
  display: block;
  margin-top: 4px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.veloce-social {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: end;
}

.veloce-social span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.veloce-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.veloce-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  align-self: start;
  padding-top: 8px;
  border-top: 0;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.veloce-welcome-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  justify-items: center;
  min-height: 430px;
  padding: 88px 38px 62px;
  text-align: center;
}

.veloce-welcome-copy p {
  margin: 0 0 16px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.veloce-welcome-copy h3 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(50px, 8vw, 112px);
  line-height: 0.88;
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.42);
}

.veloce-welcome-copy button {
  min-height: 46px;
  margin-top: 28px;
  padding: 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: #111;
  background: rgba(255, 255, 255, 0.88);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.veloce-checker {
  height: 34px;
  background:
    linear-gradient(45deg, #111 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(45deg, transparent 75%, #111 75%) 0 0 / 24px 24px,
    linear-gradient(45deg, transparent 75%, #111 75%) 12px 12px / 24px 24px,
    linear-gradient(45deg, #111 25%, transparent 25%) 12px 12px / 24px 24px;
}

.veloce-hero {
  display: grid;
  grid-template-columns: 0.74fr 1.08fr;
}

.veloce-hero-copy {
  display: grid;
  align-content: center;
  gap: 58px;
  min-height: 360px;
  padding: 42px;
  background: #d3a262;
}

.veloce-hero h3 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 0.96;
}

.veloce-hero button {
  width: max-content;
  min-height: 62px;
  padding: 0 42px;
  border: 0;
  border-radius: 999px;
  color: #d3a262;
  background: #080808;
  font: inherit;
  font-size: 26px;
}

.veloce-hero img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.veloce-feature {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 48px 24px 58px;
  color: #fff;
  background: #000;
  text-align: center;
}

.veloce-feature img {
  width: min(440px, 70%);
  height: 270px;
  object-fit: cover;
  border-radius: 999px;
  opacity: 0.78;
}

.veloce-feature span {
  margin-top: -66px;
  padding: 4px 10px;
  border: 1px solid #fff;
  border-radius: 999px;
  font-size: 16px;
  transform: rotate(-8deg);
}

.veloce-feature h3 {
  margin: 2px 0 8px;
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.86;
}

.veloce-feature p {
  max-width: 520px;
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
}

.veloce-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px;
  background: #fff;
}

.veloce-menu-grid article {
  position: relative;
  min-height: 0;
  padding: 14px 14px 18px;
  border: 1px solid #eeeeec;
  border-radius: 0;
  background: #fff;
}

.veloce-menu-grid h4 {
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 34px;
  margin: 0;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.58);
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.veloce-menu-grid img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  display: block;
}

.veloce-menu-grid p,
.veloce-menu-grid b {
  color: #111;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}

.veloce-menu-grid p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  max-width: 86%;
  margin: 18px 0 0;
  font-size: 15.5px;
  font-style: normal;
  font-stretch: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #343434;
  text-transform: uppercase;
}

.veloce-menu-grid b {
  display: inline-block;
  margin-top: 24px;
  font-size: 22px;
  font-weight: 900;
}

.veloce-find {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.22) 52%, rgba(0, 0, 0, 0.64)),
    url("https://images.unsplash.com/photo-1470337458703-46ad1756a187?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.veloce-find h3 {
  margin: 0;
  max-width: 850px;
  color: #fff;
  font-size: clamp(58px, 8vw, 118px);
  line-height: 0.88;
  text-shadow: 0 5px 32px rgba(0, 0, 0, 0.48);
}

.veloce-find-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  justify-items: start;
  min-height: 560px;
  gap: 18px;
  padding: 84px 54px 74px;
  color: #fff;
}

.veloce-find-kicker {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.veloce-find p {
  margin: 0;
  max-width: 610px;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
}

.veloce-find-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(760px, 100%);
  gap: 16px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
}

.veloce-find-details span {
  display: block;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.56);
}

.veloce-find-details strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--ember-font);
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}

.veloce-find button {
  min-height: 46px;
  margin-top: 8px;
  padding: 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  color: #111;
  background: rgba(255, 255, 255, 0.9);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.veloce-find > .veloce-checker {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 28px;
}

.veloce-footer {
  padding: 42px 42px 16px;
  background: #f3f3f1;
}

.veloce-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(128px, 0.84fr)) max-content;
  grid-template-rows: auto minmax(20px, auto);
  gap: 28px 38px;
  align-items: start;
  padding: 0 0 16px;
  border-bottom: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.veloce-footer-logo {
  color: #080808;
  font-family: var(--ember-font);
  font-size: clamp(40px, 5.4vw, 70px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.veloce-footer-logo span {
  display: block;
  margin-top: 7px;
  color: #9a6a34;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.veloce-footer-grid nav {
  display: grid;
  gap: 14px;
}

.veloce-footer-grid a {
  color: #111;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.18;
  text-transform: none;
}

.veloce-footer-grid button {
  justify-self: end;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  color: #fff;
  background: #112b43;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
}

.veloce-footer-grid button::after {
  content: "›";
  margin-left: 12px;
  font-size: 28px;
  line-height: 0;
}

.veloce-footer-legal {
  display: grid;
  grid-column: 5;
  grid-row: 2;
  justify-items: end;
  gap: 3px;
  align-self: end;
  color: #555;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  line-height: 1.25;
  text-align: right;
  text-transform: none;
}

.veloce-footer > .veloce-checker {
  height: 26px;
  margin-top: 0;
}

.retail-site {
  color: #15171b;
  background:
    radial-gradient(circle at 30% 8%, rgba(255, 255, 255, 0.78), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 249, 0.96)),
    linear-gradient(120deg, #f8fafc, #e9edf4);
  font-family: "Space Grotesk", Inter, sans-serif;
}

.retail-site .mini-nav {
  display: grid;
  grid-template-columns: max-content repeat(4, max-content) minmax(120px, 1fr) repeat(3, max-content);
  gap: 16px;
  align-items: center;
  padding: 18px 18px 14px;
  border-top: 3px solid #111;
  color: #111114;
  background: #fff;
  text-transform: uppercase;
}

.retail-site .mini-nav strong {
  margin-right: 12px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 22px;
  line-height: 1;
  text-transform: none;
}

.retail-site .mini-nav span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.retail-site .mini-nav label {
  justify-self: end;
  width: min(210px, 100%);
}

.retail-site .mini-nav input {
  width: 100%;
  min-height: 28px;
  padding: 0 12px;
  border: 0;
  color: #111114;
  background: #f1f1f1;
  font: inherit;
  font-size: 10px;
}

.retail-hero {
  display: grid;
  min-height: 280px;
  align-items: center;
  justify-items: center;
  padding: 34px 20px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18)),
    url("https://images.unsplash.com/photo-1507035895480-2b3156c31fc8?auto=format&fit=crop&w=1400&q=80") center / cover;
  text-align: center;
}

.retail-hero h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(28px, 6vw, 54px);
  font-weight: 400;
  line-height: 1;
}

.retail-hero button {
  min-height: 34px;
  margin: 0 4px;
  padding: 0 18px;
  border: 0;
  color: #111114;
  background: #fff;
  font: inherit;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.retail-shopbar {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}

.retail-shopbar label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  background: #dedede;
}

.retail-shopbar span {
  color: #111114;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.retail-shopbar input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: #30343a;
  background: transparent;
  font: inherit;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-align: right;
}

.retail-shopbar div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.retail-shopbar button {
  min-height: 30px;
  border: 1px solid rgba(17, 17, 20, 0.2);
  color: #3d424a;
  background: rgba(255, 255, 255, 0.62);
  font: inherit;
  font-size: 10px;
  text-transform: uppercase;
}

.retail-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.retail-products article {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 20, 0.09);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 1px 0 rgba(17, 17, 20, 0.04);
}

.retail-products img {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  height: 192px;
  object-fit: cover;
  object-position: center 18%;
  background: #fff;
}

.retail-products article > span,
.retail-products article > strong {
  display: block;
  padding: 0 10px;
}

.retail-products article > span {
  margin-top: 3px;
  color: #111114;
  font-size: 12px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.retail-products article > strong {
  justify-self: end;
  padding-bottom: 10px;
  color: #111114;
  font-size: 12px;
  white-space: nowrap;
}

.retail-promo {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 18px;
  background: #fff;
}

.retail-promo strong {
  font-size: 14px;
}

.retail-promo span {
  color: #626976;
  font-size: 12px;
  line-height: 1.35;
}

.retail-footer {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.1fr;
  gap: 24px;
  align-items: end;
  margin-top: 14px;
  padding: 38px 26px 18px;
  min-height: 180px;
  border: 1px solid rgba(17, 17, 20, 0.06);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.85), rgba(245, 246, 248, 0.95)),
    repeating-linear-gradient(90deg, rgba(17, 17, 20, 0.025) 0 1px, transparent 1px 42px);
}

.retail-footer div {
  display: grid;
  gap: 6px;
}

.retail-footer span {
  margin-bottom: 12px;
  color: #a2a7b0;
  font-size: 9px;
  text-transform: uppercase;
}

.retail-footer a,
.retail-footer small {
  color: #24272d;
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.retail-footer strong {
  color: #15171b;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.78;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.retail-footer small {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 24px;
  color: #a2a7b0;
  font-size: 9px;
}

.service-site {
  --hvac-navy: #082845;
  --hvac-yellow: #ffc928;
  --hvac-text: #33383f;
  --hvac-muted: #6f7680;
  color: var(--hvac-text);
  background: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
}

.hvac-header {
  background: #fff;
  border-bottom: 1px solid #e7e9ec;
}

.hvac-topbar {
  display: grid;
  grid-template-columns: 1fr max-content max-content;
  gap: 22px;
  align-items: center;
  padding: 13px 28px;
  color: #6e737a;
  font-size: 12px;
}

.hvac-topbar strong {
  justify-self: start;
  padding: 2px 8px;
  border: 3px solid #33383f;
  color: #33383f;
  font-size: 22px;
  letter-spacing: 0.08em;
}

.hvac-header nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 9px 24px;
  border-top: 1px solid #edf0f2;
  font-size: 10px;
  font-weight: 800;
}

.hvac-header nav a:first-child {
  color: var(--hvac-yellow);
}

.service-hero {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: stretch;
  grid-auto-rows: 1fr;
  min-height: 330px;
  background: var(--hvac-navy);
}

.service-hero > div {
  display: grid;
  align-content: center;
  padding: 42px 58px;
}

.badge {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-hero h3 {
  max-width: 450px;
  margin: 18px 0;
  color: #fff;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.08;
}

.service-hero p {
  display: flex;
  gap: 22px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.service-hero p span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--hvac-yellow);
}

.service-hero button,
.hvac-about button,
.hvac-service-bands button,
.hvac-form button,
.hvac-projects button {
  width: max-content;
  min-height: 42px;
  padding: 0 28px;
  border: 0;
  color: #082845;
  background: var(--hvac-yellow);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-hero img {
  display: block;
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
}

.hvac-brand-strip {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) 1fr;
  gap: 30px;
  align-items: center;
  padding: 42px 120px;
  border-bottom: 1px solid #eef0f2;
  background: #fbfcfd;
}

.hvac-brand-strip div {
  padding-left: 16px;
  border-left: 3px solid var(--hvac-yellow);
}

.hvac-brand-strip div span {
  display: block;
  margin-bottom: 6px;
  color: #33383f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hvac-brand-strip p {
  margin: 0;
  max-width: 270px;
  color: #737a84;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.hvac-brand-strip ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(105px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hvac-brand-strip li {
  display: grid;
  min-height: 58px;
  place-items: center;
  min-width: 0;
  padding: 0 12px;
  border: 1px solid #e5e8ec;
  color: #9aa0a8;
  background: #fff;
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1;
  overflow-wrap: anywhere;
  text-align: center;
  text-transform: uppercase;
}

.hvac-about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding: 58px 130px 72px;
  background: #fff;
}

.hvac-about img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: -14px 16px 0 #eef1f2;
}

.hvac-about span,
.service-reviews > span,
.hvac-projects span {
  color: var(--hvac-yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hvac-about h3,
.service-reviews h3,
.hvac-projects h3,
.hvac-form h3 {
  margin: 10px 0 20px;
  color: #33383f;
  font-size: 30px;
  line-height: 1.18;
}

.hvac-about p {
  margin: 0 0 16px;
  color: var(--hvac-muted);
  font-size: 13px;
  line-height: 1.8;
}

.hvac-about button,
.hvac-form button,
.hvac-projects button {
  color: #fff;
  background: var(--hvac-navy);
}

.service-reviews {
  padding: 64px 120px 90px;
  background: #fff;
}

.service-reviews > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  margin-top: 30px;
}

.service-reviews blockquote {
  margin: 0;
}

.service-reviews p {
  color: var(--hvac-muted);
  font-size: 12px;
  line-height: 1.8;
}

.service-reviews cite {
  display: block;
  margin-top: 16px;
  color: #33383f;
  font-style: normal;
  font-weight: 900;
}

.service-reviews b {
  color: var(--hvac-yellow);
  font-size: 12px;
}

.hvac-service-bands article {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  color: #fff;
  background: var(--hvac-navy);
}

.hvac-service-bands img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.9);
}

.hvac-service-bands article > div {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 26px;
  align-items: center;
  max-width: 980px;
  min-height: 170px;
  margin: 0 auto;
  padding: 36px 60px;
}

.hvac-service-bands h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 28px;
}

.hvac-service-bands p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

.hvac-service-bands button {
  border: 1px solid rgba(255, 255, 255, 0.86);
  color: #fff;
  background: transparent;
}

.hvac-form {
  padding: 82px 130px;
  background: #fff;
  text-align: center;
}

.hvac-form form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 26px auto 0;
}

.hvac-form input,
.hvac-form textarea {
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid #e1e4e8;
  color: #8a8f96;
  background: #fff;
  font: inherit;
  font-size: 12px;
}

.hvac-form textarea {
  grid-column: 1 / -1;
  min-height: 130px;
  padding-top: 18px;
}

.hvac-form button {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 12px;
}

.hvac-projects {
  padding: 44px 0 0;
  background: #fff;
}

.hvac-projects > div:first-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
  gap: 14px;
  padding: 0 120px 26px;
}

.hvac-projects h3 {
  grid-row: 1;
  margin: 0 0 14px;
}

.hvac-projects > div:last-child {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr 1.2fr 0.95fr;
  gap: 14px;
}

.hvac-projects img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.example-copy {
  padding: 26px;
  background: #fff;
}

.example-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: 24px;
}

.preview-modal.is-open {
  display: grid;
  place-items: center;
}

.preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 14, 0.64);
  backdrop-filter: blur(18px);
}

.preview-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(90vh, 960px);
  overflow: auto;
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.34);
}

.preview-dialog-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.preview-dialog-header h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 42px);
}

.modal-close {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.preview-dialog-body {
  padding: 26px;
  background: #f5f7fb;
}

.preview-dialog-body .example-browser {
  height: auto;
  min-height: auto;
  overflow: visible;
  padding: 22px;
  border-radius: 26px;
}

.preview-dialog-body .website-preview {
  height: auto;
  min-height: 680px;
  overflow: visible;
  padding: 28px;
}

.preview-dialog-body .restaurant-hero {
  min-height: 390px;
}

.preview-dialog-body .capri-brand h3 {
  font-size: clamp(82px, 12vw, 156px);
}

.preview-dialog-body .capri-hero img {
  height: 360px;
}

.preview-dialog-body .capri-menu-feature img {
  height: 240px;
}

.preview-dialog-body .veloce-welcome {
  min-height: 700px;
}

.preview-dialog-body .veloce-welcome-copy {
  min-height: 590px;
}

.preview-dialog-body .veloce-menu-grid img {
  height: 430px;
}

.preview-dialog-body .veloce-find {
  min-height: 680px;
}

.preview-dialog-body .veloce-find-copy {
  min-height: 680px;
}

.preview-dialog-body .restaurant-hero h3,
.preview-dialog-body .retail-hero h3,
.preview-dialog-body .service-hero h3 {
  max-width: 620px;
  font-size: clamp(42px, 6vw, 78px);
}

.preview-dialog-body .service-hero h3 {
  font-size: clamp(38px, 4.5vw, 56px);
}

.preview-dialog-body .service-hero img {
  align-self: stretch;
  height: 100%;
  min-height: 100%;
}

.preview-dialog-body .restaurant-menu-strip img,
.preview-dialog-body .retail-products img {
  height: 260px;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  padding: 26px;
  border-radius: 30px;
}

.price-card.featured {
  border-color: rgba(22, 119, 255, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #0750b8;
  background: rgba(22, 119, 255, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.plan-label {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin-bottom: 18px;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
}

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

.price-card li {
  position: relative;
  padding-left: 22px;
}

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

.domain-card {
  background: #fafafa;
}

.process {
  padding-top: 30px;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.steps div {
  padding: 28px;
  border-radius: 26px;
}

.steps span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--ink), #464b55);
  font-weight: 800;
}

.consultation {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 42px;
  align-items: start;
}

.consult-copy {
  position: sticky;
  top: 112px;
}

.consult-copy code {
  padding: 2px 6px;
  border-radius: 6px;
  background: #edf0f5;
  font-size: 0.92em;
}

.calendar-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 64px rgba(18, 20, 24, 0.09);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 54px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 420px;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 18px;
  color: #4c5058;
  font-size: 14px;
}

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

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 500px;
  }

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

  .example-grid {
    grid-template-columns: none;
  }

  .retail-hero,
  .service-hero {
    grid-template-columns: 1fr 0.75fr;
  }

  .price-card.featured {
    transform: none;
  }

  .consult-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: stretch;
    border-radius: 28px;
  }

  nav {
    display: none;
  }

  .header-cta {
    padding: 0 14px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero::before {
    inset: 84px 0 auto auto;
    width: 250px;
    height: 250px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .device-shell {
    min-height: 420px;
    border-radius: 26px;
  }

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

  .preview-photo {
    min-height: 124px;
  }

  .floating-card {
    width: 150px;
  }

  .floating-card.before {
    left: 8px;
    bottom: 30px;
  }

  .floating-card.after {
    right: 8px;
    top: 72px;
  }

  .feature-grid,
  .example-grid,
  .pricing-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .example-grid {
    display: flex;
  }

  .example-carousel {
    padding: 18px 0 46px;
  }

  .carousel-window {
    border-radius: 0;
  }

  .carousel-arrow {
    top: auto;
    bottom: 5px;
    width: 44px;
    height: 40px;
    font-size: 54px;
    transform: none;
  }

  .carousel-arrow-prev {
    left: 24px;
  }

  .carousel-arrow-next {
    right: 24px;
  }

  .carousel-dots {
    bottom: 18px;
  }

  .preview-trigger {
    opacity: 1;
    transform: none;
  }

  .retail-hero,
  .service-hero,
  .preview-dialog-body .retail-hero,
  .preview-dialog-body .service-hero {
    grid-template-columns: 1fr;
  }

  .retail-shopbar,
  .preview-dialog-body .retail-shopbar,
  .retail-footer,
  .preview-dialog-body .retail-footer {
    grid-template-columns: 1fr;
  }

  .hvac-topbar,
  .preview-dialog-body .hvac-topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hvac-header nav,
  .preview-dialog-body .hvac-header nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hvac-brand-strip,
  .preview-dialog-body .hvac-brand-strip,
  .hvac-about,
  .preview-dialog-body .hvac-about,
  .service-reviews > div,
  .preview-dialog-body .service-reviews > div,
  .hvac-service-bands article > div,
  .preview-dialog-body .hvac-service-bands article > div,
  .hvac-form form,
  .preview-dialog-body .hvac-form form,
  .hvac-projects > div:first-child,
  .preview-dialog-body .hvac-projects > div:first-child,
  .hvac-projects > div:last-child,
  .preview-dialog-body .hvac-projects > div:last-child {
    grid-template-columns: 1fr;
  }

  .hvac-brand-strip ul,
  .preview-dialog-body .hvac-brand-strip ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hvac-brand-strip,
  .preview-dialog-body .hvac-brand-strip,
  .hvac-about,
  .preview-dialog-body .hvac-about,
  .service-reviews,
  .preview-dialog-body .service-reviews,
  .hvac-form,
  .preview-dialog-body .hvac-form {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hvac-about img,
  .preview-dialog-body .hvac-about img {
    height: 300px;
  }

  .hvac-service-bands article > div,
  .preview-dialog-body .hvac-service-bands article > div {
    justify-items: start;
    padding: 34px 24px;
  }

  .hvac-form textarea,
  .preview-dialog-body .hvac-form textarea,
  .hvac-form button,
  .preview-dialog-body .hvac-form button {
    grid-column: auto;
  }

  .retail-shopbar div,
  .preview-dialog-body .retail-shopbar div {
    grid-template-columns: repeat(2, 1fr);
  }

  .retail-site .mini-nav,
  .preview-dialog-body .retail-site .mini-nav {
    grid-template-columns: 1fr 1fr;
  }

  .retail-site .mini-nav strong,
  .retail-site .mini-nav label,
  .preview-dialog-body .retail-site .mini-nav strong,
  .preview-dialog-body .retail-site .mini-nav label {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .capri-hero,
  .capri-about,
  .capri-menu-feature,
  .capri-stockists,
  .preview-dialog-body .capri-hero,
  .preview-dialog-body .capri-about,
  .preview-dialog-body .capri-menu-feature,
  .preview-dialog-body .capri-stockists {
    grid-template-columns: 1fr;
  }

  .capri-nav,
  .capri-footer {
    flex-wrap: wrap;
    justify-content: center;
  }

  .veloce-header,
  .veloce-footer-grid,
  .preview-dialog-body .veloce-header,
  .preview-dialog-body .veloce-footer-grid {
    grid-template-columns: 1fr;
  }

  .veloce-header nav,
  .veloce-social {
    grid-column: auto;
  }

  .veloce-header,
  .preview-dialog-body .veloce-header {
    justify-items: center;
    text-align: center;
  }

  .veloce-footer-legal,
  .preview-dialog-body .veloce-footer-legal {
    grid-column: auto;
    grid-row: auto;
    justify-items: start;
    text-align: left;
  }

  .veloce-header nav,
  .preview-dialog-body .veloce-header nav {
    display: flex;
    flex-wrap: wrap;
  }

  .veloce-menu-grid,
  .preview-dialog-body .veloce-menu-grid {
    grid-template-columns: 1fr;
  }

  .veloce-find-details,
  .preview-dialog-body .veloce-find-details {
    grid-template-columns: 1fr;
  }

  .veloce-find-copy,
  .preview-dialog-body .veloce-find-copy {
    min-height: 300px;
    padding: 56px 24px 52px;
  }

  .veloce-welcome,
  .preview-dialog-body .veloce-welcome {
    min-height: 480px;
  }

  .veloce-welcome-copy,
  .preview-dialog-body .veloce-welcome-copy {
    min-height: 330px;
    padding: 56px 24px 42px;
  }

  .service-hero img,
  .preview-dialog-body .service-hero img {
    height: 230px;
  }

  .preview-modal {
    padding: 12px;
  }

  .preview-dialog {
    border-radius: 24px;
  }

  .preview-dialog-header,
  .preview-dialog-body {
    padding: 18px;
  }

  .preview-dialog-body .website-preview {
    min-height: auto;
    padding: 18px;
  }

  .section {
    padding: 62px 0;
  }

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

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .site-preview {
    padding: 22px;
  }

  .preview-grid {
    display: none;
  }

  .mini-nav {
    flex-wrap: wrap;
  }

  .restaurant-feature-row,
  .restaurant-menu-strip,
  .retail-products,
  .hvac-brand-strip,
  .hvac-brand-strip ul,
  .hvac-about,
  .service-reviews > div,
  .hvac-service-bands article > div,
  .hvac-form form,
  .hvac-projects > div:first-child,
  .hvac-projects > div:last-child {
    grid-template-columns: 1fr;
  }

  .restaurant-hero h3,
  .retail-hero h3,
  .service-hero h3,
  .preview-dialog-body .restaurant-hero h3,
  .preview-dialog-body .retail-hero h3,
  .preview-dialog-body .service-hero h3 {
    font-size: 34px;
  }

  .preview-dialog-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
