
:root {
  --accent: #f36a2d;
  --accent-dark: #d94d12;
  --navy: #0d2233;
  --navy-deep: #071723;
  --paper: #f3f1eb;
  --paper-bright: #fbfaf7;
  --white: #fff;
  --ink: #17212a;
  --muted: #65717a;
  --line: #d8d5ce;
  --content: 1280px;
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgb(7 23 35 / 18%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  margin: 0;
  min-width: 320px;
}

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

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

img {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-shell {
  overflow: clip;
}

.skip-link {
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  left: 1rem;
  padding: 0.8rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-180%);
  z-index: 1000;
}

.skip-link:focus {
  transform: none;
}

.concept-bar {
  align-items: center;
  background: #ffeadf;
  color: #55230d;
  display: flex;
  font-size: 0.67rem;
  gap: 0.65rem;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 34px;
  padding: 0.5rem 1rem;
  text-align: center;
  text-transform: uppercase;
}

.concept-bar strong {
  font-weight: 900;
}

.concept-bar > span:last-child {
  border-left: 1px solid rgb(85 35 13 / 30%);
  padding-left: 0.65rem;
}

.concept-dot {
  background: var(--accent);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.site-header {
  background: rgb(7 23 35 / 97%);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(260px, 1fr) auto minmax(340px, 1fr);
  margin: 0 auto;
  max-width: 1560px;
  min-height: 92px;
  padding: 0 2rem;
}

.brand,
.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 0.9rem;
}

.brand {
  justify-self: start;
}

.brand-mark {
  align-items: center;
  background: var(--accent);
  color: var(--navy-deep);
  display: inline-flex;
  font-family: var(--display);
  font-size: 0.95rem;
  font-stretch: condensed;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  letter-spacing: -0.04em;
  transform: skewX(-5deg);
  width: 48px;
}

.brand-copy,
.footer-brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.brand-copy strong,
.footer-brand strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy small,
.footer-brand small {
  color: #aebbc5;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-top: 0.4rem;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 1.9rem;
}

.desktop-nav a,
.footer-links a {
  color: #dce3e8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  position: relative;
  text-transform: uppercase;
}

.desktop-nav a::after {
  background: var(--accent);
  bottom: -0.6rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.compact-nav {
  display: none;
  justify-self: start;
  position: relative;
  z-index: 2;
}

.compact-nav summary {
  align-items: center;
  border: 1px solid rgb(255 255 255 / 24%);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.66rem;
  font-weight: 900;
  gap: 0.7rem;
  justify-content: center;
  letter-spacing: 0.11em;
  list-style: none;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.compact-nav summary::-webkit-details-marker {
  display: none;
}

.compact-nav summary:hover {
  border-color: rgb(255 255 255 / 55%);
}

.compact-nav[open] summary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy-deep);
}

.menu-icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.menu-icon i {
  background: currentColor;
  display: block;
  height: 2px;
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
  width: 18px;
}

.compact-nav[open] .menu-icon i:first-child {
  transform: translateY(6px) rotate(45deg);
}

.compact-nav[open] .menu-icon i:nth-child(2) {
  opacity: 0;
}

.compact-nav[open] .menu-icon i:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.compact-nav-panel {
  background: var(--navy-deep);
  border: 1px solid rgb(255 255 255 / 14%);
  box-shadow: var(--shadow);
  display: grid;
  left: 0;
  min-width: 330px;
  padding: 0.8rem;
  position: absolute;
  top: calc(100% + 1rem);
}

.compact-nav-heading {
  color: #8fa0ac;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  padding: 0.75rem 0.85rem 0.9rem;
  text-transform: uppercase;
}

.compact-nav-panel > a {
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 13%);
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 30px 1fr auto;
  min-height: 52px;
  padding: 0.65rem 0.85rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.compact-nav-panel > a:hover,
.compact-nav-panel > a:focus-visible {
  background: #102a3e;
}

.compact-nav-panel > a > span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 900;
}

.compact-nav-panel > a > strong {
  font-size: 0.7rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.compact-nav-panel > a > i {
  color: var(--accent);
  font-style: normal;
}

.compact-nav-panel .compact-nav-book {
  background: var(--accent);
  border-top: 0;
  color: var(--navy-deep);
  grid-template-columns: 1fr auto;
  margin-top: 0.8rem;
  min-height: 56px;
}

.compact-nav-panel .compact-nav-book:hover,
.compact-nav-panel .compact-nav-book:focus-visible {
  background: var(--accent-dark);
  color: var(--white);
}

.compact-nav-panel .compact-nav-book > i {
  color: currentColor;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  justify-self: end;
}

.header-phone {
  align-items: center;
  display: flex;
  gap: 0.7rem;
}

.header-phone > svg,
.contact-options svg {
  color: var(--accent);
  height: 20px;
  width: 20px;
}

.header-phone > span {
  display: flex;
  flex-direction: column;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.header-phone small {
  color: #9eacb8;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 0.73rem;
  font-weight: 900;
  gap: 0.85rem;
  justify-content: center;
  letter-spacing: 0.085em;
  min-height: 56px;
  padding: 0.85rem 1.35rem;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy-deep);
}

.button-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

.button-ghost {
  border-color: rgb(255 255 255 / 30%);
  color: var(--white);
}

.button-ghost:hover {
  background: rgb(255 255 255 / 9%);
  border-color: rgb(255 255 255 / 60%);
}

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

.button-light:hover {
  background: transparent;
  color: var(--white);
}

.button svg {
  height: 17px;
  width: 17px;
}

.arrow-icon {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

a:hover .arrow-icon,
button:hover .arrow-icon {
  transform: translateX(3px);
}

.header-book {
  min-height: 52px;
  white-space: nowrap;
}

.hero {
  background: var(--navy);
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  min-height: 690px;
}

.hero-copy {
  align-items: flex-start;
  container-type: inline-size;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(5rem, 7vw, 8rem) max(2rem, calc((100vw - var(--content)) / 2 + 2rem));
  padding-right: clamp(2.5rem, 5vw, 6rem);
  position: relative;
}

.hero-copy::before {
  background-image: linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to right, black, transparent 85%);
  pointer-events: none;
  position: absolute;
}

.eyebrow {
  align-items: center;
  color: var(--navy);
  display: flex;
  font-size: 0.68rem;
  font-weight: 900;
  gap: 0.75rem;
  letter-spacing: 0.16em;
  margin: 0 0 1.6rem;
  position: relative;
  text-transform: uppercase;
}

.eyebrow > span {
  background: var(--accent);
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
}

.eyebrow-light {
  color: #c9d3da;
}

.hero .eyebrow {
  color: #c9d3da;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.reputation-intro h2,
.enquiry-copy h2,
.location-copy h2,
.faq-heading h2,
.closing-cta h2 {
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.035em;
  margin: 0;
  max-inline-size: 100%;
  overflow-wrap: break-word;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero h1 {
  /* Size against the copy panel, not the full screen, so the image column
     cannot cover long headings at laptop widths or browser zoom levels. */
  font-size: clamp(3.6rem, min(7.1vw, 14cqw), 8rem);
  line-height: 0.84;
  max-width: 780px;
  position: relative;
}

.hero-intro {
  color: #cbd4da;
  font-size: clamp(1.02rem, 1.25vw, 1.23rem);
  line-height: 1.65;
  margin: 2rem 0 0;
  max-width: 640px;
  position: relative;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
  position: relative;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 2.1rem 0 0;
  padding: 0;
  position: relative;
}

.hero-assurances li {
  color: #aebbc4;
  font-size: 0.73rem;
  font-weight: 700;
}

.hero-assurances span {
  color: var(--accent);
  margin-right: 0.35rem;
}

.hero-media,
.about-media,
.location-media {
  isolation: isolate;
  min-height: 620px;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.hero-media img,
.about-media img,
.location-media img {
  height: 100%;
  inset: 0;
  max-width: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-media img {
  object-position: 56% center;
}

.hero-image-shade {
  background: linear-gradient(90deg, rgb(7 23 35 / 22%), transparent 35%), linear-gradient(0deg, rgb(7 23 35 / 42%), transparent 42%);
  inset: 0;
  position: absolute;
}

.availability-card {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgb(255 255 255 / 94%);
  bottom: 2rem;
  box-shadow: var(--shadow);
  color: var(--navy);
  display: grid;
  gap: 0.9rem;
  grid-template-columns: auto 1fr auto;
  left: 2rem;
  max-width: 430px;
  padding: 1rem;
  position: absolute;
  right: 2rem;
}

.availability-icon {
  align-items: center;
  background: var(--accent);
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.availability-icon svg,
.availability-card > a svg {
  height: 20px;
  width: 20px;
}

.availability-card > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.availability-card small {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.availability-card strong {
  font-size: 0.82rem;
}

.availability-card > a {
  align-items: center;
  border-left: 1px solid var(--line);
  display: flex;
  height: 44px;
  padding-left: 1rem;
}

.trust-bar {
  background: var(--paper-bright);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1600px;
}

.trust-bar article {
  border-right: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr;
  min-height: 150px;
  padding: 2rem clamp(1.5rem, 3vw, 3rem);
}

.trust-bar article:last-child {
  border-right: 0;
}

.trust-bar article > span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
}

.trust-bar strong {
  color: var(--navy);
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.trust-bar p {
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.55;
  margin: 0.45rem 0 0;
}

.section {
  margin: 0 auto;
  max-width: var(--content);
  padding: clamp(5.5rem, 9vw, 9rem) 2rem;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 3rem 6rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  margin-bottom: 4rem;
}

.section-heading > div:first-child,
.reputation-intro,
.enquiry-copy,
.faq-heading {
  container-type: inline-size;
  min-width: 0;
}

.section-heading h2,
.about-copy h2,
.reputation-intro h2,
.enquiry-copy h2,
.location-copy h2,
.faq-heading h2,
.closing-cta h2 {
  color: var(--navy);
  font-size: clamp(2.75rem, min(5.4vw, 12cqw), 6.2rem);
  line-height: 0.9;
}

.heading-aside > p,
.about-copy > p,
.reputation-intro > p:last-child,
.enquiry-copy > p,
.faq-heading > p:last-child {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

.text-link,
.service-card > a {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 900;
  gap: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link {
  border-bottom: 2px solid var(--accent);
  margin-top: 1.5rem;
  padding-bottom: 0.45rem;
}

.text-link svg,
.service-card > a svg {
  height: 16px;
  width: 16px;
}

.service-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--paper-bright);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 365px;
  padding: clamp(1.6rem, 2.6vw, 2.5rem);
  transition: background-color 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.card-topline {
  align-items: center;
  color: var(--accent);
  display: flex;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 900;
  justify-content: space-between;
}

.card-topline span:last-child {
  color: #a3abb0;
}

.service-card h3 {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 2.2rem 0 0.8rem;
  text-transform: uppercase;
}

.service-card > strong {
  color: var(--ink);
  font-size: 0.83rem;
}

.service-card > p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
  margin: 0.8rem 0 2rem;
}

.service-card > a {
  margin-top: auto;
}

.about-section {
  background: var(--navy);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 760px;
}

.about-media {
  min-height: 760px;
}

.about-media img {
  object-position: 50% center;
}

.about-media::after {
  background: linear-gradient(0deg, rgb(7 23 35 / 50%), transparent 35%);
  content: "";
  inset: 0;
  position: absolute;
}

.image-caption {
  align-items: center;
  bottom: 2rem;
  color: var(--white);
  display: flex;
  font-size: 0.65rem;
  font-weight: 850;
  gap: 0.85rem;
  left: 2rem;
  letter-spacing: 0.1em;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.image-caption span {
  align-items: center;
  background: var(--accent);
  color: var(--navy-deep);
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.about-copy {
  align-items: flex-start;
  container-type: inline-size;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(4.5rem, 7vw, 7rem) max(2rem, calc((100vw - var(--content)) / 2 + 2rem));
  padding-left: clamp(3rem, 6vw, 7rem);
}

.about-copy h2,
.reputation-intro h2,
.location-copy h2,
.closing-cta h2 {
  color: var(--white);
}

.about-copy > p {
  color: #b9c5cd;
  margin-top: 1.2rem;
  max-width: 590px;
}

.about-copy .about-lead {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 750;
  line-height: 1.6;
  margin-top: 2rem;
}

.principle-list {
  border-top: 1px solid rgb(255 255 255 / 18%);
  margin-top: 2.5rem;
  width: 100%;
}

.principle-list > div {
  align-items: center;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  display: grid;
  gap: 1rem;
  grid-template-columns: 40px 120px 1fr;
  padding: 1.15rem 0;
}

.principle-list span {
  color: var(--accent);
  font-family: var(--display);
  font-weight: 900;
}

.principle-list strong {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.principle-list p {
  color: #aebcc5;
  font-size: 0.78rem;
  margin: 0;
}

.process-section {
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.process-heading {
  margin-bottom: 3rem;
}

.process-grid {
  counter-reset: process;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-grid li {
  border-left: 1px solid var(--line);
  min-height: 300px;
  padding: 1rem clamp(1.5rem, 3vw, 3rem) 1rem;
}

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

.process-number {
  color: var(--accent);
  display: block;
  font-family: var(--display);
  font-size: clamp(3.8rem, 6vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.process-grid h3 {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 2.4rem 0 0.8rem;
  text-transform: uppercase;
}

.process-grid p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
  margin: 0;
}

.reputation-section {
  background: var(--navy-deep);
  color: var(--white);
  display: grid;
  gap: clamp(4rem, 8vw, 9rem);
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  padding: clamp(6rem, 9vw, 9rem) max(2rem, calc((100vw - var(--content)) / 2 + 2rem));
}

.reputation-intro {
  align-self: center;
}

.reputation-intro > p:last-child {
  color: #aebbc4;
  margin-top: 1.7rem;
}

.review-stack {
  display: grid;
  gap: 1rem;
}

.review-card {
  background: #102a3e;
  border: 1px solid rgb(255 255 255 / 12%);
  margin: 0;
  padding: clamp(1.8rem, 3.5vw, 3.2rem);
}

.sample-label {
  color: var(--accent);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

.review-card blockquote {
  color: #f4f6f7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.55;
  margin: 0;
}

.review-card figcaption {
  color: #9dabb5;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin-top: 1.7rem;
  text-transform: uppercase;
}

.enquiry-section {
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(300px, 0.75fr) minmax(500px, 1.25fr);
}

.enquiry-copy > p {
  margin-top: 1.5rem;
}

.contact-options {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}

.contact-options > a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
}

.contact-options > a:last-child {
  border-bottom: 0;
}

.contact-options a > span {
  display: flex;
  flex-direction: column;
}

.contact-options small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.contact-options strong {
  color: var(--navy);
  font-size: 0.88rem;
}

.privacy-note {
  border-left: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1.8rem;
  padding-left: 1rem;
}

.privacy-note strong {
  color: var(--navy);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-note span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.enquiry-form {
  background: var(--white);
  border-top: 5px solid var(--accent);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.7rem);
}

.field-row {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}

.enquiry-form label {
  color: var(--navy);
  display: flex;
  flex-direction: column;
  font-size: 0.66rem;
  font-weight: 900;
  gap: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  background: #f5f4f0;
  border: 1px solid #ddd9d1;
  border-radius: 0;
  color: var(--ink);
  min-height: 54px;
  padding: 0.9rem 1rem;
  text-transform: none;
  width: 100%;
}

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

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgb(243 106 45 / 18%);
}

.enquiry-form :disabled {
  color: #858d92;
  cursor: not-allowed;
  opacity: 0.78;
}

.form-footer {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.form-footer p {
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.45;
  margin: 0;
  max-width: 240px;
}

.form-footer button {
  border-radius: 0;
}

.location-section {
  background: var(--navy);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
}

.location-media {
  min-height: 660px;
}

.location-media img {
  object-position: center;
}

.location-copy {
  align-items: flex-start;
  container-type: inline-size;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(4.5rem, 7vw, 7rem) max(2rem, calc((100vw - var(--content)) / 2 + 2rem));
  padding-left: clamp(3rem, 5vw, 6rem);
}

.location-copy address {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.65;
  margin-top: 2rem;
}

.hours-list {
  border-top: 1px solid rgb(255 255 255 / 18%);
  margin: 2rem 0;
  width: 100%;
}

.hours-list > div {
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  display: flex;
  font-size: 0.78rem;
  justify-content: space-between;
  padding: 0.95rem 0;
}

.hours-list dt {
  color: #aebbc5;
}

.hours-list dd {
  font-weight: 800;
  margin: 0;
}

.location-copy > small {
  color: #9fadb7;
  font-size: 0.64rem;
  line-height: 1.45;
  margin-top: 1.1rem;
}

.faq-section {
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
}

.faq-heading > p:last-child {
  margin-top: 1.4rem;
  max-width: 470px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  align-items: center;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.01em;
  list-style: none;
  padding: 1.6rem 0;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  height: 34px;
  justify-content: center;
  margin-left: 1rem;
  transition: background-color 180ms ease, transform 180ms ease;
  width: 34px;
}

.faq-list details[open] summary i {
  background: var(--accent);
  color: var(--navy-deep);
  transform: rotate(45deg);
}

.faq-list details > p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: -0.3rem 0 1.7rem;
  max-width: 680px;
  padding-right: 3rem;
}

.closing-cta {
  align-items: center;
  background: var(--navy-deep);
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: clamp(6rem, 10vw, 10rem) 2rem;
  text-align: center;
}

.closing-cta h2 {
  font-size: clamp(4rem, 8vw, 8.5rem);
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.keep-word {
  white-space: nowrap;
}

.closing-cta > p:not(.eyebrow) {
  color: #afbbc4;
  font-size: 1rem;
  margin: 1.4rem 0 0;
}

.closing-cta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 2.1rem;
}

.site-footer {
  background: #05111a;
  color: var(--white);
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr auto;
  padding: 3.5rem max(2rem, calc((100vw - var(--content)) / 2 + 2rem));
}

.footer-brand .brand-mark {
  height: 40px;
  width: 44px;
}

.footer-links {
  align-items: center;
  display: flex;
  gap: 1.5rem;
}

.footer-meta {
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: #8796a0;
  display: flex;
  font-size: 0.62rem;
  grid-column: 1 / -1;
  justify-content: space-between;
  letter-spacing: 0.06em;
  padding-top: 1.5rem;
  text-transform: uppercase;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1240px) {
  .header-inner {
    gap: 1.25rem;
    grid-template-columns: auto minmax(220px, 1fr) auto;
  }

  .desktop-nav {
    display: none;
  }

  .compact-nav {
    display: block;
  }

  .hero {
    grid-template-columns: minmax(0, 51%) minmax(0, 49%);
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 1040px) {
  .hero,
  .about-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 570px;
    padding: 5.5rem 2rem;
  }

  .about-copy,
  .location-copy {
    padding: 5.5rem 2rem;
  }

  .hero-media,
  .about-media,
  .location-media {
    min-height: 560px;
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 88px;
  }

  .concept-bar > span:last-child {
    display: none;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 78px;
    padding: 0 1.25rem;
  }

  .hero,
  .about-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 570px;
    padding: 5.5rem 2rem;
  }

  .hero-media,
  .about-media,
  .location-media {
    min-height: 560px;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-bar article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: auto;
  }

  .section-heading,
  .enquiry-section,
  .faq-section,
  .reputation-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

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

  .about-copy,
  .location-copy {
    padding: 5.5rem 2rem;
  }

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

  .process-grid li,
  .process-grid li:last-child {
    align-items: center;
    border-bottom: 1px solid var(--line);
    border-left: 0;
    border-right: 0;
    display: grid;
    gap: 2rem;
    grid-template-columns: 110px 1fr;
    min-height: auto;
    padding: 2rem 0;
  }

  .process-grid h3 {
    margin-top: 0;
  }

  .reputation-section {
    gap: 3.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .enquiry-section {
    gap: 3.5rem;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 68px;
  }

  .concept-bar {
    font-size: 0.57rem;
    min-height: 30px;
  }

  .header-inner {
    gap: 0.85rem;
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 72px;
  }

  .compact-nav summary {
    height: 44px;
    min-height: 44px;
    padding: 0;
    width: 44px;
  }

  .menu-label {
    display: none;
  }

  .compact-nav-panel {
    min-width: min(330px, calc(100vw - 2.5rem));
    top: calc(100% + 0.85rem);
  }

  .brand {
    min-width: 0;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong,
  .brand-copy small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    height: 38px;
    width: 42px;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-copy small {
    font-size: 0.5rem;
  }

  .header-book {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hero-copy {
    min-height: auto;
    padding: 4.5rem 1.25rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 5.6rem);
  }

  .hero-intro {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

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

  .hero-assurances {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-media,
  .about-media,
  .location-media {
    min-height: 430px;
  }

  .availability-card {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .trust-bar article {
    padding: 1.5rem 1.25rem;
  }

  .section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section-heading {
    gap: 2rem;
    margin-bottom: 2.6rem;
  }

  .section-heading h2,
  .about-copy h2,
  .reputation-intro h2,
  .enquiry-copy h2,
  .location-copy h2,
  .faq-heading h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

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

  .service-card {
    min-height: 330px;
    padding: 1.6rem;
  }

  .about-copy,
  .location-copy,
  .reputation-section {
    padding: 4.5rem 1.25rem;
  }

  .principle-list > div {
    align-items: start;
    grid-template-columns: 34px 1fr;
  }

  .principle-list p {
    grid-column: 2;
  }

  .process-grid li,
  .process-grid li:last-child {
    align-items: start;
    gap: 1.2rem;
    grid-template-columns: 76px 1fr;
  }

  .process-number {
    font-size: 3.8rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer button {
    width: 100%;
  }

  .faq-list summary {
    font-size: 1.05rem;
  }

  .closing-cta {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .closing-cta h2 {
    font-size: clamp(2.75rem, 13.5vw, 3.3rem);
    letter-spacing: -0.045em;
  }

  .closing-cta > div,
  .closing-cta .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    flex-direction: column;
    gap: 1rem;
    grid-column: 1;
  }

  .mobile-actions {
    background: var(--white);
    bottom: 0;
    box-shadow: 0 -8px 26px rgb(7 23 35 / 12%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    left: 0;
    min-height: 68px;
    position: fixed;
    right: 0;
    z-index: 80;
  }

  .mobile-actions a {
    align-items: center;
    border-right: 1px solid var(--line);
    color: var(--navy);
    display: flex;
    flex-direction: column;
    font-size: 0.58rem;
    font-weight: 900;
    gap: 0.3rem;
    justify-content: center;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .mobile-actions a:last-child {
    background: var(--accent);
    border-right: 0;
  }

  .mobile-actions svg {
    height: 20px;
    width: 20px;
  }
}

.mobile-actions a > span:first-child {
  font-size: 1.05rem;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
