:root {
  --black: #050505;
  --black-deep: #000000;
  --charcoal: #0e0e0e;
  --gold: #c9a24d;
  --gold-bright: #e0c06a;
  --gold-dim: #8a7035;
  --silver: #e8e8e8;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(201, 162, 77, 0.4);
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", sans-serif;
  --nav-h: 7.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) #0a0a0a;
}

/* Scrollbar — brand style */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-left: 1px solid rgba(201, 162, 77, 0.25);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dim), var(--gold), var(--gold-bright));
  border: 2px solid #0a0a0a;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-bright), var(--gold));
}

::-webkit-scrollbar-corner {
  background: #0a0a0a;
}

body {
  font-family: var(--font-sans);
  background: var(--black-deep);
  color: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

/* Custom cursor — desktop only */
.cursor {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor * {
    cursor: none !important;
  }

  .cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .cursor.is-visible {
    opacity: 1;
  }

  .cursor-ring,
  .cursor-dot {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: transform, width, height, background, border-color;
  }

  .cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201, 162, 77, 0.85);
    background: transparent;
    transition:
      width 0.25s ease,
      height 0.25s ease,
      background 0.25s ease,
      border-color 0.25s ease,
      opacity 0.25s ease;
  }

  .cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(201, 162, 77, 0.45);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  }

  .cursor.is-hover .cursor-ring {
    width: 52px;
    height: 52px;
    border-color: var(--gold-bright);
    background: rgba(201, 162, 77, 0.08);
  }

  .cursor.is-hover .cursor-dot {
    width: 3px;
    height: 3px;
    background: var(--gold-bright);
  }

  .cursor.is-click .cursor-ring {
    width: 28px;
    height: 28px;
    background: rgba(201, 162, 77, 0.18);
  }

  .cursor.is-zoom .cursor-ring {
    width: 48px;
    height: 48px;
    border-style: dashed;
    border-color: var(--gold);
  }

  .cursor.is-hidden {
    opacity: 0;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
}

/* Atmosphere */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% -8%, rgba(201, 162, 77, 0.11), transparent 55%),
    radial-gradient(ellipse 35% 28% at 100% 100%, rgba(201, 162, 77, 0.07), transparent 50%),
    linear-gradient(160deg, #000 0%, #090909 50%, #101010 100%);
}

.gold-corner {
  position: fixed;
  right: 0;
  bottom: 0;
  width: min(40vw, 360px);
  height: min(40vw, 360px);
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    135deg,
    transparent 48%,
    rgba(201, 162, 77, 0.08) 48%,
    rgba(201, 162, 77, 0.22) 65%,
    rgba(224, 192, 106, 0.32) 100%
  );
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.8;
}

.frame-left,
.frame-right {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 14px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    var(--gold-dim),
    var(--gold) 40%,
    var(--gold-bright) 50%,
    var(--gold) 60%,
    var(--gold-dim)
  );
  opacity: 0.45;
}

.frame-left {
  left: 0;
  clip-path: polygon(0 0, 100% 3%, 100% 97%, 0 100%);
}

.frame-right {
  right: 0;
  clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 97%);
}

.back-to-top {
  position: fixed;
  right: 0.85rem;
  bottom: 26%;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, color 0.2s ease;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--gold-bright);
  outline: none;
}

.back-to-top-line {
  display: block;
  width: 1px;
  height: 2.75rem;
  background: linear-gradient(180deg, transparent, currentColor);
}

.back-to-top > span:last-child {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.page {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-bright));
  color: var(--black-deep);
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
}

.btn-ghost:hover {
  background: rgba(201, 162, 77, 0.12);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.68rem;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: var(--line);
}

.nav-inner {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.nav-brand img {
  height: 6.4rem;
  width: auto;
  max-width: 7.5rem;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background: rgba(0, 0, 0, 0.62);
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile[hidden] {
  display: none !important;
}

.nav-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 86vw);
  max-width: 320px;
  height: 100%;
  height: 100svh;
  background: #0b0b0b;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 0.9, 0.28, 1);
  border-left: 1px solid var(--line);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
}

.nav-mobile.open .nav-mobile-panel {
  transform: translateX(0);
}

.nav-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(201, 162, 77, 0.22);
  min-height: 4.5rem;
  flex-shrink: 0;
}

.nav-mobile-top .nav-brand img {
  height: 3.6rem;
  width: auto;
  max-width: 4.8rem;
}

.nav-mobile-close {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.85rem;
  line-height: 1;
  border: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.nav-mobile-close:hover {
  color: var(--gold);
  border-color: var(--line);
}

.nav-mobile-links {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0;
  min-height: 0;
}

.nav-mobile-links a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-mobile-links a:hover,
.nav-mobile-links a:focus-visible {
  color: var(--gold);
  background: rgba(201, 162, 77, 0.06);
}

.nav-mobile-footer {
  padding: 1rem 1.15rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(201, 162, 77, 0.22);
  display: grid;
  gap: 1rem;
  flex-shrink: 0;
  margin-top: auto;
}

.nav-mobile-footer .btn {
  width: 100%;
}

.nav-mobile-social {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.nav-mobile-social a {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(201, 162, 77, 0.45);
  color: var(--gold);
  display: grid;
  place-items: center;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-mobile-social a:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
  background: rgba(201, 162, 77, 0.1);
}

.nav-mobile-social svg {
  width: 1.05rem;
  height: 1.05rem;
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 900px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }

  .nav-toggle,
  .nav-mobile {
    display: none !important;
  }

  .nav-brand img {
    height: 6.8rem;
    max-width: 8.2rem;
  }
}

/* Hero */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2.5rem) 1.25rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero.is-content-left {
  justify-content: flex-start;
  text-align: left;
  padding-left: clamp(1.25rem, 6vw, 4.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

.hero.is-content-center {
  justify-content: center;
  text-align: center;
}

.hero.is-content-right {
  justify-content: flex-end;
  text-align: right;
  padding-right: clamp(1.25rem, 6vw, 4.5rem);
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 8s ease forwards;
}

.hero-slide.is-active img {
  animation: heroZoom 8s ease forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.78) 45%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(115deg, transparent 0%, transparent 55%, rgba(201, 162, 77, 0.12) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(44rem, 100%);
  max-width: 44rem;
  animation: fadeRise 1s ease-out both;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.35rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.hero-dots button {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dots button[aria-selected="true"] {
  background: var(--gold);
  transform: scale(1.2);
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero.is-content-left .eyebrow {
  justify-content: flex-start;
}

.hero.is-content-center .eyebrow {
  justify-content: center;
}

.hero.is-content-right .eyebrow {
  justify-content: flex-end;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 0.9rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.hero h1 .gold {
  color: var(--gold);
}

.hero-lede {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  font-size: clamp(0.95rem, 2.3vw, 1.08rem);
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero.is-content-left .hero-lede {
  margin-left: 0;
  margin-right: auto;
}

.hero.is-content-right .hero-lede {
  margin-left: auto;
  margin-right: 0;
  margin-inline-start: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.hero.is-content-left .hero-actions {
  justify-content: flex-start;
}

.hero.is-content-right .hero-actions {
  justify-content: flex-end;
}

.hero-tagline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.1rem;
  z-index: 2;
  margin: 0;
  padding: 0 1.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  pointer-events: none;
}

/* Tagline del sitio: siempre centrado (no sigue la alineación del slider) */
.hero .hero-tagline {
  text-align: center;
  width: auto;
}

/* Sections shared */
.section {
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
  max-width: 36rem;
  margin-inline: auto;
}

.section-head h2 {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.section-head h2::before,
.section-head h2::after {
  content: "";
  width: clamp(1.75rem, 7vw, 4rem);
  height: 1px;
  background: var(--gold);
  opacity: 0.65;
}

.section-head .title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-head p {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.98rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.about-copy .section-head {
  text-align: left;
  margin-inline: 0;
  max-width: none;
}

.about-copy .section-head h2 {
  justify-content: flex-start;
}

.about-copy .section-head h2::before {
  display: none;
}

.about-copy.is-align-center {
  text-align: center;
}

.about-copy.is-align-center .section-head {
  text-align: center;
}

.about-copy.is-align-center .section-head h2 {
  justify-content: center;
}

.about-copy.is-align-center .section-head h2::before {
  display: inline-block;
}

.about-copy.is-align-right {
  text-align: right;
}

.about-copy.is-align-right .section-head {
  text-align: right;
}

.about-copy.is-align-right .section-head h2 {
  justify-content: flex-end;
}

.about-copy.is-align-right .section-head h2::before {
  display: none;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.about-copy.is-align-left .about-actions {
  justify-content: flex-start;
}

.about-copy.is-align-center .about-actions {
  justify-content: center;
}

.about-copy.is-align-right .about-actions {
  justify-content: flex-end;
}

.btn-youtube {
  border-color: rgba(201, 162, 77, 0.75);
}

.btn-youtube:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 77, 0.12);
}

.about-copy p {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1rem;
}

.about-body {
  margin-bottom: 0.25rem;
}

.about-incluye {
  list-style: none;
  margin: 1.35rem 0 0.35rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.about-incluye-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-copy.is-align-center .about-incluye-item {
  justify-content: center;
  text-align: center;
}

.about-copy.is-align-right .about-incluye-item {
  justify-content: flex-end;
  text-align: right;
  flex-direction: row-reverse;
}

.about-incluye-icon {
  flex: 0 0 auto;
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  margin-top: 0.1rem;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 77, 0.45);
  background: rgba(201, 162, 77, 0.08);
}

.about-incluye-icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.about-incluye-text {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.about-incluye-text strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.25;
}

.about-incluye-text span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.45;
}

.about-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin: 1.5rem 0 0.4rem;
}

.about-role {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.about-role::before,
.about-role::after {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: var(--gold);
}

.about-panel {
  border: 1px solid var(--line);
  padding: 2rem 1.5rem;
  background: linear-gradient(160deg, rgba(201, 162, 77, 0.07), transparent 55%);
  position: relative;
}

.about-panel::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  border: 1px solid rgba(201, 162, 77, 0.18);
  pointer-events: none;
}

.about-stats {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--gold-bright);
  margin-bottom: 0.25rem;
}

.stat span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (min-width: 500px) {
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }
}

.about-photos {
  position: relative;
  min-height: 22rem;
  display: grid;
  gap: 1rem;
}

.about-photo {
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #111;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) contrast(1.05);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.about-photo:hover img {
  transform: scale(1.04);
  filter: brightness(0.95) contrast(1.05);
}

.about-photo-main {
  aspect-ratio: 4 / 5;
  max-height: 28rem;
}

.about-photo-accent {
  aspect-ratio: 16 / 11;
}

@media (min-width: 800px) {
  .about-photos {
    min-height: 28rem;
  }

  .about-photo-main {
    width: 78%;
    justify-self: end;
    aspect-ratio: 3 / 4;
    max-height: none;
  }

  .about-photo-accent {
    position: absolute;
    left: 0;
    bottom: 1.25rem;
    width: 58%;
    aspect-ratio: 4 / 3;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
    z-index: 1;
  }
}

/* Services */
.services {
  background: linear-gradient(180deg, transparent, rgba(201, 162, 77, 0.04), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 0.85rem;
}

.service {
  display: grid;
  gap: 0;
  align-content: start;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.service:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.service:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

.service-more {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.service-photo {
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border: none;
  border-bottom: 1px solid rgba(201, 162, 77, 0.25);
  background: #111;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.86) contrast(1.05);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.service:hover .service-photo img {
  transform: scale(1.04);
  filter: brightness(0.94) contrast(1.05);
}

.service-body {
  padding: 0.85rem 0.8rem 1rem;
  border-bottom: none;
  background: transparent;
}

.service h3 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.service p {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.45;
}

@media (min-width: 700px) {
  .services-grid {
    gap: 1.75rem 1.5rem;
  }

  .service h3 {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .service p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .service-body {
    padding: 1rem 1rem 1.15rem;
  }
}

@media (min-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem 1.75rem;
  }

  .service {
    grid-column: span 2;
  }

  .service h3 {
    font-size: 0.95rem;
  }

  .service p {
    font-size: 0.9rem;
  }

  .service:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .service:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

/* Gallery */
.gallery {
  background: linear-gradient(180deg, transparent, rgba(201, 162, 77, 0.035), transparent);
}

.gallery-filters {
  margin-bottom: 1.5rem;
}

.filter-group {
  display: grid;
  gap: 0.65rem;
}

.filter-label {
  display: none;
}

.filter-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  padding: 0.6rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  background: transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.filter-btn:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
  background: rgba(201, 162, 77, 0.08);
}

.filter-btn.is-active {
  color: var(--black-deep);
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-bright));
  border-color: transparent;
}

.gallery-count {
  display: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.gallery-item {
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  cursor: zoom-in;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: var(--gold);
  transform: translateY(-3px);
  outline: none;
}

.gallery-item .gallery-thumb {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #111;
}

.gallery-zoom-hint {
  position: absolute;
  inset: auto 0.65rem 0.65rem auto;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 77, 0.55);
  background: rgba(0, 0, 0, 0.55);
  color: var(--gold);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.gallery-zoom-hint svg {
  width: 1.05rem;
  height: 1.05rem;
}

.gallery-item:hover .gallery-zoom-hint,
.gallery-item:focus-visible .gallery-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) contrast(1.05);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.98) contrast(1.05);
}

.gallery-item figcaption {
  position: static;
  padding: 0.7rem 0.65rem 0.85rem;
  background: transparent;
}

.gallery-item figcaption span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.gallery-item figcaption strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.gallery-item figcaption p {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.4;
}

.gallery-empty-msg {
  text-align: center;
  color: var(--muted);
  padding: 2rem 1rem;
  border: 1px solid var(--line);
}

.gallery-empty-msg[hidden] {
  display: none;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.gallery-actions .btn[hidden] {
  display: none;
}

.gallery-actions .btn {
  min-width: 11rem;
}

.lightbox {
  z-index: 90;
  padding: 0.75rem;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: min(92svh, 900px);
  display: grid;
  place-items: center;
  animation: fadeRise 0.35s ease both;
}

.lightbox-figure {
  margin: 0;
  width: 100%;
  border: 1px solid var(--line);
  background: #050505;
  overflow: hidden;
}

.lightbox-figure img {
  display: block;
  width: 100%;
  max-height: min(78svh, 760px);
  object-fit: contain;
  background: #000;
}

.lightbox-figure figcaption {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid var(--line);
}

.lightbox-figure figcaption span {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lightbox-figure figcaption strong {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-weight: 500;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 77, 0.55);
  background: rgba(0, 0, 0, 0.72);
  color: var(--gold);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(201, 162, 77, 0.16);
  border-color: var(--gold);
}

.lightbox-nav svg {
  width: 1.15rem;
  height: 1.15rem;
}

.lightbox-prev {
  left: 0.55rem;
}

.lightbox-next {
  right: 0.55rem;
}

.lightbox .modal-close {
  top: 0.45rem;
  right: 0.55rem;
  background: rgba(0, 0, 0, 0.65);
}

.video-modal {
  z-index: 96;
  padding: clamp(0.75rem, 3vw, 1.5rem);
}

.video-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 1.5rem), calc((100svh - 3rem) * 16 / 9));
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  max-height: none;
  animation: fadeRise 0.35s ease both;
}

.video-close {
  position: absolute;
  top: -0.55rem;
  right: -0.55rem;
  z-index: 3;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 77, 0.65);
  border-radius: 0;
  background: #0a0a0a;
  color: var(--gold);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.video-close:hover {
  background: rgba(201, 162, 77, 0.16);
  border-color: var(--gold);
  color: #fff;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 77, 0.45);
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  border: 0;
  display: block;
  background: #000;
}

@media (max-width: 640px) {
  .video-close {
    top: 0.4rem;
    right: 0.4rem;
    background: rgba(0, 0, 0, 0.72);
  }
}

.newsletter-modal {
  z-index: 95;
}

.newsletter-dialog {
  width: min(420px, 100%);
  overflow: hidden;
}

.newsletter-form {
  padding: 1.85rem 1.45rem 1.55rem;
  display: grid;
  gap: 0.85rem;
  background:
    radial-gradient(ellipse at top right, rgba(201, 162, 77, 0.14), transparent 55%),
    #0a0a0a;
}

.newsletter-eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-right: 2rem;
}

.newsletter-form h3 {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 3.5vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
  padding-right: 1.5rem;
}

.newsletter-copy {
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.newsletter-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.newsletter-form input {
  width: 100%;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--white);
  font: inherit;
  font-size: 0.92rem;
  letter-spacing: normal;
  text-transform: none;
  outline: none;
  transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.15rem;
}

.newsletter-form .form-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Honeypot anti-spam (no visible para humanos) */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.newsletter-band {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

.newsletter-banner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.75rem 2.5rem;
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.25rem);
  border: 1px solid rgba(201, 162, 77, 0.28);
  background:
    radial-gradient(ellipse at left center, rgba(201, 162, 77, 0.08), transparent 50%),
    linear-gradient(135deg, #141414 0%, #0c0c0c 100%);
}

.newsletter-banner-copy h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.newsletter-banner-copy h2 span {
  color: var(--gold);
}

.newsletter-banner-form {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.newsletter-banner-field {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  padding: 0.3rem 0.3rem 0.3rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
}

.newsletter-banner-field input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 0.92rem;
  outline: none;
  padding: 0.55rem 0.35rem;
}

.newsletter-banner-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding: 0.7rem 0.85rem 0.7rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-bright));
  color: var(--black-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.newsletter-banner-btn:hover {
  filter: brightness(1.06);
}

.newsletter-banner-btn:active {
  transform: scale(0.98);
}

.newsletter-banner-btn-icon {
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
}

.newsletter-banner-btn-icon svg {
  width: 0.75rem;
  height: 0.75rem;
}

.newsletter-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.35;
  cursor: pointer;
}

.newsletter-terms input {
  margin-top: 0.2rem;
  accent-color: var(--gold);
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}

.newsletter-terms strong {
  color: #fff;
  font-weight: 600;
}

.newsletter-banner-form .form-note {
  margin: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

.newsletter-banner-form .form-note[hidden] {
  display: none;
}

@media (max-width: 800px) {
  .newsletter-banner {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    padding: 1.35rem 1.1rem;
  }

  .newsletter-banner-field {
    flex-wrap: wrap;
    border-radius: 14px;
    padding: 0.55rem;
  }

  .newsletter-banner-field input {
    flex: 1 1 100%;
    padding: 0.55rem 0.65rem;
  }

  .newsletter-banner-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .lightbox-nav {
    top: auto;
    bottom: 4.6rem;
    transform: none;
    width: 2.3rem;
    height: 2.3rem;
  }

  .lightbox-prev {
    left: 0.75rem;
  }

  .lightbox-next {
    right: 0.75rem;
  }

  .lightbox-figure img {
    max-height: min(62svh, 520px);
  }

  .newsletter-form {
    padding: 1.55rem 1.15rem 1.35rem;
  }
}

@media (min-width: 600px) {
  .gallery-grid {
    gap: 1.15rem;
  }

  .gallery-item figcaption {
    padding: 1rem 1rem 1.15rem;
  }

  .gallery-item figcaption span {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .gallery-item figcaption strong {
    font-size: 0.95rem;
  }

  .gallery-item figcaption p {
    font-size: 0.84rem;
  }
}

@media (min-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

/* Process */
.process-steps {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.step {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.step-num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.step p {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.92rem;
}

/* Comments */
.comments {
  background: linear-gradient(180deg, transparent, rgba(201, 162, 77, 0.03), transparent);
}

.comments-toolbar {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.comments-carousel {
  position: relative;
  padding: 0 0.25rem 2.5rem;
}

.comments-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.comments-track {
  display: flex;
  gap: 1.15rem;
  transition: transform 0.45s cubic-bezier(0.22, 0.9, 0.28, 1);
  will-change: transform;
  width: 100%;
}

.comment-card {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem 1.25rem 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.comment-stars {
  color: var(--gold);
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  line-height: 1;
}

.comment-text {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.comment-footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 162, 77, 0.28);
}

.comment-avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(201, 162, 77, 0.1);
  flex-shrink: 0;
}

.comment-person {
  min-width: 0;
}

.comment-author {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}

.comment-role {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
}

.comments-nav {
  display: none;
}

.comments-prev { left: 0; }
.comments-next { right: 0; }

.comments-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.comments-dots button {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.comments-dots button[aria-selected="true"] {
  background: var(--gold);
  transform: scale(1.15);
}

@media (min-width: 700px) {
  .comment-card {
    flex-basis: calc((100% - 1.15rem) / 2);
  }

  .comments-carousel {
    padding-inline: 0.5rem;
  }
}

@media (min-width: 1000px) {
  .comment-card {
    flex-basis: calc((100% - 2.3rem) / 3);
    padding: 1.5rem 1.35rem 1.3rem;
  }

  .comments-carousel {
    padding-inline: 2.5rem;
  }

  .comments-nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.4rem;
    height: 2.4rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    background: rgba(0, 0, 0, 0.65);
    color: var(--gold);
    transition: background 0.2s ease, color 0.2s ease;
  }

  .comments-nav:hover {
    background: var(--gold);
    color: var(--black-deep);
  }

  .comments-nav svg {
    width: 1.1rem;
    height: 1.1rem;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  max-height: min(90svh, 720px);
  overflow: auto;
  border: 1px solid var(--line);
  background: #0a0a0a;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  animation: fadeRise 0.35s ease both;
}

.modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  z-index: 2;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  border-color: var(--line);
  color: var(--gold-bright);
}

.comment-form {
  border: none;
  padding: 1.6rem 1.35rem 1.5rem;
  background: transparent;
  display: grid;
  gap: 0.9rem;
}

.comment-form-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
  padding-right: 2rem;
}

.comment-form label,
.comment-form .rating-field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.comment-form input,
.comment-form textarea,
.comment-form select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--white);
  font: inherit;
  font-size: 0.92rem;
  letter-spacing: normal;
  text-transform: none;
  outline: none;
  transition: border-color 0.2s ease;
}

.comment-form input:focus,
.comment-form textarea:focus,
.comment-form select:focus {
  border-color: var(--gold);
}

.comment-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.comment-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.rating-field {
  border: none;
  padding: 0;
  margin: 0;
}

.rating-field legend {
  padding: 0;
  margin-bottom: 0.45rem;
}

.rating-stars {
  display: flex;
  flex-direction: row;
  gap: 0.15rem;
}

.rating-stars label {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0.15rem;
  border: none;
  background: none;
  cursor: pointer;
  letter-spacing: normal;
  text-transform: none;
}

.rating-stars input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.rating-stars .star {
  font-size: 1.75rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.22);
  transition: color 0.15s ease, transform 0.15s ease;
}

.rating-stars label:hover .star,
.rating-stars label:focus-within .star {
  transform: scale(1.12);
}

.rating-stars:has(input[value="1"]:checked) label:nth-child(-n + 1) .star,
.rating-stars:has(input[value="2"]:checked) label:nth-child(-n + 2) .star,
.rating-stars:has(input[value="3"]:checked) label:nth-child(-n + 3) .star,
.rating-stars:has(input[value="4"]:checked) label:nth-child(-n + 4) .star,
.rating-stars:has(input[value="5"]:checked) label:nth-child(-n + 5) .star {
  color: var(--gold);
}

.rating-stars:hover label .star {
  color: rgba(255, 255, 255, 0.22);
}

.rating-stars:has(label:nth-child(1):hover) label:nth-child(-n + 1) .star,
.rating-stars:has(label:nth-child(2):hover) label:nth-child(-n + 2) .star,
.rating-stars:has(label:nth-child(3):hover) label:nth-child(-n + 3) .star,
.rating-stars:has(label:nth-child(4):hover) label:nth-child(-n + 4) .star,
.rating-stars:has(label:nth-child(5):hover) label:nth-child(-n + 5) .star {
  color: var(--gold-bright);
}

.comment-form .btn {
  width: 100%;
}

body.modal-open {
  overflow: hidden;
}

.service-dialog {
  width: min(640px, 100%);
  max-height: min(92svh, 820px);
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.service-modal-media {
  width: 100%;
  min-height: 180px;
  max-height: 42svh;
  background: #0a0a0a;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-modal-media img {
  width: 100%;
  height: auto;
  max-height: 42svh;
  object-fit: contain;
  object-position: center;
  display: block;
}

.service-modal-content {
  padding: 1.15rem 1.15rem 1.35rem;
}

.service-modal-content.is-align-left {
  text-align: left;
}

.service-modal-content.is-align-center {
  text-align: center;
}

.service-modal-content.is-align-right {
  text-align: right;
}

.service-modal-content.is-align-left .service-modal-actions {
  justify-items: start;
}

.service-modal-content.is-align-center .service-modal-actions {
  justify-items: center;
}

.service-modal-content.is-align-right .service-modal-actions {
  justify-items: end;
}

.service-modal-label {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.service-modal-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.55rem;
}

.service-modal-summary {
  color: var(--silver);
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.service-modal-details {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1.15rem;
}

.service-modal-actions {
  display: grid;
  gap: 0.7rem;
}

.service-modal-actions .btn {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  letter-spacing: 0.06em;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.btn-whatsapp {
  background: #25d366;
  color: #062e14;
  border-color: transparent;
  font-weight: 700;
}

.btn-whatsapp svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.service-modal-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
  text-align: center;
}

@media (min-width: 700px) {
  .service-modal-media {
    min-height: 220px;
    max-height: 360px;
  }

  .service-modal-media img {
    max-height: 360px;
  }

  .service-modal-content {
    padding: 1.35rem 1.4rem 1.5rem;
  }

  .service-modal-actions {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
  width: 100%;
  min-width: 0;
}

@media (min-width: 850px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: start;
  }
}

.contact-intro,
.contact-aside {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

.contact-intro .section-head {
  text-align: left;
  margin-inline: 0;
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.contact-intro .section-head h2 {
  justify-content: flex-start;
}

.contact-intro .section-head h2::before {
  display: none;
}

.owner-name {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 6vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 0.55rem;
  overflow-wrap: anywhere;
}

.owner-title {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  max-width: 100%;
}

.owner-title::before,
.owner-title::after {
  content: "";
  width: 1.1rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.contact-list {
  display: grid;
  gap: 1.05rem;
  width: 100%;
  min-width: 0;
}

.contact-list > li {
  min-width: 0;
  max-width: 100%;
}

.contact-list > li > a,
.contact-list > li > span {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  width: 100%;
  max-width: 100%;
  text-align: left;
  transition: color 0.2s ease;
}

.contact-list > li > a > span:last-child,
.contact-list > li > span > span:last-child {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.contact-list a:hover {
  color: var(--gold-bright);
}

.contact-icon {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.15rem;
}

.contact-value {
  display: block;
  font-size: 0.9rem;
  color: var(--silver);
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.contact-aside {
  display: grid;
  gap: 1rem;
}

.phone-box,
.estimate-box {
  border: 1px solid var(--line);
  padding: 1.15rem 1rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.phone-box {
  background: linear-gradient(135deg, rgba(201, 162, 77, 0.09), transparent 70%);
}

.phone-box .contact-label {
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.phone-box .contact-value {
  font-size: clamp(1.15rem, 5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-bright);
  overflow-wrap: anywhere;
}

.estimate-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.015);
}

.estimate-box p {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  overflow-wrap: anywhere;
}

.estimate-box .btn {
  width: 100%;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.25rem;
  width: 100%;
  min-width: 0;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  min-width: 0;
  max-width: 100%;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.85rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--white);
  font: inherit;
  font-size: 0.92rem;
  letter-spacing: normal;
  text-transform: none;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form select {
  color: var(--white);
  background-color: #121212;
}

.contact-form select option {
  color: #111;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
}

.contact-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form .form-row {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
  min-width: 0;
}

@media (min-width: 700px) {
  .contact-form .form-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 2.75rem;
  text-align: center;
}

.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.footer-social a {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  color: var(--gold);
  display: grid;
  place-items: center;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
  background: rgba(201, 162, 77, 0.1);
}

.footer-social svg {
  width: 1.05rem;
  height: 1.05rem;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin: 1rem 0 1.25rem;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 899px) {
  .frame-left,
  .frame-right,
  .gold-corner {
    display: none;
  }

  main,
  .section,
  .container,
  .contact-grid,
  .contact-intro,
  .contact-aside,
  .services-grid,
  .gallery-grid,
  .about-grid,
  .comments-carousel {
    max-width: 100%;
    min-width: 0;
  }

  .container {
    padding-inline: 1rem;
  }

  :root {
    --nav-h: 4.75rem;
  }

  .nav-brand img {
    height: 3.6rem;
    max-width: 4.6rem;
  }

  .section {
    padding: 3.5rem 0;
    overflow-x: hidden;
  }

  .section-head {
    max-width: 100%;
    padding-inline: 0;
  }

  .section-head .title {
    font-size: clamp(1.35rem, 6.5vw, 1.85rem);
    overflow-wrap: anywhere;
  }

  .hero {
    padding: calc(var(--nav-h) + 1.5rem) 1rem 3rem;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .about-grid,
  .about-photos {
    width: 100%;
    min-height: 0;
  }

  .about-photo-main,
  .about-photo-accent {
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    justify-self: stretch !important;
    left: auto !important;
    bottom: auto !important;
    aspect-ratio: 16 / 11;
    max-height: none;
  }

  .contact-intro .section-head .title,
  .owner-name {
    font-size: clamp(1.3rem, 6.5vw, 1.8rem);
    overflow-wrap: anywhere;
  }

  .owner-title {
    letter-spacing: 0.14em;
    font-size: 0.62rem;
  }

  .contact-list > li > a,
  .contact-list > li > span {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.65rem;
  }

  .contact-icon {
    width: 2rem;
    height: 2rem;
  }

  .contact-value,
  .phone-box .contact-value,
  .contact-label {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .phone-box,
  .estimate-box,
  .contact-form,
  .contact-form .form-row,
  .contact-form label,
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .phone-box,
  .estimate-box {
    padding: 1rem 0.85rem;
  }

  .estimate-box p {
    letter-spacing: 0.08em;
    font-size: 0.64rem;
  }

  .comments-carousel {
    padding-inline: 0;
    overflow: hidden;
  }

  .filter-menu {
    gap: 0.4rem;
    max-width: 100%;
  }

  .filter-btn {
    padding: 0.5rem 0.65rem;
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 3.25rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Mobile bottom dock */
.mobile-dock {
  display: none;
}

@media (max-width: 899px) {
  .back-to-top {
    right: 0.4rem;
    bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
  }

  .back-to-top-line {
    height: 1.85rem;
  }

  .back-to-top > span:last-child {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  .mobile-dock {
    position: fixed;
    left: 0.7rem;
    right: 0.7rem;
    bottom: calc(1.35rem + env(safe-area-inset-bottom, 0px));
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    gap: 0.15rem;
    padding: 0.55rem 0.4rem 0.6rem;
    background: rgba(8, 8, 8, 0.94);
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  }

  .mobile-dock-item {
    display: grid;
    justify-items: center;
    gap: 0.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.56rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.2rem 0;
    transition: color 0.2s ease;
  }

  .mobile-dock-item svg {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--gold);
  }

  .mobile-dock-item:hover,
  .mobile-dock-item:focus-visible {
    color: var(--gold-bright);
  }

  .mobile-dock-fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    align-self: center;
    margin-bottom: 0.65rem;
    padding: 0.55rem 0.65rem;
    background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-bright));
    color: #111;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(201, 162, 77, 0.28);
  }

  .mobile-dock-fab svg {
    width: 0.95rem;
    height: 0.95rem;
  }

  .page {
    padding-bottom: calc(6.2rem + env(safe-area-inset-bottom, 0px));
  }

  .footer {
    padding-bottom: 1.5rem;
  }

  .nav-mobile-footer {
    padding-bottom: calc(5.8rem + env(safe-area-inset-bottom, 0px));
  }
}
