:root {
  --ink: #171513;
  --muted: #69635c;
  --paper: #f6f2eb;
  --paper-soft: #fffaf2;
  --platinum: #e7e2d8;
  --gold: #b7935a;
  --copper: #9c6443;
  --olive: #586052;
  --line: rgba(35, 31, 26, 0.12);
  --glass: rgba(255, 255, 255, 0.17);
  --glass-light: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 70px rgba(37, 30, 20, 0.18);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(183, 147, 90, 0.16), transparent 30rem),
    linear-gradient(135deg, #fbf8f1 0%, #eee8dd 44%, #f8f4ed 100%);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(90vw, calc(100% - 32px));
  min-height: 84px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 274px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 16px 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(2, 2, 2, 0.94), rgba(6, 6, 5, 0.88));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(28px) saturate(135%);
}

.brand {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
}

.brand::before,
.brand::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask: url("assets/logo.png") center / contain no-repeat;
  mask: url("assets/logo.png") center / contain no-repeat;
}

.brand::before {
  background: linear-gradient(135deg, #f8df9f, #b88d4e 52%, #fff0bd);
}

.brand::after {
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.22) 43%,
    rgba(255, 247, 205, 0.96) 50%,
    rgba(255, 255, 255, 0.22) 57%,
    transparent 65%,
    transparent 100%
  );
  transform: translateX(-80%) skewX(-18deg);
  opacity: 0;
}

.brand:hover::after {
  animation: gold-logo-shine 0.58s ease-out forwards;
}

.brand img {
  width: 262px;
  height: auto;
  opacity: 0;
}

@keyframes gold-logo-shine {
  0% {
    opacity: 0;
    transform: translateX(-80%) skewX(-18deg);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(80%) skewX(-18deg);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(5px, 0.78vw, 14px);
}

.nav-links a,
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: clamp(0.66rem, 0.78vw, 0.92rem);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.nav-links a {
  padding: 0 clamp(12px, 0.95vw, 20px);
}

.nav-links a:hover {
  color: #e8fffb;
  background: linear-gradient(135deg, rgba(42, 137, 140, 0.74), rgba(32, 116, 119, 0.68));
}

.nav-item {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
}

.submenu-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 310px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(2, 2, 2, 0.92), rgba(6, 6, 5, 0.82));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px) scale(0.98);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}

.submenu a {
  min-height: 38px;
  justify-content: flex-start;
  border-radius: 14px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  white-space: normal;
}

.submenu a:hover {
  color: #e8fffb;
  background: linear-gradient(135deg, rgba(42, 137, 140, 0.74), rgba(32, 116, 119, 0.68));
}

.header-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 0 25px;
  color: #1d1710;
  background: linear-gradient(135deg, #f6dfaa, #e3c581);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 184px 22px 188px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

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

.hero-video {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0.66)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.04) 62%);
  pointer-events: none;
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(244, 218, 171, 0.24) 0 0.7px, transparent 0.9px),
    radial-gradient(circle at 64% 36%, rgba(255, 246, 221, 0.18) 0 0.6px, transparent 0.85px),
    radial-gradient(circle at 38% 78%, rgba(181, 144, 92, 0.18) 0 0.55px, transparent 0.8px);
  background-size: 7px 7px, 11px 11px, 13px 13px;
  opacity: 0.18;
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(90vw, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 660px);
  gap: 16px;
  align-items: center;
  justify-content: start;
}

.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero-copy {
  position: relative;
  width: min(100%, 660px);
  padding: clamp(24px, 5vw, 54px);
  border-radius: 30px;
}

.hero-copy .eyebrow {
  font-size: 0.57rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5d597;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 5.15vw, 5.25rem);
}

h1 em,
h2 em,
blockquote em {
  color: #edcda8;
  font-style: italic;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.82rem, 1.05vw, 0.92rem);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .button {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 1.26rem;
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button::after,
.header-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -45% -70%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 43%,
    rgba(255, 240, 176, 0.92) 50%,
    rgba(255, 255, 255, 0.18) 57%,
    transparent 65%,
    transparent 100%
  );
  transform: translateX(-75%) skewX(-18deg);
  opacity: 0;
}

.button:hover::after,
.header-cta:hover::after {
  animation: gold-shine 0.55s ease-out forwards;
}

@keyframes gold-shine {
  0% {
    opacity: 0;
    transform: translateX(-75%) skewX(-18deg);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(75%) skewX(-18deg);
  }
}

.button-primary {
  color: #1d1710;
  background: linear-gradient(135deg, #fae5b2, #e5c983);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.section .button-primary,
.testimonial-copy .button-primary,
.contact-card .button-primary {
  color: #e8fffb;
  background: linear-gradient(135deg, rgba(42, 137, 140, 0.96), rgba(32, 116, 119, 0.9));
  box-shadow: 0 16px 34px rgba(0, 61, 68, 0.18);
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost.dark {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.section-cta {
  margin-top: 28px;
}

.cta-row {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.hero-card {
  position: absolute;
  left: min(548px, calc(100% - 252px));
  top: -34px;
  z-index: 4;
  width: 250px;
  min-height: 0;
  padding: 16px 18px 15px;
  border-color: rgba(164, 224, 217, 0.38);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  align-items: center;
  background: linear-gradient(135deg, rgba(42, 137, 140, 0.74), rgba(32, 116, 119, 0.68));
  box-shadow: 0 22px 60px rgba(0, 61, 68, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-card span {
  color: #f5d597;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin: 0;
  font-family: var(--serif);
  font-size: 2.45rem;
  font-weight: 400;
  line-height: 1;
}

.hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
  line-height: 1.35;
}

.hero-carousel {
  position: absolute;
  z-index: 3;
  left: 50%;
  width: min(90vw, calc(100% - 32px));
  transform: translateX(-50%);
  bottom: 24px;
  overflow: hidden;
  padding-block: 8px;
  pointer-events: none;
}

.hero-carousel::before,
.hero-carousel::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: min(18vw, 260px);
  pointer-events: none;
}

.hero-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 42%, transparent 100%);
}

.hero-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 42%, transparent 100%);
}

.hero-carousel-track {
  width: max-content;
  display: flex;
  gap: 14px;
  transform: translate3d(var(--hero-carousel-x, 0px), 0, 0);
  will-change: transform;
}

.hero-slide {
  position: relative;
  width: calc((min(90vw, calc(100vw - 32px)) - 70px) / 6);
  height: 118px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  isolation: isolate;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  z-index: 1;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.hero-slide::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: -45% -80%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 36%,
    rgba(255, 255, 255, 0.16) 43%,
    rgba(255, 231, 163, 0.86) 50%,
    rgba(255, 255, 255, 0.16) 57%,
    transparent 64%,
    transparent 100%
  );
  opacity: 0;
  transform: translateX(-75%) skewX(-18deg);
}

.hero-slide:hover::after {
  animation: gold-shine 0.55s ease-out forwards;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-slide:hover img {
  filter: brightness(1.08) saturate(1.04);
  transform: scale(1.06);
}

.hero-slide span {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 13px;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.welcome-launcher {
  position: absolute;
  z-index: 6;
  right: 5vw;
  bottom: 166px;
  width: 270px;
  min-height: 110px;
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 18px;
  padding: 10px 20px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  text-align: left;
  background: linear-gradient(135deg, rgba(4, 5, 6, 0.62), rgba(0, 0, 0, 0.38));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px) saturate(135%);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.welcome-launcher::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -45% -75%;
  background: linear-gradient(110deg, transparent 0%, transparent 36%, rgba(255, 255, 255, 0.16) 43%, rgba(255, 231, 163, 0.82) 50%, rgba(255, 255, 255, 0.16) 57%, transparent 64%, transparent 100%);
  opacity: 0;
  transform: translateX(-78%) skewX(-18deg);
}

.welcome-launcher:hover {
  transform: translateY(-3px);
  border-color: rgba(164, 224, 217, 0.46);
}

.welcome-launcher:hover::after {
  animation: image-gold-shine 0.72s ease-out forwards;
}

.welcome-launcher img {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.welcome-launcher small,
.welcome-launcher strong,
.welcome-launcher em {
  display: block;
}

.welcome-launcher small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.46rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.welcome-launcher strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1;
}

.welcome-launcher em {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.42rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.welcome-play {
  position: absolute;
  left: 70px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #102f37;
  background: linear-gradient(135deg, #fae5b2, #e5c983);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.welcome-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.welcome-video-popover {
  position: fixed;
  z-index: 60;
  right: 28px;
  bottom: 28px;
  width: min(390px, calc(100vw - 40px));
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(4, 5, 6, 0.76), rgba(0, 0, 0, 0.58));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(135%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.94);
  transform-origin: bottom right;
  transition:
    opacity 0.36s ease,
    transform 0.42s cubic-bezier(0.2, 0.9, 0.24, 1),
    visibility 0s linear 0.36s;
}

.welcome-video-popover.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition:
    opacity 0.36s ease,
    transform 0.42s cubic-bezier(0.2, 0.9, 0.24, 1),
    visibility 0s;
}

.welcome-video {
  width: 100%;
  max-height: 68vh;
  border-radius: 16px;
  background: #050607;
}

.welcome-close {
  position: absolute;
  z-index: 2;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 6, 7, 0.76);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.marquee {
  width: min(90vw, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  background: transparent;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.marquee div {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 22px 0;
  animation: slide 28s linear infinite;
}

.marquee span {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--olive);
  text-transform: uppercase;
}

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

.section {
  width: min(90vw, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) 0;
}

.section-heading {
  max-width: 780px;
}

.section-heading.wide {
  max-width: 920px;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2.02rem, 4.42vw, 4.81rem);
  color: #211d18;
}

h2 em {
  color: var(--copper);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.intro-card {
  min-height: 250px;
  padding: 28px;
  border-radius: 22px;
  background: var(--glass-light);
}

.intro-card img,
.intro-card .image-shine-wrap {
  width: 100%;
  height: 220px;
  margin: 18px 0 22px;
  border-radius: 24px;
}

.intro-card img {
  object-fit: cover;
}

.intro-card span,
.service-row > span,
.timeline span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(22px, 5vw, 64px);
  padding: clamp(40px, 7vw, 90px) 5vw;
  background: #171513;
  color: #fff;
}

.feature-image {
  min-height: 620px;
  border-radius: 0 44px 44px 0;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.feature-copy h2 {
  color: #fff;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.check-grid span {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.service-list {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.service-row {
  position: relative;
  min-height: 150px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.service-row h3 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.95vw, 2.12rem);
  font-weight: 400;
  line-height: 1;
}

.service-row p {
  max-width: 720px;
  margin-bottom: 0;
}

.service-row img {
  width: 220px;
  height: 118px;
  border-radius: 18px;
  object-fit: cover;
  transform: rotate(-2deg);
  box-shadow: 0 18px 40px rgba(37, 30, 20, 0.18);
}

.service-row:nth-child(even) img {
  transform: rotate(2deg);
}

.service-row > .image-shine-wrap {
  width: 220px;
  height: 118px;
  border-radius: 18px;
  transform: rotate(-2deg);
  box-shadow: 0 18px 40px rgba(37, 30, 20, 0.18);
  transform-origin: center;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.55s ease;
}

.service-row > .image-shine-wrap img {
  border-radius: inherit;
  object-fit: cover;
  transform: none;
  box-shadow: none;
}

.service-row:nth-child(even) > .image-shine-wrap {
  transform: rotate(2deg);
}

.service-row > .image-shine-wrap:hover {
  transform: translateY(-10px) rotate(4deg) scale(1.03);
  box-shadow: 0 30px 70px rgba(37, 30, 20, 0.26);
}

.service-row:nth-child(even) > .image-shine-wrap:hover {
  transform: translateY(-10px) rotate(-4deg) scale(1.03);
}

.portfolio-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, 430px) 1fr;
  gap: 24px;
  align-items: stretch;
  padding: clamp(70px, 8vw, 112px) 5vw;
  background: #171513;
}

.portfolio-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -18% 0;
  background:
    linear-gradient(90deg, rgba(23, 21, 19, 0.88), rgba(23, 21, 19, 0.38)),
    url("assets/luxury-window.jpg") center / cover no-repeat;
  transform: translate3d(0, var(--portfolio-parallax, 0px), 0) scale(1.06);
  will-change: transform;
}

.portfolio-section > * {
  position: relative;
  z-index: 1;
}

.portfolio-copy {
  border-radius: 28px;
  padding: 32px;
}

.portfolio-copy h2,
.portfolio-copy p {
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.portfolio-grid img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.portfolio-grid img:first-child {
  grid-row: span 2;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.timeline article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.7);
}

.timeline h3 {
  margin-top: 58px;
}

.testimonial-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 54px;
  padding: clamp(70px, 8vw, 112px) 5vw;
  background: #fffaf2;
}

.testimonial-image {
  overflow: hidden;
  border-radius: 0 36px 36px 0;
}

.testimonial-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

blockquote {
  margin: 0 0 22px;
  color: #2a251f;
  font-family: var(--serif);
  font-size: clamp(1.56rem, 2.73vw, 3.19rem);
  font-weight: 400;
  line-height: 1.08;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 24px;
  background: rgba(255, 250, 242, 0.68);
}

summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 16px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  padding: clamp(70px, 9vw, 118px) 5vw;
  background:
    linear-gradient(90deg, rgba(246, 242, 235, 0.94), rgba(246, 242, 235, 0.42)),
    url("assets/timber-interior.jpg") center / cover;
}

.contact-card {
  padding: clamp(26px, 4vw, 46px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
}

.contact-card p {
  max-width: 690px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
  border-radius: 28px;
  color: #fff;
  background: rgba(23, 21, 19, 0.76);
}

.contact-info::before {
  content: "";
  width: min(390px, 100%);
  aspect-ratio: 1300 / 327;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #f8df9f, #b88d4e 52%, #fff0bd);
  -webkit-mask: url("assets/logo.png") center / contain no-repeat;
  mask: url("assets/logo.png") center / contain no-repeat;
}

.contact-info img {
  display: none;
}

.contact-info p,
.contact-info span {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  padding: clamp(72px, 8vw, 110px) 5vw 38px;
  color: rgba(255, 255, 255, 0.68);
  background: #080808;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 1.15fr;
  gap: clamp(34px, 4vw, 72px);
  width: min(90vw, calc(100% - 32px));
  margin: 0 auto;
}

.footer-brand-block,
.footer-column {
  min-width: 0;
}

.footer-column {
  padding-left: clamp(26px, 3vw, 48px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand-block h2,
.footer-column h3 {
  margin: 0 0 26px;
  color: #d3b46f;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1;
}

.footer-brand-block h2 {
  color: #f4f0e8;
  font-size: clamp(1.9rem, 2.6vw, 3rem);
}

.footer-brand-block h2 em {
  color: #d3b46f;
}

.footer-column h3 {
  font-size: clamp(1.9rem, 2.2vw, 2.55rem);
}

.footer-brand-block p,
.footer-column a {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(1rem, 1.22vw, 1.22rem);
  line-height: 1.65;
}

.footer-brand-block p {
  max-width: 490px;
  margin: 0;
}

.footer-column a {
  display: block;
  margin-bottom: 18px;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-column a:hover {
  color: #d3b46f;
  transform: translateX(4px);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-mini-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #080808;
  background: linear-gradient(135deg, #f8df9f, #e0c27a);
  font-size: 0.82rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(211, 180, 111, 0.42);
  border-radius: 999px;
  color: #343434;
  background: linear-gradient(135deg, #f8df9f, #e0c27a);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  line-height: 1;
  transform: none;
}

.footer-socials svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

.footer-socials a:hover {
  color: #080808;
  transform: translateY(-4px);
}

.footer-bottom {
  width: min(90vw, calc(100% - 32px));
  margin: clamp(70px, 7vw, 100px) auto 0;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.95rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.62);
}

.whatsapp-widget {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
}

.whatsapp-support {
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  color: #f6dfaa;
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s ease;
}

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

.whatsapp-support-icon {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(164, 224, 217, 0.42);
  border-radius: 50%;
  color: #f6dfaa;
  background: linear-gradient(135deg, rgba(42, 137, 140, 0.96), rgba(32, 116, 119, 0.9));
  box-shadow: 0 18px 42px rgba(0, 61, 68, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.whatsapp-support-icon::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -45% -75%;
  background: linear-gradient(110deg, transparent 0%, transparent 36%, rgba(255, 255, 255, 0.16) 43%, rgba(255, 231, 163, 0.82) 50%, rgba(255, 255, 255, 0.16) 57%, transparent 64%, transparent 100%);
  opacity: 0;
  transform: translateX(-78%) skewX(-18deg);
}

.whatsapp-support:hover .whatsapp-support-icon::after {
  animation: image-gold-shine 0.58s ease-out forwards;
}

.whatsapp-support svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.whatsapp-chat {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(330px, calc(100vw - 32px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, rgba(2, 2, 2, 0.92), rgba(6, 6, 5, 0.82));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.96);
  transform-origin: right bottom;
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
}

.whatsapp-widget.is-open .whatsapp-chat {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-chat-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #f6dfaa;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.whatsapp-chat h3 {
  max-width: 230px;
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
}

.whatsapp-chat p:not(.eyebrow) {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.55;
}

.whatsapp-chat textarea {
  width: 100%;
  resize: vertical;
  min-height: 104px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 13px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  outline: none;
}

.whatsapp-chat textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.whatsapp-chat textarea:focus {
  border-color: rgba(164, 224, 217, 0.5);
}

.whatsapp-chat .button {
  width: 100%;
  color: #f6dfaa;
  background: linear-gradient(135deg, rgba(42, 137, 140, 0.96), rgba(32, 116, 119, 0.9));
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(46px) scale(0.88);
  filter: blur(8px);
  transition:
    opacity 1.05s ease,
    transform 1.05s cubic-bezier(0.16, 0.82, 0.22, 1),
    filter 1.05s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.scroll-reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.image-shine-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
}

.image-shine-wrap::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: -45% -75%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 36%,
    rgba(255, 255, 255, 0.14) 43%,
    rgba(255, 231, 163, 0.82) 50%,
    rgba(255, 255, 255, 0.14) 57%,
    transparent 64%,
    transparent 100%
  );
  opacity: 0;
  transform: translateX(-78%) skewX(-18deg);
  pointer-events: none;
}

.image-shine-wrap:hover::before {
  animation: image-gold-shine 0.72s ease-out forwards;
}

.image-shine-wrap:hover > img {
  filter: brightness(1.06) saturate(1.04);
  transform: scale(1.035);
}

.image-shine-wrap > img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease, filter 0.5s ease;
}

@keyframes image-gold-shine {
  0% {
    opacity: 0;
    transform: translateX(-78%) skewX(-18deg);
  }
  16% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(78%) skewX(-18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 940px) {
  .site-header {
    width: min(90vw, calc(100% - 28px));
    grid-template-columns: 1fr auto;
    border-radius: 28px;
    min-height: 82px;
    padding: 14px 16px 14px 20px;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    width: 52px;
    height: 52px;
  }

  .site-header.is-open .nav-links,
  .site-header.is-open .header-cta {
    display: flex;
  }

  .site-header.is-open {
    align-items: start;
  }

  .site-header.is-open .nav-links {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-header.is-open .nav-links > a,
  .site-header.is-open .submenu-trigger,
  .site-header.is-open .header-cta {
    width: 100%;
    justify-content: flex-start;
    min-height: 68px;
    font-size: 1.18rem;
  }

  .nav-item {
    display: block;
  }

  .submenu {
    position: static;
    width: 100%;
    margin: 6px 0 10px;
    padding: 8px;
    display: grid;
    gap: 6px;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(135deg, rgba(2, 2, 2, 0.88), rgba(6, 6, 5, 0.76));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px) saturate(130%);
  }

  .submenu::before {
    display: none;
  }

  .submenu a {
    width: 100%;
    min-height: 60px;
    display: flex;
    font-size: 1.04rem;
  }

  .site-header.is-open .has-submenu:hover .submenu,
  .site-header.is-open .has-submenu:focus-within .submenu {
    left: auto;
    transform: none;
  }

  .site-header.is-open .header-cta {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .brand img {
    width: 244px;
  }

  .brand {
    width: 244px;
    justify-self: start;
  }

  .hero-content,
  .split-feature,
  .portfolio-section,
  .testimonial-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-content {
    width: min(90vw, calc(100% - 28px));
  }

  .hero-card {
    position: static;
    width: min(100%, 360px);
    max-width: 100%;
    margin-top: -4px;
    padding: 16px 20px;
    border-radius: 18px;
  }

  .intro-grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .feature-image,
  .feature-image img,
  .testimonial-image img {
    min-height: 440px;
    height: 440px;
  }

  .feature-image,
  .testimonial-image {
    border-radius: 28px;
  }
}

@media (max-width: 1180px) {
  .hero-slide {
    width: calc((min(90vw, calc(100vw - 28px)) - 42px) / 4);
  }
}

@media (max-width: 820px) {
  .hero-slide {
    width: calc((min(90vw, calc(100vw - 28px)) - 28px) / 3);
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 64px;
    padding: 10px 12px;
  }

  .brand img {
    width: 168px;
  }

  .brand {
    width: 168px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: auto;
    padding: 92px 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .hero::before {
    display: none;
  }

  .hero-video {
    position: relative;
    inset: auto;
    z-index: 2;
    order: 2;
    width: calc(100% - 36px);
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    border-radius: 18px;
    background: #050505;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  }

  .hero-content {
    order: 3;
    width: calc(100% - 24px);
    margin: 0 auto;
    gap: 12px;
  }

  .hero-copy {
    width: 100%;
    padding: 24px;
  }

  .hero-copy,
  .hero-card,
  .portfolio-copy,
  .contact-card,
  .contact-info {
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(2.65rem, 10.4vw, 3.45rem);
  }

  .hero-copy .eyebrow {
    font-size: 0.5rem;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: clamp(0.76rem, 3vw, 0.9rem);
    line-height: 1.65;
  }

  .hero-actions .button {
    min-height: 52px;
    font-size: 0.82rem;
  }

  .hero-card span {
    font-size: 0.7rem;
  }

  .hero-card strong {
    font-size: 2.15rem;
  }

  .hero-card p {
    font-size: 0.68rem;
  }

  .hero-card {
    width: 100%;
    max-width: none;
    margin-top: 0;
    border-radius: 18px;
    justify-items: start;
  }

  .hero-carousel {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    order: 4;
    width: calc(100% - 24px);
    margin: 4px auto 0;
  }

  .hero-carousel::before,
  .hero-carousel::after {
    width: 48px;
  }

  .hero-carousel-track {
    gap: 10px;
  }

  .hero-slide {
    width: calc((100vw - 34px) / 2);
    height: 98px;
    border-radius: 16px;
  }

  .hero-slide span {
    left: 12px;
    right: 12px;
    bottom: 10px;
    font-size: 0.52rem;
  }

  .welcome-launcher {
    position: relative;
    z-index: 6;
    order: 1;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    min-height: 112px;
    grid-template-columns: 92px 1fr;
    gap: 18px;
    padding: 12px 18px 12px 12px;
    margin: 0 auto;
  }

  .welcome-launcher img {
    width: 92px;
    height: 92px;
  }

  .welcome-launcher small {
    font-size: 0.5rem;
  }

  .welcome-launcher strong {
    font-size: 1.28rem;
  }

  .welcome-launcher em {
    margin-top: 6px;
    font-size: 0.42rem;
  }

  .welcome-play {
    left: 74px;
    bottom: 17px;
    width: 38px;
    height: 38px;
  }

  .welcome-video-popover {
    left: 50%;
    right: auto;
    bottom: auto;
    top: 50%;
    width: calc(100vw - 28px);
    max-width: 430px;
    transform: translate(-50%, -46%) scale(0.92);
    transform-origin: center;
  }

  .welcome-video-popover.is-open {
    transform: translate(-50%, -50%) scale(1);
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-support-icon {
    width: 54px;
    height: 54px;
  }

  .whatsapp-chat {
    right: 0;
    bottom: 68px;
    width: calc(100vw - 28px);
    padding: 20px;
  }

  h2 {
    font-size: clamp(1.86rem, 8.45vw, 2.8rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    width: calc(100% - 24px);
  }

  .intro-grid,
  .timeline,
  .check-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

  .service-row img {
    grid-column: 1 / -1;
    width: 100%;
    height: 210px;
    transform: none;
  }

  .service-row > .image-shine-wrap {
    grid-column: 1 / -1;
    width: 100%;
    height: 210px;
    transform: none;
  }

  .service-row:nth-child(even) img {
    transform: none;
  }

  .service-row:nth-child(even) > .image-shine-wrap {
    transform: none;
  }

  .portfolio-grid {
    grid-template-rows: none;
  }

  .portfolio-grid img,
  .portfolio-grid img:first-child {
    grid-row: auto;
    height: 320px;
  }

  .testimonial-band {
    gap: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-column {
    padding-left: 0;
    padding-top: 28px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-bottom {
    flex-direction: column;
  }
}
