:root {
  --ink: #050505;
  --ink-soft: #050505;
  --water: #08b6c8;
  --water-deep: #007c8f;
  --mist: #e6fbff;
  --paper: #fffdf7;
  --linen: #e6fbff;
  --clay: #ff6b45;
  --clay-dark: #d94e2d;
  --gold: #ffff00;
  --sky: #e6fbff;
  --palm: #050505;
  --foam: #f7fffb;
  --white: #ffffff;
  --line: rgba(5, 5, 5, 0.16);
  --shadow: 0 20px 54px rgba(7, 55, 70, 0.15);
  --shadow-sm: 0 10px 26px rgba(7, 55, 70, 0.1);
  --radius: 8px;
  --container: 1180px;
  --header: 112px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sky);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

svg,
[data-lucide] {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  stroke-width: 2.2;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: -48px;
  left: 16px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid rgba(7, 55, 70, 0.12);
  backdrop-filter: blur(16px);
}

.top-strip {
  color: var(--ink);
  background: var(--gold);
  font-size: 0.88rem;
}

.top-strip__inner {
  min-height: 38px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.top-strip span,
.top-strip a,
.button,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-strip a,
.top-strip__actions {
  white-space: nowrap;
}

.top-strip__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.top-book {
  min-height: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 900;
  box-shadow: none;
}

.top-book:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-shell {
  min-height: 74px;
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  color: var(--ink);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--gold);
  border: 0;
  border-radius: 50%;
  font-size: 1.05rem;
  line-height: 1;
  text-align: center;
}

.brand-text {
  font-size: 1.1rem;
  white-space: nowrap;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2px;
}

.desktop-nav > a,
.nav-dropdown > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 11px;
  color: var(--ink-soft);
  font-weight: 700;
  border-radius: var(--radius);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.nav-dropdown:hover > a {
  color: var(--ink-soft);
  background: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 260px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 12px;
  color: var(--ink-soft);
  border-radius: 6px;
  font-weight: 700;
}

.nav-dropdown__menu a:hover {
  color: var(--ink-soft);
  background: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.mobile-menu {
  position: fixed;
  inset: 112px 0 0;
  z-index: 950;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 18px 16px 110px;
  overflow-y: auto;
  background: var(--paper);
  border-top: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

.mobile-menu a,
.mobile-menu summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: var(--radius);
  font-weight: 800;
}

.mobile-menu details {
  display: grid;
  gap: 6px;
}

.mobile-menu details a {
  margin-left: 16px;
  background: var(--white);
}

.mobile-menu a:hover,
.mobile-menu summary:hover {
  background: var(--gold);
}

.mobile-menu__actions {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.button {
  min-height: 46px;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: var(--clay);
  border: 1px solid var(--clay);
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease, color 160ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--clay);
  border-color: var(--clay);
  box-shadow: 0 10px 22px rgba(255, 107, 69, 0.24);
}

.button--primary:hover {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(5, 5, 5, 0.34);
}

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

.button--sm {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.95rem;
}

section {
  padding: 72px 0;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header));
  display: flex;
  align-items: center;
  padding: 76px 0 54px;
  color: var(--ink);
  background-color: var(--paper);
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.71) 0%, rgba(255, 255, 255, 0.62) 48%, rgba(255, 255, 255, 0.33) 100%), var(--hero-image);
  background-size: cover;
  background-position: center bottom;
}

.hero--blend {
  background-image:
    linear-gradient(105deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.54) 44%, rgba(255, 255, 255, 0.21) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: left center;
  overflow: hidden;
}

.hero--blend::before,
.hero--blend::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero--blend::before {
  display: none;
}

.hero--blend::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.06) 45%, rgba(255, 255, 255, 0.27) 100%),
    radial-gradient(circle at 44% 52%, rgba(255, 255, 255, 0.39), transparent 30%);
  z-index: 1;
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero--blend .quote-panel {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(5, 5, 5, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.12);
}

.hero--compact {
  min-height: 440px;
}

.hero--about-furniture {
  background-color: var(--paper);
  background-image:
    linear-gradient(100deg, rgba(255, 255, 255, 0.71) 0%, rgba(255, 255, 255, 0.62) 42%, rgba(255, 255, 255, 0.29) 72%, rgba(255, 255, 255, 0.14) 100%),
    var(--hero-image);
  background-repeat: no-repeat;
  background-size: cover, min(760px, 52vw) auto;
  background-position: center, right 8% center;
}

.hero__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero__copy {
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--ink);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 660px;
  color: var(--ink);
  font-size: 2.7rem;
  text-shadow: none;
}

.hero p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 1.08rem;
  text-shadow: none;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.quote-panel {
  background: rgba(251, 250, 247, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-band {
  padding: 0;
  background: var(--paper);
}

.trust-grid {
  display: grid;
  gap: 1px;
  margin-top: -26px;
  position: relative;
  z-index: 4;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.trust-grid div {
  display: grid;
  gap: 5px;
  padding: 18px;
  background: var(--white);
}

.trust-grid svg {
  width: 32px;
  height: 32px;
  padding: 6px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  box-sizing: border-box;
}

.trust-grid strong {
  color: var(--ink);
}

.trust-grid span {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

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

.section-heading h2,
.content-flow h2,
.form-heading h2,
.sidebar-panel h2,
.contact-grid h2,
.site-footer h2 {
  font-size: 2rem;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(24, 35, 34, 0.04);
}

.service-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 20px;
}

.card-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: var(--radius);
}

.service-card h3 {
  margin-top: 14px;
  font-size: 1.18rem;
}

.service-card p {
  margin: 10px 0 16px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.text-link {
  color: var(--ink);
  font-weight: 900;
}

.text-link svg {
  color: var(--ink);
}

.sun-section {
  background: var(--mist);
}

.headache-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(230, 251, 255, 0.78) 0%, rgba(230, 251, 255, 0.5) 42%, rgba(255, 253, 247, 0.72) 100%),
    var(--mist);
}

.headache-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--headache-image);
  background-size: cover;
  background-position: center;
  opacity: 0.78;
  filter: saturate(0.96) contrast(1.12) brightness(0.82);
}

.headache-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.74) 0%, rgba(255, 253, 247, 0.36) 42%, rgba(255, 253, 247, 0.62) 100%),
    radial-gradient(circle at 50% 44%, rgba(230, 251, 255, 0.18), transparent 42%);
}

.headache-section .container {
  position: relative;
  z-index: 1;
}

.headache-section .section-heading {
  max-width: 820px;
}

.headache-section .moment-card {
  background: rgba(255, 253, 247, 0.84);
  border-color: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(8px);
}

.surf-section {
  background:
    linear-gradient(135deg, rgba(230, 251, 255, 0.82), rgba(255, 253, 247, 0.74)),
    var(--foam);
}

.moment-grid {
  display: grid;
  gap: 16px;
}

.moment-card {
  display: grid;
  gap: 12px;
  min-height: 260px;
  align-content: start;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.moment-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.moment-card > span,
.sun-card > span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
}

.moment-card > span svg,
.sun-card > span svg,
.card-icon svg {
  color: var(--ink);
  stroke-width: 2.6;
}

.moment-card h3,
.sun-card h3,
.payment-grid h3 {
  font-size: 1.28rem;
}

.moment-card p,
.sun-card p,
.payment-grid p,
.process-note p {
  margin: 0;
  color: var(--ink-soft);
}

.moment-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--ink);
}

.lifestyle-split {
  display: grid;
  gap: 24px;
  align-items: start;
}

.lifestyle-grid {
  display: grid;
  gap: 14px;
}

.lifestyle-grid article,
.payment-grid article {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lifestyle-grid span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--ink);
  background: var(--gold);
  border-radius: var(--radius);
}

.lifestyle-grid span svg {
  color: var(--ink);
  stroke-width: 2.6;
}

.sun-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 0, 0.85), rgba(255, 255, 0, 0.9)),
    var(--linen);
  border: 1px solid rgba(255, 255, 0, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.payment-grid {
  display: grid;
  gap: 14px;
}

.process-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-note svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  margin-top: 2px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  box-sizing: border-box;
  stroke-width: 2.6;
}

.flow-section,
.area-section,
.booking-section {
  background: var(--mist);
}

.freedom-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(230, 251, 255, 0.34), rgba(230, 251, 255, 0.24)),
    var(--mist);
}

.freedom-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--freedom-image);
  background-size: cover;
  background-position: center 45%;
  opacity: 1;
  filter: saturate(1.08) contrast(1.12) brightness(0.78);
}

.freedom-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(230, 251, 255, 0.54) 0%, rgba(230, 251, 255, 0.18) 48%, rgba(230, 251, 255, 0.42) 100%),
    linear-gradient(180deg, rgba(255, 253, 247, 0.34), rgba(255, 253, 247, 0.18));
}

.freedom-section .container {
  position: relative;
  z-index: 1;
}

.freedom-section .process-note,
.freedom-section .steps li {
  background: rgba(255, 253, 247, 0.82);
  border-color: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px rgba(7, 55, 70, 0.12);
}

.difference-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--mist);
}

.difference-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--difference-image);
  background-size: cover;
  background-position: center 48%;
  opacity: 0.78;
  filter: saturate(1.02) contrast(1.08) brightness(0.9);
}

.difference-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(230, 251, 255, 0.72) 0%, rgba(230, 251, 255, 0.4) 44%, rgba(255, 253, 247, 0.38) 100%),
    linear-gradient(90deg, rgba(255, 253, 247, 0.46) 0%, rgba(255, 253, 247, 0.14) 52%, rgba(7, 55, 70, 0.16) 100%);
}

.difference-section .container {
  position: relative;
  z-index: 1;
}

.difference-section .value-grid div {
  background: rgba(255, 253, 247, 0.86);
  border-color: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 46px rgba(7, 55, 70, 0.14);
}

.process-grid {
  display: grid;
  gap: 28px;
}

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

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

.steps li {
  position: relative;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.steps h3 {
  font-size: 1.12rem;
}

.steps p,
.content-flow p,
.sidebar-panel p,
.contact-grid p {
  color: var(--ink-soft);
}

.split {
  display: grid;
  gap: 32px;
  align-items: center;
}

.promise-list,
.category-cloud,
.chip-list,
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.promise-list span,
.category-cloud span,
.chip-list a,
.footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.promise-list span svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  box-sizing: border-box;
  stroke-width: 2.6;
}

.review-stack {
  display: grid;
  gap: 14px;
}

.review-stack blockquote {
  margin: 0;
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

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

.area-grid a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

.area-grid a:hover,
.chip-list a:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--ink);
}

.cta-section {
  color: var(--white);
  background: var(--ink);
}

.cta-inner {
  display: grid;
  gap: 24px;
  align-items: center;
}

.cta-inner h2 {
  color: var(--white);
}

.cta-inner p {
  max-width: 680px;
  color: var(--white);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-form {
  display: grid;
  gap: 20px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.booking-form--compact {
  padding: 20px;
  box-shadow: none;
}

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

.booking-form--compact label:nth-of-type(3),
.booking-form--compact label:nth-of-type(5),
.booking-form--compact label:nth-of-type(6),
.booking-form--compact label:nth-of-type(7) {
  display: none;
}

.form-heading h2 {
  font-size: 1.45rem;
}

.form-heading p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 850;
}

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

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 255, 0, 0.42);
  border-color: var(--ink);
  background: var(--white);
}

.service-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.content-flow {
  max-width: 820px;
}

.content-flow h2 {
  margin: 28px 0 14px;
}

.content-flow h2:first-of-type {
  margin-top: 0;
}

.content-flow p {
  margin: 0 0 16px;
}

.check-grid {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.check-grid li {
  position: relative;
  padding: 12px 12px 12px 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
}

.check-grid li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 16px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--ink);
  box-shadow: none;
}

.service-sidebar {
  display: grid;
  gap: 16px;
}

.sidebar-panel {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.sidebar-panel a:not(.button) {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 10px;
  color: var(--ink-soft);
  border-radius: var(--radius);
  font-weight: 850;
}

.sidebar-panel a:not(.button):hover,
.sidebar-panel a.is-active {
  color: var(--ink);
  background: var(--gold);
}

.sidebar-panel a:not(.button) svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  box-sizing: border-box;
  stroke-width: 2.6;
}

.sidebar-panel--dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.sidebar-panel--dark h2,
.sidebar-panel--dark p {
  color: var(--white);
}

.region-grid {
  display: grid;
  gap: 16px;
}

.region-group {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.region-group h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.feature-image {
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

.value-grid div,
.contact-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value-grid span,
.contact-grid > article > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--ink);
  background: var(--gold);
  border-radius: var(--radius);
}

.value-grid span svg,
.contact-grid > article > span svg {
  color: var(--ink);
  stroke-width: 2.6;
}

.contact-grid a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
}

.narrow {
  width: min(100% - 32px, 860px);
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--ink-soft);
}

.site-footer {
  padding-top: 58px;
  color: var(--white);
  background: #121a19;
}

.footer-grid {
  display: grid;
  gap: 28px;
  padding-bottom: 44px;
}

.brand--footer {
  color: var(--white);
  margin-bottom: 14px;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
  color: var(--white);
}

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

.site-footer .brand--footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer .brand--footer .brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--ink);
  background: var(--gold);
  border: 0;
  border-radius: 50%;
  font-size: 1.05rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.site-footer .brand--footer .brand-text {
  margin: 0;
  color: var(--white);
  line-height: 1.1;
}

.site-footer .footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  margin: 0;
  padding: 0;
  gap: 10px;
  line-height: 1.2;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.site-footer .footer-badges {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.site-footer .footer-badges span svg {
  display: block;
  flex: 0 0 30px;
  align-self: center;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 7px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  box-sizing: border-box;
  stroke-width: 2.6;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom .container {
  display: grid;
  gap: 6px;
}

.footer-bottom p {
  margin: 0;
  color: var(--white);
  font-size: 0.88rem;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -10px 30px rgba(24, 35, 34, 0.18);
}

.mobile-cta a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.mobile-cta a:last-child {
  background: var(--clay);
}

body {
  padding-bottom: 56px;
}

@media (min-width: 640px) {
  .service-grid,
  .area-grid,
  .value-grid,
  .contact-grid,
  .check-grid,
  .moment-grid,
  .lifestyle-grid,
  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .span-2 {
    grid-column: span 2;
  }
}

@media (min-width: 860px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  }

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

  .hero h1 {
    font-size: 4rem;
  }

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

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

  .process-grid,
  .split,
  .cta-inner,
  .service-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  }

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

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

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

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

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

  .lifestyle-split {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  }

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

  .footer-bottom .container {
    grid-template-columns: 1fr auto;
  }

  .mobile-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

@media (min-width: 1120px) {
  .hero h1 {
    font-size: 4.5rem;
  }

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

@media (max-width: 520px) {
  :root {
    --header: 118px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand-text {
    font-size: 0.98rem;
  }

  .hero {
    min-height: 82svh;
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .quote-panel {
    margin-top: 8px;
  }

  section {
    padding: 54px 0;
  }
}

@media (max-width: 859px) {
  .hero--about-furniture {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.59) 52%, rgba(255, 255, 255, 0.32) 100%),
      var(--hero-image);
    background-size: cover, 108% auto;
    background-position: center, center bottom;
  }

  .top-strip__inner {
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .top-strip__inner > span {
    display: none;
  }

  .top-book {
    min-height: 32px;
    padding: 0 12px;
  }
}

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