:root {
  --charcoal: #1c1f24;
  --steel: #2b3038;
  --steel-light: #3a414c;
  --orange: #ff6b1a;
  --orange-dark: #bd4200;
  --off-white: #f4f4f2;
  --white: #ffffff;
  --yellow: #ffc400;
  --ink: #15171b;
  --muted: #676d75;
  --line: #c9cbd0;
  --line-dark: #444a54;
  --success: #dff7e7;
  --success-ink: #124c27;
  --error: #ffe2dc;
  --error-ink: #8c210f;
  --heading-font: "Oswald", "Arial Narrow", Arial, sans-serif;
  --body-font: "Roboto", Arial, sans-serif;
  --container: 1180px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-space: clamp(4.25rem, 8vw, 7rem);
  --radius: 3px;
  --shadow: 0 14px 35px rgb(28 31 36 / 12%);
}

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

html {
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  max-width: 100%;
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.3rem;
  font-size: clamp(3.1rem, 15vw, 7.2rem);
  letter-spacing: -0.035em;
  line-height: 0.92;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 8vw, 4.5rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
  letter-spacing: 0.015em;
}

.container {
  width: min(100%, calc(var(--container) + (var(--gutter) * 2)));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-space);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  transform: translateY(-180%);
  border: 2px solid var(--charcoal);
  background: var(--yellow);
  color: var(--charcoal);
  font-weight: 900;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.kicker,
.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--orange-dark);
  font-family: var(--heading-font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker--dark {
  color: var(--charcoal);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
}

.eyebrow span {
  width: 2.4rem;
  height: 3px;
  flex: 0 0 auto;
  background: var(--orange);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.8rem 1.15rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--heading-font);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button--primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--charcoal);
}

.button--ghost {
  border-color: #7b818a;
  background: transparent;
  color: var(--white);
}

.button--header {
  display: none;
  border-color: var(--orange);
  background: var(--orange);
  color: var(--charcoal);
}

.utility-bar {
  display: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line-dark);
  background: var(--charcoal);
}

.main-bar {
  position: relative;
  display: flex;
  min-height: 4.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  place-items: center;
  transform: rotate(-7deg);
  border: 2px solid var(--orange);
  background: var(--steel);
  box-shadow: 3px 3px 0 var(--orange);
}

.brand__mark svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.brand__text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  overflow-wrap: anywhere;
  font-family: var(--heading-font);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand__text small {
  margin-top: 0.25rem;
  color: #b8bcc3;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nav-toggle {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  place-content: center;
  gap: 5px;
  border: 1px solid #606670;
  border-radius: var(--radius);
  background: var(--steel);
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--white);
}

.primary-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: var(--gutter);
  left: var(--gutter);
  display: none;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--steel);
  box-shadow: var(--shadow);
}

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

.no-js .nav-toggle {
  display: none;
}

.no-js .primary-nav {
  display: grid;
}

.primary-nav a {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4.5rem, 11vw, 7.5rem) clamp(7rem, 13vw, 10rem);
  background: var(--charcoal);
  color: var(--white);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgb(16 18 22 / 94%) 0%,
      rgb(16 18 22 / 88%) 58%,
      rgb(16 18 22 / 82%) 100%
    ),
    linear-gradient(180deg, rgb(16 18 22 / 18%) 0%, rgb(16 18 22 / 50%) 100%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 3;
  right: -2px;
  bottom: -1px;
  left: -2px;
  height: clamp(2.8rem, 6vw, 5.2rem);
  background: var(--off-white);
  clip-path: polygon(0 72%, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.hero__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero__content {
  min-width: 0;
}

.hero__copy {
  max-width: 40rem;
  margin-bottom: 1.7rem;
  color: #d2d5da;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
}

.hero__actions {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 42rem;
  margin-bottom: 0;
  border-block: 1px solid var(--line-dark);
}

.hero-stats div {
  min-width: 0;
  padding: 1rem 0.5rem;
  border-right: 1px solid var(--line-dark);
  text-align: center;
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  margin-bottom: 0.25rem;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(1.25rem, 6vw, 2rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hero-stats dd {
  color: #aeb3bb;
  font-size: clamp(0.62rem, 2.5vw, 0.76rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 0.7rem 2rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 1.4rem;
  border-bottom: 3px solid var(--charcoal);
}

.section-heading h2,
.section-heading > p {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 37rem;
  color: var(--muted);
}

.services-photo {
  display: grid;
  width: min(100%, 58rem);
  min-width: 0;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-top: 5px solid var(--orange);
  border-radius: var(--radius);
  background: var(--steel);
  box-shadow: var(--shadow);
}

.services-photo__media {
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--charcoal);
}

.services-photo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-photo figcaption {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.3rem, 4vw, 2.2rem);
  color: var(--white);
}

.services-photo figcaption span {
  margin-bottom: 0.65rem;
  color: var(--yellow);
  font-family: var(--heading-font);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.services-photo figcaption strong {
  margin-bottom: 0.85rem;
  font-family: var(--heading-font);
  font-size: clamp(1.65rem, 6vw, 2.5rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.services-photo figcaption p {
  margin-bottom: 0;
  color: #c5c9cf;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 14rem;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--steel);
  background: var(--white);
  box-shadow: 0 8px 24px rgb(28 31 36 / 5%);
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.7rem;
  fill: none;
  stroke: var(--orange-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.trust-band {
  position: relative;
  padding-block: 1.25rem;
  overflow: hidden;
  border-block: 5px solid var(--orange);
  background: var(--steel);
  color: var(--white);
}

.trust-band::before {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: repeating-linear-gradient(135deg, transparent 0 20px, #fff 20px 21px);
  content: "";
  pointer-events: none;
}

.trust-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
}

.trust-item {
  display: flex;
  min-width: 0;
  min-height: 7.2rem;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--steel);
}

.trust-item span {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-family: var(--heading-font);
  font-size: 0.8rem;
  font-weight: 700;
}

.trust-item strong {
  overflow-wrap: anywhere;
  font-family: var(--heading-font);
  font-size: clamp(0.88rem, 3.3vw, 1.1rem);
  line-height: 1.25;
  text-transform: uppercase;
}

.trust-item--yellow span {
  border-color: var(--yellow);
  color: var(--yellow);
}

.section-heading--centered {
  text-align: center;
}

.section-heading--centered > p {
  margin-inline: auto;
}

.progress-steps {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.progress-steps::before {
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 1.45rem;
  width: 3px;
  background: var(--line);
  content: "";
}

.progress-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.1rem;
  min-height: 8.3rem;
}

.progress-steps__node {
  position: relative;
  z-index: 2;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 3px solid var(--orange);
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 700;
}

.progress-steps li:last-child .progress-steps__node {
  border-color: var(--yellow);
}

.progress-steps h3 {
  margin-top: 0.55rem;
}

.progress-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgb(28 31 36 / 4%) 25%, transparent 25%) 0 0 / 28px 28px,
    #e5e5e2;
}

.pricing::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 8px;
  background: var(--orange);
  content: "";
}

.pricing__inner {
  display: grid;
  gap: 2.4rem;
}

.pricing__heading p:last-child {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
}

.price-list {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-list table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.price-list__service {
  width: 46%;
}

.price-list__time {
  width: 28%;
}

.price-list__price {
  width: 26%;
}

.price-list th,
.price-list td {
  min-width: 0;
  padding: 0.9rem 0.55rem;
  overflow-wrap: anywhere;
  border-bottom: 1px solid var(--line);
  line-height: 1.3;
  text-align: left;
  vertical-align: middle;
}

.price-list thead th {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(0.64rem, 2.5vw, 0.78rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-list tbody th {
  font-family: var(--heading-font);
  font-size: clamp(0.82rem, 3vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
}

.price-list tbody td {
  color: var(--muted);
  font-size: clamp(0.74rem, 2.7vw, 0.9rem);
}

.price-list th:last-child,
.price-list td:last-child {
  text-align: right;
}

.price-list tbody td:last-child {
  color: var(--orange-dark);
  font-family: var(--heading-font);
  font-size: clamp(1rem, 3.6vw, 1.25rem);
  font-weight: 700;
  white-space: nowrap;
}

.price-list__note {
  margin: 0;
  padding: 1rem;
  background: #f5eee7;
  color: #5f4a3f;
  font-size: 0.78rem;
  font-weight: 700;
}

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.review-card {
  display: flex;
  min-width: 0;
  min-height: 20rem;
  flex-direction: column;
  margin-bottom: 0;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.stars {
  margin-bottom: 1.25rem;
  color: #925300;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
}

.review-card blockquote {
  margin-right: 0;
  margin-bottom: 2rem;
  margin-left: 0;
  font-family: var(--heading-font);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.35;
}

.review-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.review-card figcaption > span {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--steel);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.review-card figcaption p {
  display: flex;
  margin-bottom: 0;
  flex-direction: column;
  line-height: 1.2;
}

.review-card figcaption strong {
  font-family: var(--heading-font);
  font-size: 1rem;
  text-transform: uppercase;
}

.review-card figcaption small {
  margin-top: 0.18rem;
  color: var(--muted);
}

.faq {
  background: var(--charcoal);
  color: var(--white);
}

.faq__inner {
  display: grid;
  gap: 2.5rem;
}

.faq__heading > p:not(.kicker) {
  max-width: 30rem;
  color: #b8bdc5;
}

.text-link {
  color: var(--orange);
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
}

.accordion {
  border-top: 1px solid var(--line-dark);
}

.accordion__item {
  border-bottom: 1px solid var(--line-dark);
}

.accordion__item h3 {
  margin: 0;
}

.accordion__trigger {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) 2rem;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(1.05rem, 4.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;
}

.accordion__trigger span {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  border: 1px solid #6d737d;
}

.accordion__trigger span::before,
.accordion__trigger span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 2px;
  transform: translate(-50%, -50%);
  background: var(--orange);
  content: "";
}

.accordion__trigger span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__trigger[aria-expanded="true"] span::after {
  display: none;
}

.accordion__panel {
  padding: 0 2.8rem 1.2rem 0;
  color: #b8bdc5;
}

.accordion__panel p {
  margin-bottom: 0;
}

.booking {
  background: var(--off-white);
}

.booking__heading {
  max-width: 45rem;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.booking__heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.booking-form,
.shop-card {
  min-width: 0;
  height: 100%;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid var(--line);
}

.booking-form {
  background: var(--white);
}

.field-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.field {
  min-width: 0;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  color: #30343b;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field label span {
  color: var(--orange-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid #969ba3;
  border-radius: 2px;
  background: var(--white);
}

.field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6e747d;
  opacity: 1;
}

.button--submit {
  width: 100%;
  margin-top: 1.25rem;
}

.form-status {
  margin: 1rem 0 0;
  padding: 0.8rem;
  border: 1px solid #4e9c68;
  background: var(--success);
  color: var(--success-ink);
  font-weight: 700;
}

.form-status--error {
  border-color: #c44b36;
  background: var(--error);
  color: var(--error-ink);
}

.form-fine-print {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.shop-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  border-color: var(--steel);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 4%) 25%, transparent 25%) 0 0 / 28px 28px,
    var(--steel);
  color: var(--white);
}

.shop-card__label {
  margin-bottom: 0.6rem;
  color: var(--orange);
  font-family: var(--heading-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-card h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 8vw, 3.2rem);
}

.shop-card address {
  margin-bottom: 1rem;
  color: #c5c9cf;
  font-style: normal;
}

.shop-card__phone {
  color: var(--orange);
  font-family: var(--heading-font);
  font-size: clamp(1.5rem, 6vw, 2.2rem);
  font-weight: 700;
}

.hours {
  padding-block: 1.5rem;
  border-block: 1px solid var(--line-dark);
}

.hours h4 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.hours table {
  width: 100%;
  border-collapse: collapse;
}

.hours th,
.hours td {
  padding: 0.35rem 0;
  color: #c5c9cf;
  font-size: 0.86rem;
  font-weight: 400;
  text-align: left;
  vertical-align: top;
}

.hours td {
  padding-left: 0.75rem;
  color: var(--white);
  text-align: right;
}

.text-note {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 1rem;
  border-left: 4px solid var(--yellow);
  background: var(--charcoal);
}

.text-note svg {
  width: 2.5rem;
  height: 2.5rem;
  fill: none;
  stroke: var(--yellow);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.text-note p {
  margin-bottom: 0;
  color: #c5c9cf;
  font-size: 0.86rem;
}

.text-note strong {
  display: block;
  color: var(--white);
}

.site-footer {
  padding: 4rem 0 5.5rem;
  border-top: 6px solid var(--orange);
  background: #14161a;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.4rem;
}

.brand--footer {
  margin-bottom: 1rem;
}

.footer-brand > p,
.footer-hours p,
.footer-contact p {
  margin-bottom: 0.35rem;
  color: #aeb3bb;
  font-size: 0.88rem;
}

.footer-links,
.footer-hours,
.footer-contact {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links h2,
.footer-hours h2,
.footer-contact h2 {
  margin-bottom: 0.8rem;
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 0.13em;
}

.footer-links a {
  padding-block: 0.2rem;
  color: #d5d8dc;
  text-decoration: none;
}

.footer-contact > a {
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
  font-size: 1.35rem;
  font-weight: 700;
}

.footer-bottom {
  display: grid;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid #353a42;
}

.footer-bottom p {
  margin-bottom: 0;
  color: #7f858e;
  font-size: 0.68rem;
}

.mobile-call-bar {
  position: fixed;
  z-index: 200;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 4.1rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  border-top: 3px solid var(--yellow);
  background: var(--orange);
  color: var(--charcoal);
  font-family: var(--heading-font);
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-call-bar span {
  font-size: 0.8rem;
  font-weight: 600;
}

.mobile-call-bar strong {
  font-size: 1.18rem;
}

.button--primary:hover,
.button--header:hover {
  border-color: var(--yellow);
  background: var(--yellow);
}

.button--ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--charcoal);
}

.service-card:hover {
  border-top-color: var(--orange);
}

.primary-nav a:hover,
.footer-links a:hover,
.accordion__trigger:hover {
  color: var(--orange);
}

@media (min-width: 520px) {
  .hero__actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero__actions .button {
    min-width: 12rem;
  }

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

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

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

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

@media (min-width: 760px) {
  .section-heading {
    grid-template-columns: minmax(0, 1.25fr) minmax(15rem, 0.75fr);
    align-items: end;
  }

  .section-heading--centered {
    grid-template-columns: 1fr;
  }

  .services-photo {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    align-items: stretch;
  }

  .services-photo__media {
    height: 100%;
    aspect-ratio: 4 / 3;
  }

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

  .trust-item {
    min-height: 8rem;
    justify-content: center;
  }

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

  .progress-steps::before {
    top: 1.45rem;
    right: 12.5%;
    bottom: auto;
    left: 12.5%;
    width: auto;
    height: 3px;
  }

  .progress-steps li {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-inline: 0.6rem;
    text-align: center;
  }

  .progress-steps h3 {
    margin-top: 0;
  }

  .pricing__inner,
  .faq__inner {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
  }

  .price-list th,
  .price-list td {
    padding: 1rem;
  }

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

  .booking-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(18rem, 0.72fr);
  }

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

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

  .footer-bottom p:last-child {
    text-align: right;
  }
}

@media (min-width: 900px) {
  html {
    scroll-padding-top: 5.3rem;
  }

  body {
    padding-bottom: 0;
  }

  .utility-bar {
    display: block;
    background: #101216;
    color: #c8ccd2;
  }

  .utility-bar__inner {
    display: grid;
    width: min(100%, calc(var(--container) + (var(--gutter) * 2)));
    min-height: 2.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    margin-inline: auto;
    padding-inline: var(--gutter);
  }

  .utility-bar p,
  .utility-bar a {
    margin-bottom: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .utility-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: var(--white);
  }

  .utility-badge span {
    display: grid;
    width: 1.2rem;
    height: 1.2rem;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--charcoal);
    font-size: 0.65rem;
  }

  .utility-bar a {
    justify-self: end;
    color: #d2d5da;
    text-decoration: none;
  }

  .utility-bar a strong {
    margin-left: 0.45rem;
    color: var(--orange);
    font-size: 0.92rem;
  }

  .site-header {
    top: 0;
  }

  .main-bar {
    display: grid;
    min-height: 5.25rem;
    grid-template-columns: minmax(12rem, 1fr) auto minmax(12rem, 1fr);
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.8rem, 2vw, 1.7rem);
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .primary-nav a {
    padding: 0.45rem 0;
    border: 0;
    color: #d8dbe0;
    font-size: 0.84rem;
  }

  .button--header {
    display: inline-flex;
    justify-self: end;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.75fr);
    gap: clamp(3rem, 6vw, 6rem);
  }

  .hero::before {
    background:
      linear-gradient(
        90deg,
        rgb(16 18 22 / 97%) 0%,
        rgb(16 18 22 / 94%) 48%,
        rgb(16 18 22 / 68%) 72%,
        rgb(16 18 22 / 14%) 100%
      ),
      linear-gradient(180deg, rgb(16 18 22 / 10%) 0%, rgb(16 18 22 / 50%) 100%);
  }

  .hero__background {
    object-position: center;
  }

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

  .mobile-call-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .button,
  .service-card,
  .primary-nav a,
  .footer-links a,
  .accordion__trigger,
  .brand__mark {
    transition:
      color 180ms ease,
      background-color 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease;
  }

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

  .service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgb(28 31 36 / 10%);
  }

  .brand:hover .brand__mark {
    transform: rotate(0);
    box-shadow: 5px 5px 0 var(--orange);
  }
}

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

/* iOS Safari fix: date inputs have an intrinsic minimum width that overflows
   their container on real iPhones (invisible in desktop emulation, which uses
   Chrome's engine, not WebKit's UA styles). Kill the intrinsic sizing. */
input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

/* Standard: back-to-top button with scroll-progress ring */
.btt-button {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 900;
  width: 48px; height: 48px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(17, 17, 17, 0.85); cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  display: grid; place-items: center;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.btt-button.btt-visible { opacity: 1; visibility: visible; transform: none; }
.btt-button:focus-visible { outline: 3px solid #ffc400; outline-offset: 3px; }
.btt-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.btt-ring circle { fill: none; stroke-width: 3; }
.btt-ring-track { stroke: rgba(255, 255, 255, 0.22); }
.btt-ring-fill { stroke: #ffc400; stroke-dasharray: 125.66; stroke-dashoffset: 125.66; stroke-linecap: round; }
.btt-arrow { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
@media (prefers-reduced-motion: reduce) { .btt-button { transition: none; } }

/* btt-call-bar-offset: clear the mobile sticky call bar */
@media (max-width: 899px) { .btt-button { bottom: 5rem; } }
