:root {
  --red-900: #7a0814;
  --red-800: #9f0f1f;
  --red-700: #c5122a;
  --red-600: #df1f35;
  --red-100: #fff0f2;
  --red-050: #fff7f8;
  --ink: #171417;
  --ink-soft: #4a4246;
  --muted: #746b70;
  --line: #eadfe2;
  --soft: #faf7f8;
  --white: #ffffff;
  --gold: #b98b35;
  --green: #0f7a4f;
  --shadow: 0 18px 45px rgba(122, 8, 20, .12);
  --shadow-soft: 0 10px 30px rgba(23, 20, 23, .08);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

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

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

:focus-visible {
  outline: 3px solid rgba(197, 18, 42, .32);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(234, 223, 226, .9);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.brand > span {
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--red-800), var(--red-600));
  border-radius: 8px;
  font-weight: 850;
  letter-spacing: 0;
  box-shadow: 0 12px 22px rgba(197, 18, 42, .24);
}

.brand-title {
  display: block;
  overflow: hidden;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-sub {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nav-links a {
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--red-800);
  background: var(--red-050);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--red-800);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-800), var(--red-600));
  box-shadow: 0 14px 28px rgba(197, 18, 42, .24);
}

.btn-secondary {
  color: var(--red-800);
  background: var(--white);
  border-color: rgba(197, 18, 42, .22);
}

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

.btn-small {
  min-height: 38px;
  padding: 10px 14px;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: clamp(640px, 86vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 20, 23, .92) 0%, rgba(23, 20, 23, .72) 37%, rgba(23, 20, 23, .26) 72%, rgba(23, 20, 23, .14) 100%),
    linear-gradient(0deg, rgba(23, 20, 23, .88) 0%, rgba(23, 20, 23, 0) 44%);
  z-index: 1;
}

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

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 110px 18px 34px;
}

.hero-content {
  max-width: 730px;
  color: var(--white);
  padding-bottom: clamp(34px, 7vw, 80px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #ffd9dd;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red-600);
}

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

h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .95;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.section-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, .18);
  box-shadow: var(--shadow);
}

.hero-strip div {
  min-height: 86px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
}

.hero-strip strong {
  display: block;
  font-size: 21px;
  line-height: 1;
}

.hero-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: clamp(58px, 7vw, 96px) 18px;
}

.section-soft {
  background: linear-gradient(180deg, var(--red-050), #fff);
}

.section-red {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, .16), transparent 30%),
    linear-gradient(135deg, var(--red-900), var(--red-700));
}

.section-ink {
  color: var(--white);
  background: var(--ink);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

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

.section-head-wide {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
}

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

.section-red .kicker,
.section-ink .kicker {
  color: #ffd9dd;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.lead {
  color: var(--ink-soft);
  font-size: 18px;
}

.section-red .lead,
.section-ink .lead {
  color: rgba(255, 255, 255, .78);
}

.grid {
  display: grid;
  gap: 18px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card,
.price-card,
.feature,
.faq-item,
.form-panel,
.quote-panel,
.area-card,
.product-card,
.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.card,
.feature,
.product-card,
.step-card {
  padding: 24px;
}

.card:hover,
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}

.card-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--red-800);
  background: var(--red-100);
  font-size: 12px;
  font-weight: 850;
}

.muted {
  color: var(--muted);
}

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

.price-card {
  padding: 22px;
}

.price-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red-800);
  font-size: 28px;
  line-height: 1;
}

.price-card span {
  color: var(--muted);
  font-size: 14px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--red-800);
  background: var(--red-050);
  font-size: 13px;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

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

.mini-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
}

.mini-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 99px;
  background: var(--red-600);
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 20px;
  align-items: start;
}

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

.field {
  display: grid;
  gap: 7px;
}

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

label {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(197, 18, 42, .55);
  box-shadow: 0 0 0 4px rgba(197, 18, 42, .08);
  outline: 0;
}

.quote-panel {
  position: sticky;
  top: 88px;
  padding: 24px;
}

.range-output {
  margin: 12px 0 8px;
  color: var(--red-800);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
}

.quote-breakdown {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.quote-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

.quote-breakdown strong {
  color: var(--ink);
}

.wa-preview {
  min-height: 180px;
  padding: 14px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  background: var(--soft);
  font-size: 14px;
  white-space: pre-wrap;
}

.notice {
  padding: 13px 14px;
  border-left: 4px solid var(--red-700);
  border-radius: 8px;
  color: var(--ink-soft);
  background: var(--red-050);
  font-size: 14px;
}

.area-selector {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 20px;
  align-items: stretch;
}

.area-buttons {
  display: grid;
  gap: 8px;
  align-content: start;
  max-height: 620px;
  overflow: auto;
  padding-right: 4px;
}

.area-button {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  color: var(--ink);
  background: var(--white);
  text-align: left;
}

.area-button[aria-selected="true"] {
  color: var(--white);
  border-color: var(--red-800);
  background: linear-gradient(135deg, var(--red-800), var(--red-600));
  box-shadow: 0 12px 26px rgba(197, 18, 42, .18);
}

.area-card {
  min-height: 100%;
  padding: 26px;
}

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

.area-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.area-chip-list span {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(197, 18, 42, .15);
  border-radius: 999px;
  color: var(--red-800);
  background: var(--red-050);
  font-size: 13px;
  font-weight: 750;
}

.venue-match-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.venue-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.venue-service-links a {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(197, 18, 42, .15);
  border-radius: 999px;
  color: var(--red-800);
  background: var(--red-050);
  font-size: 13px;
  font-weight: 750;
}

.venue-category-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.venue-category {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.venue-category-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(240px, .6fr);
  gap: 16px;
  align-items: start;
}

.venue-category-head h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.venue-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.venue-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(197, 18, 42, .12);
  border-radius: var(--radius);
  background: var(--soft);
}

.venue-card h4 {
  margin: 0 0 8px;
  overflow-wrap: break-word;
  font-size: 17px;
  line-height: 1.25;
}

.venue-address {
  margin: 0 0 10px;
  overflow-wrap: break-word;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
}

.venue-fit {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.map-board {
  position: relative;
  min-height: 330px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(197, 18, 42, .12), rgba(255, 255, 255, .92)),
    repeating-linear-gradient(45deg, rgba(122, 8, 20, .05) 0 1px, transparent 1px 20px);
}

.map-pin {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--red-700);
  box-shadow: 0 0 0 7px rgba(197, 18, 42, .14), 0 12px 22px rgba(122, 8, 20, .2);
}

.map-label {
  position: absolute;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--red-800);
  background: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 850;
  box-shadow: var(--shadow-soft);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(185, 139, 53, .28);
  border-radius: 999px;
  color: #6c4d15;
  background: #fff8e8;
  font-size: 13px;
  font-weight: 800;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-strip figure {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--red-050);
  box-shadow: var(--shadow-soft);
}

.gallery-strip figure:first-child {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-photo-contain {
  background: var(--white);
}

.gallery-photo-contain img {
  object-fit: contain;
  padding: 12px;
  background: var(--white);
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.gallery-shell {
  display: grid;
  gap: 16px;
}

.gallery-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-filter-tabs button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 850;
  cursor: pointer;
}

.gallery-filter-tabs button[aria-selected="true"] {
  color: var(--white);
  border-color: var(--red-800);
  background: linear-gradient(135deg, var(--red-800), var(--red-600));
}

.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

[data-gallery-count] {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.gallery-strip [hidden] {
  display: none !important;
}

.global-gallery-section {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #fff;
}

.brand-theme-section {
  background:
    linear-gradient(135deg, rgba(122, 8, 20, .06), rgba(185, 139, 53, .08)),
    #fff;
}

.brand-theme-section .two-col {
  align-items: center;
}

.feature-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--red-050);
  box-shadow: var(--shadow);
}

.feature-photo img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.gallery-empty figure {
  position: relative;
  align-content: center;
  border: 1px dashed rgba(197, 18, 42, .26);
  background:
    linear-gradient(135deg, rgba(197, 18, 42, .06), rgba(255, 255, 255, .86)),
    repeating-linear-gradient(45deg, rgba(197, 18, 42, .05) 0 1px, transparent 1px 18px);
  gap: 10px;
  grid-template-rows: auto auto;
  box-shadow: none;
}

.gallery-empty figure::before {
  content: "";
  width: 52px;
  height: 52px;
  border: 2px solid rgba(197, 18, 42, .24);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, rgba(197, 18, 42, .38) 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(197, 18, 42, .38) 47% 53%, transparent 53%);
}

.gallery-empty span {
  color: var(--red-800);
  font-size: 14px;
  font-weight: 850;
}

.category-card {
  display: grid;
  gap: 8px;
}

.service-hero {
  padding: 78px 18px 42px;
  background:
    linear-gradient(135deg, rgba(122, 8, 20, .98), rgba(197, 18, 42, .88)),
    var(--red-800);
  color: var(--white);
}

.service-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: end;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 750;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .88);
}

.service-hero h1 {
  max-width: 850px;
  font-size: clamp(38px, 5vw, 70px);
}

.hero-product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 18px 0 18px;
}

.hero-product-photo {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(23, 20, 23, .16);
}

.hero-product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product-photo-contain img {
  object-fit: contain;
  background: var(--white);
}

.service-hero .lead {
  color: rgba(255, 255, 255, .86);
}

.service-hero .btn-primary {
  color: var(--red-800);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(23, 20, 23, .14);
}

.service-hero .btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .35);
}

.hero-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(14px);
}

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

.service-hero-visual .container {
  align-items: center;
}

.service-hero-media {
  margin: 0;
  align-self: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: contain;
  background: var(--white);
}

.service-hero-media figcaption {
  padding: 12px 14px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
  background: var(--white);
}

.footer {
  padding: 54px 18px 96px;
  color: rgba(255, 255, 255, .76);
  background: #140f12;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
}

.footer h2,
.footer h3 {
  color: var(--white);
}

.footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .76);
}

.footer .footer-inline-link {
  display: inline;
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

.footer-trust {
  max-width: var(--max);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  grid-template-columns: 180px 1.05fr 1.3fr 1.25fr;
  gap: 22px;
  align-items: start;
}

.footer-trust p {
  margin: 6px 0;
}

.trust-logo-stack {
  display: grid;
  gap: 10px;
}

.trust-logo-card {
  min-height: 86px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  place-items: center;
  text-align: center;
  background: rgba(255, 255, 255, .92);
}

.trust-logo-card img {
  display: block;
  max-width: 138px;
  max-height: 44px;
  object-fit: contain;
}

.trust-logo-card span {
  display: block;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-payments p {
  margin-bottom: 12px;
}

.payment-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-chip-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 800;
}

.floating-photo-button {
  position: fixed;
  right: 18px;
  bottom: 98px;
  z-index: 65;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px 10px 10px;
  border: 2px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-800), var(--red-600) 58%, var(--gold));
  box-shadow: 0 18px 38px rgba(197, 18, 42, .34), 0 0 0 0 rgba(197, 18, 42, .34);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  animation: photoButtonPulse 2.4s ease-in-out infinite;
}

.floating-photo-button::before {
  content: "";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 2px solid currentColor;
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 28%, currentColor 0 3px, transparent 4px),
    linear-gradient(135deg, transparent 44%, currentColor 45% 52%, transparent 53%);
  box-shadow: inset 0 -7px 0 rgba(255, 255, 255, .2);
}

.floating-photo-button strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  white-space: nowrap;
}

.floating-photo-button:hover,
.floating-photo-button:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 46px rgba(197, 18, 42, .42), 0 0 0 8px rgba(197, 18, 42, .12);
}

@keyframes photoButtonPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 38px rgba(197, 18, 42, .34), 0 0 0 0 rgba(197, 18, 42, .32);
  }

  50% {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(197, 18, 42, .42), 0 0 0 12px rgba(197, 18, 42, 0);
  }
}

.sticky-quote {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 60;
  width: min(94vw, 720px);
  padding: 9px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(23, 20, 23, .94);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(23, 20, 23, .28);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.sticky-quote span {
  padding-left: 12px;
  font-size: 14px;
  font-weight: 750;
}

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

.faq-item {
  padding: 18px 20px;
}

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: 24px;
  align-items: start;
}

.form-panel {
  padding: 24px;
}

.index-list {
  column-count: 3;
  column-gap: 24px;
}

.index-list a {
  display: block;
  margin: 0 0 10px;
  padding: 10px 12px;
  break-inside: avoid;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  background: var(--white);
  font-weight: 750;
}

.index-list a:hover {
  color: var(--red-800);
  border-color: rgba(197, 18, 42, .26);
  background: var(--red-050);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 69px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links a,
  .nav-links .btn {
    justify-content: flex-start;
    width: 100%;
  }

  .hero-strip,
  .grid-4,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .service-hero .container,
  .calculator-shell,
  .two-col,
  .area-selector,
  .venue-category-head,
  .footer-grid,
  .footer-trust {
    grid-template-columns: 1fr;
  }

  .venue-match-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-title {
    font-size: 12px;
  }

  .brand-sub {
    display: none;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
    justify-self: end;
  }

  .eyebrow {
    max-width: 100%;
    flex-wrap: wrap;
    font-size: 11px;
  }

  .eyebrow::before {
    flex: 0 0 24px;
    margin-top: 8px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    max-width: 100vw;
    padding-top: 86px;
    width: 100%;
  }

  .hero-content,
  .hero h1,
  .hero p {
    max-width: calc(100vw - 36px);
    overflow-wrap: break-word;
    width: calc(100vw - 36px);
  }

  .hero p {
    font-size: 16px;
  }

  .hero-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .price-grid,
  .calculator-form,
  .booking-form,
  .area-card-grid,
  .venue-match-grid,
  .venue-card-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .venue-category {
    padding: 20px;
  }

  .venue-category-head h3 {
    font-size: 22px;
  }

  .gallery-strip figure:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .section-head-wide {
    grid-template-columns: 1fr;
  }

  .gallery-filter-tabs button {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 14px;
  }

  .service-hero {
    padding-top: 54px;
  }

  .service-hero-visual .container {
    align-items: start;
  }

  .hero-product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 14px 0 16px;
  }

  .hero-card {
    display: none;
  }

  .sticky-quote {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .floating-photo-button {
    right: 12px;
    bottom: 176px;
    min-height: 46px;
    max-width: calc(100vw - 24px);
    padding: 8px 12px 8px 8px;
  }

  .floating-photo-button::before {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    border-radius: 7px;
  }

  .floating-photo-button strong {
    font-size: 13px;
  }

  .sticky-quote span {
    padding-left: 8px;
  }

  .index-list {
    column-count: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
