/* ==========================================================================
   KD Breakdown Recovery Plymouth
   Navy, high-vis yellow, coastal paper
   ========================================================================== */

:root {
  --ink: #07131c;
  --navy: #0c2233;
  --navy-2: #143047;
  --navy-3: #1b3d56;
  --paper: #f3f5f7;
  --paper-2: #e7ecef;
  --fog: #fbfcfd;
  --vis: #f5c400;
  --vis-2: #ffd84a;
  --vis-deep: #c79a00;
  --ink-text: #10202c;
  --muted: #5a6b78;
  --soft: #d7e0e7;
  --line: #cfd8df;
  --white: #ffffff;
  --ok: #1f7a4d;
  --err: #c0392b;
  --wa: #128c7e;
  --shadow-sm: 0 4px 14px rgba(7, 19, 28, 0.08);
  --shadow-md: 0 16px 40px rgba(7, 19, 28, 0.14);
  --shadow-lg: 0 28px 70px rgba(7, 19, 28, 0.22);
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius: 8px;
  --header-h: 76px;
  --font: "Figtree", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --container: 1140px;
  --container-wide: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.26s var(--ease);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100vw;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100vw;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: var(--navy-2);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

a:hover {
  color: var(--vis-deep);
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  line-height: 0.98;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.15rem, 6.2vw, 5.1rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

h3 {
  font-size: 1.45rem;
  letter-spacing: 0.03em;
}

p {
  margin: 0 0 1rem;
  overflow-wrap: break-word;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container,
.container-wide,
.header-inner,
.logo-text,
.hero-copy,
.about-copy {
  min-width: 0;
}

.container {
  width: min(100% - 2.4rem, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 2.4rem, var(--container-wide));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--vis);
  color: var(--ink);
  padding: 0.65rem 1.1rem;
  z-index: 1000;
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

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

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--ink);
  border-bottom: 3px solid var(--vis);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  width: min(100% - 1.6rem, var(--container-wide));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.logo:hover {
  color: inherit;
}

.logo-img {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  line-height: 1.05;
}

.logo-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fog);
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vis);
}

.site-nav {
  display: none;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  display: inline-block;
  padding: 0.45rem 0.7rem;
  color: rgba(243, 245, 247, 0.82);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--vis);
  border-bottom-color: var(--vis);
}

.header-call {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--vis);
  color: var(--ink);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-xs);
  line-height: 1.15;
  margin-left: 0.6rem;
}

.header-call:hover {
  background: var(--vis-2);
  color: var(--ink);
}

.header-call-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-call-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  min-width: 84px;
  border: 0;
  background: var(--vis);
  color: var(--ink);
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  border-radius: var(--radius-xs);
  flex-shrink: 0;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 95;
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 16px;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  margin: 2px 0;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 50px;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-xs);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.2s var(--ease);
}

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

.btn-primary {
  background: var(--vis);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--vis-2);
  color: var(--ink);
}

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

.btn-wa:hover {
  background: #0e7368;
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--fog);
  border-color: rgba(243, 245, 247, 0.28);
}

.btn-ghost:hover {
  border-color: var(--vis);
  color: var(--vis);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--ink-text);
  border-color: var(--line);
}

.btn-ghost-dark:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--vis);
}

.section-ink .btn-outline,
.page-hero + .section .btn-outline {
  color: var(--fog);
}

.section-ink .btn-outline:hover,
.btn-outline:hover {
  background: var(--vis);
  color: var(--ink);
}

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

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

.btn:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

/* ==========================================================================
   Floating actions
   ========================================================================== */

.float-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.float-call {
  background: var(--vis);
  color: var(--ink);
}

.float-wa {
  background: #25d366;
}

.float-btn:hover {
  transform: translateY(-2px);
  color: inherit;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  background: var(--ink);
  color: var(--fog);
  overflow: clip;
}

.hero-split {
  display: grid;
  min-height: min(86vh, 780px);
  width: 100%;
  max-width: 100%;
}

.hero-copy {
  padding: 3.2rem 1.4rem 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  background: repeating-linear-gradient(
    180deg,
    var(--vis) 0 16px,
    var(--ink) 16px 32px
  );
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vis);
}

.hero h1 {
  color: var(--fog);
  margin-bottom: 0.7rem;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(243, 245, 247, 0.78);
  max-width: min(36rem, 100%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0.4rem 0 1.2rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-chips li {
  border: 1px solid rgba(245, 196, 0, 0.35);
  color: var(--vis);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
}

.hero-photo {
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(7, 19, 28, 0.05), rgba(7, 19, 28, 0.28)),
    var(--hero-image) 78% 38% / cover no-repeat;
  position: relative;
}

.hero-photo-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--vis);
  color: var(--ink);
  padding: 0.75rem 0.95rem;
  min-width: 150px;
}

.hero-photo-badge strong {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.hero-photo-badge span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

/* ==========================================================================
   Dispatch strip
   ========================================================================== */

.dispatch {
  background: var(--vis);
  color: var(--ink);
}

.dispatch-inner {
  display: grid;
  gap: 1.2rem;
  padding: 1.4rem 0;
}

.dispatch-item {
  display: grid;
  gap: 0.15rem;
}

.dispatch-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

.dispatch-item strong {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dispatch-item span:last-child {
  font-size: 0.9rem;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  padding: 5rem 0;
}

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

.section-ink h2,
.section-ink h3 {
  color: var(--fog);
}

.section-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vis-deep);
}

.section-ink .section-kicker {
  color: var(--vis);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.4rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-ink .section-lead {
  color: rgba(215, 224, 231, 0.78);
}

/* ==========================================================================
   About
   ========================================================================== */

.about-layout {
  display: grid;
  gap: 2.2rem;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}

.about-visual {
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.about-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1055 / 1491;
  object-fit: contain;
  object-position: center top;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-md);
}

.check-list {
  margin: 1.2rem 0 1.5rem;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  padding-left: 1.5rem;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--vis);
  clip-path: polygon(0 0, 70% 50%, 0 100%);
}

/* ==========================================================================
   Service tickets
   ========================================================================== */

.ticket-list {
  display: grid;
  gap: 1.4rem;
}

.ticket {
  display: grid;
  background: var(--ink);
  overflow: hidden;
  border-left: 6px solid var(--vis);
}

.ticket-media {
  position: relative;
  min-height: 220px;
}

.ticket-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 11;
}

.ticket-num {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--vis);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.7rem;
}

.ticket-body {
  padding: 1.5rem 1.4rem 1.6rem;
}

.ticket-body p {
  color: rgba(215, 224, 231, 0.82);
}

.ticket-body ul {
  display: grid;
  gap: 0.35rem;
  color: var(--vis);
  font-size: 0.92rem;
  font-weight: 600;
}

.ticket-body ul li::before {
  content: "- ";
}

/* ==========================================================================
   Portfolio
   ========================================================================== */

.folio {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

.folio-item {
  position: relative;
  border: 0;
  padding: 0;
  background: var(--ink);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
}

.folio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.5s var(--ease);
}

.folio-tall img {
  aspect-ratio: 3 / 4;
}

.folio-item:hover img,
.folio-item:focus-visible img {
  transform: scale(1.04);
}

.folio-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem 0.85rem;
  background: linear-gradient(180deg, transparent, rgba(7, 19, 28, 0.88));
  color: var(--fog);
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 19, 28, 0.92);
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: min(80vh, 860px);
  max-width: min(92vw, 1100px);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--vis);
  color: var(--ink);
  border: 0;
  min-height: 42px;
  padding: 0 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.lightbox-caption {
  color: var(--soft);
  margin: 0.7rem 0 0;
  text-align: center;
}

/* ==========================================================================
   Reviews
   ========================================================================== */

.quotes {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.quote {
  background: rgba(7, 19, 28, 0.35);
  border-top: 3px solid var(--vis);
  padding: 1.4rem 1.3rem 1.2rem;
}

.quote-stars {
  color: var(--vis);
  letter-spacing: 0.12em;
  margin: 0 0 0.6rem;
}

.quote-text {
  font-size: 1.12rem;
  color: var(--fog);
}

.quote-meta {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vis);
}

.reviews-invite {
  display: grid;
  gap: 1rem;
}

.invite-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 196, 0, 0.18);
  padding: 1.3rem 1.2rem;
}

.invite-card h3 {
  margin-bottom: 0.4rem;
}

.invite-card p {
  color: rgba(215, 224, 231, 0.78);
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: var(--vis);
  color: var(--ink);
}

.cta-band-inner {
  display: grid;
  gap: 1.2rem;
  padding: 2.2rem 0;
  align-items: center;
}

.cta-band h2 {
  margin-bottom: 0.35rem;
}

.cta-band p {
  margin: 0;
  max-width: 40rem;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid {
  display: grid;
  gap: 1.2rem;
  align-items: stretch;
}

.contact-card {
  background: var(--fog);
  border: 1px solid var(--line);
  padding: 1.5rem 1.3rem 1.6rem;
  box-shadow: var(--shadow-sm);
}

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

.contact-list {
  display: grid;
  gap: 0.95rem;
  margin: 1.1rem 0 1.3rem;
}

.contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.contact-item .icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--vis);
  color: var(--ink);
  flex-shrink: 0;
}

.contact-item small {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-item a,
.contact-item span {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--vis-deep);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.map-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.service-area-note {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.map-wrap {
  flex: 1;
  min-height: 320px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-text);
  padding: 0.65rem 0.75rem;
  font: inherit;
  border-radius: var(--radius-xs);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--vis);
  outline-offset: 1px;
  border-color: var(--vis);
}

.checkbox-field {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.checkbox-field input {
  width: 1.1rem;
  height: 1.1rem;
  min-height: 0;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

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

.form-actions {
  margin-top: 0.6rem;
}

.form-status {
  margin-top: 0.9rem;
  padding: 0.75rem 0.85rem;
  font-weight: 600;
}

.form-status.is-pending {
  background: var(--paper-2);
}

.form-status.is-success {
  background: #e6f4ec;
  color: var(--ok);
}

.form-status.is-error {
  background: #fdecea;
  color: var(--err);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--ink);
  color: var(--soft);
}

.footer-chevron {
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    var(--vis) 0 18px,
    var(--ink) 18px 36px
  );
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 2.6rem 0 2rem;
}

.footer-tagline,
.footer-meta {
  color: rgba(215, 224, 231, 0.72);
}

.footer-meta {
  margin: 0 0 0.2rem;
}

.footer-heading {
  color: var(--vis);
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.4rem;
}

.footer-links a,
.footer-contact a {
  color: var(--soft);
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--vis);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 196, 0, 0.16);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 1rem 0 1.2rem;
  font-size: 0.88rem;
  color: rgba(215, 224, 231, 0.62);
}

.footer-bottom p {
  margin: 0;
}

/* ==========================================================================
   Privacy
   ========================================================================== */

.page-hero {
  background: var(--ink);
  color: var(--fog);
  padding: 3.4rem 0 2.4rem;
  border-bottom: 3px solid var(--vis);
}

.page-hero h1 {
  color: var(--fog);
  margin-bottom: 0.35rem;
}

.page-hero p {
  margin: 0;
  color: var(--vis);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  margin-top: 1.8rem;
  font-size: 1.45rem;
}

.legal-content ul {
  margin: 0 0 1rem 1.1rem;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 0.35rem;
}

/* ==========================================================================
   Breakpoints
   ========================================================================== */

@media (min-width: 700px) {
  .hero-copy {
    padding: 4rem 3rem 3.4rem 3.4rem;
  }

  .dispatch-inner {
    grid-template-columns: 1fr 1fr;
  }

  .folio {
    grid-template-columns: 1fr 1fr;
  }

  .quotes {
    grid-template-columns: 1fr 1fr;
  }

  .quotes .quote:first-child {
    grid-column: 1 / -1;
  }

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

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

@media (min-width: 980px) {
  .site-nav {
    display: flex;
    align-items: center;
  }

  .nav-toggle {
    display: none;
  }

  .hero-split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .hero-photo {
    min-height: unset;
  }

  .dispatch-inner {
    grid-template-columns: repeat(4, 1fr);
    padding: 1.6rem 0;
  }

  .about-layout {
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    gap: 3.2rem;
    align-items: start;
  }

  .ticket {
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 280px;
  }

  .ticket-flip {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .ticket-flip .ticket-media {
    order: 2;
  }

  .ticket-media img {
    aspect-ratio: auto;
    min-height: 280px;
  }

  .ticket-body {
    padding: 2rem 2rem 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

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

  .folio-item img,
  .folio-tall img,
  .folio-wide img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .folio-wide,
  .folio-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .quotes {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
  }

  .quotes .quote:first-child {
    grid-column: auto;
  }

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

  .cta-band-inner {
    grid-template-columns: 1.4fr auto;
    padding: 2.6rem 0;
  }

  .contact-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 420px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  }
}

@media (max-width: 979px) {
  .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    inset: var(--header-h) 0 0 auto;
    width: min(86vw, 360px);
    background: var(--navy);
    padding: 1.2rem 1.1rem 1.6rem;
    transform: translateX(110%);
    transition: transform var(--transition);
    z-index: 90;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: none;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .nav-link {
    display: block;
    padding: 0.85rem 0.4rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(245, 196, 0, 0.12);
  }

  .header-call {
    margin: 1rem 0 0;
    align-items: center;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero-copy {
    padding: 2.2rem 1.1rem 1.8rem 1.7rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.4vw, 2.55rem);
  }

  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 19rem;
  }

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

  .float-actions {
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .section {
    padding: 3.6rem 0;
  }
}
