@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Great+Vibes&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #050505;
  --surface: #101010;
  --surface-2: #161616;
  --surface-3: #1d1d1d;
  --surface-4: #242424;
  --line: #2d2d2d;
  --line-strong: #3a3127;
  --text: #f5eee6;
  --muted: #c0b5a6;
  --muted-2: #8f8376;
  --spice: #9a4022;
  --spice-strong: #c95b2f;
  --gold: #cfa75c;
  --gold-soft: #f0d8a0;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
  --shadow-hover: 0 24px 48px rgba(0, 0, 0, 0.55);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1240px;
  --transition: 180ms ease;
  --font-body: "Plus Jakarta Sans", "Manrope", sans-serif;
  --font-display: "Cormorant Garamond", "Poppins", serif;
  --font-script: "Great Vibes", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 200;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(207, 167, 92, 0.14);
  background: rgba(11, 11, 11, 0.96);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-logo {
  width: 70px;
  height: 70px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  object-fit: cover;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.brand-copy span {
  color: var(--muted-2);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-utility {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 0.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-item.is-current > .nav-link {
  color: var(--gold-soft);
}

.nav-link.dropdown-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 0.5rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.submenu {
  position: absolute;
  top: calc(100% + 0.9rem);
  right: 0;
  left: auto;
  width: min(760px, calc(100vw - 2rem));
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0.9rem;
  border: 1px solid rgba(207, 167, 92, 0.16);
  border-radius: 16px;
  background: #111111;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.submenu a {
  padding: 0.7rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.submenu a:hover,
.submenu a:focus-visible,
.submenu a.is-current {
  color: var(--text);
  border-color: rgba(207, 167, 92, 0.18);
  background: #181818;
}

.submenu-group {
  display: grid;
  align-content: start;
  gap: 0.3rem;
  padding: 0.2rem;
  border: 1px solid rgba(207, 167, 92, 0.08);
  border-radius: 12px;
  background: #171717;
}

.submenu-label {
  padding: 0.2rem 0.8rem 0.35rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.has-dropdown:hover .submenu,
.has-dropdown:focus-within .submenu,
.has-dropdown.is-open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu-simple {
  width: min(280px, calc(100vw - 2rem));
  grid-template-columns: 1fr;
}

.submenu-simple a {
  padding: 0.82rem 0.95rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.site-nav-mobile-head,
.site-nav-mobile-card,
.site-nav-backdrop {
  display: none;
}

.site-nav-close {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(240, 216, 160, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.site-nav-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.site-nav-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-nav-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-search {
  position: relative;
}

.site-search-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: min(100%, 340px);
  min-width: 240px;
  height: 48px;
  padding: 0 0.55rem 0 1rem;
  border: 1px solid rgba(207, 167, 92, 0.16);
  border-radius: 999px;
  background: #111111;
  color: var(--gold-soft);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition), box-shadow var(--transition);
}

.site-search-toggle-icon {
  display: inline-flex;
  color: var(--muted-2);
}

.site-search-toggle-text {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-search-toggle-logo {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  object-fit: cover;
  flex: 0 0 auto;
}

.site-search-toggle svg,
.site-search-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-search-toggle:hover,
.site-search-toggle:focus-visible {
  border-color: rgba(207, 167, 92, 0.34);
  color: #fff4ca;
  box-shadow: 0 0 0 3px rgba(201, 91, 47, 0.08);
}

.site-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.site-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.site-search-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at top, rgba(154, 64, 34, 0.18), transparent 32%),
    rgba(5, 5, 5, 0.94);
}

.site-search-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100vw - 2rem));
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid rgba(207, 167, 92, 0.18);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(9, 9, 9, 0.98));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  transform: scale(0.96);
  transition: transform 240ms ease;
}

.site-search-overlay.is-open .site-search-panel {
  transform: scale(1);
}

.site-search-close {
  justify-self: end;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(207, 167, 92, 0.16);
  border-radius: 999px;
  background: #121212;
  color: var(--text);
  cursor: pointer;
}

.site-search-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.site-search-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-search-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-search-shell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 76px;
  padding: 0 1.4rem;
  border: 1px solid rgba(207, 167, 92, 0.16);
  border-radius: 22px;
  background: rgba(17, 17, 17, 0.96);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-search-shell:focus-within {
  border-color: rgba(201, 91, 47, 0.75);
  box-shadow: 0 0 0 3px rgba(201, 91, 47, 0.12);
}

.site-search-icon {
  display: inline-flex;
  color: var(--muted-2);
}

.site-search-input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 600;
}

.site-search-input::placeholder {
  color: #7e756a;
}

.site-search-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted-2);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-search-dropdown {
  position: relative;
  display: grid;
  gap: 0.55rem;
  min-height: 120px;
  max-height: min(52vh, 460px);
  padding: 0.85rem;
  overflow-y: auto;
  border: 1px solid rgba(207, 167, 92, 0.12);
  border-radius: 22px;
  background: rgba(12, 12, 12, 0.92);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.site-search-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-search-result {
  display: grid;
  gap: 0.2rem;
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid transparent;
  border-radius: 16px;
  background: #151515;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  animation: searchResultIn 260ms ease both;
}

.site-search-result:nth-child(2) {
  animation-delay: 35ms;
}

.site-search-result:nth-child(3) {
  animation-delay: 70ms;
}

.site-search-result:nth-child(4) {
  animation-delay: 105ms;
}

.site-search-result:nth-child(5) {
  animation-delay: 140ms;
}

.site-search-result:nth-child(6) {
  animation-delay: 175ms;
}

.site-search-result:nth-child(7) {
  animation-delay: 210ms;
}

.site-search-result:hover,
.site-search-result:focus-visible,
.site-search-result.is-active {
  border-color: rgba(207, 167, 92, 0.24);
  background: #191919;
  transform: translateY(-1px);
}

.site-search-result-title {
  font-size: 0.9rem;
  font-weight: 700;
}

.site-search-result-title mark {
  padding: 0;
  background: transparent;
  color: var(--gold-soft);
}

.site-search-result-category {
  color: var(--muted-2);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-search-empty {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem;
  border-radius: 12px;
  background: #151515;
}

.site-search-empty strong {
  color: var(--text);
  font-size: 0.9rem;
}

.site-search-empty span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.site-search-section-label {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes searchResultIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  padding: 1rem 0 0;
}

.hero-panel,
.page-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(207, 167, 92, 0.14);
  border-radius: var(--radius-xl);
  background: #0d0d0d;
  box-shadow: var(--shadow);
}

.hero-panel {
  min-height: 520px;
  isolation: isolate;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  background-color: #111111;
  background-position: center;
  background-size: cover;
}

.hero-media {
  background-image: url("banner images/hero card.png");
  opacity: 0.9;
  background-position: center right;
}

.page-hero-media {
  opacity: 0.64;
  transform: scale(1.04);
  filter: saturate(1.05) brightness(1.02);
}

.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.22) 64%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(180deg, rgba(164, 101, 22, 0.08), rgba(0, 0, 0, 0.18));
}

.hero-copy,
.page-hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 520px;
  width: min(100%, 1120px);
  padding: 1.6rem 4rem 1.6rem 2rem;
  margin: 0;
  text-align: left;
  font-family: var(--font-body);
  animation: heroFadeUp 900ms ease both;
}

.hero-card {
  width: min(100%, 700px);
  margin-left: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.eyebrow,
.section-tag {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-logo-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.35rem;
}

.hero-logo {
  width: auto;
  height: 72px;
  object-fit: contain;
}

.hero-kicker {
  margin: 0 0 0.55rem;
  color: rgba(249, 240, 224, 0.9);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-display);
}

.hero h1,
.page-hero h1,
.section h2,
.site-footer h3 {
  margin: 0;
  letter-spacing: 0;
  font-family: var(--font-display);
}

.hero h1 {
  max-width: 10.5ch;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.9;
  font-weight: 700;
  color: #fff8ee;
  text-transform: uppercase;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}

.hero h1 span {
  display: block;
}

.hero-script {
  margin: 0.45rem 0 0;
  color: #f4b337;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 0.95;
  font-family: var(--font-script);
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.hero-divider {
  width: 220px;
  height: 2px;
  margin: 1rem 0 1.2rem;
  background: linear-gradient(90deg, rgba(244, 179, 55, 0.95), rgba(244, 179, 55, 0.18));
}

.hero-text {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 245, 230, 0.9);
  font-size: 1.02rem;
  line-height: 1.72;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.hero-actions,
.contact-actions,
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.hero-actions {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.25rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 800;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) scale(1.02);
}

.button-primary {
  border-color: rgba(255, 198, 88, 0.38);
  background: linear-gradient(180deg, #e3a234 0%, #b87512 100%);
  color: #16120a;
  box-shadow: 0 10px 28px rgba(184, 117, 18, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 16px 30px rgba(184, 117, 18, 0.34);
  background: linear-gradient(180deg, #efb347 0%, #cb8318 100%);
}

.button-secondary {
  border-color: rgba(245, 176, 65, 0.42);
  background: rgba(8, 8, 8, 0.52);
  color: #fff8ef;
  backdrop-filter: blur(10px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 219, 148, 0.62);
  box-shadow: 0 16px 30px rgba(245, 176, 65, 0.16);
}

.hero-stat,
.mini-card,
.service-card,
.feature-card,
.testimonial-card,
.contact-card,
.map-card,
.service-detail-card,
.service-side-card {
  border: 1px solid rgba(207, 167, 92, 0.12);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes driftGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.35;
  }
  50% {
    transform: translate3d(0, -14px, 0) scale(1.12);
    opacity: 0.9;
  }
}

.hero-stat span,
.mini-card span,
.feature-card-copy p,
.service-card p,
.testimonial-card span,
.contact-list,
.service-side-card li,
.page-hero-copy p,
.detail-copy p,
.footer-copy p,
.footer-col a,
.footer-col p {
  color: var(--muted);
}

.section {
  padding: 2.4rem 0;
}

#about.section {
  padding: 1.2rem 0 0.9rem;
}

#testimonials {
  background: radial-gradient(circle at top, rgba(154, 64, 34, 0.14), transparent 42%), #070707;
}

.section-tight {
  padding-top: 1.8rem;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.section h2,
.page-hero h1 {
  font-size: clamp(1.65rem, 2.2vw, 2.6rem);
  line-height: 1.08;
}

.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.2rem;
  border: 1px solid rgba(245, 176, 65, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, #f5c56d 0%, #f5b041 52%, #c97b13 100%);
  color: #16120a;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(245, 176, 65, 0.2);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.section-link:hover,
.section-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 222, 168, 0.5);
  background: linear-gradient(135deg, #f7cf84 0%, #f5b041 48%, #dd8d1f 100%);
  box-shadow: 0 16px 30px rgba(245, 176, 65, 0.28);
}

.occasion-section {
  padding: 1.35rem 0 0.7rem;
}

.occasion-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(207, 167, 92, 0.16);
  border-radius: 30px 30px 0 0;
  background:
    radial-gradient(circle at top, rgba(154, 64, 34, 0.12), transparent 38%),
    linear-gradient(180deg, #100b08 0%, #090909 100%);
  box-shadow: var(--shadow);
}

.occasion-panel {
  position: relative;
  padding: 1.45rem 1.5rem 1.25rem;
}

.occasion-panel + .occasion-panel {
  border-left: 1px solid rgba(207, 167, 92, 0.14);
}

.occasion-panel-cuisines-full {
  width: 100%;
}

.occasion-panel-cuisines-full .occasion-kicker,
.occasion-panel-cuisines-full h2,
.occasion-panel-cuisines-full .occasion-note {
  text-align: center;
}

.occasion-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(245, 176, 65, 0.08), transparent 34%),
    url("https://www.transparenttextures.com/patterns/black-linen.png");
  opacity: 0.25;
  pointer-events: none;
}

.occasion-panel > * {
  position: relative;
  z-index: 1;
}

.occasion-kicker {
  margin: 0 0 0.35rem;
  color: #d2a14f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.occasion-panel h2 {
  margin: 0;
  color: #fff6e8;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  text-align: center;
  line-height: 0.96;
}

.occasion-grid,
.cuisine-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

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

.occasion-item {
  display: grid;
  align-content: end;
  gap: 0.65rem;
  min-height: 220px;
  padding: 1rem;
  border: 1px solid rgba(245, 176, 65, 0.1);
  border-radius: 22px;
  background: #0f0f0f;
  text-align: left;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.occasion-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
}

.occasion-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(8, 8, 8, 0.2) 42%, rgba(8, 8, 8, 0.92) 100%),
    linear-gradient(135deg, rgba(245, 176, 65, 0.18), transparent 40%);
  z-index: 1;
  transition: opacity 220ms ease;
}

.occasion-item strong {
  position: relative;
  z-index: 2;
  color: #f7efe2;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.occasion-item span:last-child {
  position: relative;
  z-index: 2;
  color: rgba(239, 227, 209, 0.66);
  font-size: 0.78rem;
  line-height: 1.5;
  transition: color var(--transition);
}

.occasion-item:hover,
.occasion-item:focus-within,
.cuisine-item:hover,
.cuisine-item:focus-within {
  transform: translateY(-6px);
  border-color: rgba(245, 176, 65, 0.24);
  background: rgba(245, 176, 65, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.occasion-item:hover img,
.occasion-item:focus-within img {
  transform: scale(1.08);
  filter: saturate(1.05);
}

.occasion-item:hover::before,
.occasion-item:focus-within::before {
  opacity: 0.9;
}

.occasion-item:hover span:last-child,
.occasion-item:focus-within span:last-child {
  color: rgba(255, 243, 226, 0.88);
}

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

.cuisine-item {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  padding: 0.95rem 0.75rem 0.9rem;
  border: 1px solid rgba(245, 176, 65, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.cuisine-item img {
  width: 88px;
  height: 88px;
  border: 2px solid rgba(244, 195, 107, 0.75);
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color var(--transition), box-shadow var(--transition), filter var(--transition);
}

.cuisine-item strong {
  color: #f7efe2;
  font-size: 0.87rem;
  font-weight: 700;
  line-height: 1.35;
  transition: color var(--transition);
}

.occasion-panel-cuisines-full .cuisine-item {
  min-height: 156px;
}

.cuisine-item:hover img,
.cuisine-item:focus-within img {
  transform: scale(1.08);
  border-color: #ffd78f;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
  filter: saturate(1.08);
}

.cuisine-item:hover strong,
.cuisine-item:focus-within strong {
  color: #fff7ea;
}

.occasion-note {
  margin: 1rem 0 0;
  color: #d4a146;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.occasion-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(240px, 1.25fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(207, 167, 92, 0.14);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(180deg, #f7f1e8 0%, #efe4d5 100%);
  box-shadow: var(--shadow);
}

.occasion-metric,
.occasion-quote {
  min-height: 112px;
}

.occasion-metric {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  border-right: 1px solid rgba(47, 32, 18, 0.14);
}

.occasion-metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(207, 167, 92, 0.8);
  border-radius: 999px;
  color: #b9892d;
  font-size: 1.4rem;
  flex: 0 0 auto;
}

.occasion-metric strong {
  display: block;
  color: #2e1f12;
  font-size: 1.9rem;
  line-height: 1;
}

.occasion-metric span:last-child {
  display: block;
  margin-top: 0.3rem;
  color: #5c4937;
  font-size: 0.92rem;
  line-height: 1.4;
}

.occasion-quote {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 1rem 1.25rem;
  color: #735538;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

.events-showcase-section {
  padding: 1rem 0 0.5rem;
}

.events-showcase-shell {
  padding: 1.35rem;
  border: 1px solid rgba(207, 167, 92, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(154, 64, 34, 0.08), transparent 32%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  box-shadow: var(--shadow);
}

.events-showcase-head {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  margin-bottom: 1.15rem;
}

.events-showcase-head h2 {
  margin: 0;
  color: #fff4e3;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.events-showcase-divider {
  display: block;
  width: 164px;
  height: 14px;
  background:
    linear-gradient(90deg, rgba(245, 176, 65, 0) 0%, rgba(245, 176, 65, 0.7) 20%, rgba(245, 176, 65, 0.95) 50%, rgba(245, 176, 65, 0.7) 80%, rgba(245, 176, 65, 0) 100%);
  clip-path: polygon(0 45%, 40% 45%, 46% 0, 54% 0, 60% 45%, 100% 45%, 100% 60%, 60% 60%, 54% 100%, 46% 100%, 40% 60%, 0 60%);
}

.events-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.events-showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 198px;
  border: 1px solid rgba(245, 176, 65, 0.3);
  border-radius: 16px;
  background: #0d0d0d;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.events-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.events-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.18) 56%, rgba(3, 3, 3, 0.94) 100%),
    linear-gradient(135deg, rgba(245, 176, 65, 0.12), transparent 36%);
}

.events-showcase-card strong {
  position: absolute;
  right: 0.85rem;
  bottom: 0.8rem;
  left: 0.85rem;
  z-index: 1;
  color: #f7efe2;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.events-showcase-card:hover,
.events-showcase-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(245, 176, 65, 0.54);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.32);
}

.events-showcase-card:hover img,
.events-showcase-card:focus-within img {
  transform: scale(1.08);
  filter: saturate(1.06);
}

.about-shell {
  gap: 1.6rem;
}

.about-intro-card {
  position: relative;
  overflow: hidden;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  padding: 1.8rem;
  border: 1px solid rgba(240, 216, 160, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(245, 176, 65, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(154, 64, 34, 0.16), transparent 24%),
    linear-gradient(145deg, rgba(18, 18, 18, 0.98), rgba(10, 10, 10, 0.98));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
  isolation: isolate;
  animation: aboutCardReveal 900ms ease both;
}

.about-intro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
    url("https://www.transparenttextures.com/patterns/black-linen.png");
  opacity: 0.24;
  pointer-events: none;
}

.about-intro-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 33px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.about-intro-copy,
.about-stat-grid {
  position: relative;
  z-index: 1;
}

.about-intro-copy {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  max-width: 70rem;
}

.about-intro-copy h2 {
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.96;
  color: #fff7ea;
  text-wrap: balance;
}

.about-intro-copy p {
  margin: 0;
  max-width: 68ch;
  color: rgba(236, 225, 209, 0.82);
  font-size: 1rem;
  line-height: 1.9;
}

.about-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.35rem;
}

.mini-card {
  position: relative;
  display: grid;
  gap: 0.65rem;
  min-height: 100%;
  padding: 1.2rem 1.15rem 1.1rem;
  border: 1px solid rgba(240, 216, 160, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(34, 29, 24, 0.94), rgba(18, 18, 18, 0.98));
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
  animation: aboutMiniCardRise 700ms ease both;
}

.mini-card::before {
  content: "";
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f5b041, rgba(245, 176, 65, 0));
}

.mini-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 176, 65, 0.12), rgba(245, 176, 65, 0));
  pointer-events: none;
}

.mini-card strong {
  color: #fff2d8;
  font-size: 1.04rem;
  line-height: 1.45;
}

.mini-card span {
  color: rgba(234, 221, 201, 0.74);
  line-height: 1.72;
}

.mini-card:hover,
.mini-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(245, 176, 65, 0.26);
  background: linear-gradient(180deg, rgba(38, 32, 26, 0.98), rgba(19, 19, 19, 0.98));
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.26);
}

.mini-card:nth-child(1) {
  animation-delay: 120ms;
}

.mini-card:nth-child(2) {
  animation-delay: 240ms;
}

.mini-card:nth-child(3) {
  animation-delay: 360ms;
}

.about-carousel-shell {
  position: relative;
  padding: 0.4rem 0;
}

.about-carousel-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(245, 176, 65, 0.06), transparent 12%, transparent 88%, rgba(245, 176, 65, 0.06));
  pointer-events: none;
}

.about-feature-grid {
  gap: 1.1rem;
  padding: 0.2rem 0.2rem 0.95rem;
}

.feature-card {
  border: 1px solid rgba(240, 216, 160, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(11, 11, 11, 0.98));
}

.feature-card img {
  aspect-ratio: 4 / 2.4;
}

.feature-card-copy {
  gap: 0.45rem;
  padding: 1.05rem 1.05rem 1.15rem;
}

.feature-card-copy strong {
  color: #fff4df;
  font-size: 1rem;
  line-height: 1.4;
}

.feature-card-copy p {
  color: rgba(234, 221, 201, 0.72);
  line-height: 1.7;
}

.services-carousel-shell {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 0.8rem;
  align-items: center;
}

.service-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 250px);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.2rem 0.1rem 0.8rem;
  scrollbar-width: none;
}

.service-grid::-webkit-scrollbar {
  display: none;
}

.carousel-control {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(207, 167, 92, 0.16);
  border-radius: 999px;
  background: var(--surface);
  color: var(--gold-soft);
  font-size: 1.35rem;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.carousel-control:hover,
.carousel-control:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(207, 167, 92, 0.28);
  background: var(--surface-2);
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  scroll-snap-align: start;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover,
.service-card:focus-visible,
.gallery-card:hover,
.gallery-card:focus-visible,
.feature-card:hover,
.feature-card:focus-visible {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: rgba(207, 167, 92, 0.28);
}

.service-card img,
.feature-card img,
.gallery-card img {
  aspect-ratio: 4 / 2.75;
  object-fit: cover;
}

.feature-card img {
  aspect-ratio: 4 / 2.15;
}

.service-card-body {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem 0.9rem 0.95rem;
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-index {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.28;
}

.service-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.58;
}

.service-card span {
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 800;
}

.about-layout,
.contact-layout,
.service-layout {
  display: grid;
  gap: 1.15rem;
}

.about-shell,
.about-intro-card,
.about-feature-grid,
.about-stat-grid {
  display: grid;
  gap: 1rem;
}

.about-shell {
  gap: 1.1rem;
}

.about-intro-card {
  grid-template-columns: 1fr;
  padding: 1.4rem;
  border: 1px solid rgba(207, 167, 92, 0.12);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-intro-copy p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  line-height: 1.72;
}

.about-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
}

.about-feature-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 280px);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.15rem 0.1rem 0.85rem;
  scrollbar-width: none;
}

.about-feature-grid::-webkit-scrollbar {
  display: none;
}

.about-carousel-shell {
  overflow: hidden;
}

.mini-card {
  gap: 0.35rem;
  padding: 1rem;
}

@keyframes aboutCardReveal {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes aboutMiniCardRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mini-card strong,
.feature-card-copy strong,
.detail-points li strong,
.footer-copy strong {
  font-size: 0.95rem;
}

.feature-card {
  overflow: hidden;
  scroll-snap-align: start;
}

.feature-card-copy {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem 1rem;
}

.feature-card-copy p,
.detail-copy p,
.service-side-card li,
.footer-copy p,
.footer-col p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 260px);
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.2rem 0.1rem 0.8rem;
  scrollbar-width: none;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(207, 167, 92, 0.12);
  border-radius: var(--radius-md);
  background: var(--surface);
  min-height: 180px;
  scroll-snap-align: start;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.06);
}

.gallery-card span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.82);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.gallery-card img {
  aspect-ratio: 4 / 3;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 44px auto 44px;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

.testimonial-head {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
  text-align: center;
}

.testimonial-head h2 {
  color: #fff8ec;
}

.testimonial-head p:last-child {
  max-width: 46ch;
  margin: 0;
  color: rgba(255, 241, 219, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-track {
  position: relative;
  width: min(900px, calc(100vw - 8rem));
  min-height: 292px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% - 0.45rem);
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 292px;
  padding: 1.2rem;
  border: 1px solid rgba(240, 216, 160, 0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, #19120d 0%, #110b08 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(28px);
  transition: opacity 260ms ease, transform 260ms ease, box-shadow var(--transition), border-color var(--transition);
}

.testimonial-card::before {
  content: "“";
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(240, 216, 160, 0.22);
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(240, 216, 160, 0.24);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
  pointer-events: auto;
}

.testimonial-card.is-secondary {
  left: auto;
  right: 0;
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(240, 216, 160, 0.24);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
  pointer-events: auto;
}

.testimonial-card::before {
  font-size: 2.3rem;
}

.testimonial-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.68;
  color: rgba(255, 245, 230, 0.9);
}

.testimonial-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  color: #f3b91c;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0d8a0 0%, #cfa75c 100%);
  color: #2f190f;
  font-size: 1rem;
  font-weight: 800;
}

.testimonial-person-copy {
  display: grid;
  gap: 0.2rem;
}

.testimonial-card strong {
  margin-top: 0;
  font-size: 0.9rem;
  color: #fff8ec;
}

.testimonial-card span {
  font-size: 0.8rem;
  color: rgba(255, 232, 196, 0.72);
}

.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(240, 216, 160, 0.12);
}

.testimonial-verified img {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: transparent;
  object-fit: cover;
}

.testimonial-verified span {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(255, 232, 196, 0.76);
}

.testimonial-verified strong {
  color: #fff8ec;
  font-weight: 800;
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(240, 216, 160, 0.2);
  border-radius: 999px;
  background: #17110d;
  color: #f3dba8;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
  justify-self: center;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(240, 216, 160, 0.34);
  background: #231913;
  color: #fff3d2;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

.about-showcase-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.2rem;
  align-items: start;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(207, 167, 92, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(11, 11, 11, 0.95) 46%, rgba(16, 11, 7, 0.92) 100%),
    radial-gradient(circle at top left, rgba(245, 176, 65, 0.1), transparent 26%);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.about-showcase-copy {
  display: grid;
  gap: 0.45rem;
  padding: 0.1rem;
}

.about-kicker {
  margin: 0;
  color: #d7a84a;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.about-divider {
  width: 120px;
  height: 10px;
  background:
    linear-gradient(90deg, #d7a84a, rgba(215, 168, 74, 0.18)),
    radial-gradient(circle at center, #d7a84a 0 2px, transparent 3px);
  mask: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  opacity: 0.95;
}

.about-showcase-copy h2 {
  margin: 0;
  color: #e1a642;
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.about-showcase-copy p {
  margin: 0;
  max-width: 54ch;
  color: rgba(255, 242, 220, 0.84);
  font-size: 1rem;
  line-height: 1.7;
}

.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.about-cta-row .button {
  min-height: 42px;
}

.about-points {
  display: grid;
  gap: 0.45rem;
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
}

.about-points li {
  position: relative;
  padding-left: 1.75rem;
  color: rgba(255, 242, 220, 0.9);
  line-height: 1.6;
}

.about-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(215, 168, 74, 0.7);
  border-radius: 999px;
  color: #f2c86f;
  font-size: 0.72rem;
  font-weight: 800;
}

.about-showcase-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(207, 167, 92, 0.18);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
}

.about-showcase-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at top, rgba(255, 209, 120, 0.14), transparent 34%);
  pointer-events: none;
}

.about-showcase-image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.testimonial-head {
  gap: 0.35rem;
  margin-bottom: 1.4rem;
}

.testimonial-kicker {
  margin: 0;
  color: #ecd4ac;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-head h2 {
  display: none;
}

.testimonial-subtitle {
  display: none;
}

.testimonial-shell {
  display: block;
  width: 100%;
  margin: 0;
}

.testimonial-track {
  position: static;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  width: 100%;
  min-height: 0;
}

.testimonial-arrow,
.testimonial-card:nth-child(n + 4),
.testimonial-rating,
.testimonial-person-copy span {
  display: none;
}

.testimonial-card,
.testimonial-card.is-active,
.testimonial-card.is-secondary {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 100%;
  min-height: 185px;
  padding: 0.95rem 0.95rem 0.8rem;
  border: 1px solid rgba(215, 168, 74, 0.7);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.98), rgba(18, 13, 9, 0.98));
  opacity: 1;
  pointer-events: auto;
  transform: none;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.7rem;
  left: 0.95rem;
  color: #d7a84a;
  font-size: 1.55rem;
  line-height: 1;
  text-align: left;
  opacity: 0.95;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 2.25rem;
  width: 52px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(215, 168, 74, 0.95), rgba(215, 168, 74, 0));
  animation: testimonialAccentGlow 3.2s ease-in-out infinite;
}

.testimonial-card p {
  margin: 0;
  min-height: 72px;
  color: rgba(255, 245, 231, 0.92);
  font-size: 0.82rem;
  line-height: 1.65;
}

.testimonial-person {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.2rem;
  padding-top: 1.5rem;
}

.testimonial-person::after {
  content: "";
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 999px;
  border: 2px solid rgba(215, 168, 74, 0.9);
  background-position: center;
  background-size: cover;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.testimonial-card:nth-child(1) .testimonial-person::after {
  background-image: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=180&q=80");
}

.testimonial-card:nth-child(2) .testimonial-person::after {
  background-image: url("https://images.unsplash.com/photo-1438761681033-6461ffad8d80?auto=format&fit=crop&w=180&q=80");
}

.testimonial-card:nth-child(3) .testimonial-person::after {
  background-image: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=180&q=80");
}

.testimonial-person-copy,
.testimonial-person strong {
  display: flex;
  align-items: flex-end;
  min-height: 48px;
  color: #fff1d2;
  font-size: 0.86rem;
  line-height: 1.5;
}

.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(240, 216, 160, 0.12);
}

.testimonial-verified img {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  object-fit: cover;
}

.testimonial-verified span {
  display: inline;
  font-size: 0.72rem;
  color: rgba(255, 232, 196, 0.76);
}

.testimonial-verified strong {
  color: #fff8ec;
  font-weight: 800;
}

@keyframes testimonialAccentGlow {
  0%,
  100% {
    opacity: 0.55;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.12);
  }
}

@media (max-width: 980px) {
  .about-showcase-card {
    grid-template-columns: 1fr;
  }

  .about-showcase-image img {
    min-height: 320px;
  }

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

  .testimonial-card:nth-child(n + 2) {
    display: none;
  }
}

.contact-layout {
  grid-template-columns: 1fr;
}

.booking-shell {
  padding-top: 0;
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(207, 167, 92, 0.12);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.booking-copy p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  line-height: 1.72;
}

.booking-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.booking-points span {
  display: block;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(207, 167, 92, 0.12);
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.booking-form {
  display: grid;
  gap: 0.85rem;
}

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

.booking-field {
  display: grid;
  gap: 0.38rem;
}

.booking-field-full {
  grid-column: 1 / -1;
}

.booking-field label {
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  border: 1px solid rgba(207, 167, 92, 0.14);
  border-radius: 12px;
  background: #131313;
  color: var(--text);
  padding: 0.82rem 0.9rem;
  outline: none;
}

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

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: rgba(207, 167, 92, 0.34);
}

.booking-field input[type="date"] {
  color-scheme: dark;
  cursor: pointer;
}

.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 1;
}

.contact-card,
.map-card {
  padding: 1.2rem;
}

#contact .contact-card {
  position: relative;
  overflow: hidden;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(207, 167, 92, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(11, 11, 11, 0.95) 46%, rgba(16, 11, 7, 0.92) 100%),
    radial-gradient(circle at top left, rgba(245, 176, 65, 0.1), transparent 26%);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.34);
}

#contact .contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
    url("https://www.transparenttextures.com/patterns/black-linen.png");
  opacity: 0.18;
  pointer-events: none;
}

#contact .contact-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: 1.2rem;
  align-items: stretch;
}

.contact-card-main {
  display: grid;
  align-content: start;
  gap: 1rem;
  position: relative;
  z-index: 1;
  padding: 0.15rem;
}

#contact .contact-card-main h2 {
  margin: 0;
  color: #fff7ea;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.contact-intro {
  margin: 0;
  max-width: 58ch;
  color: rgba(240, 231, 219, 0.8);
  line-height: 1.75;
}

#contact .contact-intro {
  color: rgba(255, 242, 220, 0.84);
}

.contact-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

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

.contact-info-card,
.contact-address-card {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(240, 216, 160, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

#contact .contact-info-card,
#contact .contact-address-card,
#contact .contact-side-panel,
#contact .contact-side-metric {
  border-color: rgba(240, 216, 160, 0.12);
  background: linear-gradient(180deg, rgba(34, 29, 24, 0.94), rgba(18, 18, 18, 0.98));
}

.contact-info-card {
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.contact-info-card:hover,
.contact-info-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(240, 216, 160, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

#contact .contact-info-card:hover,
#contact .contact-info-card:focus-visible {
  border-color: rgba(245, 176, 65, 0.26);
  background: linear-gradient(180deg, rgba(38, 32, 26, 0.98), rgba(19, 19, 19, 0.98));
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

.contact-info-label {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-info-card strong {
  color: #fff4df;
  font-size: 1rem;
  line-height: 1.35;
}

.contact-info-card span:last-child,
.contact-address-card p {
  margin: 0;
  color: rgba(240, 231, 219, 0.74);
  line-height: 1.6;
}

.contact-list a,
.contact-list p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.address-lines {
  display: grid;
  gap: 0.18rem;
}

.address-lines p {
  margin: 0;
}

.contact-side-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(240, 216, 160, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(207, 167, 92, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(16, 16, 16, 0.98));
}

#contact .contact-side-panel {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.contact-side-kicker {
  margin: 0 0 0.4rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

#contact .section-tag,
#contact .contact-side-kicker {
  color: #d7a84a;
}

#contact .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.1rem;
}

.contact-side-form {
  display: grid;
  gap: 0.85rem;
}

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

#contact .contact-side-form .booking-field input,
#contact .contact-side-form .booking-field select,
#contact .contact-side-form .booking-field textarea {
  border-color: rgba(240, 216, 160, 0.14);
  background: rgba(8, 8, 8, 0.65);
  color: #fff4df;
}

#contact .contact-side-form .booking-field input[type="date"] {
  color-scheme: dark;
  cursor: pointer;
}

#contact .contact-side-form .booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 1;
}

#contact .contact-side-form .booking-field input::placeholder,
#contact .contact-side-form .booking-field textarea::placeholder {
  color: rgba(240, 231, 219, 0.5);
}

#contact .contact-side-form .booking-field textarea {
  min-height: 110px;
}

.contact-followup-card {
  display: grid;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(207, 167, 92, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(11, 11, 11, 0.95) 46%, rgba(16, 11, 7, 0.92) 100%),
    radial-gradient(circle at top left, rgba(245, 176, 65, 0.1), transparent 26%);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.34);
}

.contact-followup-head {
  display: grid;
  gap: 0.45rem;
}

.contact-followup-head h2 {
  margin: 0;
  color: #fff7ea;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.02;
}

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

.contact-followup-item {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid rgba(240, 216, 160, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(34, 29, 24, 0.94), rgba(18, 18, 18, 0.98));
}

.contact-followup-item strong {
  color: #fff2d8;
  font-size: 1rem;
  line-height: 1.45;
}

.contact-followup-item p {
  margin: 0;
  color: rgba(255, 242, 220, 0.78);
  line-height: 1.7;
}

.contact-side-top {
  display: grid;
  gap: 0.6rem;
}

.contact-side-top h3 {
  margin: 0;
  color: #fff5e9;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.12;
}

.contact-side-top p,
.contact-side-metric span,
.contact-side-note p {
  margin: 0;
  color: rgba(240, 231, 219, 0.76);
  line-height: 1.7;
}

.contact-side-metrics {
  display: grid;
  gap: 0.8rem;
}

.contact-request-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-request-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0.85rem;
  border: 1px solid rgba(240, 216, 160, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #f7ead1;
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-side-metric {
  display: grid;
  gap: 0.28rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(240, 216, 160, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-side-metric strong {
  color: #fff0d0;
  font-size: 0.95rem;
}

.contact-side-note {
  position: relative;
  padding: 1rem 1rem 1rem 2.5rem;
  border-top: 1px solid rgba(240, 216, 160, 0.12);
}

.contact-side-note-mark {
  position: absolute;
  top: 0.35rem;
  left: 0.8rem;
  color: rgba(240, 216, 160, 0.5);
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
}

.map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 14px;
  filter: grayscale(1) invert(0.92) contrast(1.1);
}

.site-footer {
  padding: 0.6rem 0 0;
  background: #000000;
  color: #fff5f2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-panel {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr 1.4fr;
  gap: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.footer-copy,
.footer-col {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  min-height: 100%;
  padding: 0.9rem 0.9rem;
  border-right: 1px dashed rgba(255, 255, 255, 0.08);
}

.footer-panel > :last-child {
  border-right: 0;
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand-copy {
  display: grid;
  gap: 0.14rem;
}

.footer-brand-copy strong {
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.1;
}

.footer-brand-copy span {
  color: rgba(255, 224, 170, 0.8);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-logo {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  object-fit: cover;
}

.footer-copy p,
.footer-col a,
.footer-col p,
.footer-contact-lines a,
.footer-contact-lines p {
  margin: 0;
  color: rgba(255, 241, 237, 0.82);
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer-copy h3,
.footer-col h3 {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 30px;
  padding: 0 0.75rem;
  border: 1px solid rgba(240, 216, 160, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(207, 167, 92, 0.18), rgba(207, 167, 92, 0.08));
  font-size: 0.8rem;
  color: #ffe5a9;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a:hover,
.footer-col a:focus-visible,
.footer-contact-lines a:hover,
.footer-contact-lines a:focus-visible {
  color: #f6d167;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 0;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0;
  border: 1px solid rgba(240, 216, 160, 0.14);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: rgba(240, 216, 160, 0.14);
  color: #fff4ca;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-lines {
  display: grid;
  gap: 0.5rem;
}

.footer-map-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: #0f1015;
}

.footer-map-frame iframe {
  width: 100%;
  min-height: 145px;
  border: 0;
  display: block;
}

.footer-credit {
  margin: 0;
  padding: 0.7rem 0 0.85rem;
  text-align: center;
  color: rgba(255, 241, 237, 0.72);
  font-size: 0.78rem;
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 1rem);
  z-index: 120;
  display: grid;
  gap: 0.85rem;
}

.floating-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(207, 167, 92, 0.14);
  border-radius: 999px;
  background: #111111;
  box-shadow: var(--shadow);
  color: var(--text);
  animation: floatPulse 3.2s ease-in-out infinite;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.floating-button:hover,
.floating-button:focus-visible {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-hover);
  border-color: rgba(207, 167, 92, 0.28);
}

.floating-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.floating-call {
  background: #1877f2;
  color: #ffffff;
  animation-delay: 0.4s;
}

.chat-assistant {
  position: fixed;
  right: 1rem;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 10rem);
  z-index: 125;
  display: grid;
  justify-items: end;
  gap: 0.85rem;
}

.chat-assistant-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(240, 216, 160, 0.32);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(245, 176, 65, 0.28), transparent 38%),
    linear-gradient(180deg, rgba(24, 22, 18, 0.98), rgba(11, 11, 11, 0.98));
  color: #fff7ea;
  box-shadow:
    0 0 0 6px rgba(240, 216, 160, 0.06),
    0 18px 38px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(240, 192, 102, 0.18);
}

.chat-assistant-toggle:hover,
.chat-assistant-toggle:focus-visible {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(255, 224, 156, 0.52);
  box-shadow:
    0 0 0 8px rgba(240, 216, 160, 0.08),
    0 22px 44px rgba(0, 0, 0, 0.38),
    0 0 32px rgba(240, 192, 102, 0.28);
}

.chat-assistant-toggle-icon,
.chat-assistant-toggle-icon svg {
  width: 24px;
  height: 24px;
  color: #f2c261;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(242, 194, 97, 0.35));
}

.chat-assistant-panel {
  width: min(360px, calc(100vw - 1.2rem));
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(240, 216, 160, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(245, 176, 65, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(14, 14, 14, 0.98), rgba(8, 8, 8, 0.99));
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.38);
}

.chat-assistant-panel[hidden] {
  display: none;
}

.chat-assistant-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.9rem;
}

.chat-assistant-title {
  display: grid;
  gap: 0.15rem;
}

.chat-assistant-status {
  color: #f0c066;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chat-assistant-title strong {
  font-size: 1.05rem;
  color: #fff8ec;
}

.chat-assistant-title span:last-child {
  color: rgba(255, 236, 208, 0.72);
  font-size: 0.8rem;
}

.chat-assistant-close {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(240, 216, 160, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.chat-assistant-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #fff6e6;
}

.chat-assistant-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.chat-assistant-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.chat-assistant-messages {
  display: grid;
  gap: 0.7rem;
  max-height: 320px;
  padding-right: 0.2rem;
  overflow-y: auto;
}

.chat-message {
  display: flex;
}

.chat-message-assistant {
  justify-content: flex-start;
}

.chat-message-user {
  justify-content: flex-end;
}

.chat-message-bubble {
  max-width: 88%;
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.chat-message-assistant .chat-message-bubble {
  border: 1px solid rgba(240, 216, 160, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 243, 224, 0.92);
}

.chat-message-user .chat-message-bubble {
  background: linear-gradient(180deg, #e3a234 0%, #ba7714 100%);
  color: #1d1509;
  font-weight: 700;
}

.chat-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.45rem;
}

.chat-typing-bubble {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.chat-typing-bubble span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 240, 216, 0.78);
  animation: chatTypingPulse 1.1s ease-in-out infinite;
}

.chat-typing-bubble span:nth-child(2) {
  animation-delay: 0.16s;
}

.chat-typing-bubble span:nth-child(3) {
  animation-delay: 0.32s;
}

.chat-inline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 0.9rem;
  border: 1px solid rgba(240, 216, 160, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff0c8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chat-inline-action:hover,
.chat-inline-action:focus-visible,
.chat-chip:hover,
.chat-chip:focus-visible,
.chat-assistant-send:hover,
.chat-assistant-send:focus-visible {
  transform: translateY(-2px);
}

.chat-assistant-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chat-chip {
  min-height: 36px;
  padding: 0 0.8rem;
  border: 1px solid rgba(240, 216, 160, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 240, 216, 0.9);
  font-size: 0.76rem;
  font-weight: 700;
}

.chat-assistant-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
}

.chat-assistant-input {
  min-width: 0;
  min-height: 46px;
  padding: 0 0.95rem;
  border: 1px solid rgba(240, 216, 160, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff7e9;
}

.chat-assistant-input::placeholder {
  color: rgba(255, 238, 214, 0.48);
}

.chat-assistant-send {
  min-width: 84px;
  min-height: 46px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 198, 88, 0.38);
  border-radius: 16px;
  background: linear-gradient(180deg, #e3a234 0%, #b87512 100%);
  color: #16120a;
  font-weight: 800;
}

@keyframes chatTypingPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.42;
  }
  50% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@keyframes floatPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.56);
  }
}

.page-hero {
  min-height: 340px;
}

.page-hero-copy {
  padding: 2rem;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(240, 216, 160, 0.14);
  border-radius: inherit;
  pointer-events: none;
}

.page-hero-copy p {
  max-width: 64ch;
  margin: 1rem 0 0;
  line-height: 1.75;
}

.service-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: stretch;
}

.service-detail-card,
.service-side-card {
  padding: 1.2rem;
}

.service-detail-card {
  display: flex;
  flex-direction: column;
}

.service-side-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: start;
  grid-auto-rows: min-content;
}

.service-detail-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.detail-copy h2,
.service-side-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
}

.detail-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.95rem;
}

.detail-points,
.service-side-card ul {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.15rem 0 0;
  list-style: none;
}

.detail-points li {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(207, 167, 92, 0.12);
  border-radius: 14px;
  background: var(--surface-2);
}

.detail-points li p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.service-detail-carousel-shell {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.2rem;
}

.detail-points-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 260px);
  gap: 0.9rem;
  margin: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.15rem 0.1rem 0.6rem;
  scrollbar-width: none;
}

.detail-points-carousel::-webkit-scrollbar {
  display: none;
}

.detail-points-carousel li {
  min-height: 100%;
  scroll-snap-align: start;
}

.service-detail-bridge {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 1rem;
  flex: 1 1 auto;
  padding: 1.35rem 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.015);
}

.service-detail-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.82)),
    url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1200&q=80");
  background-position: center;
  background-size: cover;
  opacity: 0.22;
  transform: scale(1.06);
  animation: bridgeImageFloat 14s ease-in-out infinite alternate;
}

.service-detail-bridge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(245, 176, 65, 0.14), rgba(245, 176, 65, 0) 58%);
  opacity: 0.6;
  animation: bridgeGlowPulse 6s ease-in-out infinite;
}

.service-detail-bridge-line {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 176, 65, 0), rgba(245, 176, 65, 0.22), rgba(245, 176, 65, 0));
  background-size: 200% 100%;
  animation: bridgeShimmer 4s linear infinite;
}

.service-detail-bridge-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  max-width: 30ch;
  text-align: center;
  animation: bridgeContentFloat 4.8s ease-in-out infinite;
}

.service-detail-bridge-tag {
  margin: 0;
  color: #f4c36b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-detail-bridge-copy p:last-child {
  margin: 0;
  color: rgba(246, 232, 209, 0.82);
  font-size: 0.9rem;
  line-height: 1.75;
}

@keyframes bridgeShimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes bridgeContentFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes bridgeGlowPulse {
  0%,
  100% {
    opacity: 0.38;
  }
  50% {
    opacity: 0.72;
  }
}

@keyframes bridgeImageFloat {
  0% {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.12) translate3d(0, -8px, 0);
  }
}

.service-detail-signature {
  display: grid;
  gap: 0.85rem;
  margin-top: auto;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(245, 176, 65, 0.12);
}

.service-detail-signature-tag {
  margin: 0;
  color: #f4c36b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-detail-signature h3 {
  margin: 0;
  max-width: 34ch;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #fff4e3;
}

.service-detail-signature-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.service-detail-signature-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(245, 176, 65, 0.14);
  border-radius: 999px;
  background: rgba(245, 176, 65, 0.06);
  color: #f6e8d1;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.3;
}

.service-side-card ul {
  margin-top: 0;
  gap: 0.4rem;
  flex: 1 1 auto;
}

.service-side-card li {
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(207, 167, 92, 0.1);
  border-radius: 12px;
  background: var(--surface-2);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-side-card li:last-child {
  padding-bottom: 0.85rem;
}

.service-side-card .page-hero-actions {
  margin-top: 1.15rem;
}

.service-side-card .button {
  flex: 1 1 0;
}

.service-side-bottom {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.service-side-highlight {
  padding: 1rem;
  border: 1px solid rgba(207, 167, 92, 0.1);
  border-radius: 14px;
  background: var(--surface-3);
}

.service-side-highlight strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-soft);
  font-size: 0.9rem;
}

.service-side-highlight p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.service-side-highlight ul,
.related-services-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-side-highlight ul li {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.related-services {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(207, 167, 92, 0.1);
  border-radius: 14px;
  background: var(--surface-2);
}

.related-services strong {
  color: var(--gold-soft);
  font-size: 0.9rem;
}

.related-services-list a {
  display: block;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(207, 167, 92, 0.1);
  border-radius: 12px;
  background: #141414;
  color: var(--text);
  font-size: 0.87rem;
  font-weight: 700;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.related-services-list a:hover,
.related-services-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(207, 167, 92, 0.24);
  background: #191919;
}

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

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

.package-quick-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1.25rem;
  border: 1px solid rgba(224, 201, 157, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at bottom, rgba(232, 190, 106, 0.1), transparent 32%),
    linear-gradient(180deg, #fbf5e7 0%, #f1e7d2 100%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.package-quick-label {
  justify-self: start;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(225, 193, 120, 0.28);
  color: #5f4217;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-quick-card h3 {
  margin: 0;
  color: #332518;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

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

.package-compare-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1.3rem;
  border: 1px solid rgba(224, 201, 157, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(207, 167, 92, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(21, 18, 15, 0.98), rgba(11, 10, 8, 0.98));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.package-compare-label {
  justify-self: start;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(207, 167, 92, 0.16);
  color: #ffe3a5;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-compare-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  line-height: 0.98;
  color: #fff7e8;
}

.package-compare-price {
  margin: 0;
  color: #f1c46f;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.package-compare-list li {
  color: rgba(255, 244, 225, 0.84);
  font-size: 0.92rem;
  line-height: 1.6;
}

.package-compare-list strong {
  color: #fff1ce;
}

.package-compare-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.package-quick-price {
  margin: 0;
  color: #6f4710;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.package-quick-features li {
  position: relative;
  padding-left: 1.2rem;
  color: #433121;
  line-height: 1.55;
}

.package-quick-features li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ddb22e;
}

.packages-quick-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}

.package-plan-card {
  position: relative;
  display: grid;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(224, 201, 157, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at top, rgba(207, 167, 92, 0.14), transparent 34%),
    linear-gradient(180deg, #1b1612 0%, #0f0d0b 100%);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}

.package-plan-card:hover,
.package-plan-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.34);
}

.package-plan-media-shell {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.package-plan-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 2.7;
  object-fit: cover;
  transform: scale(1.01);
}

.package-plan-media-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.08) 0%, rgba(10, 9, 8, 0.2) 48%, rgba(10, 9, 8, 0.72) 100%);
}

.package-plan-body {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.35rem 1.35rem 1.45rem;
  color: #f7eee1;
}

.package-plan-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(12, 11, 10, 0.72);
  color: #fff2cf;
  border: 1px solid rgba(255, 232, 180, 0.18);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.package-plan-head {
  display: grid;
  gap: 0.65rem;
  min-height: 108px;
}

.package-plan-body h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.4vw, 2.45rem);
  line-height: 0.98;
  color: #fff8eb;
}

.package-plan-description {
  margin: 0;
  min-height: 104px;
  font-size: 0.95rem;
  line-height: 1.72;
  color: rgba(247, 238, 225, 0.78);
}

.package-plan-features {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
  align-content: start;
}

.package-plan-features li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(247, 238, 225, 0.88);
  font-size: 0.92rem;
  line-height: 1.58;
}

.package-plan-features li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d8af56;
}

.package-plan-price {
  color: #f6d790;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.package-plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.package-plan-actions .button {
  flex: 1 1 0;
}

.package-plan-actions .button-primary {
  border-color: rgba(255, 206, 112, 0.22);
  box-shadow: none;
}

.package-plan-actions .button-secondary {
  border-color: rgba(255, 221, 162, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #fff2da;
  backdrop-filter: blur(10px);
}

.package-plan-actions .button-secondary:hover,
.package-plan-actions .button-secondary:focus-visible {
  border-color: rgba(255, 222, 168, 0.42);
  box-shadow: 0 14px 24px rgba(90, 69, 26, 0.16);
}

.package-plan-card--basic-package {
  background:
    radial-gradient(circle at top, rgba(184, 128, 44, 0.18), transparent 30%),
    linear-gradient(180deg, #1c1612 0%, #100d0a 100%);
}

.package-plan-card--premium-package {
  background:
    radial-gradient(circle at top, rgba(207, 167, 92, 0.2), transparent 32%),
    linear-gradient(180deg, #1a1714 0%, #0f0d0c 100%);
}

.package-plan-card--luxury-package {
  background:
    radial-gradient(circle at top, rgba(246, 212, 138, 0.24), transparent 34%),
    linear-gradient(180deg, #171412 0%, #0b0a09 100%);
  border-color: rgba(246, 212, 138, 0.18);
}

.service-fresh-shell {
  position: relative;
  overflow: hidden;
  padding-top: 1.8rem;
}

.service-fresh-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(228, 173, 61, 0.12), transparent 18%),
    radial-gradient(circle at 88% 24%, rgba(134, 62, 30, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.service-stage,
.service-editorial-grid,
.service-practical-grid {
  position: relative;
  z-index: 1;
}

.service-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 1.4rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}

.service-stage-copy,
.service-editorial-panel,
.service-practical-card {
  border: 1px solid rgba(226, 208, 176, 0.14);
  background:
    linear-gradient(180deg, rgba(248, 241, 225, 0.06), rgba(248, 241, 225, 0.02)),
    rgba(14, 14, 14, 0.92);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.24);
}

.service-stage-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 2rem;
  border-radius: 36px 16px 36px 16px;
}

.service-stage-tag,
.service-editorial-kicker {
  margin: 0;
  color: #efc977;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-stage-copy h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Poppins", var(--font-body);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f8f0df;
}

.service-stage-summary {
  max-width: 42ch;
  margin: 0;
  color: rgba(241, 231, 215, 0.82);
  font-size: 1rem;
  line-height: 1.85;
}

.service-stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-stage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.service-stage-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(226, 208, 176, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(247, 236, 219, 0.86);
  font-size: 0.86rem;
  line-height: 1.4;
}

.service-stage-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 1rem;
  min-height: 100%;
}

.service-stage-photo {
  overflow: hidden;
  border: 1px solid rgba(230, 210, 174, 0.12);
  background: #0f0f0f;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
}

.service-stage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-stage-photo-primary {
  min-height: 560px;
  border-radius: 18px 44px 18px 44px;
}

.service-stage-photo-secondary {
  min-height: 250px;
  border-radius: 18px;
}

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

.service-stage-note {
  display: grid;
  gap: 0.6rem;
  padding: 1.1rem;
  border: 1px solid rgba(226, 208, 176, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(17, 17, 17, 0.96));
}

.service-stage-note strong {
  color: #f8f0df;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-stage-note p {
  margin: 0;
  color: rgba(238, 228, 213, 0.76);
  font-size: 0.92rem;
  line-height: 1.75;
}

.service-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-editorial-panel {
  padding: 1.4rem 1.45rem;
  border-radius: 24px;
}

.service-editorial-panel-main {
  display: grid;
  gap: 0.9rem;
}

.service-editorial-panel-main h2,
.service-structure-head h2,
.service-practical-card h3 {
  margin: 0;
  color: #faf1e1;
  font-family: var(--font-display);
}

.service-editorial-panel-main h2 {
  max-width: 20ch;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
}

.service-editorial-panel-main p:last-child,
.service-editorial-panel-main p:nth-of-type(2) {
  margin: 0;
  color: rgba(239, 229, 213, 0.8);
  line-height: 1.85;
}

.service-editorial-panel-quote {
  display: grid;
  align-content: space-between;
  gap: 1rem;
  border-radius: 12px 28px 12px 28px;
}

.service-editorial-mark {
  color: rgba(239, 201, 119, 0.8);
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
}

.service-editorial-panel-quote p {
  margin: 0;
  color: rgba(246, 238, 226, 0.88);
  font-size: 1rem;
  line-height: 1.9;
}

.service-structure {
  margin-bottom: 1.5rem;
}

.service-structure-head {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.service-structure-head h2 {
  font-size: clamp(1.9rem, 2.7vw, 2.8rem);
  line-height: 1;
}

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

.service-structure-card {
  display: grid;
  gap: 0.7rem;
  min-height: 100%;
  padding: 1.35rem 1.2rem;
  border: 1px solid rgba(226, 208, 176, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at bottom right, rgba(229, 175, 67, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(19, 19, 19, 0.98), rgba(13, 13, 13, 0.98));
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.18);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-structure-card:hover,
.service-structure-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(239, 201, 119, 0.24);
  box-shadow: 0 28px 44px rgba(0, 0, 0, 0.24);
}

.service-structure-card strong {
  color: #fff4df;
  font-size: 1rem;
  line-height: 1.45;
}

.service-structure-card p {
  margin: 0;
  color: rgba(234, 221, 201, 0.76);
  line-height: 1.75;
}

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

.service-practical-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1.35rem;
  border-radius: 24px;
}

.service-practical-card h3 {
  font-size: 1.45rem;
  line-height: 1.1;
}

.service-practical-list,
.service-practical-card .related-services-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-practical-list li,
.service-practical-card .related-services-list a {
  display: block;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(226, 208, 176, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(244, 234, 221, 0.86);
  line-height: 1.65;
}

.service-practical-feature-grid {
  display: grid;
  gap: 0.85rem;
}

.service-practical-feature {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border-left: 3px solid rgba(239, 201, 119, 0.65);
  background: rgba(255, 255, 255, 0.02);
}

.service-practical-feature strong {
  color: #fff4df;
}

.service-practical-feature p,
.service-practical-contact-lines p,
.service-practical-contact-lines a {
  margin: 0;
  color: rgba(234, 221, 201, 0.76);
  line-height: 1.75;
}

.service-practical-contact-lines {
  display: grid;
  gap: 0.4rem;
}

.service-practical-contact-lines a:hover,
.service-practical-contact-lines a:focus-visible,
.service-practical-card .related-services-list a:hover,
.service-practical-card .related-services-list a:focus-visible {
  color: #fff8ef;
  border-color: rgba(239, 201, 119, 0.24);
  background: rgba(239, 201, 119, 0.08);
}

.package-page-intro {
  display: grid;
  gap: 0.95rem;
  padding: 1.35rem;
  border: 1px solid rgba(207, 167, 92, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(12, 12, 12, 0.98));
  box-shadow: var(--shadow);
}

.package-page-intro h2 {
  margin: 0;
  color: #fff4df;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
}

.package-page-intro p {
  margin: 0;
  color: rgba(234, 221, 201, 0.8);
  line-height: 1.8;
}

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

.package-gallery-card {
  display: grid;
  gap: 0.8rem;
  padding: 0.9rem;
  border: 1px solid rgba(207, 167, 92, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(12, 12, 12, 0.98));
  box-shadow: var(--shadow);
}

.package-gallery-card img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 16px;
  background: #111111;
}

.package-gallery-card span {
  color: #f3e7d3;
  font-size: 0.9rem;
  font-weight: 700;
}

.package-menu-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  align-items: start;
}

.package-menu-intro-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.2rem;
  border: 1px solid rgba(207, 167, 92, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(12, 12, 12, 0.98));
  box-shadow: var(--shadow);
}

.package-menu-intro-shell {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
}

.package-menu-intro-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  background: #111111;
}

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

.package-menu-sections-grid-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.package-menu-section-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.2rem;
  border: 1px solid rgba(207, 167, 92, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(12, 12, 12, 0.98));
  box-shadow: var(--shadow);
}

.package-menu-section-card h3 {
  margin: 0;
  color: #fff4df;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.05;
}

.package-menu-section-card-images {
  gap: 1rem;
}

.package-menu-image-groups,
.package-menu-image-collection {
  display: grid;
  gap: 1rem;
}

.package-menu-section-copy {
  display: grid;
  gap: 0.45rem;
}

.package-menu-section-copy p {
  margin: 0;
  max-width: 56ch;
  color: rgba(234, 221, 201, 0.76);
  line-height: 1.65;
}

.package-menu-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.package-menu-section-head h3 {
  margin: 0;
}

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

.package-menu-image-grid-curated {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-gallery-card-compact {
  gap: 0.7rem;
  padding: 0.75rem;
  border-radius: 18px;
}

.package-gallery-card-compact img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.package-gallery-card-compact span {
  font-size: 0.84rem;
  line-height: 1.4;
}

.package-menu-intro-card .detail-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.package-menu-intro-card .detail-points li {
  height: 100%;
  margin: 0;
}

.package-menu-section-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-menu-section-list li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(234, 221, 201, 0.82);
  line-height: 1.6;
}

.package-menu-section-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ddb22e;
}

.service-side-contact {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(207, 167, 92, 0.1);
  border-radius: 14px;
  background: var(--surface-3);
}

.service-side-contact strong {
  color: var(--gold-soft);
  font-size: 0.9rem;
}

.service-side-contact-lines {
  display: grid;
  gap: 0.4rem;
}

.service-side-contact-lines a,
.service-side-contact-lines p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

body[data-page="service"] .hero {
  padding-top: 1.4rem;
}

body[data-page="service"] .page-hero {
  min-height: 440px;
  border: 1px solid rgba(240, 216, 160, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(245, 176, 65, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(18, 12, 8, 0.95), rgba(8, 8, 8, 0.98));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

body[data-page="service"] .page-hero::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(255, 228, 176, 0.12);
  border-radius: 26px;
  pointer-events: none;
  z-index: 1;
}

body[data-page="service"] .page-hero::after {
  border-color: rgba(255, 222, 168, 0.08);
}

body[data-page="service"] .page-hero-media {
  opacity: 0.48;
  transform: scale(1.08);
  filter: saturate(1.08) brightness(0.7) contrast(1.05);
}

body[data-page="service"] .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.9) 0%, rgba(13, 10, 7, 0.74) 38%, rgba(18, 12, 7, 0.24) 100%),
    radial-gradient(circle at left center, rgba(245, 176, 65, 0.16), transparent 38%);
}

body[data-page="service"] .page-hero-copy {
  display: grid;
  align-content: end;
  min-height: 440px;
  max-width: 760px;
  padding: 2.6rem;
}

body[data-page="service"] .page-hero-copy .eyebrow {
  margin-bottom: 0.75rem;
  color: #f5c56d;
  letter-spacing: 0.2em;
}

body[data-page="service"] .page-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
  line-height: 0.98;
  font-weight: 700;
  background: linear-gradient(180deg, #fffdf8 0%, #f7deaf 45%, #f5b041 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  font-family: var(--font-display);
}

body[data-page="service"] .page-hero-copy p:last-of-type {
  max-width: 56ch;
  margin-top: 1.1rem;
  color: rgba(255, 243, 226, 0.88);
  font-size: 1rem;
  line-height: 1.8;
}

body[data-page="service"] .page-hero-actions {
  margin-top: 1.5rem;
}

body[data-page="service"] .section {
  padding-top: 2.8rem;
}

body[data-page="service"] .service-layout {
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 1.35rem;
  align-items: start;
}

body[data-page="service"] .service-detail-card,
body[data-page="service"] .service-side-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240, 216, 160, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.98), rgba(12, 12, 12, 0.98));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

body[data-page="service"] .service-detail-card::before,
body[data-page="service"] .service-side-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(245, 176, 65, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 26%);
  pointer-events: none;
}

body[data-page="service"] .service-detail-card {
  padding: 1.45rem;
}

body[data-page="service"] .service-side-card {
  position: sticky;
  top: 6rem;
  padding: 1.2rem;
}

body[data-page="service"] .service-detail-card img {
  aspect-ratio: 16 / 8.6;
  margin-bottom: 1.35rem;
  border-radius: 22px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

body[data-page="service"] .detail-copy {
  gap: 1.05rem;
}

body[data-page="service"] .detail-copy h2,
body[data-page="service"] .service-side-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.18;
  color: #fff8eb;
}

body[data-page="service"] .detail-copy p {
  color: rgba(240, 231, 219, 0.82);
  line-height: 1.8;
}

body[data-page="service"] .detail-points li {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(240, 216, 160, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(26, 24, 22, 0.96), rgba(18, 18, 18, 0.96));
}

body[data-page="service"] .detail-points li strong {
  display: inline-block;
  color: #fff2d5;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

body[data-page="service"] .detail-points li p {
  margin-top: 0.45rem;
  color: rgba(232, 220, 203, 0.74);
}

body[data-page="service"] .service-detail-carousel-shell {
  gap: 1rem;
  margin-top: 0.35rem;
}

body[data-page="service"] .service-detail-bridge {
  min-height: 220px;
  margin-top: 0.3rem;
  border: 1px solid rgba(240, 216, 160, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
}

body[data-page="service"] .service-detail-bridge-copy {
  max-width: 34ch;
}

body[data-page="service"] .service-detail-signature {
  margin-top: 0.4rem;
  padding-top: 1.2rem;
  border-top-color: rgba(245, 176, 65, 0.18);
}

body[data-page="service"] .service-detail-signature h3 {
  max-width: 30ch;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #fff1da;
}

body[data-page="service"] .service-detail-signature-metrics span {
  min-height: 40px;
  padding-inline: 0.9rem;
  border-color: rgba(245, 176, 65, 0.18);
  background: rgba(245, 176, 65, 0.08);
}

body[data-page="service"] .service-side-card > .section-tag {
  margin-bottom: 0.55rem;
}

body[data-page="service"] .service-side-card ul {
  gap: 0.55rem;
}

body[data-page="service"] .service-side-card li {
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(240, 216, 160, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(240, 231, 219, 0.82);
}

body[data-page="service"] .service-side-bottom {
  gap: 1.1rem;
}

body[data-page="service"] .service-side-highlight,
body[data-page="service"] .related-services,
body[data-page="service"] .service-side-contact {
  border: 1px solid rgba(240, 216, 160, 0.09);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(17, 17, 17, 0.98));
}

body[data-page="service"] .service-side-highlight strong,
body[data-page="service"] .related-services strong,
body[data-page="service"] .service-side-contact strong {
  color: #f6d38e;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body[data-page="service"] .service-side-highlight p,
body[data-page="service"] .service-side-contact-lines a,
body[data-page="service"] .service-side-contact-lines p {
  color: rgba(232, 220, 203, 0.76);
}

body[data-page="service"] .related-services-list a {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

body[data-page="service"] .related-services-list a:hover,
body[data-page="service"] .related-services-list a:focus-visible {
  background: rgba(245, 176, 65, 0.1);
  border-color: rgba(245, 176, 65, 0.18);
}

body[data-page="service"] .booking-shell .booking-card {
  border-radius: 28px;
  border-color: rgba(240, 216, 160, 0.12);
}

@media (max-width: 1100px) {
  .submenu {
    width: min(640px, calc(100vw - 2rem));
  }

  .service-stage,
  .service-editorial-grid,
  .service-practical-grid {
    grid-template-columns: 1fr;
  }

  .service-stage-visual {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

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

  .contact-layout,
  .service-layout,
  .footer-panel,
  .booking-card {
    grid-template-columns: 1fr;
  }

  .footer-copy,
  .footer-col {
    border-right: 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  }

  .footer-panel > :last-child {
    border-bottom: 0;
  }

  .package-menu-intro-shell,
  .package-menu-intro-card .detail-points {
    grid-template-columns: 1fr;
  }

  .about-intro-card,
  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .about-feature-grid {
    grid-auto-columns: minmax(260px, 260px);
  }

  .gallery-grid {
    grid-auto-columns: minmax(240px, 240px);
  }

  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .occasion-board,
  .occasion-metrics {
    grid-template-columns: 1fr;
  }

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

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

  .about-intro-card {
    grid-template-columns: 1fr;
  }

  .occasion-metric,
  .occasion-quote {
    border-right: 0;
    border-top: 1px solid rgba(47, 32, 18, 0.1);
  }

  .occasion-metric:first-child {
    border-top: 0;
  }

  body[data-page="service"] .service-side-card {
    position: static;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-utility {
    position: relative;
    margin-left: auto;
    gap: 0.6rem;
  }

  .site-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 98;
    display: block;
    border: 0;
    background: rgba(3, 3, 3, 0.72);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .site-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 110;
    width: 100vw;
    min-height: 100dvh;
    display: grid;
    align-content: start;
    gap: 0.55rem;
    padding:
      calc(env(safe-area-inset-top, 0px) + 1rem)
      1rem
      calc(env(safe-area-inset-bottom, 0px) + 1.5rem);
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at top right, rgba(207, 167, 92, 0.14), transparent 28%),
      linear-gradient(180deg, rgba(13, 13, 13, 0.99) 0%, rgba(7, 7, 7, 0.995) 100%);
    opacity: 1;
    visibility: visible;
    transform: translateY(-100%);
    transition: transform 220ms ease;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.55rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(240, 216, 160, 0.1);
  }

  .site-nav-mobile-copy {
    display: grid;
    gap: 0.2rem;
  }

  .site-nav-kicker {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .site-nav-mobile-copy strong {
    color: #fff7ea;
    font-size: 1rem;
    line-height: 1.35;
  }

  .site-nav-close {
    display: inline-flex;
  }

  .nav-link {
    justify-content: flex-start;
    width: 100%;
    min-height: 54px;
    padding: 0 0.2rem;
    border-bottom: 1px solid rgba(240, 216, 160, 0.08);
    font-size: 1rem;
  }

  .nav-toggle {
    justify-content: center;
  }

  .nav-item {
    display: grid;
    gap: 0.35rem;
  }

  .submenu {
    position: static;
    min-width: 100%;
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 0.5rem;
    border-radius: 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
  }

  .has-dropdown.is-open .submenu {
    display: grid;
  }

  .submenu a {
    padding: 0.9rem 0.95rem;
    border-radius: 12px;
  }

  .site-nav-mobile-card {
    display: grid;
    gap: 0.8rem;
    margin-top: 0.8rem;
    padding: 1rem;
    border: 1px solid rgba(240, 216, 160, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
  }

  .site-nav-mobile-card p {
    margin: 0;
    color: rgba(255, 245, 230, 0.86);
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .site-nav-mobile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
  }

  .site-search-overlay {
    padding: 1rem;
  }

  .site-search-panel {
    width: 100%;
    padding: 1rem;
    border-radius: 24px;
  }

  .site-search-toggle {
    min-width: 200px;
    width: clamp(200px, 44vw, 280px);
  }

  .site-search-shell {
    min-height: 68px;
    padding: 0 1rem;
  }

  .site-search-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-stage-copy {
    padding: 1.4rem;
  }

  .service-stage-visual {
    grid-template-columns: 1fr;
  }

  .service-stage-photo-primary {
    min-height: 420px;
  }

  .service-stage-photo-secondary {
    min-height: 220px;
  }

  .hero-panel,
  .hero-copy {
    min-height: 540px;
  }

  body[data-page="service"] .page-hero,
  body[data-page="service"] .page-hero-copy {
    min-height: 400px;
  }

  body[data-page="service"] .page-hero-copy {
    padding: 1.35rem;
  }

  body[data-page="service"] .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 7.5vw, 3.2rem);
  }

  body[data-page="service"] .service-layout {
    gap: 1rem;
  }

  .about-stat-grid {
    grid-template-columns: 1fr;
  }

  .services-carousel-shell {
    grid-template-columns: 1fr;
  }

  .service-detail-carousel-shell {
    grid-template-columns: 1fr;
  }

  .gallery-carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-control {
    display: none;
  }

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

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

  .package-compare-grid {
    grid-template-columns: 1fr;
  }

  .packages-quick-grid {
    grid-template-columns: 1fr;
  }

  .package-gallery-full {
    grid-template-columns: 1fr;
  }

  .package-menu-layout,
  .package-menu-sections-grid {
    grid-template-columns: 1fr;
  }

  .package-menu-image-grid {
    grid-template-columns: 1fr;
  }

  .package-menu-image-grid-curated {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-menu-sections-grid-wide {
    grid-template-columns: 1fr;
  }

  .events-showcase-shell {
    padding: 1.05rem;
  }

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

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

  .occasion-item {
    min-height: 200px;
  }

  .occasion-panel {
    padding: 1.2rem 1rem;
  }

  .footer-panel {
    gap: 1.2rem;
  }

  .footer-cta-text {
    white-space: normal;
  }
}

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

  .nav-shell {
    min-height: 72px;
    gap: 0.75rem;
  }

  .brand {
    gap: 0.6rem;
    min-width: 0;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 0.95rem;
    line-height: 1.12;
    white-space: normal;
  }

  .brand-copy span {
    display: none;
  }

  .nav-utility {
    gap: 0.45rem;
  }

  .site-search-toggle {
    width: 46px;
    min-width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 999px;
    justify-content: center;
  }

  .site-search-toggle-text,
  .site-search-toggle-logo {
    display: none;
  }

  .site-search-toggle-icon {
    color: var(--gold-soft);
  }

  .site-nav {
    width: 100%;
    border-radius: 0;
  }

  .site-nav-mobile-actions .button {
    flex: 1 1 100%;
  }

  .hero-copy,
  .page-hero-copy,
  .contact-card,
  .map-card,
  .service-detail-card,
  .service-side-card {
    padding: 1rem;
  }

  .service-fresh-shell {
    padding-top: 1rem;
  }

  .service-stage-copy,
  .service-editorial-panel,
  .service-practical-card {
    padding: 1rem;
  }

  .service-stage-copy {
    border-radius: 24px 12px 24px 12px;
  }

  .service-stage-copy h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .service-editorial-panel-main h2,
  .service-structure-head h2 {
    max-width: 100%;
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  .service-editorial-mark {
    font-size: 3rem;
  }

  .service-stage-photo-primary {
    min-height: 320px;
    border-radius: 16px 28px 16px 28px;
  }

  .service-stage-photo-secondary {
    min-height: 180px;
  }

  .service-practical-card h3 {
    font-size: 1.25rem;
  }

  .hero-panel,
  .hero-copy {
    min-height: 500px;
  }

  .hero-copy {
    width: 100%;
    padding: 1rem 1.1rem;
    justify-content: flex-start;
    text-align: left;
  }

  .hero-card {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }

  .hero-logo-wrap {
    justify-content: flex-start;
  }

  .hero-kicker {
    font-size: 1.2rem;
  }

  .hero-logo {
    width: auto;
    height: 58px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 10vw, 3.5rem);
    line-height: 1;
  }

  .hero-script {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-divider {
    width: 160px;
    margin-left: 0;
  }

  .hero-text {
    max-width: 100%;
    margin-left: 0;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  body[data-page="service"] .hero {
    padding-top: 1rem;
  }

  body[data-page="service"] .page-hero {
    min-height: 360px;
    border-radius: 24px;
  }

  body[data-page="service"] .page-hero::before {
    inset: 0.75rem;
    border-radius: 18px;
  }

  body[data-page="service"] .page-hero-copy {
    min-height: 360px;
    padding: 1rem;
  }

  body[data-page="service"] .service-detail-card,
  body[data-page="service"] .service-side-card,
  body[data-page="service"] .booking-shell .booking-card {
    border-radius: 22px;
  }

  body[data-page="service"] .service-detail-card img,
  body[data-page="service"] .service-detail-bridge,
  body[data-page="service"] .detail-points li,
  body[data-page="service"] .service-side-highlight,
  body[data-page="service"] .related-services,
  body[data-page="service"] .service-side-contact {
    border-radius: 18px;
  }

  body[data-page="service"] .page-hero-actions,
  body[data-page="service"] .service-side-card .page-hero-actions {
    width: 100%;
  }

  body[data-page="service"] .page-hero-actions .button,
  body[data-page="service"] .service-side-card .page-hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-company-name {
    font-size: 0.95rem;
    letter-spacing: 0.06em;
  }

  .occasion-section {
    padding-top: 1rem;
  }

  .occasion-board {
    border-radius: 22px 22px 0 0;
  }

  .occasion-panel h2 {
    font-size: 1.55rem;
  }

  .events-showcase-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .events-showcase-card {
    min-height: 224px;
  }

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

  .occasion-item {
    min-height: 180px;
    padding: 0.85rem;
  }

  .occasion-item strong {
    font-size: 0.92rem;
  }

  .cuisine-item img {
    width: 76px;
    height: 76px;
  }

  .occasion-metrics {
    border-radius: 0 0 22px 22px;
  }

  .occasion-metric {
    padding: 0.95rem 1rem;
  }

  .occasion-metric strong {
    font-size: 1.55rem;
  }

  .occasion-quote {
    font-size: 1rem;
  }

  .about-intro-card {
    padding: 1.1rem;
    border-radius: 24px;
  }

  .about-intro-copy h2 {
    max-width: 100%;
    font-size: 1.8rem;
  }

  .mini-card,
  .feature-card {
    border-radius: 18px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 3.3rem);
    line-height: 1.06;
  }

  .hero-text,
  .page-hero-copy p,
  .testimonial-card p {
    font-size: 0.95rem;
  }

  .hero-text {
    max-width: 30ch;
    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-actions .button {
    min-width: 148px;
  }

  .hero-stat-row {
    gap: 0.8rem;
    margin-top: 1.8rem;
  }

  .hero-stat {
    padding: 1rem 0.85rem;
  }

  .service-grid,
  .about-feature-grid,
  .gallery-grid,
  .detail-points-carousel {
    grid-auto-columns: minmax(85vw, 85vw);
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-search-header .site-search-shell,
  .site-search-header .site-search-dropdown {
    right: 0;
  }

  .testimonial-track {
    width: 100%;
    min-height: 340px;
  }

  .testimonial-card,
  .testimonial-card.is-secondary {
    left: 0;
    right: 0;
    width: 100%;
  }

  .section {
    padding: 2rem 0;
  }

  .package-plan-body {
    padding: 1.2rem 1rem 1.25rem;
  }

  .package-plan-price {
    font-size: clamp(1.8rem, 7vw, 2.3rem);
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .package-menu-image-grid-curated {
    grid-template-columns: 1fr;
  }

  .package-menu-intro-card {
    padding: 1rem;
  }

.floating-actions {
    right: 0.7rem;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.9rem);
  }

  .chat-assistant {
    right: 0.7rem;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 9.9rem);
  }

  .chat-assistant-toggle {
    width: 54px;
    height: 54px;
  }

  .chat-assistant-panel {
    width: min(calc(100vw - 1.2rem), 360px);
    max-height: min(76vh, 620px);
  }

  .chat-assistant-messages {
    max-height: 260px;
  }
}

/* Final overrides for the reference-style About and Testimonials sections */
.about-showcase-card {
  display: grid;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
}

.testimonial-track {
  position: static;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  min-height: 0;
}

.testimonial-card,
.testimonial-card.is-active,
.testimonial-card.is-secondary {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  width: 100%;
  min-height: 210px;
  opacity: 1;
  transform: none;
  display: grid;
}

.testimonial-card:nth-child(n + 4) {
  display: none;
}

.testimonial-dots {
  display: none;
  justify-content: center;
  gap: 0.55rem;
}

.testimonial-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(240, 216, 160, 0.26);
  transition: transform var(--transition), background var(--transition);
}

.testimonial-dot.is-active {
  background: #f2c261;
  transform: scale(1.15);
}

@media (max-width: 980px) {
  .about-showcase-card {
    grid-template-columns: 1fr;
  }

  .about-showcase-image img {
    min-height: 320px;
  }

  .testimonial-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }

  .testimonial-arrow {
    display: inline-flex;
  }

  .testimonial-track {
    position: relative;
    display: block;
    min-height: 300px;
  }

  .testimonial-card,
  .testimonial-card.is-active,
  .testimonial-card.is-secondary {
    position: absolute;
    inset: 0;
    min-height: 100%;
    display: grid;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .testimonial-card:nth-child(n + 4) {
    display: grid;
  }

  .testimonial-card.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .testimonial-dots {
    display: flex;
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .testimonial-shell {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .testimonial-track {
    width: 100%;
    min-height: 338px;
  }
}

/* Simple service page layout */
body[data-page="service"] {
  background:
    radial-gradient(circle at top, rgba(154, 64, 34, 0.12), transparent 32%),
    linear-gradient(180deg, #070707 0%, #090807 100%);
  color: #fff1dc;
}

body[data-page="service"] .service-simple-page,
body[data-page="service"] .service-simple-cta-section {
  background: transparent;
}

body[data-page="service"] .service-simple-page .container,
body[data-page="service"] .service-simple-cta-section .container {
  width: min(100% - 2rem, 980px);
}

.service-simple-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2.4rem;
  padding: 1.2rem;
  border: 1px solid rgba(207, 167, 92, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(245, 176, 65, 0.14), transparent 26%),
    linear-gradient(145deg, rgba(18, 18, 18, 0.98), rgba(10, 10, 10, 0.98));
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.34);
}

.service-simple-copy {
  display: grid;
  gap: 0.85rem;
}

.service-simple-kicker {
  margin: 0;
  color: #d7a84a;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-simple-copy h1 {
  margin: 0;
  color: #fff7ea;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.service-simple-copy p,
.service-simple-copy li,
.service-simple-section p,
.service-simple-highlight p,
.service-simple-list li,
.service-simple-faq-item p,
.service-simple-cta p {
  color: rgba(255, 242, 220, 0.78);
  font-size: 0.95rem;
  line-height: 1.8;
}

.service-simple-bullets {
  display: grid;
  gap: 0.55rem;
}

.service-simple-bullets p {
  margin: 0;
}

.service-simple-bullets strong {
  color: #fff4df;
}

.service-simple-actions {
  margin-top: 0.3rem;
}

.service-simple-image-wrap {
  overflow: hidden;
  border: 1px solid rgba(207, 167, 92, 0.2);
  border-radius: 24px;
  background: #131313;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
}

.service-simple-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.service-simple-section {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  padding: 1.05rem 1.15rem;
  text-align: center;
  border: 1px solid rgba(240, 216, 160, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(11, 11, 11, 0.98));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.service-simple-section h2,
.service-simple-cta h2 {
  margin: 0;
  color: #fff7ea;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-simple-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
  text-align: left;
}

.service-simple-highlight {
  padding: 1rem;
  border: 1px solid rgba(240, 216, 160, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(34, 29, 24, 0.94), rgba(18, 18, 18, 0.98));
}

.service-simple-highlight h3 {
  margin: 0 0 0.45rem;
  color: #fff2d8;
  font-size: 1rem;
}

.service-simple-list {
  display: grid;
  gap: 0.7rem;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 1.1rem;
  text-align: left;
}

.service-simple-faq h2 span {
  color: #d7a84a;
}

.service-simple-faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.service-simple-faq-item {
  border: 1px solid rgba(240, 216, 160, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(34, 29, 24, 0.94), rgba(18, 18, 18, 0.98));
}

.service-simple-faq-item summary {
  position: relative;
  padding: 1rem 2.5rem 1rem 1rem;
  color: #fff2d8;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.service-simple-faq-item summary::-webkit-details-marker {
  display: none;
}

.service-simple-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #d7a84a;
  font-size: 1.15rem;
  font-weight: 800;
}

.service-simple-faq-item[open] summary::after {
  content: "-";
}

.service-simple-faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(240, 216, 160, 0.1);
}

.service-simple-cta {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding: 1rem 1.15rem 1.2rem;
  text-align: center;
  border: 1px solid rgba(207, 167, 92, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(245, 176, 65, 0.14), transparent 26%),
    linear-gradient(145deg, rgba(18, 18, 18, 0.98), rgba(10, 10, 10, 0.98));
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.34);
}

.service-simple-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.3rem;
}

body[data-page="service"] .button-primary {
  border-color: rgba(240, 216, 160, 0.16);
  background: linear-gradient(135deg, #f0d8a0 0%, #cfa75c 100%);
  color: #2f190f;
}

body[data-page="service"] .button-primary:hover,
body[data-page="service"] .button-primary:focus-visible {
  background: linear-gradient(135deg, #f6dfaa 0%, #d8b069 100%);
}

body[data-page="service"] .button-secondary {
  border-color: rgba(240, 216, 160, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: #fff4df;
}

body[data-page="service"] .button-secondary:hover,
body[data-page="service"] .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .service-simple-hero,
  .service-simple-highlight-grid {
    grid-template-columns: 1fr;
  }

  .service-simple-section {
    text-align: left;
  }

  .service-simple-list,
  .service-simple-faq-list {
    max-width: 100%;
  }

  .contact-side-form-grid,
  .contact-followup-grid {
    grid-template-columns: 1fr;
  }
}
