:root {
  --ink: #151617;
  --muted: #626970;
  --paper: #f7f4ee;
  --white: #ffffff;
  --line: rgba(21, 22, 23, 0.14);
  --green: #2f5f4a;
  --green-dark: #153526;
  --gold: #c89b46;
  --gold-soft: #ead6aa;
  --steel: #dfe5e3;
  --shadow: 0 22px 60px rgba(12, 18, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.top-line {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 25;
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 6px 16px;
  color: rgba(255, 255, 255, 0.78);
  background: #0b100d;
  font-size: 0.78rem;
  font-weight: 700;
}

.top-line a {
  color: var(--gold-soft);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 29px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(13, 22, 17, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 185px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: var(--gold);
  color: #16130c;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.5vw, 22px);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.84);
}

.main-nav a:hover {
  color: var(--white);
}

.nav-gift {
  padding: 9px 12px;
  color: var(--gold-soft) !important;
  border: 1px solid rgba(200, 155, 70, 0.52);
  background: rgba(200, 155, 70, 0.12);
}

.nav-cta {
  padding: 10px 14px;
  color: #16130c !important;
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 36%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 12, 9, 0.9) 0%, rgba(6, 12, 9, 0.72) 38%, rgba(6, 12, 9, 0.22) 72%),
    linear-gradient(0deg, rgba(6, 12, 9, 0.7) 0%, rgba(6, 12, 9, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 142px 0 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.45rem, 5.1vw, 4.85rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.14rem;
  line-height: 1.22;
}

.hero-lead {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}

.button.primary {
  color: #15130d;
  background: var(--gold);
}

.button.voucher {
  position: relative;
  display: inline-grid;
  align-content: center;
  gap: 1px;
  min-width: 212px;
  color: #15130d;
  background: linear-gradient(135deg, #f0c76e 0%, var(--gold) 58%, #a97929 100%);
  box-shadow: 0 16px 36px rgba(200, 155, 70, 0.28);
}

.button.voucher::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.button.voucher span {
  font-weight: 900;
}

.button.voucher small {
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button.reviews {
  display: inline-grid;
  align-content: center;
  gap: 1px;
  min-width: 184px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(47, 95, 74, 0.78);
}

.button.reviews small {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.button.dark {
  color: var(--green-dark);
  border-color: rgba(21, 53, 38, 0.2);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  margin: 26px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-note {
  display: flex;
  gap: 12px;
  max-width: 820px;
  margin-top: 10px;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(47, 95, 74, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-note strong {
  color: var(--gold-soft);
  white-space: nowrap;
}

.quick-facts div {
  padding: 14px 18px;
}

.quick-facts div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-facts dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
}

.quick-facts dd {
  margin: 4px 0 0;
  font-size: 1rem;
  font-weight: 800;
}

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

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

.section-heading > p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 64px;
}

.intro-copy {
  color: #39413e;
  font-size: 1.05rem;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.photo-proof {
  padding-top: 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.72fr;
  gap: 16px;
  margin-top: 34px;
}

.photo-grid figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
}

.photo-grid .wide {
  min-height: 430px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-grid figure:not(.wide) img {
  object-position: center;
}

.audience {
  padding-top: 0;
}

.google-reviews {
  padding-top: 20px;
}

.review-load-button {
  margin-top: 26px;
  color: var(--green-dark);
  background: var(--gold);
  border-color: rgba(21, 53, 38, 0.14);
}

.review-load-button small {
  color: rgba(21, 53, 38, 0.72);
}

.google-reviews-panel {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.google-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.google-reviews-header strong {
  font-size: 1rem;
}

.google-reviews-header a {
  color: var(--green);
  font-weight: 800;
}

.google-reviews-panel iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  background: #eef0ec;
}

.audience-grid,
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.audience-grid article,
.steps-row article {
  position: relative;
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.audience-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  border: 24px solid rgba(47, 95, 74, 0.08);
  border-radius: 50%;
}

.audience-grid span,
.steps-row span,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 10px;
  margin-bottom: 22px;
  color: #15130d;
  background: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
}

.audience-grid p,
.steps-row p {
  color: var(--muted);
}

.feature-band {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 4vw, 56px);
  background: var(--green-dark);
  color: var(--white);
}

.feature-band .section-heading {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, 100%);
  margin: 34px auto 0;
}

.feature-card,
.price-panel,
.arsenal article,
.voucher-box {
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 240px;
  padding: 24px;
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(12, 18, 16, 0.22);
}

.card-icon {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-card p,
.arsenal p,
.voucher-band p,
.faq p,
.muted {
  color: var(--muted);
}

.split-section {
  width: min(1120px, calc(100% - 36px));
}

.steps {
  padding-bottom: 0;
}

.steps-row article {
  min-height: 210px;
  border-bottom: 5px solid var(--green);
}

.price-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
  align-items: stretch;
}

.price-panel {
  position: relative;
  padding: 26px;
  border-top: 5px solid var(--steel);
}

.price-panel.featured {
  border-color: var(--gold);
}

.price-panel .badge {
  margin-bottom: 18px;
}

.price-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.price-list span {
  color: #444b4f;
}

.price-list strong {
  text-align: right;
  white-space: nowrap;
}

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

.arsenal article {
  padding: 28px;
  border-left: 5px solid var(--green);
}

.arsenal-note {
  margin: 24px 0 0;
  padding: 18px 20px;
  color: #37413c;
  background: rgba(47, 95, 74, 0.09);
  border-left: 5px solid var(--gold);
}

.voucher-band {
  display: block;
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1120px) / 2));
  background: #e8ece8;
}

.voucher-band > div:first-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto 30px;
}

.voucher-band > div:first-child h2 {
  max-width: 610px;
  font-size: clamp(2.2rem, 3.6vw, 3.85rem);
}

.voucher-band > div:first-child p:not(.eyebrow) {
  max-width: 390px;
  margin: 0 0 6px;
}

.voucher-box,
.voucher-form,
.voucher-preview {
  background: var(--white);
  box-shadow: var(--shadow);
}

.voucher-box {
  padding: 28px;
}

.voucher-box ol {
  padding-left: 20px;
  color: #434b48;
}

.voucher-purchase {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(430px, 540px);
  justify-content: center;
  align-items: start;
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
}

.voucher-form {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.voucher-form h3 {
  margin-bottom: 2px;
  font-size: 1.08rem;
}

.voucher-form label {
  display: grid;
  gap: 6px;
  color: #303733;
  font-size: 0.86rem;
  font-weight: 800;
}

.voucher-form input,
.voucher-form select,
.voucher-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 22, 23, 0.18);
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  padding: 10px 12px;
}

.voucher-form textarea {
  resize: vertical;
  min-height: 82px;
}

.voucher-validity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  background: rgba(47, 95, 74, 0.08);
  border-left: 4px solid var(--green);
}

.voucher-validity span,
.voucher-summary span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pay-button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.pay-button:disabled,
.pay-button.is-loading {
  cursor: wait;
  opacity: 0.72;
}

.payment-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.voucher-preview {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
}

.voucher-card-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 1.94 / 1;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    url("assets/voucher-template-bg.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(21, 22, 23, 0.12);
}

.voucher-card-name,
.voucher-card-type,
.voucher-card-date,
.voucher-card-title {
  position: absolute;
  color: #141414;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.voucher-card-name {
  left: 8.6%;
  top: 55.4%;
  width: 52.5%;
  height: 15.2%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.4%;
  font-size: clamp(0.64rem, var(--recipient-font-size, 1.35rem), 1.35rem);
  overflow: hidden;
  overflow-wrap: anywhere;
  white-space: normal;
}

.voucher-card-type {
  left: 8.8%;
  top: 75.4%;
  width: 52.5%;
  font-size: clamp(0.7rem, 1.35vw, 1.05rem);
}

.voucher-card-date {
  right: 7%;
  top: 75.2%;
  width: 24%;
  font-size: clamp(0.68rem, 1.25vw, 1rem);
}

.voucher-card-title {
  left: 6.2%;
  bottom: 5.6%;
  width: 26%;
  color: #f6f1ea;
  font-size: clamp(0.75rem, 1.45vw, 1.12rem);
  letter-spacing: 0;
}

.voucher-cut-line {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 22px;
  color: #222;
}

.voucher-cut-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 2px dashed rgba(21, 22, 23, 0.45);
}

.voucher-cut-line span {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 22px;
  background: var(--white);
  font-size: 1.25rem;
  line-height: 1;
}

.voucher-control {
  padding: 12px 13px;
  background:
    linear-gradient(135deg, rgba(47, 95, 74, 0.08), rgba(200, 155, 70, 0.09)),
    #fbfaf7;
  border: 1px solid rgba(21, 22, 23, 0.18);
}

.voucher-control > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.voucher-control span,
.voucher-control dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.voucher-control strong {
  color: var(--green-dark);
  font-size: 0.96rem;
  text-align: right;
}

.voucher-control dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 10px 0 0;
}

.voucher-control dl div {
  min-width: 0;
}

.voucher-control dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.voucher-summary {
  display: grid;
  gap: 10px;
}

.voucher-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.voucher-summary p {
  margin: 0;
  color: var(--muted);
}

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

details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px max(18px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(21, 53, 38, 0.96), rgba(47, 95, 74, 0.94)),
    var(--green);
}

.contact-strip h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.contact-strip p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: #101412;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.mobile-quick-contact {
  display: none;
}

.success-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(6, 12, 9, 0.9), rgba(21, 53, 38, 0.78)),
    url("assets/google-gallery-03.jpg") center / cover;
}

.success-shell {
  display: grid;
  align-content: center;
  gap: 28px;
  width: min(760px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 0;
}

.success-brand {
  color: var(--white);
}

.success-panel {
  padding: clamp(28px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.success-panel h1 {
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.2rem);
}

.success-lead {
  max-width: 600px;
  color: #3c4540;
  font-size: 1.08rem;
}

.success-summary {
  margin-top: 26px;
  padding: 18px;
  background: rgba(47, 95, 74, 0.08);
  border-left: 5px solid var(--green);
}

.success-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

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

.success-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.success-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.success-list dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .top-line {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: rgba(13, 22, 17, 0.96);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-cta {
    margin-top: 10px;
    padding: 12px 14px !important;
    text-align: center;
    border-bottom: 0 !important;
  }

  .nav-gift {
    padding: 13px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
  }

  .intro,
  .voucher-purchase {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .voucher-band > div:first-child {
    display: block;
  }

  .voucher-band > div:first-child p:not(.eyebrow) {
    margin-top: 16px;
  }

  .feature-grid,
  .price-layout,
  .audience-grid,
  .steps-row,
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid .wide {
    grid-column: 1 / -1;
  }

  .price-layout .featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-content {
    width: min(100% - 32px, 1120px);
    padding-top: 126px;
    padding-bottom: 32px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-facts,
  .feature-grid,
  .price-layout,
  .arsenal-grid,
  .audience-grid,
  .steps-row,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid figure,
  .photo-grid .wide {
    min-height: 300px;
  }

  .quick-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 20px;
  }

  .quick-facts div {
    padding: 12px 10px;
  }

  .quick-facts dt {
    font-size: 0.68rem;
  }

  .quick-facts dd {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .quick-facts div + div {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section {
    padding: 64px 0;
  }

  .feature-band,
  .voucher-band {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .price-list li {
    display: grid;
    gap: 6px;
  }

  .price-list strong {
    text-align: left;
    white-space: normal;
  }

  .contact-strip,
  .site-footer {
    display: grid;
  }

  .hero-note {
    display: none;
  }

  .mobile-quick-contact {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(13, 22, 17, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
  }

  .mobile-quick-contact a {
    display: grid;
    place-items: center;
    min-height: 46px;
    color: #15130d;
    background: var(--gold);
    font-weight: 900;
  }

  .mobile-quick-contact a.voucher {
    color: var(--white);
    background: var(--green);
  }

  body {
    padding-bottom: 74px;
  }
}
