:root {
  --sage: #8fa58d;
  --sage-dark: #415d48;
  --sage-deep: #1d3528;
  --sage-soft: #e6efe4;
  --cream: #f7f1e7;
  --linen: #eee3d3;
  --paper: #fffdf8;
  --ink: #18211b;
  --muted: #697368;
  --white: #ffffff;
  --gold: #b99a5f;
  --glass: rgba(255, 253, 248, 0.76);
  --glass-strong: rgba(255, 253, 248, 0.9);
  --glass-border: rgba(255, 255, 255, 0.54);
  --line: rgba(65, 93, 72, 0.16);
  --shadow: 0 34px 100px rgba(30, 49, 37, 0.16);
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(143, 165, 141, 0.22), transparent 34rem),
    linear-gradient(180deg, var(--cream), #fbf8f1 48%, var(--linen));
  line-height: 1.6;
  transition: background 220ms ease, color 220ms ease;
}

body.dark-mode {
  --sage: #9fb99e;
  --sage-dark: #a9c2aa;
  --sage-deep: #eef6ef;
  --sage-soft: #25392f;
  --cream: #101912;
  --linen: #17231b;
  --paper: #17231b;
  --ink: #f7f1e7;
  --muted: #b9c5ba;
  --white: #19261e;
  --gold: #d6bb7a;
  --glass: rgba(23, 35, 27, 0.74);
  --glass-strong: rgba(23, 35, 27, 0.94);
  --glass-border: rgba(255, 255, 255, 0.14);
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  background:
    radial-gradient(circle at top left, rgba(159, 185, 158, 0.16), transparent 34rem),
    linear-gradient(180deg, #101912, #142019 48%, #0f1712);
}

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

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

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sage-dark));
  box-shadow: 0 0 24px rgba(185, 154, 95, 0.5);
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 165, 141, 0.2), transparent 66%);
  opacity: var(--cursor-opacity, 0);
  transform: translate3d(calc(var(--cursor-x, 50vw) - 50%), calc(var(--cursor-y, 50vh) - 50%), 0);
  transition: opacity 220ms ease;
  pointer-events: none;
  mix-blend-mode: multiply;
}

body.dark-mode .cursor-glow {
  background: radial-gradient(circle, rgba(214, 187, 122, 0.16), transparent 66%);
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 60;
  pointer-events: none;
}

.nav {
  width: min(1220px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: var(--white);
  background: rgba(18, 30, 23, 0.42);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px);
  pointer-events: auto;
  transition: background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.site-header.scrolled .nav {
  color: var(--ink);
  background: var(--glass-strong);
  border-color: var(--glass-border);
  box-shadow: 0 18px 52px rgba(30, 49, 37, 0.12);
}

body.dark-mode .site-header.scrolled .nav {
  color: var(--ink);
  background: rgba(16, 25, 18, 0.9);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.site-header .brand {
  margin-right: auto;
}

.site-header .brand-mark {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.site-header .brand-mark img {
  width: 64px;
  height: auto;
  max-width: none;
  object-fit: contain;
  transform: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: clamp(58px, 7vw, 74px);
  height: clamp(46px, 5vw, 56px);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(65, 93, 72, 0.1),
    0 10px 28px rgba(30, 49, 37, 0.12);
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 180%;
  height: 180%;
  object-fit: contain;
  transform: translateY(-1%);
}

.brand strong,
.footer strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sage-deep);
  background: rgba(255, 255, 255, 0.78);
}

.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active {
  background: var(--sage-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--sage-deep);
}

.theme-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 72px;
  height: 42px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #1d3528;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  position: relative;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 10px 22px rgba(30, 49, 37, 0.14);
  transition: transform 180ms ease, background 180ms ease;
}

.theme-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

body.dark-mode .theme-toggle {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}

body.dark-mode .theme-toggle::before {
  transform: translateX(30px);
  background: var(--sage-dark);
}

.section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0;
  position: relative;
  z-index: 2;
}

.hero {
  width: 100%;
  min-height: 100vh;
  padding: 140px max(16px, calc((100vw - 1220px) / 2)) 54px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(15, 26, 19, 0.9), rgba(15, 26, 19, 0.58) 45%, rgba(15, 26, 19, 0.16)),
    linear-gradient(180deg, rgba(15, 26, 19, 0.08), rgba(15, 26, 19, 0.82)),
    url("https://images.unsplash.com/photo-1560448075-bb485b067938?auto=format&fit=crop&w=1900&q=84");
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: inherit;
  transform: scale(1.06) translateY(var(--hero-shift, 0));
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 410px);
  align-items: end;
  gap: 34px;
}

.hero-copy-wrap {
  max-width: 850px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sage-dark);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.hero .eyebrow,
.testimonials .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 8.6vw, 8.8rem);
  line-height: 0.88;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4.9vw, 5.2rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  transition: left 520ms ease;
}

.button:hover::after {
  left: 112%;
}

.button.primary {
  color: #fffdf8;
  background: linear-gradient(135deg, #223a2c, var(--sage-dark));
  box-shadow: 0 18px 42px rgba(29, 53, 40, 0.24);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.hero-glass {
  display: grid;
  gap: 12px;
}

.hero-glass div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  animation: floatCard 7s ease-in-out infinite;
}

.hero-glass div:nth-child(2) {
  animation-delay: 700ms;
}

.hero-glass div:nth-child(3) {
  animation-delay: 1400ms;
}

.hero-glass strong,
.hero-glass span {
  display: block;
}

.hero-glass strong {
  margin-bottom: 4px;
  color: var(--white);
}

.hero-glass span {
  color: rgba(255, 255, 255, 0.76);
}

.stat-strip {
  margin-top: -42px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.stat-strip div {
  padding: 34px;
  border-right: 1px solid var(--line);
  transition: transform 220ms ease, background 220ms ease;
}

.stat-strip div:hover {
  transform: translateY(-4px);
  background: rgba(143, 165, 141, 0.1);
}

.stat-strip div:last-child {
  border-right: 0;
}

.stat-strip strong {
  display: block;
  color: var(--sage-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
}

.stat-strip span {
  color: var(--muted);
  font-weight: 800;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

.section-heading p:not(.eyebrow),
.signature-content > p,
.contact-info p,
.booking-card p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

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

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

.service-card,
.pricing-card,
.gallery-card,
.testimonial-grid figure,
.contact-form,
.faq-item,
.booking-card,
.signature-content {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: 0 18px 58px rgba(30, 49, 37, 0.08);
  backdrop-filter: blur(20px);
}

.service-card {
  min-height: 320px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.pricing-card:hover {
  transform: translateY(-8px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: rgba(185, 154, 95, 0.44);
  box-shadow: 0 30px 76px rgba(30, 49, 37, 0.16);
}

.service-card p,
.pricing-card li {
  color: var(--muted);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 50%;
  color: var(--sage-deep);
  background: linear-gradient(135deg, var(--paper), var(--sage-soft));
  box-shadow: inset 0 0 0 1px var(--line), 0 16px 38px rgba(30, 49, 37, 0.12);
  font-size: 1.55rem;
}

.signature-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 22px;
  align-items: stretch;
}

.signature-media {
  min-height: 640px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(29, 53, 40, 0.12), rgba(29, 53, 40, 0.34)),
    url("https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=1100&q=82");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.signature-content {
  padding: clamp(30px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signature-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.signature-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 6px 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.signature-list span {
  grid-row: span 2;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
}

.signature-list strong {
  color: var(--sage-deep);
  font-size: 1.02rem;
}

.signature-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-section {
  padding-top: 40px;
}

.pricing-card {
  min-height: 440px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 40%);
}

.pricing-card.featured {
  color: #fffdf8;
  background:
    linear-gradient(145deg, rgba(29, 53, 40, 0.98), rgba(65, 93, 72, 0.96)),
    var(--sage-deep);
}

.pricing-card.featured .pricing-label,
.pricing-card.featured li,
.pricing-card.featured .price span {
  color: rgba(255, 255, 255, 0.76);
}

.pricing-label {
  width: fit-content;
  margin-bottom: 28px;
  padding: 8px 11px;
  border: 1px solid rgba(185, 154, 95, 0.34);
  border-radius: 999px;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price {
  margin-bottom: 20px;
  color: var(--sage-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 3.25rem);
  line-height: 1;
  font-weight: 700;
}

.pricing-card.featured .price {
  color: #fffdf8;
}

.price span {
  margin-left: 4px;
  color: var(--muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.pricing-card ul {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pricing-card li {
  position: relative;
  padding-left: 22px;
  font-size: 0.94rem;
  font-weight: 700;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-card .button.secondary {
  color: var(--sage-deep);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}

body.dark-mode .pricing-card .button.secondary {
  color: #16231c;
  background: rgba(255, 255, 255, 0.88);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  overflow: hidden;
}

.compare-slider {
  --position: 50;
  position: relative;
  min-height: 340px;
  overflow: hidden;
  cursor: ew-resize;
  isolation: isolate;
  touch-action: pan-y;
}

.compare-image {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: start;
  color: #fffdf8;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.compare-image span {
  width: fit-content;
  margin: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(29, 53, 40, 0.62);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.compare-image.before {
  z-index: 2;
  clip-path: inset(0 calc(100% - (var(--position) * 1%)) 0 0);
}

.compare-image.after span {
  justify-self: end;
}

.compare-slider input {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--position) * 1%);
  z-index: 4;
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.24);
}

.compare-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 35%, rgba(29, 53, 40, 0.92) 35% 65%, transparent 65%),
    rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  animation: handlePulse 2.8s ease-in-out infinite;
}

.before,
.kitchen-before {
  background:
    linear-gradient(rgba(29, 53, 40, 0.48), rgba(29, 53, 40, 0.44)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=900&q=76");
  background-size: cover;
  background-position: center;
  filter: saturate(0.7);
}

.after,
.kitchen-after {
  background:
    linear-gradient(rgba(143, 165, 141, 0.12), rgba(29, 53, 40, 0.16)),
    url("https://images.unsplash.com/photo-1560448075-bb485b067938?auto=format&fit=crop&w=900&q=76");
  background-size: cover;
  background-position: center;
}

.bathroom-before {
  background:
    linear-gradient(rgba(29, 53, 40, 0.5), rgba(29, 53, 40, 0.42)),
    url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=900&q=76");
  background-size: cover;
  background-position: center;
}

.bathroom-after {
  background:
    linear-gradient(rgba(143, 165, 141, 0.12), rgba(29, 53, 40, 0.16)),
    url("https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&w=900&q=76");
  background-size: cover;
  background-position: center;
}

.bedroom-before {
  background:
    linear-gradient(rgba(29, 53, 40, 0.5), rgba(29, 53, 40, 0.42)),
    url("https://images.unsplash.com/photo-1554995207-c18c203602cb?auto=format&fit=crop&w=900&q=76");
  background-size: cover;
  background-position: center;
}

.bedroom-after {
  background:
    linear-gradient(rgba(143, 165, 141, 0.12), rgba(29, 53, 40, 0.16)),
    url("https://images.unsplash.com/photo-1616594039964-ae9021a400a0?auto=format&fit=crop&w=900&q=76");
  background-size: cover;
  background-position: center;
}

.gallery-card h3 {
  margin: 0;
  padding: 22px 24px 26px;
  background: var(--paper);
}

.testimonials {
  width: 100%;
  padding-inline: max(16px, calc((100vw - 1220px) / 2));
  background:
    linear-gradient(135deg, rgba(29, 53, 40, 0.97), rgba(65, 93, 72, 0.95)),
    var(--sage-deep);
  color: #fffdf8;
}

.testimonials h2 {
  color: #fffdf8;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-grid figure {
  margin: 0;
  padding: 34px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
}

body.dark-mode .testimonial-grid figure {
  background: rgba(255, 253, 248, 0.08);
  color: var(--ink);
}

.stars {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

blockquote {
  margin: 0 0 24px;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.45;
}

figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
}

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

.contact-list li {
  display: grid;
  gap: 3px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  color: var(--sage-dark);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.contact-form {
  padding: 34px;
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--sage-deep);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
}

textarea {
  resize: vertical;
}

.honeypot {
  display: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 4px rgba(143, 165, 141, 0.18);
}

body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--ink);
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
  color: rgba(247, 241, 231, 0.52);
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.faq-section {
  padding-top: 40px;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 66px;
  padding: 0 58px 0 24px;
  border: 0;
  color: var(--sage-deep);
  background: transparent;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  position: relative;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sage-dark);
  font-size: 1.45rem;
}

.faq-item.open button::after {
  content: "-";
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  color: var(--muted);
  opacity: 0;
  transition: max-height 260ms ease, opacity 220ms ease, padding 220ms ease;
}

.faq-item.open p {
  max-height: 180px;
  padding-bottom: 24px;
  opacity: 1;
}

.whatsapp-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fffdf8;
  background: #2f8052;
  box-shadow: 0 18px 48px rgba(29, 53, 40, 0.28);
  font-size: 1.9rem;
  transition: transform 180ms ease;
}

.whatsapp-button:hover {
  transform: translateY(-4px) scale(1.04);
}

.footer {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 28px;
  align-items: center;
  color: var(--muted);
  position: relative;
  z-index: 2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-weight: 800;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--sage-deep);
  background: var(--paper);
  font-size: 1.16rem;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.social-links a:hover {
  color: #fffdf8;
  background: var(--sage-dark);
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(10px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.19, 1, 0.22, 1), filter 760ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes heroZoom {
  from {
    transform: scale(1.06) translate3d(0, var(--hero-shift, 0), 0);
  }

  to {
    transform: scale(1.12) translate3d(-1%, calc(var(--hero-shift, 0) + 1%), 0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes handlePulse {
  0%,
  100% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(255, 255, 255, 0.28);
  }

  50% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22), 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 1120px) {
  .hero-inner,
  .signature-section,
  .contact-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .signature-media {
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 12px;
  }

  .nav {
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .theme-toggle {
    order: 2;
    margin-left: auto;
  }

  .site-header .brand > span:not(.brand-mark) {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 12px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: var(--glass-strong);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding-top: 124px;
    background-position: 58% center;
  }

  .hero-glass {
    display: none;
  }

  .stat-strip {
    margin-top: 0;
    grid-template-columns: 1fr;
  }

  .stat-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-strip div:last-child {
    border-bottom: 0;
  }

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

  .compare-slider {
    min-height: 260px;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  .brand-mark {
    width: 54px;
    height: 42px;
    border-radius: 15px;
  }

  .hero::after {
    inset: 14px;
  }

  .hero-copy-wrap,
  .signature-content,
  .contact-form,
  .booking-card {
    padding: 24px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 4.8rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .footer-links {
    display: grid;
  }
}
