:root {
  --ink: #202326;
  --muted: #66706f;
  --line: #d9ded9;
  --paper: #f7f5ef;
  --white: #ffffff;
  --wood: #9a6b43;
  --green: #3d5f57;
  --charcoal: #2f3334;
  --radius: 22px;
  --shadow: 0 22px 70px rgba(29, 35, 34, .13);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: var(--paper);
}

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

a:focus-visible {
  outline: 2px solid #d8c6ad;
  outline-offset: 4px;
}

section[id] {
  scroll-margin-top: 92px;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: transparent;
  pointer-events: none;
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .phone-link {
  background: rgba(18, 22, 22, .42);
  border-color: rgba(255,255,255,.24);
  box-shadow: 0 18px 54px rgba(0,0,0,.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(18, 22, 22, .22);
  box-shadow: 0 14px 42px rgba(0,0,0,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: auto;
  transition: transform .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 12px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: rgba(255,255,255,.75);
  font-size: 12px;
}

.phone-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  font-weight: 700;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.phone-link {
  background: rgba(18, 22, 22, .2);
  box-shadow: 0 14px 42px rgba(0,0,0,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: auto;
}

.side-nav {
  position: fixed;
  z-index: 11;
  top: 50%;
  right: clamp(10px, 1.5vw, 22px);
  display: grid;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(20, 24, 24, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-50%);
}

.side-nav a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 42px;
  padding: 8px 10px 8px 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(20, 24, 24, .18);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  transition: transform .24s ease, background .24s ease, color .24s ease, box-shadow .24s ease;
}

.side-nav span {
  color: #d8c6ad;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.side-nav a:hover {
  color: #151817;
  background: rgba(216, 198, 173, .94);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  transform: translateX(-4px);
}

.side-nav a:hover span,
.side-nav a.is-active span {
  color: rgba(0,0,0,.58);
}

.side-nav a.is-active {
  color: #151817;
  background: rgba(216, 198, 173, .94);
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
}

.phone-link:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,.2);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: linear-gradient(to bottom, rgba(247,245,239,0), var(--paper));
  pointer-events: none;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 14s ease-out both;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(14, 20, 20, .82), rgba(14, 20, 20, .45) 42%, rgba(14, 20, 20, .08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 86px);
  padding-top: 72px;
  color: var(--white);
  animation: introUp .9s ease both;
}

.glass-panel {
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(18, 22, 22, .08), rgba(255,255,255,.025));
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 2px 20px rgba(0,0,0,.36);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  color: #d8c6ad;
}

.eyebrow.dark {
  color: var(--wood);
}

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

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.button.primary {
  border-color: #c49b68;
  background: #c49b68;
  color: #161616;
}

.button.secondary {
  background: rgba(255,255,255,.08);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 620px;
  margin: 46px 0 0;
}

.trust-row div {
  border-top: 1px solid rgba(255,255,255,.34);
  padding-top: 14px;
}

.trust-row dt {
  color: #d8c6ad;
  font-weight: 800;
}

.trust-row dd {
  margin: 4px 0 0;
  color: rgba(255,255,255,.82);
}

.section {
  padding: 86px clamp(20px, 6vw, 86px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 56px;
  align-items: end;
  background: var(--white);
}

.intro p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.service-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(31, 37, 35, .05);
}

.service-grid p,
.case-card p,
.steps span {
  color: var(--muted);
  line-height: 1.75;
}

.cases {
  background: #ece9e0;
}

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

.case-card {
  background: var(--white);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.case-card h3,
.case-card p,
.case-card span {
  margin-left: 22px;
  margin-right: 22px;
}

.case-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--wood);
  font-weight: 800;
}

.case-image {
  aspect-ratio: 4 / 3;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #d8d1c4, #8f7962);
  transition: transform .45s ease, filter .45s ease;
}

.case-card:hover .case-image {
  transform: scale(1.03);
  filter: saturate(1.06) contrast(1.02);
}

.case-image.kitchen {
  background: linear-gradient(135deg, #f1eee7, #ba8b5d 50%, #3b4240);
}

.case-image.wardrobe {
  background: linear-gradient(135deg, #e5ded0, #a87953 58%, #eef0ed);
}

.case-image.living {
  background: linear-gradient(135deg, #d8dce0, #f0ebe3 46%, #56655f);
}

.process {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  list-style: none;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.steps li {
  min-height: 160px;
  padding: 24px;
  background: var(--white);
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 12px;
  font-size: 19px;
}

.contact-band {
  padding: 92px clamp(20px, 6vw, 86px);
  color: var(--white);
  background:
    radial-gradient(circle at 16% 18%, rgba(196, 155, 104, .32), transparent 34%),
    linear-gradient(135deg, #293331, var(--green));
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: 42px;
  align-items: center;
  min-height: 440px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  background: rgba(255,255,255,.09);
  box-shadow: 0 28px 100px rgba(0,0,0,.24);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.contact-copy p:last-child {
  max-width: 620px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.8;
}

.contact-panel {
  display: grid;
  gap: 14px;
}

.contact-card,
.contact-note {
  display: block;
  padding: 22px;
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 22px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lead-form label,
.lead-form label span {
  display: block;
}

.lead-form label span {
  margin-bottom: 7px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(12, 16, 16, .26);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.lead-form textarea {
  resize: vertical;
  min-height: 92px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255,255,255,.44);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(216, 198, 173, .9);
  background: rgba(12, 16, 16, .34);
  box-shadow: 0 0 0 3px rgba(216, 198, 173, .16);
}

.lead-form .privacy-check {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: fit-content;
  max-width: 100%;
  margin: 2px auto 0;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.lead-form .privacy-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.privacy-box {
  position: relative;
  width: 13px;
  min-width: 13px;
  height: 13px;
  margin-top: 0;
  margin-bottom: 0;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.privacy-box::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 4px;
  height: 7px;
  border: solid #151817;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(.72);
  transition: opacity .2s ease, transform .2s ease;
}

.privacy-copy {
  margin: 0;
  color: inherit;
  margin-bottom: 0;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.5;
  text-overflow: ellipsis;
}

.lead-form .privacy-check a {
  color: rgba(216, 198, 173, .82);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form .privacy-check:hover {
  color: rgba(255,255,255,.78);
  border-color: rgba(216, 198, 173, .2);
  background: rgba(255,255,255,.07);
}

.lead-form .privacy-check input:checked + .privacy-box {
  border-color: rgba(216, 198, 173, .86);
  background: rgba(216, 198, 173, .86);
  box-shadow: 0 0 0 3px rgba(216, 198, 173, .08);
}

.lead-form .privacy-check input:checked + .privacy-box::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.lead-form .privacy-check:has(input:focus-visible) {
  outline: 2px solid #d8c6ad;
  outline-offset: 4px;
}

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

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

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}

.form-status.is-success {
  color: #d8c6ad;
}

.form-status.is-error {
  color: #ffd0c4;
}

.contact-card span,
.contact-card strong {
  display: block;
}

.contact-card span {
  margin-bottom: 8px;
  color: rgba(255,255,255,.66);
  font-size: 14px;
}

.contact-card strong {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
}

.main-contact {
  background: #c49b68;
  color: #161616;
}

.main-contact span {
  color: rgba(0,0,0,.62);
}

.booking-card {
  background: rgba(216, 198, 173, .16);
}

.contact-note p {
  margin: 0 0 10px;
  color: rgba(255,255,255,.76);
  line-height: 1.7;
}

.contact-note p:last-child {
  margin-bottom: 0;
}

.contact-page {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 17, 17, .82), rgba(12, 17, 17, .5) 46%, rgba(12, 17, 17, .22)),
    linear-gradient(180deg, rgba(12, 17, 17, .26), rgba(12, 17, 17, .58)),
    url("assets/booking-interior.png") center / cover fixed;
}

.simple-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 6vw, 78px);
}

.dark-brand {
  color: var(--white);
  background: rgba(18, 22, 22, .28);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 18px 54px rgba(0,0,0,.18);
}

.dark-brand .brand-mark {
  border-color: rgba(255,255,255,.32);
}

.dark-brand small {
  color: rgba(255,255,255,.68);
}

.simple-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(18, 22, 22, .28);
  font-weight: 800;
  box-shadow: 0 18px 54px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.booking-page {
  padding: 28px clamp(20px, 6vw, 78px) 82px;
}

.booking-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 160px);
}

.booking-copy h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 76px);
  text-shadow: 0 12px 46px rgba(0,0,0,.38);
}

.booking-copy p {
  max-width: 620px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.9;
}

.booking-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.booking-points span {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  font-weight: 800;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.booking-form {
  padding: clamp(24px, 4vw, 36px);
  color: var(--white);
  background: rgba(18, 22, 22, .34);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 30px 100px rgba(0,0,0,.28);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.booking-form label span {
  color: rgba(255,255,255,.78);
}

.booking-form input,
.booking-form textarea {
  color: var(--white);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255,255,255,.5);
}

.booking-form input:focus,
.booking-form textarea:focus {
  background: rgba(255,255,255,.16);
}

.booking-form .form-status {
  color: rgba(255,255,255,.7);
}

.booking-form .form-status.is-success {
  color: #d8c6ad;
}

.booking-form .form-status.is-error {
  color: #ffd0c4;
}

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

.privacy-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(61, 95, 87, .12), transparent 36%),
    linear-gradient(180deg, #fbfaf6, var(--paper));
}

.privacy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 5vw, 72px);
}

.privacy-brand {
  color: var(--ink);
  background: rgba(255,255,255,.78);
  border-color: rgba(32, 35, 38, .1);
  box-shadow: 0 14px 44px rgba(31, 37, 35, .08);
}

.privacy-brand .brand-mark {
  border-color: rgba(32, 35, 38, .22);
}

.privacy-brand small {
  color: var(--muted);
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(32, 35, 38, .12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.72);
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(31, 37, 35, .08);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 860px);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 86px;
}

.privacy-summary {
  position: sticky;
  top: 28px;
  padding: 28px;
  border: 1px solid rgba(32, 35, 38, .08);
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 22px 70px rgba(31, 37, 35, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.privacy-summary h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.privacy-summary p {
  color: var(--muted);
  line-height: 1.85;
}

.summary-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.summary-list span {
  padding: 11px 13px;
  border: 1px solid rgba(61, 95, 87, .14);
  border-radius: 999px;
  color: var(--green);
  background: rgba(61, 95, 87, .06);
  font-size: 13px;
  font-weight: 800;
}

.privacy-doc {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(32, 35, 38, .08);
  border-radius: 30px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 26px 90px rgba(31, 37, 35, .1);
}

.privacy-doc section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(32, 35, 38, .08);
}

.privacy-doc h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
}

.privacy-doc p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.privacy-doc p:last-child {
  margin-bottom: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 6vw, 86px);
  color: #727774;
  background: #171a1a;
  font-size: 13px;
}

.hover-lift {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(29, 35, 34, .16);
  border-color: rgba(154, 107, 67, .35);
}

.reveal,
.service-grid article,
.case-card,
.steps li {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal.is-visible,
.service-grid article.is-visible,
.case-card.is-visible,
.steps li.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-grid article:nth-child(2),
.case-card:nth-child(2),
.steps li:nth-child(2) {
  transition-delay: .08s;
}

.service-grid article:nth-child(3),
.case-card:nth-child(3),
.steps li:nth-child(3) {
  transition-delay: .16s;
}

.service-grid article:nth-child(4),
.steps li:nth-child(4) {
  transition-delay: .24s;
}

.steps li:nth-child(5) {
  transition-delay: .32s;
}

@keyframes introUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.04);
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .contact-page {
    padding-bottom: 0;
  }

  .site-header {
    position: fixed;
    gap: 12px;
    padding: 12px 14px;
  }

  .phone-link {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .side-nav {
    top: auto;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 7px;
    border-radius: 24px;
    background: rgba(24, 28, 28, .5);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 16px 54px rgba(0,0,0,.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: none;
  }

  .side-nav a {
    width: auto;
    min-height: 54px;
    padding: 8px 6px;
    border-radius: 18px;
    justify-content: center;
    background: rgba(255,255,255,.09);
    font-size: 13px;
  }

  .side-nav a span {
    display: none;
  }

  .side-nav a:last-child {
    color: #151817;
    background: rgba(216, 198, 173, .96);
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
  }

  .side-nav a:last-child.is-active {
    background: #d8c6ad;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(14, 20, 20, .72), rgba(14, 20, 20, .52));
  }

  .hero-content {
    margin: 0 auto;
  }

  .trust-row,
  .intro,
  .service-grid,
  .case-grid,
  .steps,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .glass-panel {
    padding: 24px;
  }

  .contact-shell {
    min-height: auto;
  }

  .simple-header {
    padding: 14px 16px;
  }

  .privacy-header {
    padding: 14px 16px;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 760px);
    padding: 22px 0 56px;
  }

  .privacy-summary {
    position: static;
  }

  .booking-page {
    padding: 18px 16px 56px;
  }

  .booking-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .booking-copy h1 {
    font-size: 40px;
  }

  .booking-form {
    border-radius: 26px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: auto;
    padding: 7px 10px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 34px;
  }

  .hero {
    min-height: 720px;
  }

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

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

  .button {
    width: 100%;
  }

  .simple-back {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .privacy-back {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .booking-copy h1 {
    font-size: 34px;
  }

  .booking-copy p {
    font-size: 16px;
  }

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

  .lead-form .privacy-check {
    justify-content: center;
  }
}

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