:root {
  --bg: #f3ede1;
  --paper: #fffaf0;
  --panel: #fffcf6;
  --ink: #15120e;
  --ink-soft: #4a4033;
  --muted: #786a56;
  --line: #dfcfaf;
  --line-strong: #cbb184;
  --accent: #c59a52;
  --accent-dark: #8b6a32;
  --accent-soft: #ecdebe;
  --charcoal: #1e1913;
  --green: #1f9b59;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --shadow-sm: 0 10px 22px rgba(30, 24, 17, 0.08);
  --shadow-md: 0 18px 32px rgba(30, 24, 17, 0.12);
  --shadow-lg: 0 28px 56px rgba(30, 24, 17, 0.2);
  --max: 1180px;
  --trans: 240ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at -8% -12%, rgba(197, 154, 82, 0.18), transparent 65%),
    radial-gradient(1000px 480px at 110% -6%, rgba(139, 106, 50, 0.13), transparent 68%),
    linear-gradient(180deg, #f8f2e6 0%, #f3ede1 45%, #f8f2e6 100%);
  line-height: 1.7;
}

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

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

.skip-link {
  position: fixed;
  top: 0.7rem;
  left: 0.8rem;
  z-index: 2500;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(236, 222, 190, 0.66);
  background: #171109;
  color: #f8e5be;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  transform: translateY(-180%);
  opacity: 0;
  transition: transform 200ms ease, opacity 200ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
}

h1,
h2,
h3,
h4 {
  font-family: 'Bodoni Moda', 'Times New Roman', serif;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

p {
  margin: 0;
}

.container {
  width: min(var(--max), calc(100% - 2.2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: linear-gradient(120deg, rgba(26, 21, 16, 0.9), rgba(17, 13, 10, 0.92));
  border-bottom: 1px solid rgba(236, 222, 190, 0.26);
}

.nav-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  width: clamp(220px, 30vw, 390px);
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(236, 222, 190, 0.32);
  color: #f8e4bc;
  background: transparent;
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.7rem;
  font: inherit;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: nowrap;
}

.site-nav a {
  color: rgba(255, 243, 219, 0.88);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.current {
  border-color: rgba(236, 222, 190, 0.36);
  background: rgba(236, 222, 190, 0.16);
}



.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.12rem;
}

.site-nav .nav-parent {
  margin: 0;
}

.nav-dropdown-toggle {
  display: none;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  border: 1px solid rgba(236, 222, 190, 0.34);
  background: rgba(236, 222, 190, 0.08);
  color: rgba(255, 245, 225, 0.9);
  font-size: 0.78rem;
  line-height: 1;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: var(--trans);
}

.nav-dropdown-toggle:hover {
  border-color: rgba(236, 222, 190, 0.56);
  background: rgba(236, 222, 190, 0.16);
}

.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 0.56rem);
  z-index: 60;
  display: none;
  min-width: 345px;
  padding: 0.62rem;
  border-radius: 18px;
  border: 1px solid rgba(236, 222, 190, 0.28);
  background:
    linear-gradient(145deg, rgba(20, 16, 12, 0.97), rgba(10, 8, 6, 0.96)),
    radial-gradient(520px 320px at 14% 6%, rgba(197, 154, 82, 0.14), transparent 68%);
  box-shadow: 0 20px 36px rgba(8, 6, 4, 0.42);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
}

.nav-dropdown-locations .nav-dropdown-menu {
  min-width: 560px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nav-dropdown-menu a {
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 2rem;
  margin: 0;
  padding: 0.44rem 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(236, 222, 190, 0.12);
  background: rgba(255, 255, 255, 0.03);
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.76rem;
  line-height: 1.25;
}

.nav-dropdown-menu a::before {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  border-color: rgba(247, 226, 181, 0.5);
  background: rgba(247, 226, 181, 0.15);
  color: #fff5df;
}

.footer-mega-links {
  margin-top: 0.24rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.nav-cta {
  margin-left: 0.45rem;
  background: linear-gradient(125deg, var(--accent), #dfbc79);
  color: #241c11 !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  font-weight: 700 !important;
  padding: 0.5rem 0.95rem;
}

.page-hero,
.home-hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}

.home-hero {
  background:
    linear-gradient(150deg, rgba(18, 14, 10, 0.92), rgba(38, 29, 20, 0.84)),
    url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1800&q=80&fit=crop') center/cover;
  border-bottom: 1px solid rgba(236, 222, 190, 0.22);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  border: 1px solid rgba(236, 222, 190, 0.34);
  color: #f8e4bc;
  background: rgba(236, 222, 190, 0.14);
}

.hero-copy h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 5vw, 4.2rem);
  color: #fff5de;
}

.hero-copy p {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  color: rgba(255, 244, 224, 0.86);
  max-width: 62ch;
}

.hero-points {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-point {
  border: 1px solid rgba(236, 222, 190, 0.24);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.65rem 0.8rem;
  color: rgba(255, 246, 229, 0.92);
  font-size: 0.9rem;
}

.hero-card {
  border: 1px solid rgba(236, 222, 190, 0.45);
  background: linear-gradient(155deg, rgba(255, 253, 247, 0.96), rgba(248, 236, 209, 0.94));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.05rem, 2.2vw, 1.6rem);
  display: grid;
  gap: 0.8rem;
}

.hero-card h2 {
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
}

.hero-card p {
  color: var(--ink-soft);
}

.hero-card .stat {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

.hero-card .stat strong {
  color: var(--accent-dark);
}

.section {
  padding: clamp(2.9rem, 6vw, 5rem) 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 249, 238, 0.9), rgba(255, 253, 247, 0.9));
  border-top: 1px solid rgba(223, 207, 175, 0.6);
  border-bottom: 1px solid rgba(223, 207, 175, 0.6);
}

.section-head {
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
  display: grid;
  gap: 0.65rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 3.2rem);
}

.section-head p {
  color: var(--ink-soft);
  max-width: 64ch;
}

.cards-3,
.cards-4,
.cards-2 {
  display: grid;
  gap: 1rem;
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(203, 177, 132, 0.35);
}

.card h3 {
  margin-top: 0.8rem;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.card p {
  margin-top: 0.45rem;
  color: var(--ink-soft);
}

.badges {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.badge {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.74rem;
  padding: 0.3rem 0.62rem;
}

.actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn {
  --btn-text: #251b10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.05rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--btn-text);
  cursor: pointer;
  transition: var(--trans);
}

.btn.primary {
  background: linear-gradient(130deg, var(--accent), #dfbc79);
  box-shadow: 0 12px 24px rgba(139, 106, 50, 0.24);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(139, 106, 50, 0.32);
}

.btn.ghost {
  border-color: var(--line-strong);
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.75);
}

.btn.ghost:hover {
  background: #fff;
}

.btn.dark {
  --btn-text: #f8ebcc;
  background: linear-gradient(130deg, #2a2118, #17120d);
  border-color: rgba(236, 222, 190, 0.22);
}

.btn.whatsapp {
  --btn-text: #fff;
  background: linear-gradient(130deg, #25c267, #1f9d55);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric {
  background: var(--charcoal);
  color: #f7e8c7;
  border-radius: var(--radius-md);
  border: 1px solid rgba(236, 222, 190, 0.2);
  padding: 1.1rem;
}

.metric strong {
  font-family: 'Bodoni Moda', serif;
  display: block;
  font-size: clamp(1.7rem, 3.3vw, 2.6rem);
  color: #fff3d5;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(247, 232, 199, 0.84);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 0.85rem 0.95rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #f6ebd1, #f1dfba);
  color: #3d2e1a;
}

tr:last-child td {
  border-bottom: none;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.list li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--ink-soft);
}

.list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--accent);
}

.locality-grid {
  margin-top: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.55rem;
}

.locality-grid li {
  padding-left: 0;
}

.locality-grid li::before {
  content: none;
}

.locality-grid a {
  display: flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(186, 152, 95, 0.5);
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(255, 252, 244, 0.98), rgba(247, 234, 206, 0.9));
  color: #3f2e19;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.locality-grid a:hover {
  transform: translateY(-1px);
  border-color: rgba(183, 138, 68, 0.72);
  box-shadow: 0 9px 16px rgba(36, 26, 14, 0.11);
}

.locality-grid a:focus-visible {
  outline: 2px solid rgba(183, 138, 68, 0.8);
  outline-offset: 2px;
}

.callout {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #fff7e7, #f6ead0);
  padding: clamp(1rem, 2.6vw, 1.7rem);
}

.callout h3 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.callout p {
  margin-top: 0.6rem;
  color: #5a4b36;
}

.page-hero {
  background: linear-gradient(150deg, #1e1913, #120f0b);
  color: #f8ebcc;
  border-bottom: 1px solid rgba(236, 222, 190, 0.2);
}

.page-hero h1 {
  color: #fff2d5;
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.page-hero p {
  margin-top: 0.75rem;
  max-width: 70ch;
  color: rgba(248, 235, 204, 0.84);
}

.grid-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-item {
  grid-column: span 3;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: var(--trans);
}

.gallery-item.large { grid-column: span 6; }
.gallery-item.tall img { aspect-ratio: 4/5; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-item figcaption {
  padding: 0.6rem 0.7rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.filters {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  padding: 0.45rem 0.8rem;
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--charcoal);
  color: #f6e6c4;
  border-color: rgba(236, 222, 190, 0.25);
}

.faq {
  display: grid;
  gap: 0.6rem;
}

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

.faq-trigger {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 0.85rem 0.95rem;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--trans);
}

.faq-panel p,
.faq-panel ul {
  margin: 0;
  padding: 0 0.95rem 0.95rem;
  color: var(--ink-soft);
}

.form {
  display: grid;
  gap: 0.7rem;
}

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

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.notice {
  font-size: 0.82rem;
  color: var(--muted);
}

.site-footer {
  margin-top: clamp(2.6rem, 5vw, 4.5rem);
  padding: 2.2rem 0 2.6rem;
  background: linear-gradient(140deg, #1c1712, #0f0c09);
  color: rgba(247, 232, 199, 0.84);
  border-top: 1px solid rgba(236, 222, 190, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-grid h4 {
  font-size: 1rem;
  color: #f8e4bc;
  margin-bottom: 0.5rem;
}

.footer-grid a,
.footer-grid p {
  font-size: 0.86rem;
  color: rgba(247, 232, 199, 0.8);
}

.footer-bottom {
  margin-top: 1.4rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(236, 222, 190, 0.16);
  font-size: 0.8rem;
  color: rgba(247, 232, 199, 0.66);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cta-strip {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #f7edd8, #efe0bf);
  box-shadow: var(--shadow-md);
  padding: clamp(1.1rem, 2.7vw, 1.9rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.cta-strip h3 {
  font-size: clamp(1.3rem, 2.7vw, 2rem);
}

.reveal,
[data-reveal] {
  opacity: 1;
  transform: none;
  filter: none;
}

.js-enabled .reveal,
.js-enabled [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.985);
  filter: blur(6px);
  will-change: transform, filter, opacity;
  transition:
    opacity 620ms cubic-bezier(0.22, 0.9, 0.29, 1),
    transform 620ms cubic-bezier(0.22, 0.9, 0.29, 1),
    filter 620ms cubic-bezier(0.22, 0.9, 0.29, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.show,
[data-reveal].show {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  will-change: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #fff9ee, #fff4dd);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.testimonial-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.testimonial-card p {
  color: var(--ink-soft);
}

.testimonial-meta {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
}

:root {
  --scroll-progress: 0%;
  --hero-parallax-x: 0px;
  --hero-parallax-y: 0px;
}

body {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(1200px 560px at -14% -8%, rgba(197, 154, 82, 0.2), transparent 64%),
    radial-gradient(1150px 620px at 110% -12%, rgba(139, 106, 50, 0.2), transparent 68%),
    radial-gradient(740px 360px at 30% 114%, rgba(197, 154, 82, 0.1), transparent 72%),
    repeating-linear-gradient(-38deg, rgba(197, 154, 82, 0.04) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, #f7f1e5 0%, #f2eadb 44%, #f8f2e7 100%);
}

.site-header {
  box-shadow: 0 10px 34px rgba(17, 12, 7, 0.34);
  transition: background var(--trans), border-color var(--trans), box-shadow var(--trans);
}

.site-header::before,
.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.site-header::before {
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 233, 190, 0.46), transparent);
}

.site-header::after {
  bottom: -1px;
  left: 0;
  right: auto;
  width: var(--scroll-progress);
  height: 2px;
  opacity: 0.6;
  background: linear-gradient(90deg, #eec77b, #fff3d4 58%, #eec77b);
  box-shadow: 0 0 20px rgba(255, 225, 164, 0.42);
  transition: width 120ms linear, opacity var(--trans);
}

.site-header.scrolled {
  background: linear-gradient(120deg, rgba(19, 15, 12, 0.94), rgba(10, 8, 6, 0.95));
  border-bottom-color: rgba(236, 222, 190, 0.2);
  box-shadow: 0 14px 36px rgba(12, 8, 5, 0.4);
}

.nav-row {
  transition: min-height var(--trans);
}

.site-header.scrolled .nav-row {
  min-height: 72px;
}

.site-nav {
  padding: 0.24rem;
  border-radius: 999px;
  border: 1px solid rgba(236, 222, 190, 0.26);
  background: linear-gradient(130deg, rgba(243, 216, 158, 0.08), rgba(255, 238, 204, 0.03));
}

.site-nav a {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.site-nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255, 247, 230, 0), rgba(255, 247, 230, 0.33), rgba(255, 247, 230, 0));
  transform: translateX(-135%);
  transition: transform 420ms ease;
}

.site-nav a:hover::before,
.site-nav a.current::before {
  transform: translateX(0);
}

.menu-toggle {
  backdrop-filter: blur(4px);
}

.home-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(11, 8, 6, 0.94), rgba(33, 24, 15, 0.86)),
    radial-gradient(circle at 14% 22%, rgba(197, 154, 82, 0.28), transparent 36%),
    url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1800&q=80&fit=crop') center/cover;
}

.home-hero::before,
.home-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.home-hero::before {
  width: min(58vw, 780px);
  aspect-ratio: 1;
  right: -14%;
  top: -36%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 223, 156, 0.34), rgba(255, 223, 156, 0.04) 58%, transparent 72%);
  transform: translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0);
  animation: heroHalo 18s ease-in-out infinite;
}

.home-hero::after {
  inset: 0;
  background:
    radial-gradient(900px 520px at 76% 16%, rgba(237, 201, 132, 0.2), transparent 58%),
    repeating-linear-gradient(140deg, rgba(255, 238, 203, 0.07) 0 2px, transparent 2px 28px);
  opacity: 0.38;
  mix-blend-mode: screen;
}

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

.hero-shell {
  position: relative;
  padding: clamp(1.05rem, 2.5vw, 1.6rem);
  border: 1px solid rgba(236, 222, 190, 0.18);
  border-radius: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(145deg, rgba(11, 8, 6, 0.25), rgba(255, 248, 232, 0.04)),
    radial-gradient(900px 500px at 8% 88%, rgba(197, 154, 82, 0.16), transparent 55%);
  box-shadow: 0 22px 42px rgba(8, 6, 4, 0.33);
}

.hero-shell::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(236, 222, 190, 0.2);
  pointer-events: none;
}

.hero-copy h1 {
  color: #fff5de;
  line-height: 0.95;
  max-width: 12ch;
  text-shadow: 0 8px 22px rgba(11, 8, 5, 0.36);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-copy h1 {
    background: linear-gradient(120deg, #fff8e7 12%, #f1cf92 47%, #fff8e7 84%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.hero-copy p {
  max-width: 56ch;
}

.hero-point {
  border-left: 3px solid rgba(241, 201, 124, 0.75);
  border-radius: 14px 14px 22px 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(2px);
  transition: transform var(--trans), border-color var(--trans), background var(--trans);
}

.hero-point:nth-child(odd) {
  transform: translateY(-2px);
}

.hero-point:hover {
  transform: translateY(-5px);
  border-left-color: rgba(255, 228, 162, 0.95);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06));
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 34px 24px;
  background:
    linear-gradient(155deg, rgba(255, 254, 249, 0.96), rgba(247, 232, 200, 0.94)),
    radial-gradient(540px 300px at 10% 90%, rgba(197, 154, 82, 0.14), transparent 72%);
  border-color: rgba(229, 202, 151, 0.64);
}

.hero-card::before,
.hero-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.hero-card::before {
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
}

.hero-card::after {
  width: 220px;
  aspect-ratio: 1;
  right: -84px;
  bottom: -108px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 154, 82, 0.2), transparent 70%);
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card .stat {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(203, 177, 132, 0.5);
  backdrop-filter: blur(3px);
}

.section {
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: min(var(--max), calc(100% - 2.2rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(177, 142, 84, 0.42), transparent);
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 249, 238, 0.9), rgba(255, 253, 247, 0.9)),
    repeating-linear-gradient(-35deg, rgba(197, 154, 82, 0.03) 0 1px, transparent 1px 20px);
}

.section-head {
  position: relative;
  padding-left: 1.05rem;
}

.section-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.22rem;
  bottom: 0.25rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(197, 154, 82, 0.9), rgba(197, 154, 82, 0.18));
}

.section-head h2 {
  letter-spacing: -0.03em;
}

.section-head h2::after {
  content: '';
  display: block;
  width: clamp(92px, 20vw, 186px);
  height: 2px;
  margin-top: 0.42rem;
  background: linear-gradient(90deg, rgba(197, 154, 82, 0.75), rgba(197, 154, 82, 0));
}

.section-head p {
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.cards-2,
.cards-3,
.cards-4 {
  gap: 1.1rem;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 18px 18px 30px 18px;
  border-color: rgba(203, 177, 132, 0.54);
  background:
    linear-gradient(165deg, rgba(255, 253, 248, 0.98), rgba(248, 237, 212, 0.92)),
    radial-gradient(230px 130px at 12% 100%, rgba(197, 154, 82, 0.13), transparent 72%);
  transition:
    transform 320ms cubic-bezier(0.22, 0.9, 0.29, 1),
    box-shadow 320ms cubic-bezier(0.22, 0.9, 0.29, 1),
    border-color var(--trans);
}

.cards-3 .card:nth-child(2n),
.cards-4 .card:nth-child(2n) {
  border-radius: 30px 18px 18px 18px;
}

.card::before,
.card::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.card::before {
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f4d08e, #be8b3b 48%, transparent);
}

.card::after {
  width: 160px;
  aspect-ratio: 1;
  right: -60px;
  bottom: -82px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 154, 82, 0.25), transparent 70%);
}

.card:hover {
  transform: translateY(-8px) rotate(-0.45deg);
  box-shadow: 0 24px 38px rgba(30, 24, 17, 0.2);
  border-color: rgba(193, 147, 75, 0.72);
}

.occasion-card-link {
  display: block;
  color: inherit;
}

.occasion-card-link:focus-visible {
  outline: 2px solid rgba(193, 147, 75, 0.85);
  outline-offset: 2px;
}

.cards-3 .card:nth-child(2):hover,
.cards-4 .card:nth-child(2):hover {
  transform: translateY(-8px) rotate(0.45deg);
}

.card img {
  border-radius: 12px 12px 30px 12px;
  transition: transform 500ms ease;
}

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

.badge {
  background: linear-gradient(130deg, #fff, #f7eed9);
  border-color: rgba(203, 177, 132, 0.75);
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 8px 18px rgba(34, 25, 14, 0.11);
}

.btn::after {
  content: '';
  position: absolute;
  top: -150%;
  left: -44%;
  width: 40%;
  height: 360%;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0));
  transform: rotate(18deg) translateX(-260%);
  transition: transform 560ms ease;
  pointer-events: none;
}

.btn:hover::after {
  transform: rotate(18deg) translateX(400%);
}

.btn.primary:hover,
.btn.dark:hover,
.btn.whatsapp:hover,
.btn.ghost:hover {
  transform: translateY(-3px);
}

.btn.dark:hover {
  box-shadow: 0 16px 30px rgba(18, 13, 8, 0.36);
}

.btn.whatsapp:hover {
  box-shadow: 0 16px 30px rgba(31, 155, 89, 0.34);
}

.metric {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 30px 20px;
  background:
    linear-gradient(145deg, #1f1810, #140f0b),
    radial-gradient(380px 220px at 84% -20%, rgba(197, 154, 82, 0.32), transparent 72%);
}

.metric::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(249, 219, 156, 0.95), rgba(197, 154, 82, 0.25));
}

.table-wrap {
  border-color: rgba(203, 177, 132, 0.55);
  background: linear-gradient(165deg, #fffaf1, #fff);
}

th {
  background: linear-gradient(120deg, #f8ebcf, #ecd3a3);
  color: #362615;
}

tbody tr:nth-child(even) td {
  background: rgba(249, 237, 210, 0.35);
}

.callout {
  position: relative;
  overflow: hidden;
  border-radius: 22px 22px 32px 22px;
  background:
    linear-gradient(150deg, #fff8ea, #f2e2bc),
    repeating-linear-gradient(-40deg, rgba(197, 154, 82, 0.07) 0 1px, transparent 1px 17px);
}

.callout::after {
  content: '';
  position: absolute;
  right: -64px;
  bottom: -64px;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 154, 82, 0.28), transparent 70%);
  pointer-events: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 320px at 8% 96%, rgba(197, 154, 82, 0.22), transparent 72%),
    repeating-linear-gradient(145deg, rgba(249, 224, 179, 0.08) 0 2px, transparent 2px 34px),
    linear-gradient(150deg, #19130d, #0f0b08);
}

.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.page-hero::before {
  right: max(2vw, 0.85rem);
  top: 0.55rem;
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(3rem, 12vw, 9.5rem);
  letter-spacing: 0.14em;
  color: rgba(248, 225, 184, 0.06);
  content: 'VELORIA';
}

.page-hero::after {
  right: -10%;
  top: -35%;
  width: min(42vw, 530px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 201, 130, 0.22), transparent 68%);
}

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

.grid-gallery {
  gap: 1rem;
}

.gallery-item {
  border-radius: 18px;
  border-color: rgba(203, 177, 132, 0.58);
  background: linear-gradient(150deg, #fffdf9, #f9efdc);
}

.gallery-item figcaption {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 236, 210, 0.95));
}

.filter-btn {
  border-color: rgba(203, 177, 132, 0.66);
  background: linear-gradient(120deg, #fff, #f8efdb);
  transition: transform var(--trans), background var(--trans), color var(--trans), border-color var(--trans);
}

.filter-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 154, 82, 0.75);
}

.faq-item {
  border-radius: 18px;
  border-color: rgba(203, 177, 132, 0.66);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(247, 238, 219, 0.96));
  box-shadow: 0 12px 22px rgba(30, 24, 17, 0.08);
}

.faq-trigger span {
  transition: transform var(--trans), color var(--trans);
}

.faq-item.open .faq-trigger span {
  transform: rotate(45deg);
  color: var(--accent-dark);
}

.form input,
.form select,
.form textarea {
  border-color: rgba(203, 177, 132, 0.55);
  background: linear-gradient(170deg, #fff, #fbf2e0);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: rgba(197, 154, 82, 0.88);
  box-shadow: 0 0 0 3px rgba(197, 154, 82, 0.2);
}

.cta-strip {
  position: relative;
  overflow: hidden;
  border-radius: 30px 30px 42px 30px;
  border-color: rgba(193, 147, 75, 0.62);
  background:
    linear-gradient(140deg, #f8ecd4, #ebd5a8 56%, #e5cd9d),
    repeating-linear-gradient(-35deg, rgba(197, 154, 82, 0.08) 0 1px, transparent 1px 16px);
}

.cta-strip::before,
.cta-strip::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.cta-strip::before {
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.cta-strip::after {
  width: 200px;
  aspect-ratio: 1;
  right: -74px;
  bottom: -94px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 154, 82, 0.34), transparent 70%);
}

.cta-strip > * {
  position: relative;
  z-index: 1;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: clamp(2.9rem, 6vw, 5rem);
  padding: clamp(2rem, 4vw, 2.8rem) 0 1.25rem;
  border-top: 1px solid rgba(236, 222, 190, 0.24);
  color: rgba(247, 232, 199, 0.88);
  background:
    radial-gradient(760px 280px at 90% -8%, rgba(197, 154, 82, 0.28), transparent 72%),
    radial-gradient(640px 290px at 8% 112%, rgba(139, 106, 50, 0.26), transparent 74%),
    repeating-linear-gradient(-36deg, rgba(197, 154, 82, 0.045) 0 1px, transparent 1px 24px),
    linear-gradient(142deg, #1a140f, #0d0906);
}

.site-footer::before,
.site-footer::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.site-footer::before {
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 231, 186, 0.74), transparent);
}

.site-footer::after {
  left: -12%;
  bottom: -56%;
  width: min(54vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 154, 82, 0.24), transparent 72%);
}

.site-footer .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.footer-grid {
  align-items: stretch;
  gap: 0.95rem;
  grid-template-columns: minmax(0, 1.55fr) repeat(3, minmax(0, 1fr));
}

.footer-grid > div {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1rem 1.1rem;
  border-radius: 18px 18px 28px 18px;
  border: 1px solid rgba(236, 222, 190, 0.2);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    linear-gradient(140deg, rgba(32, 24, 16, 0.84), rgba(14, 11, 8, 0.82));
}

.footer-brand {
  gap: 0.55rem;
  border-color: rgba(236, 222, 190, 0.34) !important;
  background:
    radial-gradient(240px 120px at 0% 0%, rgba(197, 154, 82, 0.22), transparent 70%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.02)) !important;
  box-shadow: 0 18px 34px rgba(8, 6, 4, 0.28);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: clamp(182px, 24vw, 278px);
}

.footer-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.24));
}

.footer-tagline {
  margin-top: 0.2rem;
  font-size: 0.89rem;
  line-height: 1.56;
  color: rgba(247, 232, 199, 0.92);
}

.footer-grid h4 {
  margin-bottom: 0.28rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5ddb0;
}

.footer-grid p {
  margin-top: 0.16rem;
}

.footer-grid a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  margin-top: 0.16rem;
  width: fit-content;
  transition: color var(--trans), transform var(--trans);
}

.footer-grid a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(245, 221, 176, 0.82);
}

.footer-grid a:hover {
  color: #fff2d3;
  transform: translateX(3px);
}

.footer-highlight {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  align-items: center;
  gap: 0.95rem;
  margin-top: 0.3rem;
  padding: 1rem 1.1rem;
  border-radius: 22px 22px 34px 22px;
  border: 1px solid rgba(236, 222, 190, 0.34);
  background:
    linear-gradient(132deg, rgba(250, 217, 156, 0.22), rgba(83, 57, 24, 0.12) 46%, rgba(255, 255, 255, 0.04)),
    linear-gradient(136deg, rgba(22, 17, 12, 0.94), rgba(13, 10, 7, 0.96));
  box-shadow: 0 18px 30px rgba(9, 6, 4, 0.28);
}

.footer-highlight::before,
.footer-highlight::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.footer-highlight::before {
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-highlight::after {
  width: 180px;
  aspect-ratio: 1;
  right: -70px;
  bottom: -78px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 217, 156, 0.34), transparent 72%);
}

.footer-highlight > * {
  position: relative;
  z-index: 1;
}

.footer-highlight p {
  font-size: 0.93rem;
  line-height: 1.5;
  color: rgba(255, 239, 207, 0.94);
}

.footer-highlight .actions {
  margin-top: 0;
  justify-content: flex-end;
  gap: 0.55rem;
}

.footer-highlight .btn {
  padding: 0.63rem 0.95rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

.footer-location-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.5rem;
  margin-top: 0.08rem;
  padding: 0.8rem 0.86rem;
  border-radius: 16px 16px 24px 16px;
  border: 1px solid rgba(236, 222, 190, 0.24);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(136deg, rgba(20, 16, 12, 0.88), rgba(11, 9, 6, 0.9));
}

.footer-location-links .footer-location-title {
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(248, 229, 190, 0.9);
  font-weight: 700;
  margin-right: 0.1rem;
}

.footer-location-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.56rem;
  border-radius: 999px;
  border: 1px solid rgba(236, 222, 190, 0.22);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.76rem;
  color: rgba(251, 237, 207, 0.9);
  transition: transform var(--trans), background var(--trans), border-color var(--trans), color var(--trans);
}

.footer-location-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(248, 229, 190, 0.54);
  background: rgba(248, 229, 190, 0.14);
  color: #fff5dc;
}

.footer-occasion-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.5rem;
  margin-top: 0.08rem;
  padding: 0.8rem 0.86rem;
  border-radius: 16px 16px 24px 16px;
  border: 1px solid rgba(236, 222, 190, 0.24);
  background:
    linear-gradient(142deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(128deg, rgba(30, 21, 12, 0.9), rgba(14, 10, 6, 0.92));
}

.footer-occasion-links .footer-location-title {
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(248, 229, 190, 0.9);
  font-weight: 700;
  margin-right: 0.1rem;
}

.footer-occasion-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.56rem;
  border-radius: 999px;
  border: 1px solid rgba(236, 222, 190, 0.24);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.76rem;
  color: rgba(251, 237, 207, 0.92);
  transition: transform var(--trans), background var(--trans), border-color var(--trans), color var(--trans);
}

.footer-occasion-links a:first-of-type {
  background: linear-gradient(140deg, #f0d59b, #d7ac58);
  border-color: rgba(255, 230, 168, 0.9);
  color: #1c130a;
  font-weight: 700;
}

.footer-occasion-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(248, 229, 190, 0.56);
  background: rgba(248, 229, 190, 0.14);
  color: #fff5dc;
}

.footer-occasion-links a:first-of-type:hover {
  border-color: rgba(255, 236, 185, 0.96);
  background: linear-gradient(140deg, #f4dcab, #deb767);
  color: #1b1208;
}

.footer-mini-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px 18px 28px 18px;
  border: 1px solid rgba(236, 222, 190, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    linear-gradient(140deg, rgba(31, 24, 16, 0.84), rgba(13, 10, 7, 0.88));
}

.footer-mini-brand .footer-logo {
  width: clamp(155px, 22vw, 242px);
}

.footer-mini-brand .footer-tagline {
  margin-top: 0;
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer-bottom {
  margin-top: 0.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(236, 222, 190, 0.2);
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 232, 199, 0.72);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.ribbon-section {
  padding-top: clamp(1.6rem, 3vw, 2.2rem);
  padding-bottom: clamp(1.7rem, 3.3vw, 2.4rem);
}

.ribbon-wrap {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(193, 147, 75, 0.52);
  background:
    linear-gradient(125deg, rgba(28, 21, 13, 0.96), rgba(16, 12, 8, 0.95)),
    radial-gradient(500px 240px at 10% 50%, rgba(197, 154, 82, 0.2), transparent 70%);
  box-shadow: 0 18px 34px rgba(13, 9, 6, 0.3);
  padding: 0.7rem 0.85rem;
}

.ribbon-label {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  border-radius: 999px;
  border: 1px solid rgba(236, 222, 190, 0.24);
  background: linear-gradient(130deg, rgba(242, 206, 137, 0.3), rgba(242, 206, 137, 0.05));
  color: #f9e6be;
  padding: 0.4rem 0.8rem;
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  z-index: 1;
}

.ribbon-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  min-width: 100%;
  padding-right: 1.2rem;
  animation: ribbonMove 30s linear infinite;
}

.ribbon-track span {
  white-space: nowrap;
  color: rgba(255, 242, 214, 0.88);
  font-size: 0.84rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  position: relative;
}

.ribbon-track span::after {
  content: '•';
  margin-left: 1.2rem;
  color: rgba(238, 201, 129, 0.7);
}

.hall-stage {
  display: grid;
  gap: 1rem;
}

.hall-feature {
  position: relative;
  overflow: hidden;
  border-radius: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(203, 177, 132, 0.6);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(244, 231, 202, 0.9)),
    radial-gradient(620px 260px at 0% 100%, rgba(197, 154, 82, 0.16), transparent 68%);
  box-shadow: 0 22px 36px rgba(24, 18, 11, 0.14);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 280px;
}

.hall-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: inherit;
  pointer-events: none;
}

.hall-feature:nth-child(2n) {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.hall-feature:nth-child(2n) .hall-visual {
  order: 2;
}

.hall-feature:nth-child(2n) .hall-body {
  order: 1;
}

.hall-visual {
  min-height: 100%;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.02);
  position: relative;
}

.hall-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 8, 6, 0.18), rgba(11, 8, 6, 0.02));
}

.hall-pearl .hall-visual {
  background-image: url('https://images.unsplash.com/photo-1522673607200-164d1b6ce486?w=1400&q=80&fit=crop');
}

.hall-grand .hall-visual {
  background-image: url('https://images.unsplash.com/photo-1469371670807-013ccf25f16a?w=1400&q=80&fit=crop');
}

.hall-royal .hall-visual {
  background-image: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1400&q=80&fit=crop');
}

.hall-body {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 2.2vw, 1.6rem);
  display: grid;
  align-content: center;
  gap: 0.7rem;
}

.hall-body h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

.hall-body p {
  color: #4d3f2d;
}

.journey-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.journey-rail::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  top: 2.8rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(197, 154, 82, 0.2), rgba(197, 154, 82, 0.8), rgba(197, 154, 82, 0.2));
}

.journey-step {
  position: relative;
  border-radius: 18px 18px 28px 18px;
  border: 1px solid rgba(203, 177, 132, 0.58);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(246, 234, 207, 0.9)),
    radial-gradient(160px 120px at 86% 100%, rgba(197, 154, 82, 0.15), transparent 70%);
  padding: 1rem 0.9rem 0.95rem;
  box-shadow: 0 16px 28px rgba(30, 24, 17, 0.1);
}

.journey-step::before {
  content: '';
  position: absolute;
  top: 2.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid #d7b16d;
  background: #fff8ea;
  box-shadow: 0 0 0 4px rgba(215, 177, 109, 0.2);
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  border: 1px solid rgba(193, 147, 75, 0.6);
  background: linear-gradient(125deg, #f7e3bb, #efd39c);
  color: #493017;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}

.journey-step h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

.journey-step p {
  margin-top: 0.45rem;
  color: #544633;
  font-size: 0.94rem;
}

.step-meta {
  display: inline-flex;
  margin-top: 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(203, 177, 132, 0.58);
  padding: 0.24rem 0.62rem;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d5a3f;
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1rem;
}

.studio-panel {
  border-radius: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(203, 177, 132, 0.64);
  background:
    linear-gradient(145deg, rgba(17, 13, 9, 0.95), rgba(36, 27, 17, 0.94)),
    radial-gradient(450px 230px at 10% 100%, rgba(197, 154, 82, 0.24), transparent 72%);
  color: rgba(255, 241, 210, 0.88);
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
  box-shadow: 0 24px 40px rgba(14, 10, 7, 0.34);
}

.studio-panel .eyebrow {
  margin-bottom: 0.8rem;
}

.studio-panel h2 {
  color: #fff4da;
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
}

.studio-panel p {
  margin-top: 0.8rem;
  color: rgba(255, 239, 207, 0.82);
}

.studio-panel .list {
  margin-top: 0.95rem;
}

.studio-panel .list li {
  color: rgba(255, 239, 207, 0.82);
}

.studio-panel .list li::before {
  background: #e8c17a;
}

.studio-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.studio-stat {
  border-radius: 18px 18px 26px 18px;
  border: 1px solid rgba(203, 177, 132, 0.58);
  background:
    linear-gradient(150deg, rgba(255, 253, 248, 0.97), rgba(247, 236, 212, 0.9)),
    radial-gradient(170px 130px at 86% 100%, rgba(197, 154, 82, 0.16), transparent 72%);
  padding: 1rem 0.9rem;
}

.studio-stat strong {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1;
  color: #25190f;
}

.studio-stat span {
  display: block;
  margin-top: 0.45rem;
  color: #5f4e38;
  font-size: 0.9rem;
}

@keyframes heroHalo {
  0%,
  100% {
    transform: translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0) scale(1);
  }
  50% {
    transform: translate3d(var(--hero-parallax-x), calc(var(--hero-parallax-y) - 8px), 0) scale(1.06);
  }
}

@keyframes ribbonMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .hero-shell,
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-3,
  .cards-2,
  .metrics,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div {
    padding: 0.95rem 0.95rem 1.02rem;
  }

  .footer-highlight {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .footer-location-links .footer-location-title,
  .footer-occasion-links .footer-location-title {
    width: 100%;
    margin-bottom: 0.08rem;
  }

  .footer-highlight .actions {
    justify-content: flex-start;
  }

  .grid-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item,
  .gallery-item.large { grid-column: auto; }

  .section-head {
    padding-left: 0.85rem;
  }

  .hall-feature,
  .hall-feature:nth-child(2n) {
    grid-template-columns: 1fr;
  }

  .hall-feature:nth-child(2n) .hall-visual,
  .hall-feature:nth-child(2n) .hall-body {
    order: initial;
  }

  .hall-visual {
    min-height: 230px;
  }

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

  .journey-rail::before {
    display: none;
  }

  .journey-step::before {
    display: none;
  }

  .studio-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {

  .nav-dropdown {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.35rem;
  }

  .site-nav .nav-parent {
    width: 100%;
  }

  .nav-dropdown-toggle {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
  }

  .nav-dropdown.open .nav-dropdown-toggle {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border-radius: 14px;
    margin-top: 0.08rem;
    padding: 0.45rem;
    display: none;
    grid-template-columns: 1fr;
  }

  .nav-dropdown-locations .nav-dropdown-menu {
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  .footer-mega-links {
    grid-template-columns: 1fr;
  }

  .menu-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 0.8rem 1rem 1rem;
    border-bottom: 1px solid rgba(236, 222, 190, 0.22);
    background: linear-gradient(140deg, rgba(20, 16, 12, 0.98), rgba(12, 10, 8, 0.98));
    border-left: none;
    border-right: none;
    border-top: none;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 20px 36px rgba(9, 7, 5, 0.42);
  }

  .site-nav.open { display: flex; }

  .site-nav a {
    font-size: 0.8rem;
    padding: 0.65rem 0.75rem;
  }

  .nav-cta { margin-left: 0; }

  .hero-shell {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

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

  .hero-card {
    transform: none;
  }

  .home-hero::before {
    transform: none;
    animation: none;
  }

  .studio-stats {
    grid-template-columns: 1fr;
  }

  .locality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem;
  }

  .locality-grid a {
    min-height: 2.15rem;
    padding: 0.45rem 0.58rem;
    font-size: 0.79rem;
  }
}

@media (max-width: 560px) {

  .nav-dropdown-locations .nav-dropdown-menu {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(var(--max), calc(100% - 1.2rem));
  }

  .section-head {
    padding-left: 0.65rem;
  }

  .journey-rail {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
  }

  .actions .btn {
    width: 100%;
  }

  .footer-highlight {
    padding: 0.9rem 0.88rem;
  }

  .footer-highlight .actions {
    width: 100%;
  }

  .footer-highlight .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-mini-brand {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.8rem 0.85rem;
  }

  .footer-location-links,
  .footer-occasion-links {
    padding: 0.72rem 0.75rem;
    gap: 0.42rem;
  }

  .footer-location-links a,
  .footer-occasion-links a {
    font-size: 0.74rem;
    padding: 0.32rem 0.52rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .locality-grid {
    grid-template-columns: 1fr;
  }
}



@media (min-width: 861px) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  .ribbon-track {
    animation: none !important;
  }
}
