:root {
  --color-bg: #f7f4ee;
  --color-surface: #fffdf9;
  --color-surface-strong: #ffffff;
  --color-text: #2d2926;
  --color-muted: #6f685f;
  --color-border: #e7dfd2;
  --color-accent: #b98a3d;
  --color-accent-deep: #8d6427;
  --color-dark: #171411;
  --color-dark-soft: #221d18;
  --shadow-soft: 0 18px 42px rgba(29, 20, 8, 0.08);
  --shadow-card: 0 16px 32px rgba(39, 27, 10, 0.06);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

iframe {
  border: 0;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.05;
}

p {
  color: var(--color-muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-accent-deep);
  border-color: var(--color-accent-deep);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.btn-ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.eyebrow {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-dark {
  background: var(--color-dark);
}

.section-dark h2,
.section-dark h3,
.section-dark strong,
.section-dark .eyebrow {
  color: white;
}

.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, 0.76);
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: 0.25s ease;
}

.site-nav.scrolled {
  background: rgba(23, 20, 17, 0.92);
  backdrop-filter: blur(10px);
}

.nav-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  color: white;
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: white;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  font-size: 1.4rem;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(17, 14, 11, 0.98);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  z-index: 999;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: white;
  font-family: var(--font-serif);
  font-size: 2rem;
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
}

.chat-toggle {
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-deep));
  color: white;
  box-shadow: 0 18px 32px rgba(33, 23, 13, 0.26);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-toggle:hover,
.chat-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(33, 23, 13, 0.32);
}

.chat-toggle-icon-close {
  display: none;
}

.chat-widget-open .chat-toggle-icon-open {
  display: none;
}

.chat-widget-open .chat-toggle-icon-close {
  display: inline-flex;
}

.chat-panel {
  width: min(360px, calc(100vw - 32px));
  max-height: min(560px, calc(100vh - 110px));
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  border: 1px solid rgba(41, 31, 18, 0.08);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.98);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 60px rgba(19, 14, 9, 0.18);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(23, 20, 17, 0.98), rgba(34, 29, 24, 0.96));
}

.chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #d8b378);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  flex-shrink: 0;
}

.chat-header strong {
  display: block;
  color: white;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.chat-header p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.chat-messages {
  flex: 1;
  min-height: 240px;
  max-height: 320px;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background:
    radial-gradient(circle at top left, rgba(185, 138, 61, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(247, 244, 238, 1), rgba(255, 253, 249, 1));
}

.chat-message {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.chat-message-assistant {
  align-self: flex-start;
  background: white;
  color: var(--color-text);
  border-bottom-left-radius: 6px;
  box-shadow: 0 10px 20px rgba(44, 34, 22, 0.08);
}

.chat-message-user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-deep));
  color: white;
  border-bottom-right-radius: 6px;
}

.chat-typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 18px;
  border-bottom-left-radius: 6px;
  background: white;
  box-shadow: 0 10px 20px rgba(44, 34, 22, 0.08);
}

.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: chat-bounce 1.1s infinite ease-in-out;
}

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

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

.chat-form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 10px;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(41, 31, 18, 0.08);
}

.chat-input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: white;
  color: var(--color-text);
  font: inherit;
}

.chat-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(185, 138, 61, 0.14);
}

.chat-send {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-send:disabled,
.chat-input:disabled {
  opacity: 0.65;
  cursor: default;
}

.chat-note {
  padding: 0 18px 16px;
  font-size: 0.76rem;
  color: var(--color-muted);
}

@keyframes chat-bounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: linear-gradient(rgba(18, 16, 13, 0.48), rgba(18, 16, 13, 0.68));
}

.hero video,
.hero .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(185, 138, 61, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.58) 100%);
  z-index: -1;
}

.hero-content {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 48px;
  align-items: end;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  margin: 18px 0 20px;
  font-style: italic;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-card {
  background: rgba(255, 252, 245, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}

.hero-card h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.hero-card p,
.hero-card li {
  color: rgba(255, 255, 255, 0.8);
}

.hero-points {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.hero-points li {
  display: flex;
  gap: 10px;
  align-items: start;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--color-muted);
  font-size: 0.84rem;
}

.breadcrumbs a {
  color: var(--color-accent-deep);
}

.breadcrumbs span::before {
  content: "/";
  margin-right: 10px;
  color: #b3a99b;
}

.page-hero {
  padding: 42px 0 22px;
}

.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 26px;
  align-items: start;
}

.page-hero-shell h1 {
  font-size: clamp(2.9rem, 6vw, 4.8rem);
  margin-top: 16px;
}

.section-lead {
  font-size: 1.05rem;
  max-width: 760px;
  margin-top: 18px;
}

.detail-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.detail-item {
  display: flex;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
}

.detail-item i {
  color: var(--color-accent);
  margin-top: 4px;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.section-title-row p {
  max-width: 620px;
}

.link-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.link-list a {
  color: var(--color-accent-deep);
}

.link-list a:hover,
.link-list a:focus-visible {
  color: var(--color-accent);
}

.note-card {
  padding: 20px 22px;
}

.note-card h3 {
  font-size: 1.5rem;
}

.note-card p + p {
  margin-top: 12px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  background: var(--color-surface-strong);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}

.stat-card .value {
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: 2.4rem;
}

.stat-card .label {
  color: var(--color-muted);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  align-items: center;
}

.panel,
.card,
.faq-item,
.package-card,
.review-card,
.venue-card,
.location-card,
.contact-card {
  background: var(--color-surface-strong);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.panel {
  padding: 34px;
}

.card {
  padding: 28px;
}

.visual-panel {
  min-height: 420px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 14, 11, 0.08) 0%, rgba(16, 14, 11, 0.5) 100%);
}

.floating-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  max-width: 240px;
  background: rgba(255, 252, 245, 0.92);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

.feature-list,
.tick-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.tick-list li,
.feature-list li {
  display: flex;
  gap: 10px;
  color: var(--color-muted);
}

.tick-list i,
.feature-list i {
  color: var(--color-accent);
  margin-top: 4px;
}

.quote-band {
  padding: 72px 0;
  text-align: center;
}

.quote-band blockquote {
  color: white;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-style: italic;
  max-width: 900px;
  margin: 0 auto 18px;
}

.quote-band p {
  color: rgba(255, 255, 255, 0.72);
}

.review-card,
.location-card,
.venue-card,
.contact-card {
  padding: 28px;
}

.review-card p {
  font-size: 0.98rem;
}

.review-author {
  margin-top: 18px;
  color: var(--color-accent-deep);
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

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

.video-card h3,
.video-card p {
  margin-top: 16px;
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.package-card {
  padding: 34px 28px;
  position: relative;
}

.package-card.highlight {
  border-color: rgba(185, 138, 61, 0.48);
  box-shadow: 0 18px 38px rgba(185, 138, 61, 0.12);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(185, 138, 61, 0.12);
  color: var(--color-accent-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-name {
  margin-top: 18px;
  font-size: 2rem;
}

.price {
  color: var(--color-accent);
  font-size: 2rem;
  font-weight: 700;
  margin-top: 6px;
}

.package-note {
  margin-top: 10px;
  min-height: 54px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface-strong);
  color: var(--color-muted);
  font-size: 0.84rem;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 20px 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--color-text);
}

.faq-item p {
  margin-top: 14px;
}

.faq-item summary span {
  color: var(--color-accent);
  font-size: 1rem;
  line-height: 1;
}

.process-card {
  position: relative;
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(185, 138, 61, 0.9), rgba(141, 100, 39, 0.55));
}

.process-step {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--color-accent-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.process-card h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 26px;
}

.contact-card form {
  display: grid;
  gap: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 7px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #d9cfbf;
  border-radius: 14px;
  background: white;
  font: inherit;
  color: var(--color-text);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  font-size: 0.9rem;
}

.success-box {
  display: none;
  padding: 28px;
  border: 1px solid rgba(185, 138, 61, 0.38);
  border-radius: var(--radius-md);
  background: #fffaf1;
}

.muted-card {
  background: linear-gradient(180deg, #1f1a16 0%, #14110f 100%);
  color: white;
}

.muted-card p,
.muted-card li {
  color: rgba(255, 255, 255, 0.76);
}

.location-card h3,
.venue-card h3 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.cta-band {
  padding: 68px 0;
}

.cta-shell {
  background: linear-gradient(135deg, #201a15 0%, #34271b 100%);
  border-radius: 32px;
  padding: 42px;
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.cta-shell p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  background: #100d0b;
  color: #d6cdc1;
  padding: 56px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.footer-logo {
  color: white;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: #d6cdc1;
}

.footer-meta {
  margin-top: 18px;
  font-size: 0.84rem;
  color: #a89f93;
}

.spacer-top {
  padding-top: 144px;
}

@media (max-width: 1024px) {
  .hero-content,
  .page-hero-shell,
  .two-col,
  .contact-grid,
  .cta-shell,
  .footer-grid,
  .grid-4,
  .grid-3,
  .video-grid,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content,
  .page-hero-shell,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

  .hero-content {
    padding-top: 124px;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .stats,
  .grid-3,
  .grid-4,
  .video-grid,
  .field-grid,
  .footer-grid,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .panel,
  .review-card,
  .package-card,
  .contact-card,
  .location-card,
  .venue-card {
    padding: 24px;
  }

  .cta-shell {
    padding: 30px 24px;
  }
}
