:root {
  --red: #c0392b;
  --red-dark: #a92f24;
  --ink: #221b1b;
  --text: #333333;
  --muted: #666666;
  --line: #d8d5d3;
  --soft: #f5f5f5;
  --white: #ffffff;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Raleway", Arial, sans-serif;
  --shadow: 0 18px 42px rgb(34 27 27 / 14%);
  --focus: 0 0 0 3px rgb(192 57 43 / 22%);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font-family: var(--sans);
}

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

a {
  color: inherit;
}

button,
input {
  font-size: 1rem;
}

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

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: relative;
  z-index: 10;
  min-height: 104px;
  padding: 13px clamp(24px, 4vw, 72px);
  display: grid;
  grid-template-columns: minmax(380px, 1fr) auto minmax(360px, 1fr);
  align-items: center;
  gap: 32px;
  background: var(--white);
  border-bottom: 1px solid #ecebea;
}

.brand {
  display: inline-flex;
  justify-self: start;
  text-decoration: none;
}

.brand-crop {
  width: min(520px, 36vw);
  overflow: hidden;
}

.brand-crop img {
  width: 100%;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
}

.header-nav a,
.phone-link {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.header-nav a:hover,
.phone-link:hover {
  color: var(--red);
}

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

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.phone-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button {
  min-height: 54px;
  padding: 15px 34px;
  border: 1px solid var(--red);
  border-radius: 2px;
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 50px;
  padding: 13px 25px;
  white-space: nowrap;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 655px;
  overflow: hidden;
  background: var(--soft);
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgb(12 10 10 / 76%) 0%,
    rgb(12 10 10 / 58%) 34%,
    rgb(12 10 10 / 18%) 60%,
    transparent 76%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1450px, calc(100% - 60px));
  min-height: 655px;
  margin: 0 auto;
  padding: 52px 20px 48px;
  display: grid;
  grid-template-columns: minmax(440px, 1.1fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: clamp(54px, 8vw, 132px);
}

.hero-copy {
  align-self: start;
  padding-top: 10px;
}

.hero-copy h1 {
  margin: 0 0 24px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.03;
  text-shadow: 0 2px 24px rgb(0 0 0 / 28%);
}

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

.hero-copy p {
  max-width: 500px;
  margin: 0;
  color: rgb(255 255 255 / 92%);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.75;
  text-shadow: 0 1px 14px rgb(0 0 0 / 36%);
}

.booking-card {
  width: min(100%, 500px);
  justify-self: end;
  padding: 34px 36px 28px;
  background: rgb(255 255 255 / 96%);
  border: 1px solid rgb(34 27 27 / 14%);
  border-radius: 3px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}

.form-heading {
  margin-bottom: 23px;
}

.step-label {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.form-heading h2,
.consultation-form-panel h2,
.next-steps h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.25vw, 2.25rem);
  font-weight: 400;
  line-height: 1.25;
}

.field-group {
  margin-bottom: 17px;
}

.field-group > label,
.field-group > legend,
.time-fieldset > legend {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
}

.field-group > label span {
  color: var(--muted);
  font-weight: 400;
}

fieldset {
  min-width: 0;
  margin-inline: 0;
  padding: 0;
  border: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0 14px;
  border: 1px solid #c9c6c4;
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.93rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
  height: 49px;
}

select {
  padding-right: 38px;
}

textarea {
  min-height: 118px;
  padding-top: 13px;
  padding-bottom: 13px;
  line-height: 1.5;
  resize: vertical;
}

input::placeholder {
  color: #8f8c8a;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: var(--focus);
  outline: none;
}

input[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: var(--red);
}

.date-row {
  display: grid;
  grid-template-columns: 1.2fr 0.92fr;
  gap: 10px;
}

.check-option,
.sms-consent {
  min-height: 49px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
}

.check-option {
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid #c9c6c4;
  border-radius: 2px;
  background: var(--white);
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--red);
}

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

.service-fieldset .field-hint {
  margin: -3px 0 9px;
  color: var(--muted);
  font-size: 0.76rem;
}

.service-option {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.service-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-option span {
  height: 60px;
  min-height: 60px;
  padding: 10px 8px;
  border: 1px solid #cac7c5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 0.79rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.service-option span::before {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  border: 1px solid #9d9997;
  border-radius: 2px;
  content: "";
  flex: 0 0 auto;
}

.service-option input:checked + span::before {
  border-color: var(--red);
  background: var(--red);
  box-shadow: inset 0 0 0 3px var(--white);
}

.service-option + .service-option span {
  margin-left: -1px;
}

.service-option input:checked + span {
  position: relative;
  z-index: 1;
  border-color: var(--red);
  color: var(--red);
  font-weight: 700;
  box-shadow: inset 0 -3px 0 var(--red);
}

.service-option input:focus-visible + span {
  position: relative;
  z-index: 2;
  box-shadow: var(--focus);
}

.field-error {
  min-height: 0;
  margin: 5px 0 0;
  color: var(--red-dark);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.35;
}

.field-error:empty {
  display: none;
}

.form-reassurance,
.consent-copy,
.success-note {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

.privacy-link,
.back-link {
  width: fit-content;
  margin: 10px auto 0;
  display: block;
  color: var(--muted);
  font-size: 0.77rem;
  text-align: center;
  text-underline-offset: 3px;
}

.portfolio-section {
  padding: clamp(64px, 7vw, 104px) clamp(24px, 4.6vw, 74px) 32px;
  background: var(--white);
}

.portfolio-grid {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.25fr 0.95fr;
  grid-template-rows: 310px 250px;
  gap: 14px;
}

.portfolio-intro {
  padding: 18px 36px 18px 0;
}

.portfolio-intro h2,
.story-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 3.45vw, 3.45rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.portfolio-intro p {
  max-width: 400px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.red-rule {
  width: 64px;
  height: 3px;
  margin-top: 22px;
  display: block;
  background: var(--red);
}

.media-frame {
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.media-frame:hover img {
  transform: scale(1.018);
}

.media-city {
  grid-column: 2;
  grid-row: 1;
}

.media-ceremony {
  grid-column: 3;
  grid-row: 1;
}

.media-story {
  grid-column: 1 / 3;
  grid-row: 2;
}

.media-story img {
  object-position: center 74%;
}

.media-brick {
  grid-column: 3;
  grid-row: 2;
}

.story-band {
  margin-top: 0;
  background: var(--white);
}

.story-inner {
  padding: 44px max(24px, calc((100vw - 1120px) / 2));
  display: grid;
  grid-template-columns: 0.95fr 1.3fr;
  gap: 84px;
  background: var(--ink);
  color: var(--white);
}

.story-copy h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
}

.story-copy p {
  max-width: 430px;
  margin: 20px 0 0;
  color: #e7e4e3;
}

.story-copy .service-line {
  color: #ee4a3e;
  font-weight: 600;
}

blockquote {
  position: relative;
  margin: 0;
  padding: 5px 0 5px 88px;
  border-left: 1px solid #6e6867;
}

blockquote .quote-mark {
  position: absolute;
  left: 38px;
  top: 6px;
  color: #ee4a3e;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}

blockquote p {
  max-width: 640px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  line-height: 1.48;
}

blockquote cite {
  margin-top: 12px;
  display: block;
  color: #ee4a3e;
  font-style: normal;
  font-weight: 600;
}

.story-actions {
  min-height: 116px;
  padding: 25px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}

.text-link {
  border-bottom: 2px solid var(--red);
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
}

.consultation-section {
  width: 100%;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(540px, 1.15fr) minmax(360px, 0.8fr) minmax(320px, 0.68fr);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.consultation-form-panel {
  padding: clamp(50px, 5vw, 78px) clamp(34px, 5vw, 84px) 60px;
}

.progress-steps {
  max-width: 520px;
  margin: 0 0 48px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  color: var(--muted);
  font-size: 0.85rem;
}

.progress-steps li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.progress-steps span {
  width: 24px;
  height: 24px;
  border: 1px solid #aaa5a2;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  font-size: 0.75rem;
}

.progress-steps li.active {
  color: var(--ink);
  font-weight: 700;
}

.progress-steps li.active span {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.section-lede {
  max-width: 620px;
  margin: 10px 0 26px;
  color: var(--muted);
}

.funnel-summary {
  margin: 0 0 20px;
  padding: 12px 14px;
  border-left: 3px solid var(--red);
  background: var(--soft);
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-grid {
  max-width: 650px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 12px;
}

.sms-consent {
  min-height: auto;
  margin-top: 2px;
  justify-content: flex-start;
  font-size: 0.82rem;
}

.consent-copy {
  max-width: 640px;
  margin: 9px 0 25px;
  text-align: left;
}

.consent-copy a {
  color: var(--red);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.submit-status {
  max-width: 650px;
  min-height: 1.4em;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.submit-status:empty {
  display: none;
}

.button.is-submitting {
  cursor: wait;
  opacity: 0.78;
}

.form-fallback {
  max-width: 650px;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.form-fallback a {
  color: var(--red);
  font-weight: 600;
}

.consultation-form-panel .button-full {
  max-width: 650px;
}

.back-link {
  margin-left: 0;
  color: var(--red);
}

.button-reset {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: underline;
}

.consultation-image {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

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

.next-steps {
  padding: clamp(50px, 5vw, 82px) clamp(30px, 4vw, 62px);
}

.next-steps ol {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.next-steps li {
  padding: 20px 0 25px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.next-steps li > span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.7rem;
}

.next-steps li p {
  margin: 2px 0 0;
  color: var(--text);
  line-height: 1.5;
}

.direct-contact {
  margin: 82px 0 0;
  color: var(--text);
  line-height: 1.55;
}

.direct-contact a {
  color: var(--red);
  text-decoration: none;
}

.time-fieldset {
  max-width: 650px;
  margin: 0 0 22px;
}

.time-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.time-options label {
  position: relative;
  cursor: pointer;
}

.time-options input {
  position: absolute;
  opacity: 0;
}

.time-options span {
  min-height: 84px;
  padding: 15px;
  border: 1px solid #c9c6c4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text);
  line-height: 1.35;
  text-align: center;
}

.time-options input:checked + span {
  border-color: var(--red);
  color: var(--red);
  box-shadow: inset 0 -3px 0 var(--red);
}

.time-options input:focus-visible + span {
  box-shadow: var(--focus);
}

.success-stage {
  max-width: 640px;
  padding-top: 20px;
}

.success-mark {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.7rem;
}

.success-stage > p {
  color: var(--text);
}

.success-stage .success-note {
  margin: 22px 0;
  padding: 16px;
  border-left: 3px solid var(--red);
  background: var(--soft);
  text-align: left;
}

.final-cta {
  min-height: 190px;
  padding: 42px max(32px, calc((100vw - 1340px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background: var(--ink);
  color: var(--white);
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
}

.final-cta .button {
  min-width: 310px;
}

.site-footer {
  background: var(--ink);
  color: #d6d0ce;
  border-top: 1px solid #4a4442;
}

.footer-main,
.footer-bottom {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}

.footer-main {
  min-height: 150px;
  padding: 38px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.footer-logo-crop {
  width: 58px;
  height: 58px;
  display: block;
  overflow: hidden;
  flex: 0 0 auto;
}

.footer-logo-crop img {
  width: auto;
  height: 100%;
  max-width: none;
  filter: brightness(1.22);
}

.footer-brand-copy {
  display: grid;
  gap: 4px;
}

.footer-brand-copy strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.15;
}

.footer-brand-copy > span {
  color: #aaa3a0;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: clamp(38px, 5vw, 76px);
  margin: 0;
  font-style: normal;
}

.footer-contact-item {
  display: grid;
  gap: 5px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.footer-contact-label {
  color: #de6a60;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-bottom {
  min-height: 62px;
  padding: 18px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: #a9a2a0;
  font-size: 0.72rem;
  line-height: 1.55;
}

.footer-bottom p {
  max-width: 760px;
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex: 0 0 auto;
  gap: 26px;
}

[hidden] {
  display: none !important;
}

@media (min-width: 621px) and (max-width: 1400px) {
  .service-option span::before {
    display: none;
  }
}

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

  .brand-crop {
    width: 340px;
  }

  .header-nav {
    justify-content: center;
    gap: 24px;
  }

  .phone-link span {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(390px, 1fr) minmax(400px, 0.75fr);
    gap: 36px;
  }

  .consultation-section {
    grid-template-columns: minmax(520px, 1.1fr) minmax(330px, 0.78fr);
  }

  .next-steps {
    grid-column: 1 / -1;
    padding: 44px clamp(34px, 6vw, 84px);
    display: grid;
    grid-template-columns: 280px 1fr 220px;
    gap: 42px;
    border-top: 1px solid var(--line);
  }

  .next-steps ol {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .next-steps li {
    padding-top: 0;
    border-bottom: 0;
  }

  .direct-contact {
    margin: 0;
  }

  .footer-main {
    gap: 40px;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 86px;
    grid-template-columns: 1fr auto;
    padding-inline: 24px;
  }

  .brand-crop {
    width: 300px;
  }

  .header-nav,
  .header-actions .button {
    display: none;
  }

  .phone-link span {
    display: inline;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    content: none;
  }

  .hero-image {
    position: relative;
    height: min(56vw, 460px);
    object-position: center;
  }

  .hero-inner {
    width: 100%;
    min-height: auto;
    padding: 42px 38px 60px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy h1 br {
    display: none;
  }

  .hero-copy h1 {
    color: #0c0c0c;
    text-shadow: none;
  }

  .hero-copy p {
    max-width: 680px;
    color: var(--ink);
    text-shadow: none;
  }

  .booking-card {
    width: 100%;
    max-width: 680px;
    justify-self: start;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 280px 280px;
  }

  .portfolio-intro {
    grid-column: 1 / -1;
  }

  .media-city,
  .media-ceremony,
  .media-story,
  .media-brick {
    grid-column: auto;
    grid-row: auto;
  }

  .media-brick,
  .media-story {
    display: none;
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  blockquote {
    padding-left: 72px;
  }

  blockquote .quote-mark {
    left: 28px;
  }

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

  .consultation-image {
    min-height: 520px;
  }

  .next-steps {
    grid-template-columns: 1fr;
  }

  .next-steps ol {
    grid-template-columns: 1fr;
  }

  .next-steps li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .final-cta {
    align-items: flex-start;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .footer-contact {
    width: 100%;
    justify-content: space-between;
    gap: 28px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 72px;
    padding: 10px 18px;
    gap: 12px;
  }

  .brand-crop {
    width: 260px;
    height: 52px;
  }

  .brand-crop img {
    width: 400px;
    max-width: none;
  }

  .phone-link {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }

  .phone-link span {
    display: none;
  }

  .phone-link svg {
    width: 22px;
    height: 22px;
  }

  .hero-image {
    height: 58vw;
    min-height: 230px;
  }

  .hero-inner {
    padding: 34px 22px 52px;
    gap: 28px;
  }

  .hero-copy h1 {
    margin-bottom: 17px;
    font-size: clamp(2.55rem, 12vw, 3.75rem);
    line-height: 1.08;
  }

  .hero-copy h1 br {
    display: block;
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .booking-card {
    padding: 28px 20px 22px;
    box-shadow: 0 10px 28px rgb(34 27 27 / 10%);
  }

  .form-heading h2,
  .consultation-form-panel h2,
  .next-steps h2 {
    font-size: 1.6rem;
  }

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

  .check-option {
    justify-content: flex-start;
  }

  .service-options {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .service-option + .service-option span {
    margin-left: 0;
  }

  .service-option span {
    height: auto;
    min-height: 50px;
    justify-content: flex-start;
    padding-inline: 16px;
  }

  .service-option span::before {
    display: block;
  }

  .portfolio-section {
    padding: 58px 22px 22px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto 255px 255px;
    gap: 10px;
  }

  .portfolio-intro {
    padding-right: 0;
  }

  .portfolio-intro h2,
  .story-copy h2,
  .final-cta h2 {
    font-size: 2.2rem;
  }

  .media-frame {
    grid-column: 1;
  }

  .story-inner {
    padding: 46px 24px;
  }

  blockquote {
    padding: 46px 0 0;
    border-left: 0;
    border-top: 1px solid #6e6867;
  }

  blockquote .quote-mark {
    left: 0;
    top: 4px;
  }

  blockquote p {
    font-size: 1.45rem;
  }

  .story-actions {
    padding: 28px 22px;
    flex-direction: column;
    gap: 22px;
  }

  .story-actions .button,
  .story-actions .text-link {
    width: 100%;
  }

  .story-actions .text-link {
    padding: 10px;
    text-align: center;
  }

  .consultation-form-panel {
    padding: 48px 22px 52px;
  }

  .progress-steps {
    margin-bottom: 36px;
    gap: 8px;
    font-size: 0.7rem;
  }

  .progress-steps li {
    gap: 6px;
  }

  .progress-steps span {
    width: 22px;
    height: 22px;
  }

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

  .consultation-image {
    min-height: 420px;
  }

  .next-steps {
    padding: 46px 24px 58px;
  }

  .direct-contact {
    margin-top: 24px;
  }

  .final-cta {
    padding: 42px 24px;
    flex-direction: column;
    gap: 28px;
  }

  .final-cta .button {
    width: 100%;
    min-width: 0;
  }

  .footer-main,
  .footer-bottom {
    width: calc(100% - 48px);
  }

  .footer-main {
    min-height: 0;
    padding: 38px 0 34px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 22px;
  }

  .footer-contact-item {
    font-size: 0.88rem;
  }

  .footer-bottom {
    padding: 22px 0 38px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

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