@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Prata&display=swap");

:root {
  --paper: #f5f0e9;
  --paper-light: #fbf8f3;
  --ink: #191714;
  --muted: #69645d;
  --line: #d8d0c6;
  --accent: #e33a0a;
  --accent-dark: #bd2d06;
  --green: #0d4d3b;
  --green-deep: #08372b;
  --white: #fff;
  --shadow: 0 18px 50px rgba(39, 30, 20, 0.12);
  --radius: 6px;
  --container: 1380px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h3,
.brand strong,
.quiz-step legend,
.hero-quiz legend {
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--green-deep);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(40px, 5vw, 74px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

.section {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: 94px;
  padding: 18px clamp(24px, 4vw, 64px);
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
}

.brand span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.brand strong {
  font-size: 29px;
  white-space: nowrap;
}

.brand small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.main-nav a {
  position: relative;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

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

.header-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

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

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

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

.button-outline {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.68);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-wide {
  width: 100%;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(940px, 100svh);
  padding: 128px clamp(28px, 4.4vw, 72px) 38px;
  align-items: start;
  overflow: hidden;
}

.hero-media,
.hero-wash {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-wash {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.8) 28%, rgba(255, 255, 255, 0.12) 52%, rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(22, 15, 9, 0.08));
}

.hero-content {
  width: min(740px, 54vw);
  margin-top: 24px;
}

.eyebrow {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  gap: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 44px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #b9d2c7;
}

.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(50px, 4vw, 58px);
  line-height: 1.08;
}

.hero h1 span {
  color: var(--accent);
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 34px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 18px;
}

.hero-quiz {
  position: absolute;
  bottom: 38px;
  left: clamp(28px, 4.4vw, 72px);
  width: min(500px, 44vw);
  padding: 24px 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.quiz-progress-line {
  display: grid;
  margin-bottom: 18px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 700;
}

.progress-track,
.full-progress {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 9px;
  background: #e5dfd7;
}

.progress-track i {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--accent);
}

.hero-quiz fieldset,
.full-quiz fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.hero-quiz legend {
  margin-bottom: 16px;
  font-size: 23px;
  line-height: 1.35;
}

.hero-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-choice-grid label,
.option-grid label {
  position: relative;
  cursor: pointer;
}

.hero-choice-grid input,
.option-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hero-choice-grid span {
  display: flex;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: center;
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.hero-choice-grid input:checked + span,
.option-grid input:checked + span {
  border-color: var(--accent);
  background: #fff5ef;
  box-shadow: inset 0 0 0 1px var(--accent);
}

.hero-quiz-next {
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
}

.feature-nav {
  display: grid;
  width: min(calc(100% - 32px), 1480px);
  margin: 0 auto;
  padding: 14px 0 0;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  transform: translateY(-1px);
}

.feature-nav a {
  display: flex;
  min-height: 125px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: flex-end;
  justify-content: space-between;
  background: var(--paper-light);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.feature-nav a:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-4px);
}

.feature-nav span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.feature-nav strong {
  font-size: 18px;
  line-height: 1.25;
}

.intro-band,
.portfolio-section,
.services-section,
.quiz-section {
  position: relative;
  padding-top: 130px;
  isolation: isolate;
}

.intro-band::before,
.portfolio-section::before,
.services-section::before,
.quiz-section::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background-color: #f4e9df;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: max(1280px, 100vw) auto;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.intro-band::before {
  background-image: url("assets/interior-background-03.webp");
}

.portfolio-section::before {
  background-image: url("assets/interior-background-01.webp");
}

.services-section::before {
  background-image: url("assets/interior-background-02.webp");
}

.quiz-section::before {
  background-image: url("assets/interior-background-03.webp");
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 80px;
}

.section-heading > p,
.section-title-row > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
}

.style-tabs {
  display: flex;
  margin-top: 58px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  gap: 10px;
  overflow-x: auto;
}

.style-tabs button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
}

.style-tabs button.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.text-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 16px;
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}

.portfolio-grid {
  display: grid;
  margin-top: 52px;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.project-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
}

.project-card.hidden {
  display: none;
}

.project-card-wide {
  min-height: 560px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.025);
}

.project-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 46px 28px 24px;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(transparent, rgba(13, 11, 9, 0.82));
  color: var(--white);
}

.project-meta p {
  margin-bottom: 5px;
  font-size: 12px;
  text-transform: uppercase;
}

.project-meta h3 {
  margin-bottom: 0;
  font-size: 27px;
}

.project-meta > span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-empty {
  padding: 50px;
  border: 1px solid var(--line);
  text-align: center;
}

.service-grid {
  display: grid;
  margin-top: 52px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 570px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-direction: column;
  background: var(--paper-light);
}

.service-card-featured {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  transform: translateY(-18px);
}

.service-card-featured .service-lead,
.service-card-featured li {
  color: #d8e7df;
}

.service-badge {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 8px 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 36px;
}

.service-lead {
  min-height: 52px;
  color: var(--muted);
}

.service-card ul {
  margin: 20px 0 34px;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 11px 0;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
}

.service-price {
  margin-top: auto;
  margin-bottom: 20px;
  font-weight: 700;
}

.process-section {
  margin-top: 130px;
  padding: 115px 0;
  background: var(--green-deep);
  color: var(--white);
}

.process-section h2 {
  color: var(--white);
}

.process-inner .section-title-row {
  align-items: end;
}

.process-inner .section-title-row > p {
  max-width: 390px;
  color: #b9d2c7;
}

.process-list {
  display: grid;
  margin: 70px 0 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.process-list li {
  min-height: 260px;
  padding: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list > li > span {
  display: block;
  margin-bottom: 70px;
  color: #92b6a7;
  font-size: 12px;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 10px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.process-list p {
  margin-bottom: 0;
  color: #b9d2c7;
  font-size: 14px;
}

.quiz-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.quiz-copy {
  position: sticky;
  top: 120px;
}

.quiz-copy h2 {
  font-size: clamp(40px, 4.3vw, 65px);
}

.quiz-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 28px;
  color: var(--muted);
}

.quiz-result-preview {
  display: flex;
  margin-top: 44px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  gap: 7px;
}

.quiz-result-preview span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.full-quiz {
  min-height: 610px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-light);
  box-shadow: var(--shadow);
}

.full-quiz-head {
  display: grid;
  margin-bottom: 45px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
}

.full-progress i {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--accent);
  transition: width 0.3s ease;
}

.quiz-step legend {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 35px;
  line-height: 1.25;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.option-grid span {
  display: flex;
  min-height: 95px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  font-weight: 700;
}

.option-grid small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.quiz-actions {
  display: flex;
  margin-top: 35px;
  justify-content: flex-end;
  gap: 12px;
}

.quiz-actions .quiz-back {
  margin-right: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.consent-row {
  display: flex;
  margin-top: 18px;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.consent-row input {
  width: 16px;
  min-height: 16px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.consent-row button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.booking-section {
  margin-top: 130px;
  padding: 110px 0;
  background: #78968a;
  color: var(--green-deep);
}

.booking-inner {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
}

.booking-intro h2 {
  font-size: clamp(40px, 4vw, 62px);
}

.booking-intro > p:not(.eyebrow) {
  margin-top: 26px;
  color: #173f33;
}

.booking-notes {
  display: flex;
  margin-top: 38px;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-notes span {
  padding: 7px 11px;
  border: 1px solid rgba(8, 55, 43, 0.35);
  border-radius: 999px;
  color: var(--green-deep);
  font-size: 11px;
}

.booking-section .eyebrow-light {
  color: var(--green-deep);
}

.booking-form {
  display: grid;
  padding: 22px;
  border-radius: var(--radius);
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  background: var(--paper-light);
  color: var(--ink);
}

.booking-calendar,
.booking-fields {
  padding: 20px;
}

.booking-calendar {
  border-right: 1px solid var(--line);
}

.calendar-head {
  display: grid;
  margin-bottom: 22px;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  text-align: center;
}

.calendar-head button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.weekdays {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.calendar-days button,
.calendar-empty {
  display: grid;
  min-width: 0;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: transparent;
  font-size: 12px;
}

.calendar-days button {
  cursor: pointer;
}

.calendar-days button:hover,
.calendar-days button:focus-visible {
  background: #ece5dc;
}

.calendar-days button.active {
  background: var(--accent);
  color: var(--white);
}

.calendar-days button:disabled {
  color: #c8c1b8;
  cursor: not-allowed;
}

.calendar-head button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
}

.time-grid {
  display: grid;
  margin-bottom: 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.time-grid button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.time-grid button.selected {
  border-color: var(--accent);
  background: #fff1e9;
  color: var(--accent-dark);
}

.website-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: grid;
  padding: 70px max(32px, calc((100% - var(--container)) / 2));
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 45px;
  background: #0c0f0d;
  color: var(--white);
}

.site-footer p,
.site-footer a:not(.button) {
  color: #aeb5b0;
}

.brand-footer small {
  color: #aeb5b0;
}

.brand-footer img {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.site-footer > div > strong {
  display: block;
  margin-bottom: 16px;
}

.site-footer > div > a:not(.button) {
  display: block;
  margin-bottom: 8px;
}

.footer-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.footer-actions > button {
  padding: 0;
  border: 0;
  background: none;
  color: #aeb5b0;
  cursor: pointer;
  font-size: 11px;
  text-decoration: underline;
}

.copyright {
  margin: 20px 0 0;
  grid-column: 1 / -1;
  font-size: 11px;
}

.legal-dialog {
  width: min(600px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-dialog::backdrop {
  background: rgba(8, 12, 9, 0.7);
  backdrop-filter: blur(5px);
}

.legal-dialog > div {
  position: relative;
  padding: 45px;
}

.legal-dialog h2 {
  margin-bottom: 20px;
  font-size: 39px;
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  background: transparent;
  cursor: pointer;
  font-size: 25px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: min(420px, 88vw);
    height: 100dvh;
    padding: 110px 35px 35px;
    align-items: flex-start;
    flex-direction: column;
    background: var(--paper-light);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15);
    transform: translateX(110%);
    transition: transform 0.3s ease;
  }

  .menu-open .main-nav {
    transform: translateX(0);
  }

  .menu-toggle {
    position: relative;
    z-index: 31;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    place-items: center;
    background: rgba(255, 255, 255, 0.82);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: var(--ink);
    transform: translateY(-4px);
    transition: transform 0.2s ease;
  }

  .menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .menu-open .menu-toggle span {
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .hero-content {
    width: min(620px, 58vw);
  }

  .hero-quiz {
    width: min(470px, 52vw);
  }

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

  .section-heading,
  .quiz-section,
  .booking-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .quiz-copy {
    position: static;
  }

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

  .process-list li:last-child {
    border-right: 0;
  }

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

@media (min-width: 761px) and (max-height: 800px) {
  .hero-content {
    width: min(650px, 54vw);
    margin-top: 0;
  }

  .hero h1 {
    font-size: clamp(47px, 4.2vw, 58px);
  }

  .hero-copy {
    max-width: 540px;
    margin-bottom: 24px;
    font-size: 15px;
  }

  .hero-quiz {
    right: 3vw;
    bottom: 26px;
    left: auto;
    width: min(410px, 40vw);
    padding: 20px 22px;
  }
}

@media (max-width: 760px) {
  .section {
    width: min(calc(100% - 36px), var(--container));
  }

  .site-header {
    position: absolute;
    min-height: 76px;
    padding: 12px 18px;
    gap: 12px;
  }

  .brand {
    gap: 7px;
  }

  .brand img {
    width: 36px;
    height: 36px;
    border-radius: 7px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    margin-top: 3px;
    font-size: 6.5px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 15px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    display: flex;
    min-height: auto;
    padding: 0 0 24px;
    flex-direction: column;
    background: var(--paper);
    overflow: visible;
  }

  .hero-media {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 430px;
    order: 0;
  }

  .hero-media video {
    object-position: 60% center;
  }

  .hero-wash {
    display: none;
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding: 40px 20px 28px;
    order: 1;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-quiz {
    position: relative;
    bottom: auto;
    left: auto;
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 22px;
    order: 2;
  }

  .hero-choice-grid {
    grid-template-columns: 1fr;
  }

  .feature-nav {
    width: calc(100% - 24px);
    grid-template-columns: 1fr 1fr;
  }

  .feature-nav a {
    min-height: 105px;
    padding: 18px;
  }

  .feature-nav strong {
    font-size: 14px;
  }

  .intro-band,
  .portfolio-section,
  .services-section,
  .quiz-section {
    padding-top: 90px;
  }

  .intro-band::before,
  .portfolio-section::before,
  .services-section::before,
  .quiz-section::before {
    top: 0;
    bottom: 0;
    background-position: center top;
    background-size: 980px auto;
  }

  .portfolio-section::before {
    background-position: 22% top;
  }

  .quiz-section::before {
    background-position: 72% top;
  }

  h2 {
    font-size: 39px;
  }

  .section-heading,
  .section-title-row {
    display: block;
  }

  .section-heading > p {
    margin-top: 25px;
  }

  .text-link {
    margin-top: 22px;
  }

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

  .project-card,
  .project-card-wide {
    min-height: 390px;
  }

  .project-meta {
    padding: 44px 18px 20px;
  }

  .project-meta h3 {
    font-size: 22px;
  }

  .service-card {
    min-height: 0;
    padding: 28px;
  }

  .service-card-featured {
    transform: none;
  }

  .process-section {
    margin-top: 90px;
    padding: 85px 0;
  }

  .process-inner .section-title-row > p {
    margin-top: 24px;
  }

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

  .process-list li {
    min-height: auto;
    padding: 24px 0;
    border-left: 0;
  }

  .process-list > li > span {
    margin-bottom: 22px;
  }

  .full-quiz {
    min-height: 0;
    padding: 24px 18px;
  }

  .quiz-step legend {
    font-size: 27px;
  }

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

  .option-grid span {
    min-height: 78px;
  }

  .quiz-actions {
    flex-wrap: wrap;
  }

  .quiz-actions .button {
    flex: 1;
  }

  .booking-section {
    margin-top: 90px;
    padding: 80px 0;
  }

  .booking-form {
    padding: 10px;
    grid-template-columns: 1fr;
  }

  .booking-calendar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-calendar,
  .booking-fields {
    padding: 18px 10px;
  }

  .site-footer {
    padding: 60px 24px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-dialog > div {
    padding: 36px 24px 24px;
  }
}

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

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