@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("/fonts/outfit-normal-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-normal-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
}

:root {
  --color-purple: #4e2948;
  --color-purple-deep: #3a1836;
  --color-purple-mid: #5c3254;
  --color-purple-card: #542248;
  --color-gold: #d4b45a;
  --color-gold-bright: #eddc8a;
  --color-gold-ink: #8a6a24;
  --color-surface: #ffffff;
  --color-paper: #f5f3f6;
  --color-ink: #2a1626;
  --color-muted: #6b5566;
  --color-line: #ded7df;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
}

  button:not(:disabled),
  [role="button"]:not(:disabled) {
    cursor: pointer;
  }
  html {
    scroll-behavior: smooth;
    color-scheme: light;
  }
  body {
    font-family: var(--font-sans);
    background: var(--color-paper);
    color: var(--color-ink);
    line-height: 1.65;
  }
  img {
    max-width: 100%;
    display: block;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid #f4b400;
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 120;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--color-purple-deep);
  color: #fff;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button {
  font: inherit;
  color: inherit;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.eyebrow {
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--color-gold-ink);
  font-weight: 600;
}
h2 {
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1.08;
  color: var(--color-purple);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgb(255 255 255 / 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-line);
}
.site-header.scrolled {
  box-shadow: 0 8px 24px rgb(58 24 54 / 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img.logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 2px var(--color-gold),
    0 0 14px rgb(212 180 90 / 0.32);
  transition:
    width 0.25s,
    height 0.25s;
}
.site-header.scrolled .brand img.logo {
  width: 48px;
  height: 48px;
}
.brand strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-purple);
}
.brand small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-ink);
}
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  font-size: 0.9rem;
}
.nav-links a {
  color: var(--color-purple-mid);
  position: relative;
}
.nav-links a:hover {
  color: var(--color-purple);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.25s;
}
.nav-links a:hover::after {
  width: 100%;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 44px;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgb(78 41 72 / 0.2);
}
.btn:active {
  transform: translateY(0) scale(0.97);
}
.btn-olive {
  background: var(--color-purple);
  color: var(--color-gold);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-gold) 35%, transparent);
}
.btn-olive::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -40%;
  width: 40%;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(237 220 138 / 0),
    rgb(237 220 138 / 0.45),
    rgb(237 220 138 / 0),
    transparent
  );
  transform: skewX(-18deg) translateX(-120%);
  pointer-events: none;
}
.btn-olive:hover::after {
  animation: goldShine 1.1s ease;
}
.btn-olive:hover {
  background: var(--color-purple-mid);
  color: #e4c86f;
  box-shadow:
    0 8px 22px rgb(212 180 90 / 0.28),
    0 0 0 1px var(--color-gold);
}
@keyframes goldShine {
  to {
    transform: skewX(-18deg) translateX(420%);
  }
}
.btn-ig {
  border: 1.5px solid var(--color-gold);
  color: var(--color-purple);
  background: var(--color-paper);
  min-width: 148px;
}
.btn-line {
  border: 1px solid var(--color-purple);
  color: var(--color-purple);
}
.btn-ig:hover,
.btn-line:hover {
  background: var(--color-purple);
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.btn-wa {
  background: #1f6b46;
  color: #f3fff8;
}
.btn-wa:hover {
  background: #184f35;
  color: #fff;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(86vh, 780px);
  background: var(--color-paper);
}
.hero-copy {
  padding: 68px 7vw 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.94;
  color: var(--color-purple);
  margin: 14px 0 18px;
}
.hero-copy p {
  max-width: 38ch;
  color: var(--color-muted);
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-visual {
  position: relative;
  overflow: hidden;
  background: #c9c4cb;
  aspect-ratio: 16/10;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zoom-hit {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  margin: 0;
  background: none;
  cursor: zoom-in;
  position: relative;
}
.hero-visual .zoom-hit {
  position: absolute;
  inset: 0;
}
.chip {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgb(255 255 255 / 0.92);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.84rem;
  pointer-events: none;
  color: var(--color-purple);
}
section.block {
  padding: 84px 0;
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}
.split .zoom-hit {
  height: 500px;
  border-radius: 6px;
  overflow: hidden;
}
.split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.services {
  background: var(--color-purple-deep);
  color: #fff;
}
.services h2,
.services .eyebrow {
  color: var(--color-gold-bright);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.svc-card {
  background: var(--color-purple-card);
  padding: 26px 24px;
  border-radius: 8px;
  border: 1px solid #6b3a5c;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgb(0 0 0 / 0.22);
}
.svc-card .num {
  font-family: var(--font-serif);
  color: var(--color-gold-bright);
  font-size: 1.35rem;
}
.svc-card h3 {
  margin: 8px 0;
  color: #fff;
  font-size: 1.4rem;
}
.svc-card p {
  color: #ded4dc;
  font-size: 0.94rem;
}
.mosaic {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: 250px;
  gap: 12px;
  margin-top: 32px;
}
.mosaic figure {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin: 0;
  background: #d6d2d7;
}
.mosaic figure:first-child {
  grid-row: span 2;
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mosaic figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px;
  background: linear-gradient(transparent, rgb(58 24 54 / 0.78));
  color: #fff;
  font-size: 0.9rem;
  pointer-events: none;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.video-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #1a0c18;
}
.video-grid .zoom-hit {
  display: grid;
  place-items: center;
  background: #1a0c18;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  height: auto;
}
.video-grid .is-wide .zoom-hit {
  aspect-ratio: 16 / 9;
}
.video-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #1a0c18;
}
.play-badge {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgb(78 41 72 / 0.88);
  color: var(--color-gold);
  font-size: 1.15rem;
  letter-spacing: 0;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.35);
  pointer-events: none;
}
.video-grid figcaption {
  position: static;
  padding: 10px 4px 0;
  background: none;
  color: var(--color-muted);
  font-size: 0.86rem;
  pointer-events: none;
}
.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px 16px;
  background: rgb(26 12 24 / 0.92);
  cursor: zoom-out;
  animation: lightbox-fade 0.28s ease;
}
.media-lightbox img,
.media-lightbox video {
  max-width: min(96vw, 1600px);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #11070f;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgb(0 0 0 / 0.5);
  transform-origin: center center;
  animation: media-zoom-in 0.48s cubic-bezier(0.16, 1, 0.3, 1);
}
.media-lightbox.is-closing {
  animation: lightbox-fade 0.26s ease reverse forwards;
}
.media-lightbox.is-closing img,
.media-lightbox.is-closing video {
  animation: media-zoom-out 0.26s ease forwards;
}
@keyframes lightbox-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes media-zoom-in {
  from {
    opacity: 0;
    transform: scale(0.62);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes media-zoom-out {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.72);
  }
}
.media-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.16);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.step {
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
}
.step strong {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-ink);
  margin-bottom: 8px;
}
.ig-card {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  overflow: hidden;
}
.ig-profile {
  padding: 22px 22px 8px;
}
.ig-profile h3 {
  font-size: 1.8rem;
  color: var(--color-purple);
  margin: 6px 0 10px;
}
.ig-profile ul {
  list-style: none;
}
.ig-profile li {
  padding: 10px 0;
  border-bottom: 1px solid #e5e0e6;
}
.ig-frame {
  background: #fff;
  height: 540px;
  overflow: hidden;
}
.ig-frame iframe {
  width: 100%;
  height: 540px;
  border: 0;
  display: block;
  filter: none;
}
.external-embed {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
}
.embed-gate {
  max-width: 460px;
  padding: 32px 26px;
  text-align: center;
}
.embed-gate strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-purple);
  font-family: var(--font-serif);
  font-size: 1.5rem;
}
.embed-gate p {
  margin: 0 0 18px;
  color: var(--color-muted);
}
.embed-gate .btn {
  margin-inline: auto;
}
.external-embed.is-loaded {
  border: 0;
}
.ig-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 22px 20px;
}
.g-score {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--color-purple);
}
.g-stars {
  color: #f4b400;
  letter-spacing: 2px;
  font-size: 1.15rem;
}
.g-meta {
  color: var(--color-muted);
  font-size: 0.9rem;
}
.review-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgb(58 24 54 / 0.1);
}
.review-card small {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-ink);
  font-size: 0.72rem;
}
.review-card .btn {
  margin-top: 16px;
}
.review-quote {
  margin: 10px 0;
  color: var(--color-purple);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.4;
  font-style: italic;
}
.carousel {
  position: relative;
  margin-top: 8px;
  perspective: 1800px;
  min-height: 280px;
}
.carousel-track {
  position: relative;
  min-height: 280px;
  transform-style: preserve-3d;
}
.carousel-track .review-card {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgb(58 24 54 / 0.07), transparent 18px), #fff;
}
.carousel-track .review-card.is-current {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}
.carousel-track .review-card.is-out {
  opacity: 1;
  z-index: 4;
  animation: leafOut 1.25s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.carousel-track .review-card.is-in {
  opacity: 1;
  z-index: 2;
  animation: leafIn 1.25s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@keyframes leafOut {
  0% {
    transform: rotateY(0) scaleX(1);
  }
  35% {
    transform: rotateY(-42deg) scaleX(0.96);
  }
  100% {
    transform: rotateY(-178deg) scaleX(0.88);
    opacity: 0;
  }
}
@keyframes leafIn {
  0% {
    transform: rotateY(16deg) translateX(18px);
    opacity: 0.25;
  }
  100% {
    transform: rotateY(0) translateX(0);
    opacity: 1;
  }
}
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.carousel-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  background: var(--color-paper);
  color: var(--color-purple);
  font-size: 1.1rem;
}
.carousel-dots {
  display: flex;
  gap: 6px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--color-line);
  display: block;
  cursor: pointer;
}
.carousel-dots button.on {
  background: var(--color-gold);
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.panel {
  background: #fff;
  border: 1px solid var(--color-line);
  padding: 32px 28px;
  border-radius: 8px;
}
.panel li {
  list-style: none;
  padding: 12px 0;
  border-bottom: 1px solid #e5e0e6;
}
.panel small {
  display: block;
  color: var(--color-gold-ink);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(0.15) contrast(1.05);
}
.map-shell {
  min-height: 360px;
  border-radius: 8px;
}
.map-shell .map-frame {
  height: 100%;
}
.site-footer {
  background: var(--color-purple-deep);
  color: #e4dbe3;
  padding: 28px 0;
  font-size: 0.88rem;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.foot-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.foot-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page {
  min-height: calc(100vh - 170px);
  padding: 72px 0 88px;
}
.legal-card {
  width: min(820px, calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: var(--color-surface);
  box-shadow: 0 18px 48px rgb(58 24 54 / 0.08);
}
.legal-card h1 {
  margin: 8px 0 16px;
  color: var(--color-purple);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
}
.legal-card h2 {
  margin: 32px 0 10px;
  font-size: 1.7rem;
}
.legal-card p,
.legal-card li {
  color: var(--color-muted);
}
.legal-card a {
  color: var(--color-purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1f6b46;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgb(31 107 70 / 0.35);
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float svg {
  width: 26px;
  height: 26px;
}
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  position: relative;
  z-index: 60;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-purple);
  border-radius: 2px;
  position: absolute;
  left: 12px;
  transition: 0.25s;
}
.menu-btn span {
  top: 21px;
}
.menu-btn span:before {
  content: "";
  top: -6px;
}
.menu-btn span:after {
  content: "";
  top: 6px;
}
.menu-btn.open span {
  background: transparent;
}
.menu-btn.open span:before {
  top: 0;
  transform: rotate(45deg);
}
.menu-btn.open span:after {
  top: 0;
  transform: rotate(-45deg);
}
.drawer {
  display: none;
}
@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }
  .nav-links,
  .nav > .btn-olive {
    display: none;
  }
  .drawer {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: fixed;
    inset: 0 0 auto 0;
    padding: 92px 28px 28px;
    background: rgb(255 255 255 / 0.98);
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    z-index: 45;
    border-bottom: 1px solid var(--color-line);
  }
  .drawer.open {
    transform: translateY(0);
  }
  .drawer a {
    font-size: 1.2rem;
    color: var(--color-purple);
    font-family: var(--font-serif);
  }
  .drawer a.btn {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-gold);
    align-self: flex-start;
    min-width: 160px;
  }
  .hero,
  .split,
  .grid-3,
  .steps,
  .contact {
    grid-template-columns: 1fr;
  }
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }
  .mosaic figure:first-child {
    grid-column: 1 / -1;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .split .zoom-hit {
    height: 280px;
  }
  .hero-copy {
    padding: 44px 20px 36px;
  }
  .hero-visual {
    aspect-ratio: 16/9;
  }
  section.block {
    padding: 60px 0;
  }
  .ig-frame,
  .ig-frame iframe {
    height: 480px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.media-lightbox[hidden] {
  display: none !important;
}
.media-lightbox img[hidden],
.media-lightbox video[hidden] {
  display: none !important;
}
