:root {
  color-scheme: light;
  --bg: #f7f4ed;
  --surface: #ffffff;
  --surface-soft: #fbfaf6;
  --ink: #171717;
  --muted: #6e6a63;
  --dark: #1c1b19;
  --dark-2: #292723;
  --line: #238642;
  --line-hover: #1d7138;
  --accent: #806218;
  --border: #ded8cc;
  --danger: #a33a2d;
  --ok: #17643d;
  --container: 1120px;
  --radius: 8px;
  --shadow: 0 12px 26px rgb(23 23 23 / 8%);
}

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

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

body {
  margin: 0;
  padding-bottom: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.78;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-wrap: anywhere;
}

body.utility-page {
  padding-bottom: 0;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
}

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

.section__inner {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 58px 0;
}

.section--white {
  background: var(--surface);
}

.section--dark {
  background: var(--dark);
  color: #fffaf2;
}

.section--dark .eyebrow {
  color: #dfc27d;
}

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

h1,
h2,
h3 {
  line-height: 1.34;
  letter-spacing: 0;
  line-break: strict;
  text-wrap: balance;
}

@supports (word-break: auto-phrase) {
  h1,
  h2,
  h3,
  p,
  li {
    word-break: auto-phrase;
  }
}

h1 {
  margin-bottom: 16px;
  font-size: 1.85rem;
  font-weight: 900;
}

h2 {
  margin-bottom: 14px;
  font-size: 1.8rem;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

p {
  margin-bottom: 16px;
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

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

.button--large {
  width: 100%;
}

.button--compact {
  min-height: 44px;
  padding: 9px 14px;
  font-size: 0.93rem;
}

.button--line {
  background: var(--line);
  color: #fff;
}

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

.button--primary,
.button--phone {
  background: var(--dark);
  color: #fff;
}

.button--quote {
  border-color: var(--border);
  background: #fffaf2;
  color: var(--ink);
}

.button--light {
  background: #fff;
  color: var(--ink);
  border-color: rgb(255 255 255 / 75%);
}

.button--outline-light {
  border-color: rgb(255 250 242 / 55%);
  background: transparent;
  color: #fffaf2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--dark);
  color: #fffaf2;
  border-bottom: 1px solid rgb(255 250 242 / 12%);
}

.site-header__inner {
  display: flex;
  min-height: 58px;
  width: min(100% - 32px, var(--container));
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  color: inherit;
  font-weight: 900;
  text-decoration: none;
}

.brand__mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #0f0e0d;
  color: #dfc27d;
  font-size: 0.9rem;
}

.brand__text {
  min-width: 0;
  max-width: 190px;
  overflow: hidden;
  font-size: 0.94rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgb(255 250 242 / 18%);
  border-radius: var(--radius);
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
}

.site-nav {
  position: absolute;
  top: 58px;
  right: 16px;
  left: 16px;
  display: none;
  border: 1px solid rgb(255 250 242 / 16%);
  border-radius: var(--radius);
  background: var(--dark-2);
  padding: 10px;
  box-shadow: var(--shadow);
}

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

.site-nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-radius: 6px;
  padding: 8px 10px;
  color: #fffaf2;
  font-weight: 800;
  text-decoration: none;
}

.site-nav__cta {
  margin-top: 6px;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--dark);
  color: #fffaf2;
}

.hero__bg,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
}

.hero__shade {
  background:
    linear-gradient(180deg, rgb(28 27 25 / 88%) 0%, rgb(28 27 25 / 78%) 44%, rgb(28 27 25 / 92%) 100%),
    linear-gradient(90deg, rgb(28 27 25 / 95%), rgb(28 27 25 / 34%));
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  justify-content: center;
  padding: 34px 0 30px;
}

.hero__eyebrow {
  color: #dfc27d;
}

.hero__lead {
  max-width: 620px;
  color: rgb(255 250 242 / 88%);
  font-size: 1rem;
}

.hero__actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.night-cta {
  padding: 42px 0;
}

.night-cta__inner {
  display: grid;
  gap: 20px;
}

.night-cta h2 {
  color: #fffaf2;
}

.night-cta p:not(.eyebrow) {
  color: rgb(255 250 242 / 82%);
}

.night-cta__note {
  margin-bottom: 0;
  color: #dfc27d !important;
  font-size: 0.9rem;
  font-weight: 900;
}

.service-feature,
.owner-panel,
.contact-grid {
  display: grid;
  gap: 20px;
}

.service-feature {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-feature.is-highlighted,
.service-row.is-highlighted {
  border-color: var(--line);
  box-shadow: 0 0 0 2px rgb(35 134 66 / 18%);
}

.service-feature picture,
.service-row picture,
.owner-photo picture {
  overflow: hidden;
  background: #ece6dc;
}

.service-feature picture {
  aspect-ratio: 4 / 3;
}

.service-feature img,
.service-row img,
.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-feature__body {
  padding: 20px;
}

.service-feature__body p,
.service-row p {
  color: var(--muted);
}

.service-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 3px 10px;
  background: #f2eadc;
  color: #71551c;
  font-size: 0.78rem;
  font-weight: 900;
}

.mini-price {
  display: grid;
  gap: 2px;
  margin: 16px 0;
  border-left: 4px solid var(--line);
  background: #f2f7f1;
  padding: 12px 14px;
}

.mini-price span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.mini-price strong {
  font-size: 1.24rem;
}

.caution,
.notice {
  border-left: 4px solid var(--accent);
  padding-left: 12px;
  font-size: 0.92rem;
}

.service-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.service-row {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 12px;
}

.service-row picture {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
}

.service-row h3,
.service-row p {
  margin-bottom: 4px;
}

.service-row p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 0.94rem;
}

.service-other {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.owner-photo {
  margin: 0;
}

.owner-photo picture {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}

.owner-photo figcaption {
  margin-top: 8px;
  color: var(--danger);
  font-size: 0.8rem;
  font-weight: 800;
}

.owner-panel__body p:not(.eyebrow),
.section-note {
  color: var(--muted);
}

.owner-name {
  color: var(--ink) !important;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  min-width: 0;
}

.check-list li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  transform: translateY(-50%);
}

.owner-map-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 800;
}

.owner-map-link__icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.owner-map-link__icon::after {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  transform: rotate(45deg);
}

.reason-grid {
  display: grid;
  gap: 12px;
}

.reason-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
}

.reason-grid span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
}

.reason-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.flow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-soft);
  padding: 14px;
}

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

.flow-list strong {
  line-height: 1.45;
}

.flow-list p {
  grid-column: 2;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

summary {
  min-height: 56px;
  cursor: pointer;
  padding: 15px 18px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact-copy .button {
  margin-top: 8px;
}

.contact-form {
  display: grid;
  gap: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow);
}

.form-message {
  border-radius: var(--radius);
  background: #f0eadf;
  padding: 12px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-message.is-error {
  background: #f8e4e0;
  color: var(--danger);
}

.form-message.is-success {
  background: #e1f1e7;
  color: var(--ok);
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label,
.form-field legend {
  color: var(--ink);
  font-weight: 900;
}

.form-field span {
  color: var(--muted);
  font-size: 0.82rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfc8bb;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
}

textarea {
  resize: vertical;
}

input:invalid,
textarea:invalid {
  box-shadow: none;
}

.form-fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.form-fieldset label {
  display: flex;
  min-height: 44px;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
}

.form-fieldset input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 0.28em;
  accent-color: var(--line);
}

.field-error {
  margin: 0;
  color: var(--danger);
  font-size: 0.9rem;
  font-weight: 800;
}

.optional-fields {
  background: var(--surface-soft);
}

.optional-fields summary {
  min-height: 50px;
}

.optional-fields__body {
  display: grid;
  gap: 14px;
  padding: 0 14px 14px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  border: 0;
  cursor: pointer;
}

.form-consent {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.business-info {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.business-info div {
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.business-info dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.business-info dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.site-footer {
  background: var(--dark-2);
  color: #fffaf2;
  padding: 30px 0;
}

.footer-grid {
  display: grid;
  gap: 10px;
}

.site-footer p {
  margin: 0;
  color: rgb(255 250 242 / 74%);
  font-size: 0.9rem;
}

.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 95;
  display: none;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  border-top: 1px solid rgb(23 23 23 / 12%);
  background: rgb(247 244 237 / 97%);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 22px rgb(23 23 23 / 10%);
}

.mobile-cta .button {
  min-height: 54px;
  flex-direction: column;
  gap: 2px;
  padding-inline: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.mobile-cta__icon {
  font-size: 0.68rem;
  line-height: 1;
}

.mobile-cta__line {
  flex-direction: row !important;
  gap: 6px !important;
  font-size: 0.9rem !important;
}

.mobile-cta.is-visible {
  display: grid;
}

.is-review-shot body {
  padding-bottom: 0;
}

.is-review-shot .site-header {
  position: static;
}

.is-review-shot .mobile-cta {
  display: none !important;
}

.is-review-shot {
  scroll-behavior: auto;
  scrollbar-width: none;
}

.is-review-shot::-webkit-scrollbar {
  display: none;
}

[data-config-state="missing"] {
  cursor: pointer;
}

.utility-page main h1 {
  font-size: 2.25rem;
}

.utility-page main h2 {
  margin-top: 30px;
  font-size: 1.35rem;
}

.review-main {
  background: #f5f6f3;
}

.review-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.review-heading__label {
  margin-bottom: 8px;
  color: #64705c;
  font-size: 0.78rem;
  font-weight: 900;
}

.review-page .review-heading h1 {
  margin-bottom: 12px;
}

.review-status,
.review-links {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid #d8ddd3;
  border-radius: 6px;
  background: #fff;
}

.review-page .review-status h2,
.review-page .review-links h2 {
  margin-top: 0;
}

.review-status__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.review-status__grid p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid #e3e6df;
  border-radius: 4px;
}

.review-status__grid span {
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 900;
}

.review-status__grid .is-ready,
.review-link-row__target.is-ready {
  color: #245d36;
  background: #e6f4e9;
}

.review-status__grid .is-missing,
.review-link-row__target.is-missing {
  color: #7a321f;
  background: #f8e8e2;
}

.review-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}

.review-section-heading p {
  max-width: 480px;
  margin: 0;
  color: #62665f;
  font-size: 0.86rem;
}

.review-link-list {
  border-top: 1px solid #d8ddd3;
}

.review-link-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(220px, 1.35fr) minmax(240px, 1.4fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #e3e6df;
}

.review-link-row p,
.review-link-row h3 {
  margin: 0;
}

.review-link-row h3 {
  font-size: 0.98rem;
}

.review-link-row__place {
  color: #62665f;
  font-size: 0.78rem;
  font-weight: 800;
}

.review-link-row__target {
  padding: 8px 10px;
  border-radius: 4px;
  background: #f0f2ed;
  font-size: 0.8rem;
}

.review-link-row__action {
  color: #1f5630;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.review-back {
  margin: 28px 0 0;
}

@media (max-width: 767px) {
  .review-status,
  .review-links {
    padding: 18px;
  }

  .review-status__grid {
    grid-template-columns: 1fr;
  }

  .review-section-heading {
    display: block;
  }

  .review-section-heading p {
    margin-top: 8px;
  }

  .review-link-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .review-link-row__action {
    justify-self: start;
    padding-block: 4px;
  }
}

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

@media (max-width: 340px) {
  .section__inner {
    width: min(100% - 32px, var(--container));
  }

  .brand__text {
    max-width: 150px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: 1.82rem;
  }

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

  .mobile-cta {
    padding-inline: 10px;
  }
}

@media (max-width: 767px) {
  body:not(.utility-page) {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }
}

@media (min-width: 700px) {
  .reason-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 640px;
  }

  .night-cta__inner {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    align-items: center;
  }

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

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

  .service-row picture {
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }

  .mobile-cta,
  .menu-toggle {
    display: none;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    border: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .site-nav a {
    color: #fffaf2;
    padding-inline: 8px;
    font-size: 0.94rem;
  }

  .site-nav__cta {
    margin-top: 0;
    margin-left: 6px;
    padding-inline: 16px !important;
  }

  .section {
    padding: 72px 0;
  }

  .hero,
  .hero__inner {
    min-height: 720px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgb(28 27 25 / 94%) 0%, rgb(28 27 25 / 77%) 42%, rgb(28 27 25 / 26%) 100%),
      linear-gradient(180deg, rgb(28 27 25 / 72%) 0%, rgb(28 27 25 / 82%) 100%);
  }

  .hero__inner {
    max-width: 690px;
    margin-left: max(20px, calc((100% - var(--container)) / 2));
    margin-right: auto;
  }

  h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .service-feature {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: stretch;
  }

  .service-feature picture {
    min-height: 100%;
  }

  .service-feature__body {
    display: grid;
    align-content: center;
    padding: 34px;
  }

  .owner-panel,
  .contact-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    align-items: start;
    gap: 44px;
  }

  .owner-photo {
    max-width: 380px;
  }

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

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

  .flow-list p {
    grid-column: auto;
    margin-top: 0;
  }

  .night-cta {
    padding: 54px 0;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 4.55rem;
  }
}

/* Canonical CVR flow */
[hidden] {
  display: none !important;
}

.desktop-only {
  display: none;
}

.hero,
.hero__inner {
  min-height: min(680px, calc(100svh - 58px));
}

.hero__bg img {
  object-position: 50% 50%;
}

.hero__shade {
  background:
    linear-gradient(180deg, rgb(22 21 19 / 88%) 0%, rgb(22 21 19 / 78%) 48%, rgb(22 21 19 / 94%) 100%),
    linear-gradient(90deg, rgb(22 21 19 / 92%), rgb(22 21 19 / 48%));
}

.hero__inner {
  justify-content: center;
  padding-block: 28px;
}

.hero__label {
  margin-bottom: 10px;
  color: #dfc27d;
  font-size: 0.8rem;
  font-weight: 900;
}

.hero__lead {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.72;
}

.hero__proof {
  max-width: 620px;
  margin-bottom: 0;
  color: #f0d695;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.55;
}

.hero__actions {
  gap: 12px;
  margin-top: 20px;
}

.hero__quote-link,
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  font-weight: 800;
}

.hero__quote-link {
  justify-content: center;
  border: 1px solid rgb(255 250 242 / 38%);
  border-radius: var(--radius);
  color: #fffaf2;
  font-size: 0.92rem;
  text-decoration: none;
}

.owner-section {
  border-bottom: 1px solid var(--border);
}

.owner-panel {
  gap: 18px;
}

.owner-photo {
  position: relative;
}

.owner-photo picture {
  aspect-ratio: 16 / 9;
}

.owner-photo figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  margin: 0;
  border-radius: 4px;
  background: rgb(23 23 23 / 82%);
  color: #fff;
  padding: 3px 7px;
  font-size: 0.72rem;
  font-weight: 800;
}

.owner-panel__body > p {
  margin-bottom: 12px;
}

.owner-panel__body .check-list {
  gap: 5px;
  margin-block: 14px;
}

.owner-night-note {
  margin-top: 20px;
  border-left: 4px solid var(--accent);
  background: var(--surface-soft);
  padding: 14px 16px;
}

.owner-night-note h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.owner-night-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.owner-night-note .text-link {
  margin-top: 6px;
  color: var(--line-hover);
  font-size: 0.9rem;
}

.owner-map-link {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  text-decoration: none;
}

.service-feature__media {
  position: relative;
  margin: 0;
}

.service-feature__media picture {
  height: 100%;
}

.service-feature__media figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 4px;
  background: rgb(23 23 23 / 80%);
  color: #fff;
  padding: 3px 7px;
  font-size: 0.72rem;
  font-weight: 800;
}

.standard-work {
  margin: 16px 0;
}

.standard-work > p {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.standard-work ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.standard-work li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.standard-work li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
  content: "";
  transform: translateY(-50%);
}

.price-confirmation {
  margin-bottom: 14px;
  border-left: 4px solid var(--accent);
  padding-left: 12px;
  font-size: 0.9rem;
  line-height: 1.65;
}

.price-conditions {
  margin-bottom: 10px;
  background: var(--surface-soft);
}

.price-conditions summary {
  min-height: 48px;
  padding: 11px 14px;
  font-size: 0.9rem;
}

.price-conditions ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 18px;
  margin: 0;
  padding: 0 30px 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-photo-link {
  color: var(--line-hover);
  font-size: 0.92rem;
}

.evidence-section,
.photo-guide-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.work-timeline {
  display: grid;
  max-width: 820px;
  gap: 28px;
  margin-inline: auto;
}

.work-step,
.aircon-type-card,
.photo-guide-step {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.work-step__media,
.aircon-type-card figure {
  margin: 0;
}

.work-step__media .asset-frame {
  aspect-ratio: 4 / 3;
}

.work-step__body {
  padding: 18px;
}

.aircon-type-card__body {
  padding: 12px;
}

.work-step__number {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.work-step h3 {
  margin-bottom: 7px;
  font-size: 1.18rem;
}

.aircon-type-card h3 {
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.work-step__short {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.aircon-type-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.work-step__check {
  display: grid;
  gap: 2px;
  border-left: 4px solid var(--accent);
  background: var(--surface-soft);
  padding: 11px 12px;
}

.work-step__check span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
}

.work-step__check strong {
  font-size: 0.88rem;
  line-height: 1.55;
}

.work-step__details {
  margin-top: 10px;
  border-top: 1px solid var(--border);
}

.work-step__details summary {
  min-height: 44px;
  padding: 10px 0 8px;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
}

.work-step__details p {
  margin: 0;
  padding: 0 0 4px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.72;
}

.quote-logic {
  max-width: 820px;
  margin: 30px auto 0;
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  background: #f5f0e4;
  padding: 20px;
}

.quote-logic h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
}

.quote-logic p {
  margin-bottom: 10px;
  color: #514d46;
  font-size: 0.92rem;
  line-height: 1.72;
}

.quote-logic .quote-logic__closing {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 800;
}

.preview-badge {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--danger);
  font-size: 0.72rem;
  font-weight: 900;
}

.work-video-slot {
  max-width: 340px;
  margin: 20px auto 0;
}

.work-video-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 12px;
}

.work-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 6px;
  background: var(--dark);
}

.work-video-card p {
  margin: 8px 0 0;
  font-size: 0.88rem;
  font-weight: 800;
}

.aircon-types-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.asset-frame {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  place-items: center;
  background: #ebe6dc;
}

.asset-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.asset-frame.is-loaded img {
  opacity: 1;
}

.asset-frame.is-loaded .asset-frame__fallback {
  display: none;
}

.asset-frame__fallback {
  display: grid;
  gap: 7px;
  place-items: center;
  padding: 16px;
  color: #514d46;
  text-align: center;
}

.asset-frame__fallback span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.asset-frame__fallback strong {
  font-size: 0.88rem;
  line-height: 1.55;
}

.photo-guide-grid {
  display: grid;
  gap: 12px;
}

.photo-guide-step {
  display: grid;
  grid-template-columns: minmax(112px, 40%) minmax(0, 1fr);
  align-items: stretch;
}

.photo-guide-step .asset-frame {
  aspect-ratio: auto;
  min-height: 142px;
}

.photo-guide-step__body {
  padding: 14px;
}

.photo-guide-step h3 {
  margin-bottom: 5px;
  font-size: 0.98rem;
}

.photo-guide-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

.photo-guide-notes {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  border-left: 4px solid var(--accent);
  background: var(--surface-soft);
  padding: 13px 14px;
}

.photo-guide-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.safety-note {
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.photo-guide-cta,
.final-line-cta {
  max-width: 560px;
  margin-top: 22px;
}

.flow-section {
  border-bottom: 1px solid var(--border);
}

.contact-section .section__inner {
  max-width: 780px;
}

.contact-intro {
  margin-bottom: 26px;
}

.contact-intro > p {
  color: var(--muted);
}

.form-title {
  margin-bottom: 2px;
  font-size: 1.38rem;
}

.contact-form {
  padding: 20px;
}

.form-submit {
  background: var(--line);
  color: #fff;
}

.form-submit:hover {
  background: var(--line-hover);
}

.company-section {
  border-top: 1px solid var(--border);
}

.mobile-cta {
  gap: 6px;
}

.mobile-cta .button,
.mobile-cta__line {
  min-width: 0;
  min-height: 54px;
  flex-direction: row !important;
  gap: 0 !important;
  padding-inline: 6px;
  font-size: 0.82rem !important;
  white-space: nowrap;
}

.mobile-cta .mobile-cta__phone {
  flex-direction: column !important;
  gap: 2px !important;
  line-height: 1.08;
}

.mobile-cta__note {
  font-size: 0.68rem;
  font-weight: 800;
  opacity: 0.82;
}

@media (max-width: 340px) {
  .hero h1 {
    font-size: 1.62rem;
  }

  .hero__label,
  .hero__proof {
    font-size: 0.76rem;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .photo-guide-step {
    grid-template-columns: 40% minmax(0, 1fr);
  }

  .photo-guide-step__body {
    padding: 12px;
  }

  .mobile-cta .button,
  .mobile-cta__line {
    font-size: 0.76rem !important;
  }

  .mobile-cta__note {
    font-size: 0.64rem;
  }
}

@media (min-width: 700px) and (max-width: 899px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 700px) {
  .hero__actions {
    grid-template-columns: minmax(280px, 340px) auto;
    align-items: center;
  }

  .hero__quote-link {
    border: 0;
    justify-content: flex-start;
    text-decoration: underline;
  }

  .work-step {
    display: grid;
    grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
    align-items: start;
  }

  .work-step__media .asset-frame {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

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

  .photo-guide-step {
    display: block;
  }

  .photo-guide-step .asset-frame {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

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

@media (min-width: 900px) {
  .desktop-only {
    display: initial;
  }

  .hero,
  .hero__inner {
    min-height: 720px;
  }

  .hero__inner {
    max-width: 860px;
  }

  .owner-panel {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
    gap: 50px;
  }

  .owner-photo picture {
    aspect-ratio: 4 / 3;
  }

  .photo-guide-cta,
  .final-line-cta {
    width: 100%;
  }

  .contact-form {
    padding: 28px;
  }
}
