:root {
  --navy: #10213f;
  --ink: #15213a;
  --blue: #1658db;
  --blue-dark: #0d3fa8;
  --yellow: #ffd44f;
  --apricot: #ff9068;
  --cream: #fff8ec;
  --paper: #fffcf6;
  --white: #ffffff;
  --line: #d7dbe4;
  --muted: #596579;
  --shadow: 0 22px 55px rgba(16, 33, 63, 0.15);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--navy);
  padding: 0.7rem 1rem;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  width: min(calc(100% - 2rem), 1440px);
  min-height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.6vw, 2.8rem);
  background: var(--paper);
}
.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 50%;
  width: 100vw;
  margin-left: -50vw;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(16, 33, 63, 0.09);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-transform: uppercase;
}
.wordmark-mark {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  color: var(--navy);
  background: var(--yellow);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  transform: rotate(-3deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 1.5vw, 1.55rem);
  margin-left: auto;
}
.site-header .header-cta { margin-left: auto; }
.site-nav a {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 760;
  text-decoration: none;
  text-underline-offset: 0.4rem;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--blue); text-decoration: underline; }
.header-cta { display: flex; align-items: center; gap: 0.9rem; }
.header-cta > span { color: var(--muted); font-size: 0.77rem; line-height: 1.25; white-space: nowrap; }
.header-cta strong { color: var(--navy); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--blue);
  border-radius: 4px;
  padding: 0.8rem 1.25rem;
  color: var(--white);
  background: var(--blue);
  box-shadow: 5px 5px 0 var(--navy);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { background: var(--blue-dark); transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--navy); }
.button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--apricot);
  outline-offset: 3px;
}
.button-small { min-height: 42px; padding: 0.65rem 1rem; font-size: 0.9rem; box-shadow: 3px 3px 0 var(--navy); }
.header-book-button {
  border-color: var(--yellow);
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 4px 4px 0 rgba(255,255,255,0.95);
}
.header-book-button:hover { color: var(--white); background: var(--blue); }

.sticky-carousel-banner {
  position: fixed;
  z-index: 35;
  top: 94px;
  right: 0;
  left: 0;
  height: 118px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 28px rgba(7, 18, 38, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 1rem));
  transition: opacity 220ms ease, transform 280ms ease;
}
.sticky-carousel-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sticky-banner-media,
.sticky-banner-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.sticky-banner-media { object-fit: cover; object-position: 65% center; }
.sticky-banner-shade {
  background: linear-gradient(90deg, rgba(7, 18, 38, 0.98) 0%, rgba(7, 18, 38, 0.84) 42%, rgba(7, 18, 38, 0.3) 72%, rgba(7, 18, 38, 0.12) 100%);
}
.sticky-carousel-banner.is-navy .sticky-banner-shade { display: none; }
.sticky-banner-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 6rem), var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.sticky-banner-title {
  margin-right: auto;
  color: var(--white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
}
.sticky-banner-title:hover { color: var(--yellow); }
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(610px, 70vh, 760px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--yellow) 0 25%, var(--blue) 25% 100%);
}
.carousel-slides,
.carousel-slide {
  position: absolute;
  inset: 0;
}
.carousel-slide {
  z-index: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease, visibility 0s linear 600ms;
}
.carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-slide:nth-child(1) .hero-media { object-position: 66% center; }
.carousel-slide:nth-child(2) .hero-media { object-position: 68% top; }
.carousel-slide:nth-child(3) .hero-media { object-position: center center; }
.carousel-slide:nth-child(4) .hero-media { object-position: 67% center; }
.carousel-slide:nth-child(5) .hero-media { object-position: center center; }
.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 18, 38, 0.97) 0%, rgba(9, 22, 45, 0.9) 30%, rgba(9, 22, 45, 0.53) 48%, rgba(9, 22, 45, 0.08) 66%, transparent 78%);
}
.carousel-slide:nth-child(3) .hero-shade {
  background: linear-gradient(90deg, rgba(7, 18, 38, 0.98) 0%, rgba(9, 22, 45, 0.91) 28%, rgba(9, 22, 45, 0.5) 43%, rgba(9, 22, 45, 0.05) 55%, transparent 65%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 6rem), var(--max));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(6rem, 9vw, 7.5rem);
}
.hero-copy { width: min(51%, 660px); }
.hero .eyebrow { color: var(--yellow); }
.hero .hero-copy > .eyebrow { margin-top: clamp(3.75rem, 5vw, 5rem); }
.hero h1,
.hero h2 {
  max-width: 680px;
  margin-bottom: 1.25rem;
  color: var(--white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: clamp(2.9rem, 4.7vw, 4.75rem);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.42);
}
.hero h1 span,
.hero h2 span { color: #ef3340; }
.hero .hero-lead {
  max-width: 620px;
  margin-bottom: 1.55rem;
  color: #f7f9fd;
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
  line-height: 1.55;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}
.printing-slide .hero-copy { width: min(52%, 690px); }
.printing-slide h2 { font-size: clamp(2.8rem, 4.35vw, 4.45rem); }
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.hero-features li {
  padding: 0.5rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(7, 18, 38, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero-button { border-color: var(--yellow); color: var(--navy); background: var(--yellow); box-shadow: 5px 5px 0 rgba(255,255,255,0.9); }
.hero-button:hover { color: var(--white); background: var(--blue); }
.hero-button:focus-visible { outline-color: var(--white); }

.carousel-arrow,
.carousel-dots button {
  border: 0;
  color: var(--white);
  cursor: pointer;
}
.carousel-arrow:focus-visible,
.carousel-dots button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
.carousel-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(7, 18, 38, 0.62);
  font-size: 2.35rem;
  line-height: 1;
  transform: translateY(-50%);
}
.carousel-arrow:hover { background: rgba(22, 88, 219, 0.92); }
.carousel-previous { left: 1rem; }
.carousel-next { right: 1rem; }
.carousel-arrow span {
  display: block;
  width: 0.72rem;
  height: 0.72rem;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  font-size: 0;
}
.carousel-previous span { transform: rotate(-135deg); }
.carousel-next span { transform: rotate(45deg); }
.carousel-dots {
  position: absolute;
  z-index: 6;
  bottom: 1.7rem;
  left: 50%;
  display: flex;
  gap: 0.6rem;
  transform: translateX(-50%);
}
.carousel-dots button {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: transparent;
}
.carousel-dots button[aria-current="true"] { background: var(--yellow); border-color: var(--yellow); }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue-dark);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; color: var(--navy); line-height: 1.04; letter-spacing: -0.035em; }
h1 { max-width: 800px; margin-bottom: 1.5rem; font-size: clamp(2.8rem, 5.4vw, 5.25rem); }
h2 { margin-bottom: 1.15rem; font-size: clamp(2rem, 3.7vw, 3.55rem); }
h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
p { margin-top: 0; }
.hero-lead { max-width: 720px; margin-bottom: 1.7rem; font-size: clamp(1.08rem, 1.5vw, 1.28rem); line-height: 1.65; }
.business-intro {
  padding: clamp(1.5rem, 3vw, 2.25rem) max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--navy);
  background: var(--white);
  border-bottom: 1px solid #d9dfe9;
}
.business-intro p { max-width: 1120px; margin: 0; font-size: clamp(1rem, 1.35vw, 1.15rem); line-height: 1.7; }
.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--navy);
  background: var(--cream);
  border-bottom: 1px solid #d9d2c5;
}
.fact-strip div { min-height: 154px; padding: 1.65rem clamp(1.2rem, 3vw, 2.8rem); border-right: 1px solid #d9d2c5; }
.fact-strip div:last-child { border-right: 0; }
.fact-strip strong, .fact-strip span { display: block; }
.fact-strip .strip-number { margin-bottom: 0.6rem; color: var(--blue); font-size: 0.73rem; font-weight: 900; letter-spacing: 0.12em; }
.fact-strip strong { color: var(--navy); font-size: 1.08rem; }
.fact-strip div > span:last-child { margin-top: 0.35rem; color: var(--muted); font-size: 0.9rem; line-height: 1.45; }

.section { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; padding: clamp(4.5rem, 9vw, 8rem) 0; }
.split-section { display: grid; grid-template-columns: 0.9fr 1fr; gap: clamp(3rem, 8vw, 8rem); }
.section-intro > p:not(.eyebrow) { max-width: 570px; color: var(--muted); font-size: 1.09rem; }
.steps-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps-list li { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1rem; padding: 1.7rem 0; border-bottom: 1px solid var(--line); }
.steps-list p { margin: 0; color: var(--muted); }
.step-number { display: grid; place-items: center; width: 2.7rem; height: 2.7rem; color: var(--navy); background: var(--yellow); font-weight: 900; transform: rotate(-3deg); }

.idea-section { width: 100%; max-width: none; padding-left: max(1rem, calc((100vw - var(--max)) / 2)); padding-right: max(1rem, calc((100vw - var(--max)) / 2)); background: #eef3ff; }
.idea-heading { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; margin-bottom: 2rem; text-align: center; }
.idea-heading h2 { max-width: 900px; margin-bottom: 0; }
.idea-heading .eyebrow { margin-bottom: 0; font-size: clamp(1rem, 1.7vw, 1.35rem); }
.idea-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.idea-grid article { min-height: 250px; padding: clamp(1.4rem, 3vw, 2.2rem); background: var(--yellow); border: 1px solid #bac8e7; }
.idea-grid article > span { display: block; margin-bottom: 1.2rem; color: var(--blue-dark); font-size: clamp(1.65rem, 2.6vw, 2.55rem); font-weight: 950; letter-spacing: 0.035em; line-height: 1; overflow-wrap: anywhere; }
.idea-grid article h3 { font-size: clamp(1.08rem, 1.5vw, 1.3rem); font-weight: 850; }
.idea-grid article p { margin-bottom: 0; color: var(--ink); }
.not-sure-note { margin: 1.5rem 0 0; font-size: 1.08rem; text-align: center; }

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(4.5rem, 9vw, 8rem) max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--navy);
}
.booking-copy { align-self: start; position: sticky; top: 2rem; }
.eyebrow.light { color: var(--yellow); }
.mobile-consultation-price,
.booking-label-mobile { display: none; }
.booking-copy h2 { color: var(--white); }
.booking-copy > p:not(.eyebrow):not(.small-print) { color: #e0e7f3; font-size: 1.12rem; }
.booking-points { margin: 2rem 0; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.2); }
.booking-points p { display: flex; gap: 0.7rem; margin-bottom: 0.7rem; }
.booking-points span { color: var(--yellow); font-weight: 900; }
.small-print { color: #aebbd1; font-size: 0.84rem; }

.booking-form { padding: clamp(1.4rem, 4vw, 2.5rem); color: var(--ink); background: var(--white); box-shadow: 8px 8px 0 var(--yellow); }
.booking-form label, .booking-form legend { font-weight: 760; }
.booking-form > label, .booking-form fieldset, .form-row { display: block; margin-bottom: 1.35rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row label { display: block; }
input, textarea, select {
  width: 100%;
  margin-top: 0.45rem;
  border: 2px solid #aeb8c9;
  border-radius: 2px;
  padding: 0.78rem 0.85rem;
  color: var(--ink);
  background: var(--white);
}
textarea { min-height: 130px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #687387; opacity: 1; }
input[name="appointmentDate"]::placeholder { color: #8a94a6; }
fieldset { min-width: 0; padding: 0; border: 0; }
legend { margin-bottom: 0.7rem; }
.optional { color: var(--muted); font-size: 0.78rem; font-weight: 500; }
.choice-row, .choice-grid { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.choice-row label, .choice-grid label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  background: #f7f9fd;
  font-weight: 600;
  cursor: pointer;
}
.choice-row input, .choice-grid input { width: 1.1rem; height: 1.1rem; margin: 0; accent-color: var(--blue); }
.booking-route-options label { flex: 1 1 180px; }
.conditional-booking { margin-bottom: 1.35rem; }
.conditional-booking[hidden] { display: none; }
[data-standard-booking-fields][hidden] { display: none; }
[data-standard-booking-fields] > label,
[data-standard-booking-fields] > fieldset,
[data-standard-booking-fields] > .form-row { display: block; margin-bottom: 1.35rem; }
[data-standard-booking-fields] > .form-row { display: grid; }
.conditional-booking label { display: block; }
.coming-soon-panel { padding: clamp(1.1rem, 3vw, 1.6rem); border: 2px solid #bac8e7; background: #f4f7ff; }
.coming-soon-panel .eyebrow { margin-bottom: 0.45rem; }
.coming-soon-panel h3 { margin-bottom: 0.8rem; font-size: clamp(1.55rem, 3vw, 2rem); }
.coming-soon-panel > label { margin-bottom: 1rem; }
.interest-notice { margin: 1rem 0 0; padding-top: 1rem; border-top: 1px solid #bac8e7; color: var(--muted); font-size: 0.86rem; line-height: 1.5; }
.payment-button { width: 100%; }
.payment-button:disabled { cursor: not-allowed; opacity: 0.62; }
.field-error { min-height: 1.3em; margin: -0.85rem 0 1.35rem; color: #a2192f; font-size: 0.84rem; font-weight: 700; }
.button-submit { width: 100%; border-color: var(--yellow); color: var(--navy); background: var(--yellow); box-shadow: 5px 5px 0 var(--navy); }
.button-submit:hover { color: var(--white); background: var(--blue); }
.form-note { margin: 1rem 0 0; color: var(--muted); font-size: 0.8rem; text-align: center; }
.form-note a { color: var(--blue-dark); font-weight: 750; text-underline-offset: 3px; }
.form-status { margin-top: 0.75rem; color: var(--blue-dark); font-weight: 700; text-align: center; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.turnstile-widget { min-height: 65px; display: flex; align-items: center; }
.button-submit:disabled { cursor: wait; opacity: 0.62; }
.form-status.is-success { color: #12663a; }
.form-status.is-error { color: #a2192f; }
.button-submit:disabled:hover { color: var(--navy); background: var(--yellow); }

.quote-dialog {
  width: min(760px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  margin: auto;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  overflow: visible;
}
.quote-dialog::backdrop { background: rgba(7, 18, 38, 0.78); backdrop-filter: blur(3px); }
.quote-dialog-panel { position: relative; max-height: calc(100vh - 2rem); overflow-y: auto; background: var(--white); box-shadow: 10px 10px 0 var(--yellow); }
.quote-dialog-heading { padding: 2rem 4.5rem 1.25rem 2.5rem; color: var(--white); background: var(--navy); }
.quote-dialog-heading h2 { margin-bottom: 0.7rem; color: var(--white); font-size: clamp(2rem, 5vw, 3rem); }
.quote-dialog-heading p:last-child { margin-bottom: 0; color: #e0e7f3; }
.quote-dialog-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  padding: 0;
  border: 2px solid rgba(255,255,255,0.72);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}
.quote-dialog-close:hover { color: var(--navy); background: var(--yellow); border-color: var(--yellow); }
.quote-form { box-shadow: none; }
.quote-file-options { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; align-items: start; margin-bottom: 1.35rem; }
.quote-file-options label { display: block; font-weight: 760; }
.quote-file-options input[type="file"] { padding: 0.65rem; }
.quote-file-or { align-self: center; color: var(--muted); font-size: 0.84rem; font-weight: 800; text-transform: uppercase; }
.field-help { display: block; margin-top: 0.45rem; color: var(--muted); font-size: 0.78rem; font-weight: 500; line-height: 1.4; }

.about-strip { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; padding: clamp(4.5rem, 8vw, 7rem) 0; display: grid; grid-template-columns: 0.9fr 1fr; gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.about-strip h2 { margin-bottom: 0; font-size: clamp(2rem, 3vw, 3rem); }
.about-strip > p { color: var(--muted); font-size: 1.08rem; }

.site-footer { min-height: 150px; padding: 2.5rem max(1rem, calc((100vw - var(--max)) / 2)); display: flex; align-items: center; gap: 2rem; color: var(--white); background: #0a152b; }
.footer-wordmark { margin-right: auto; color: var(--white); }
.site-footer p { margin: 0; color: #b9c4d6; }
.site-footer .footer-link { color: var(--yellow); text-decoration-thickness: 1px; text-underline-offset: 4px; }
.site-footer .footer-link:hover { color: var(--white); }
.footer-location-link { display: inline-flex; align-items: center; gap: 0.65rem; }
.footer-location-icon { flex: 0 0 auto; width: 1.35rem; height: 1.35rem; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.footer-location-copy { display: flex; flex-direction: column; line-height: 1.25; }
.footer-location-copy small { margin-top: 0.2rem; color: #b9c4d6; font-size: 0.74rem; font-weight: 600; }

.privacy-page { min-height: calc(100vh - 224px); background: var(--paper); }
.privacy-hero { padding: clamp(3.5rem, 8vw, 6rem) max(1rem, calc((100vw - 900px) / 2)) 2.5rem; color: var(--white); background: var(--navy); }
.privacy-hero .eyebrow { color: var(--yellow); }
.privacy-hero h1 { margin-bottom: 1rem; color: var(--white); font-size: clamp(2.5rem, 6vw, 4.8rem); }
.privacy-hero > p:not(.eyebrow) { max-width: 720px; margin-bottom: 0; color: #e0e7f3; font-size: 1.08rem; }
.privacy-content { width: min(calc(100% - 2rem), 900px); margin: 0 auto; padding: clamp(3rem, 7vw, 5.5rem) 0; }
.privacy-content section { padding: 1.8rem 0; border-bottom: 1px solid var(--line); }
.privacy-content section:first-child { padding-top: 0; }
.privacy-content h2 { margin-bottom: 0.8rem; font-size: clamp(1.55rem, 3vw, 2.15rem); }
.privacy-content h3 { margin-top: 1.25rem; }
.privacy-content p, .privacy-content li { color: var(--muted); }
.privacy-content a { color: var(--blue-dark); font-weight: 700; }
.privacy-content ul { padding-left: 1.3rem; }
.privacy-back { display: inline-flex; margin-top: 1.25rem; color: var(--yellow); font-weight: 800; text-underline-offset: 4px; }
@media (max-width: 1180px) {
  .header-cta > span { display: none; }
}

@media (max-width: 960px) {
  .site-header { min-height: 84px; }
  .sticky-carousel-banner { top: 84px; }
  .site-nav { display: none; }
  .header-cta { margin-left: auto; }
  .hero { min-height: 670px; }
  .hero-inner { width: min(calc(100% - 5rem), var(--max)); }
  .hero-copy { width: min(62%, 620px); }
  .hero h1, .hero h2 { font-size: clamp(2.75rem, 6.8vw, 4.1rem); }
  .hero-shade { background: linear-gradient(90deg, rgba(7,18,38,0.97) 0%, rgba(7,18,38,0.89) 40%, rgba(7,18,38,0.35) 64%, rgba(7,18,38,0.08) 100%); }
  .fact-strip { grid-template-columns: 1fr 1fr; }
  .fact-strip div:nth-child(2) { border-right: 0; }
  .fact-strip div:nth-child(-n+2) { border-bottom: 1px solid #d9d2c5; }
  .split-section, .about-strip { grid-template-columns: 1fr; gap: 2.5rem; }
  .idea-grid { grid-template-columns: 1fr 1fr; }
  .booking-section { grid-template-columns: 1fr; }
  .booking-copy { position: static; }
  .site-footer { flex-wrap: wrap; }
}

@media (max-width: 680px) {
  .site-header { min-height: 74px; }
  .sticky-carousel-banner { top: 74px; height: 90px; }
  .sticky-banner-inner { width: calc(100% - 2rem); gap: 0.7rem; }
  .sticky-banner-title { font-size: clamp(1.12rem, 5.7vw, 1.55rem); }
  .header-cta { display: flex; }
  .header-book-button { padding: 0.55rem 0.7rem; font-size: 0.78rem; }
  .hero {
    min-height: 850px;
  }
  .carousel-slide {
    --mobile-image-end: 40.7vw;
    align-items: start;
  }
  .carousel-slide:nth-child(2) { --mobile-image-end: 37.2vw; }
  .carousel-slide:nth-child(3) { --mobile-image-end: 40.4vw; }
  .carousel-slide:nth-child(4) { --mobile-image-end: 56.3vw; }
  .carousel-slide:nth-child(5) { --mobile-image-end: 43.3vw; }
  .hero-media {
    inset: 0 0 auto;
    height: auto;
    object-fit: contain;
    object-position: center top !important;
  }
  .printing-slide .hero-media {
    left: -22%;
    width: 125%;
    max-width: none;
  }
  .hero-shade,
  .carousel-slide:nth-child(3) .hero-shade {
    background: linear-gradient(180deg, transparent 0%, transparent 15%, rgba(7,18,38,0.32) 26%, rgba(7,18,38,0.98) 38%, var(--navy) 46%, var(--navy) 100%);
  }
  .hero-inner {
    width: calc(100% - 2rem);
    padding-top: calc(var(--mobile-image-end) + clamp(3.75rem, 12vw, 5rem));
    padding-bottom: 6.8rem;
  }
  .hero-copy { width: 100%; }
  .hero .hero-copy > .eyebrow { margin-top: 0; }
  .printing-slide .hero-copy { width: 100%; max-width: none; }
  .printing-slide h2 { white-space: nowrap; }
  .printing-slide h2 span { white-space: normal; }
  .hero h1, .hero h2 { font-size: clamp(2.35rem, 11vw, 3.25rem); }
  .hero-lead { font-size: 1rem; line-height: 1.55; }
  .hero-features { gap: 0.45rem; }
  .hero-features li { font-size: 0.7rem; }
  .carousel-slide:nth-child(4) .hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    gap: 0.45rem;
  }
  .carousel-slide:nth-child(4) .hero-features li {
    display: grid;
    min-width: 0;
    min-height: 2.8rem;
    padding-right: clamp(0.35rem, 2vw, 0.68rem);
    padding-left: clamp(0.35rem, 2vw, 0.68rem);
    place-items: center;
    text-align: center;
  }
  .carousel-arrow { top: min(23vw, 8.5rem); width: 2.7rem; height: 2.7rem; }
  .carousel-previous { left: 0.65rem; }
  .carousel-next { right: 0.65rem; }
  .carousel-dots { bottom: 1.3rem; }
  .fact-strip { grid-template-columns: 1fr; }
  .fact-strip div { min-height: 0; padding: 1.4rem 1rem; border-right: 0; border-bottom: 1px solid #d9d2c5; }
  .idea-heading { display: flex; }
  .idea-grid { grid-template-columns: 1fr; gap: 18px; }
  .idea-grid article { min-height: auto; }
  .idea-grid article > span { margin-bottom: 0.9rem; font-size: clamp(1.7rem, 9vw, 2.4rem); }
  .booking-section { padding-left: 0; padding-right: 0; }
  .booking-copy { padding: 0 1rem; }
  .booking-copy > .eyebrow.light:not(.mobile-consultation-price),
  .booking-label-desktop { display: none; }
  .mobile-consultation-price,
  .booking-label-mobile { display: inline; }
  .mobile-consultation-price { display: block; }
  .booking-form { box-shadow: none; }
  .form-row, .choice-grid { grid-template-columns: 1fr; }
  .quote-dialog { width: 100%; max-height: 100vh; }
  .quote-dialog-panel { max-height: 100vh; box-shadow: none; }
  .quote-dialog-heading { padding: 1.7rem 4rem 1.1rem 1.2rem; }
  .quote-form { padding: 1.2rem; }
  .quote-file-options { grid-template-columns: 1fr; }
  .quote-file-or { justify-self: center; }
  .site-footer { display: flex; flex-direction: column; gap: 0.7rem; text-align: center; }
  .footer-wordmark { justify-content: center; margin-bottom: 1.5rem; }
  .site-footer p { margin-bottom: 0.7rem; }
  .footer-location-link { align-items: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
