:root {
  --ink: #151515;
  --muted: #626866;
  --paper: #fbfaf6;
  --line: rgba(21, 21, 21, .14);
  --accent: #b45f2a;
  --accent-strong: #783915;
  --dark: #101312;
  --soft: #f2efe7;
  --radius: 8px;
}

body.restaurant-site {
  --ink: #24160f;
  --muted: #74645a;
  --paper: #fff8ed;
  --line: rgba(64, 36, 23, .16);
  --accent: #c8743d;
  --accent-strong: #7f3f1e;
  --dark: #2a140d;
  --soft: #f3e5d3;
  --font-display: Georgia, "Times New Roman", serif;
}

body.builders-site {
  --ink: #182129;
  --muted: #65717b;
  --paper: #f7f8f8;
  --line: rgba(24, 33, 41, .16);
  --accent: #f0b429;
  --accent-strong: #9a6500;
  --dark: #17212b;
  --soft: #eceff1;
  --font-display: Inter, system-ui, sans-serif;
}

body.cleaners-site {
  --ink: #10252a;
  --muted: #5e7478;
  --paper: #f8fcfd;
  --line: rgba(16, 37, 42, .14);
  --accent: #4dc6d6;
  --accent-strong: #0d7786;
  --dark: #0e3440;
  --soft: #eaf7f9;
  --font-display: Inter, system-ui, sans-serif;
}

body.accountants-site {
  --ink: #17243b;
  --muted: #647086;
  --paper: #f7f9fc;
  --line: rgba(23, 36, 59, .14);
  --accent: #6f8fcf;
  --accent-strong: #2e4d8b;
  --dark: #111c33;
  --soft: #eaf0fb;
  --font-display: Inter, system-ui, sans-serif;
}

body.barbers-site {
  --ink: #201713;
  --muted: #75685f;
  --paper: #f9f3eb;
  --line: rgba(32, 23, 19, .17);
  --accent: #c49355;
  --accent-strong: #7b5427;
  --dark: #1c120e;
  --soft: #eee1d0;
  --font-display: Georgia, "Times New Roman", serif;
}

body.clinic-site {
  --ink: #123237;
  --muted: #5f7477;
  --paper: #f7fbfb;
  --line: rgba(18, 50, 55, .14);
  --accent: #8ccfc3;
  --accent-strong: #237d72;
  --dark: #123237;
  --soft: #e9f6f3;
  --font-display: Inter, system-ui, sans-serif;
}

body.dentist-site {
  --ink: #15304a;
  --muted: #607587;
  --paper: #f8fbff;
  --line: rgba(21, 48, 74, .14);
  --accent: #76b7ea;
  --accent-strong: #2470aa;
  --dark: #112c46;
  --soft: #e8f4fc;
  --font-display: Inter, system-ui, sans-serif;
}

body.cafe-site {
  --ink: #2a1b14;
  --muted: #756359;
  --paper: #fff7ec;
  --line: rgba(42, 27, 20, .15);
  --accent: #d9824b;
  --accent-strong: #8d4824;
  --dark: #2a1b14;
  --soft: #f5e4d1;
  --font-display: Georgia, "Times New Roman", serif;
}

body.fitness-site {
  --ink: #121826;
  --muted: #626a7b;
  --paper: #f7f8fb;
  --line: rgba(18, 24, 38, .14);
  --accent: #ff5a5f;
  --accent-strong: #b62032;
  --dark: #121826;
  --soft: #f1edf7;
  --font-display: Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  padding-bottom: 148px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 4px;
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 92%, white);
  backdrop-filter: blur(16px);
}

.site-nav .wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  font-family: var(--font-display, Inter, system-ui, sans-serif);
  letter-spacing: 0;
}

.logo::before {
  content: "";
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  background: var(--accent);
}

.restaurant-site .logo::before {
  width: 38px;
  border-radius: 50% 50% 8px 8px;
  border-color: #fff8ed;
  background: linear-gradient(90deg, #fff8ed 0 45%, var(--accent) 45% 55%, #fff8ed 55%);
}

.builders-site .logo::before {
  clip-path: polygon(0 36%, 50% 0, 100% 36%, 100% 100%, 0 100%);
  border: 0;
  background: var(--accent);
}

.cleaners-site .logo::before {
  border-radius: 50% 50% 50% 8px;
  border-color: var(--accent-strong);
  background: linear-gradient(135deg, white, var(--accent));
}

.accountants-site .logo::before {
  border: 0;
  background:
    linear-gradient(90deg, var(--accent) 0 28%, transparent 28% 36%, var(--accent) 36% 64%, transparent 64% 72%, var(--accent) 72%),
    var(--dark);
}

.barbers-site .logo::before {
  border-radius: 50%;
  border-color: var(--accent);
  background:
    linear-gradient(45deg, transparent 0 42%, var(--accent) 42% 58%, transparent 58%),
    linear-gradient(-45deg, transparent 0 42%, var(--accent) 42% 58%, transparent 58%),
    #1c120e;
}

.clinic-site .logo::before {
  border: 0;
  background:
    linear-gradient(90deg, transparent 0 35%, var(--accent-strong) 35% 65%, transparent 65%),
    linear-gradient(0deg, transparent 0 35%, var(--accent-strong) 35% 65%, transparent 65%),
    var(--accent);
}

.dentist-site .logo::before {
  border-radius: 8px 8px 50% 50%;
  border-color: var(--accent-strong);
  background: white;
}

.cafe-site .logo::before {
  border-color: var(--accent-strong);
  background:
    linear-gradient(0deg, var(--accent) 0 42%, transparent 42%),
    radial-gradient(circle at 50% 32%, var(--accent-strong) 0 28%, transparent 29%),
    #fff7ec;
}

.fitness-site .logo::before {
  border: 0;
  transform: skew(-12deg);
  background: linear-gradient(135deg, var(--accent), #fff);
}

.restaurant-site .logo {
  font-size: 29px;
  font-weight: 700;
  letter-spacing: .02em;
}

.builders-site .logo {
  text-transform: uppercase;
  letter-spacing: .04em;
}

.cleaners-site .logo {
  color: var(--accent-strong);
}

.barbers-site .logo,
.cafe-site .logo {
  font-size: 30px;
  font-weight: 700;
}

.accountants-site .site-nav,
.builders-site .site-nav,
.fitness-site .site-nav {
  background: color-mix(in srgb, var(--dark) 94%, white);
  color: white;
}

.accountants-site .nav-links,
.builders-site .nav-links,
.fitness-site .nav-links {
  color: rgba(255, 255, 255, .72);
}

.cleaners-site .hero img,
.clinic-site .hero img,
.dentist-site .hero img {
  opacity: .9;
}

.cleaners-site .hero::after,
.clinic-site .hero::after,
.dentist-site .hero::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .55) 48%, rgba(255, 255, 255, .08));
}

.cleaners-site .hero,
.clinic-site .hero,
.dentist-site .hero {
  color: var(--ink);
}

.cleaners-site .lead,
.clinic-site .lead,
.dentist-site .lead {
  color: var(--muted);
}

.restaurant-site .hero {
  min-height: 740px;
}

.restaurant-site .menu-item {
  background: transparent;
  box-shadow: none;
  border-width: 0 0 1px;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.builders-site .proof-strip,
.accountants-site .proof-strip,
.fitness-site .proof-strip {
  background: var(--dark);
  color: white;
}

.builders-site .proof span,
.accountants-site .proof span,
.fitness-site .proof span {
  color: rgba(255, 255, 255, .68);
}

.builders-site .panel {
  border-top: 6px solid var(--accent);
}

.cleaners-site .panel,
.clinic-site .panel,
.dentist-site .panel {
  box-shadow: 0 18px 44px rgba(16, 37, 42, .08);
}

.barbers-site .feature-band,
.cafe-site .feature-band {
  background: var(--dark);
  color: white;
}

.barbers-site .feature-band .section-head p,
.cafe-site .feature-band .section-head p {
  color: rgba(255, 255, 255, .74);
}

.barbers-site .feature-band .panel,
.cafe-site .feature-band .tag-cloud span {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(21, 21, 21, .14);
}

.button.alt {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}

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

.hero {
  min-height: 680px;
  display: grid;
  align-items: end;
  color: white;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .74;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .28) 48%, rgba(0, 0, 0, .08));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 86px 0 72px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 18px 0;
  font-size: clamp(48px, 7vw, 86px);
  line-height: .98;
  font-family: var(--font-display, Inter, system-ui, sans-serif);
}

h2 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1;
  font-family: var(--font-display, Inter, system-ui, sans-serif);
}

h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.12;
}

.lead {
  max-width: 660px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
  line-height: 1.5;
}

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

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 75%, white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.proof {
  padding: 22px;
  border-left: 1px solid var(--line);
}

.proof:last-child {
  border-right: 1px solid var(--line);
}

.proof strong {
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
}

.proof span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

section { padding: 76px 0; }

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.panel,
.booking,
.menu-item,
.quote-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(21, 21, 21, .055);
}

.statement {
  border-left: 8px solid var(--accent);
  background: var(--soft);
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius);
}

.statement p {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 1.12;
  font-family: var(--font-display, Inter, system-ui, sans-serif);
}

.service-list {
  display: grid;
  gap: 10px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.service-row span {
  color: var(--muted);
  font-weight: 750;
}

.split-feature {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 850;
}

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

.detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 20px;
}

.detail-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

.review-row {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: stretch;
}

.review-quote {
  border-radius: var(--radius);
  background: var(--dark);
  color: white;
  padding: clamp(26px, 5vw, 54px);
}

.review-quote blockquote {
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.14;
  font-family: var(--font-display, Inter, system-ui, sans-serif);
}

.review-quote cite {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, .72);
  font-style: normal;
  font-weight: 800;
}

.info-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 24px;
}

.info-panel dl {
  display: grid;
  gap: 13px;
  margin: 0;
}

.info-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
}

.info-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-panel dt { font-weight: 900; }

.info-panel dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.restaurant-site .faq-list details {
  background: transparent;
  border-width: 0 0 1px;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.builders-site .faq-list details {
  border-left: 8px solid var(--accent);
  background: #f7f8f8;
}

.cleaners-site .faq-list details {
  background: var(--soft);
  border-color: transparent;
}

.accountants-site .faq-list details {
  background: white;
  border-left: 4px solid var(--accent);
}

.barbers-site .faq-list details {
  background: #1c120e;
  border-color: rgba(255, 255, 255, .18);
  color: white;
}

.barbers-site .faq-list p {
  color: rgba(255, 255, 255, .72);
}

.clinic-site .faq-list details,
.dentist-site .faq-list details {
  background: color-mix(in srgb, var(--soft) 72%, white);
}

.fitness-site .faq-list details {
  background: #121826;
  border-color: #121826;
  color: white;
}

.fitness-site .faq-list p {
  color: rgba(255, 255, 255, .72);
}

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

.menu-column h3 {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 12px;
  margin-bottom: 8px;
}

.compact-list {
  display: grid;
  gap: 12px;
}

.compact-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.compact-list p {
  grid-column: 1 / -1;
  margin: -8px 0 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.panel p,
.menu-item p,
.quote-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.feature-band {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-list {
  display: grid;
  gap: 12px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
}

.menu-item strong:last-child {
  font-size: 18px;
}

.booking {
  background: var(--dark);
  color: white;
}

.booking p {
  color: rgba(255, 255, 255, .75);
  line-height: 1.55;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.quote-box {
  display: grid;
  gap: 12px;
}

.quote-box h3 {
  margin-bottom: 2px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 26%, transparent);
  outline: none;
}

.booking-form .button,
.quote-box .button {
  grid-column: 1 / -1;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: item;
}

.timeline .panel {
  counter-increment: item;
}

.timeline .panel::before {
  content: counter(item);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--accent);
  font-weight: 900;
}

.cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #101312;
  color: white;
  border-top: 6px solid #b7ff2a;
  padding: 12px 0;
  box-shadow: 0 -18px 45px rgba(0, 0, 0, .24);
  transition: padding .22s ease, box-shadow .22s ease;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
}

.cta h2 {
  margin: 2px 0 4px;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.12;
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  line-height: 1.35;
  max-width: 980px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .22s ease, opacity .22s ease;
}

.cta .eyebrow {
  display: inline-block;
  color: #b7ff2a;
  font-size: 11px;
}

.cta .button.alt {
  background: #b7ff2a;
  border-color: #b7ff2a;
  color: #101312;
  min-height: 42px;
}

.kiwi-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(183, 255, 42, .44);
  border-radius: var(--radius);
  background: rgba(183, 255, 42, .12);
  color: #b7ff2a;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.at-page-end .cta {
  padding: 22px 0;
  box-shadow: 0 -24px 70px rgba(0, 0, 0, .32);
}

.at-page-end .cta p {
  max-height: 90px;
  opacity: 1;
}

footer {
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

@media (max-width: 900px) {
  .nav-links a:not(.button) { display: none; }
  .proof-grid,
  .grid-3,
  .grid-2,
  .split-feature,
  .detail-grid,
  .review-row,
  .menu-columns,
  .timeline,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  body {
    padding-bottom: 260px;
  }

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

  .kiwi-price,
  .cta .button.alt {
    width: 100%;
  }

  .proof {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 22px, 1160px); }
  .site-nav .wrap {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
  }

  .hero {
    min-height: 620px;
  }

  h1 { font-size: 44px; }
  .hero-actions .button,
  .booking-form,
  .booking-form .button,
  .quote-box .button {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .menu-item {
    grid-template-columns: 1fr;
  }
}

/* Individual site art direction */
.restaurant-site .site-nav {
  position: absolute;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(42, 20, 13, .82), rgba(42, 20, 13, 0));
  border-bottom: 0;
  color: white;
}

.restaurant-site .nav-links { color: rgba(255, 255, 255, .76); }

.restaurant-site .hero {
  align-items: center;
  min-height: 760px;
}

.restaurant-site .hero::after {
  background: linear-gradient(0deg, rgba(42, 20, 13, .76), rgba(42, 20, 13, .16) 46%, rgba(42, 20, 13, .68));
}

.restaurant-site .hero-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding-top: 150px;
}

.restaurant-site h1 { font-size: clamp(54px, 8vw, 104px); }
.restaurant-site .hero-actions { justify-content: center; }
.restaurant-site .proof-grid { grid-template-columns: 1.2fr 1fr 1fr 1.2fr; }

.restaurant-site #menu .grid-2 {
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
}

.restaurant-site .booking {
  margin-top: -118px;
  border: 0;
  background: #fff8ed;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(42, 20, 13, .22);
}

.restaurant-site .booking p { color: var(--muted); }

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

.restaurant-site input,
.restaurant-site select {
  background: transparent;
  border-width: 0 0 1px;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.builders-site .hero,
.accountants-site .hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--dark);
}

.builders-site .hero img,
.accountants-site .hero img {
  position: relative;
  order: 2;
  height: min(72vh, 680px);
  min-height: 540px;
  opacity: 1;
}

.builders-site .hero::after,
.accountants-site .hero::after {
  display: none;
}

.builders-site .hero-content,
.accountants-site .hero-content {
  align-self: center;
  padding: clamp(42px, 7vw, 88px);
}

.builders-site h1,
.accountants-site h1 {
  font-size: clamp(44px, 5.8vw, 78px);
}

.builders-site .grid-3 {
  grid-template-columns: 1.2fr .9fr .9fr;
}

.builders-site .timeline {
  grid-template-columns: .8fr 1.2fr .8fr 1.2fr;
}

.builders-site .quote-box {
  border: 0;
  border-top: 8px solid var(--accent);
  box-shadow: 0 26px 60px rgba(24, 33, 41, .16);
}

.builders-site .quote-box input,
.builders-site .quote-box select,
.builders-site .quote-box textarea,
.accountants-site .quote-box input,
.accountants-site .quote-box select,
.accountants-site .quote-box textarea {
  background: #f7f8f8;
  border-color: transparent;
}

.cleaners-site .site-nav,
.clinic-site .site-nav,
.dentist-site .site-nav {
  position: relative;
  background: white;
}

.cleaners-site .hero,
.clinic-site .hero,
.dentist-site .hero {
  min-height: auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  background: var(--paper);
  padding: clamp(28px, 5vw, 64px) 0;
}

.cleaners-site .hero img,
.clinic-site .hero img,
.dentist-site .hero img {
  position: relative;
  order: 2;
  width: min(50vw, 720px);
  height: 560px;
  margin-right: max(16px, calc((100vw - 1160px) / 2));
  border-radius: var(--radius);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(18, 50, 55, .14);
}

.cleaners-site .hero::after,
.clinic-site .hero::after,
.dentist-site .hero::after {
  display: none;
}

.cleaners-site .hero-content,
.clinic-site .hero-content,
.dentist-site .hero-content {
  width: min(560px, calc(100vw - 32px));
  margin-left: max(16px, calc((100vw - 1160px) / 2));
  padding: 0;
}

.cleaners-site .proof-grid,
.clinic-site .proof-grid,
.dentist-site .proof-grid {
  grid-template-columns: repeat(2, 1fr);
}

.cleaners-site .proof,
.clinic-site .proof,
.dentist-site .proof {
  border: 0;
  border-bottom: 1px solid var(--line);
}

.cleaners-site .grid-3 {
  grid-template-columns: .8fr 1.25fr .95fr;
}

.clinic-site .split-feature {
  grid-template-columns: .72fr 1.28fr;
}

.dentist-site .statement {
  border-left: 0;
  border-top: 10px solid var(--accent);
  text-align: center;
}

.barbers-site .site-nav {
  background: #1c120e;
  border-color: rgba(255, 255, 255, .1);
  color: white;
}

.barbers-site .nav-links { color: rgba(255, 255, 255, .66); }

.barbers-site .hero {
  min-height: 760px;
  align-items: end;
}

.barbers-site .hero img {
  filter: saturate(.78) contrast(1.08);
  opacity: .62;
}

.barbers-site .hero::after {
  background: linear-gradient(90deg, rgba(28, 18, 14, .92), rgba(28, 18, 14, .5) 42%, rgba(28, 18, 14, .12));
}

.barbers-site .hero-content {
  max-width: 680px;
  padding-bottom: 110px;
}

.barbers-site h1 { font-size: clamp(58px, 8.5vw, 112px); }

.barbers-site #cuts .grid-2 {
  grid-template-columns: 1.2fr .8fr;
}

.barbers-site .booking {
  border: 1px solid rgba(255, 255, 255, .16);
  background: #1c120e;
}

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

.barbers-site input,
.barbers-site select {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  color: white;
}

.barbers-site .service-row {
  border-color: rgba(32, 23, 19, .28);
  padding: 22px 0;
}

.barbers-site .service-row strong { font-size: 24px; }

.accountants-site .statement {
  max-width: 980px;
  margin-left: auto;
  border-left: 0;
  border-top: 8px solid var(--accent);
}

.accountants-site .feature-band {
  background: white;
}

.accountants-site .split-feature {
  grid-template-columns: 1.15fr .85fr;
}

.accountants-site .service-list {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 22px;
}

.clinic-site .quote-box,
.dentist-site .quote-box,
.cleaners-site .quote-box {
  background: white;
  border-color: transparent;
  box-shadow: 0 22px 54px rgba(16, 37, 42, .1);
}

.clinic-site .quote-box input,
.clinic-site .quote-box select,
.clinic-site .quote-box textarea,
.dentist-site .quote-box input,
.dentist-site .quote-box select,
.cleaners-site .quote-box input,
.cleaners-site .quote-box select {
  background: var(--soft);
  border-color: transparent;
}

.cafe-site .site-nav {
  position: absolute;
  left: 0;
  right: 0;
  border-bottom: 0;
  background: rgba(255, 247, 236, .88);
}

.cafe-site .hero {
  min-height: 720px;
  align-items: center;
  color: var(--ink);
  background: var(--paper);
}

.cafe-site .hero img {
  left: auto;
  width: 54%;
  opacity: 1;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 10%);
}

.cafe-site .hero::after {
  background: linear-gradient(90deg, var(--paper) 0 44%, rgba(255, 247, 236, .5) 62%, rgba(255, 247, 236, 0));
}

.cafe-site .hero-content {
  max-width: 520px;
  padding-top: 130px;
}

.cafe-site .lead { color: var(--muted); }
.cafe-site h1 { font-size: clamp(50px, 7vw, 92px); }

.cafe-site #menu .grid-2 {
  grid-template-columns: .72fr 1.28fr;
}

.cafe-site .menu-list {
  background: white;
  padding: 18px 28px;
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(42, 27, 20, .1);
}

.fitness-site .hero {
  min-height: 760px;
}

.fitness-site .hero::after {
  background:
    linear-gradient(90deg, rgba(18, 24, 38, .92), rgba(18, 24, 38, .38) 56%, rgba(18, 24, 38, .12)),
    linear-gradient(135deg, rgba(255, 90, 95, .34), transparent 38%);
}

.fitness-site h1 {
  font-size: clamp(56px, 9vw, 116px);
  text-transform: uppercase;
  max-width: 900px;
}

.fitness-site .grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
}

.fitness-site .panel {
  background: var(--dark);
  color: white;
  border: 0;
  min-height: 230px;
}

.fitness-site .panel p { color: rgba(255, 255, 255, .72); }

.fitness-site .feature-band {
  background: #ff5a5f;
  color: #121826;
}

.fitness-site .feature-band .section-head p,
.fitness-site .feature-band .service-row span {
  color: rgba(18, 24, 38, .72);
}

.fitness-site .quote-box {
  background: #121826;
  color: white;
  border: 0;
  box-shadow: 0 26px 64px rgba(18, 24, 38, .22);
}

.fitness-site .quote-box input,
.fitness-site .quote-box select {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .16);
  color: white;
}

@media (max-width: 900px) {
  .builders-site .hero,
  .accountants-site .hero,
  .cleaners-site .hero,
  .clinic-site .hero,
  .dentist-site .hero {
    grid-template-columns: 1fr;
  }

  .builders-site .hero img,
  .accountants-site .hero img,
  .cleaners-site .hero img,
  .clinic-site .hero img,
  .dentist-site .hero img {
    order: 0;
    width: 100%;
    height: 420px;
    min-height: 0;
    margin: 0;
    border-radius: 0;
  }

  .builders-site .hero-content,
  .accountants-site .hero-content,
  .cleaners-site .hero-content,
  .clinic-site .hero-content,
  .dentist-site .hero-content {
    width: min(100% - 32px, 760px);
    margin: 0 auto;
    padding: 42px 0;
  }

  .cafe-site .hero img {
    width: 100%;
    opacity: .28;
    border-radius: 0;
  }

  .cafe-site .hero::after {
    background: rgba(255, 247, 236, .72);
  }

  .restaurant-site .booking {
    margin-top: 0;
  }
}
