/* ─── Brand tokens ─── */
:root {
  --black: #0a0a0a;
  --gold: #C8A54D;
  --gold-light: #E0BF70;
  --white: #ffffff;
  --off-white: #F5F0E8;
  --gray: #888888;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', Arial, sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); line-height: 1.6; }

/* ─── Typography ─── */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

/* ─── HEADER ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,165,77,0.15);
}
.site-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.site-logo img { height: 52px; width: auto; }
.site-logo-text { font-family: var(--font-heading); font-size: 1.1rem; color: var(--gold); line-height: 1.2; }
.site-logo-sub { font-size: 0.65rem; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--white);
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--white); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 2rem 4rem;
  background: linear-gradient(rgba(10,10,10,0.45), rgba(10,10,10,0.65)),
              url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/company_145830/images/81f74333-853e-424b-9251-8512da680db2.jpeg') center/cover no-repeat;
  position: relative;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(transparent, var(--black));
}
.hero-logo { width: 200px; margin-bottom: 1.5rem; }
.hero-tagline {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: var(--white); line-height: 1.2; margin-bottom: 0.5rem;
}
.hero-tagline em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 1rem; color: var(--gray); margin-bottom: 2.5rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-divider {
  width: 60px; height: 2px; background: var(--gold); margin: 1.5rem auto;
}
.btn-primary {
  display: inline-block; padding: 0.9rem 2.8rem;
  background: var(--gold); color: var(--black); font-weight: 700;
  font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.12em;
  text-transform: uppercase; border: 2px solid var(--gold);
  transition: background 0.25s, color 0.25s; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--black); }

/* ─── SECTIONS ─── */
.section { padding: 5rem 2rem; }
.section-dark { background: #0e0e0e; }
.section-gold { background: linear-gradient(135deg, #0e0e0e 0%, #1a1508 100%); }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); text-align: center; margin-bottom: 0.75rem;
}
.section-title span { color: var(--gold); }
.section-divider {
  width: 50px; height: 2px; background: var(--gold); margin: 0 auto 3rem;
}
.section-intro { text-align: center; max-width: 640px; margin: 0 auto 3rem; color: var(--gray); font-size: 1.05rem; }

/* ─── MISSION ─── */
.mission-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.mission-quote {
  font-family: var(--font-heading); font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--off-white); line-height: 1.7; margin-bottom: 2rem;
  position: relative; padding: 0 1rem;
}
.mission-quote::before {
  content: '\u201C'; font-size: 5rem; color: var(--gold); opacity: 0.4;
  position: absolute; top: -1.5rem; left: -0.5rem; font-family: var(--font-heading);
}
.mission-sub { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ─── SERVICES ─── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.service-card {
  background: #141414; border: 1px solid rgba(200,165,77,0.12);
  padding: 2.5rem 2rem; border-radius: 4px;
  transition: border-color 0.25s, transform 0.25s;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--white); }
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* ─── EVENT TYPES ─── */
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.event-pill {
  background: #141414; border: 1px solid rgba(200,165,77,0.1);
  padding: 1.5rem; border-radius: 4px; text-align: center;
  transition: border-color 0.25s;
}
.event-pill:hover { border-color: var(--gold); }
.event-pill span { display: block; font-size: 1.8rem; margin-bottom: 0.75rem; }
.event-pill h3 { font-size: 1rem; color: var(--off-white); }

/* ─── GALLERY ─── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 1100px; margin: 0 auto; }
.gallery-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px;
  border: 1px solid rgba(200,165,77,0.1); transition: border-color 0.25s, transform 0.25s;
}
.gallery-grid img:hover { border-color: var(--gold); transform: scale(1.02); }

/* ─── CONTACT ─── */
.contact-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.form-row { display: flex; gap: 1rem; }
.form-row input { flex: 1; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 0.9rem 1.2rem;
  background: #141414; border: 1px solid rgba(200,165,77,0.2);
  color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
  border-radius: 4px; outline: none; transition: border-color 0.25s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { align-self: center; margin-top: 0.5rem; }
.contact-details { display: flex; justify-content: center; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 0.6rem; color: var(--gray); font-size: 0.95rem; }
.contact-item a { color: var(--gold); }
.contact-item a:hover { color: var(--gold-light); }

/* ─── FOOTER ─── */
.site-footer {
  background: #060606; border-top: 1px solid rgba(200,165,77,0.15);
  padding: 3rem 2rem 2rem; text-align: center;
}
.footer-logo { width: 90px; margin-bottom: 1rem; }
.footer-tagline { color: var(--gold); font-size: 0.85rem; margin-bottom: 1.5rem; letter-spacing: 0.06em; }
.footer-tagline span { display: block; font-size: 0.75rem; color: var(--gray); margin-top: 0.3rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-links a { color: var(--gray); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 900px; margin: 0 auto; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--gray); font-size: 0.8rem; }
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a { color: var(--gold); font-size: 0.85rem; }
.footer-social a:hover { color: var(--gold-light); }

/* ─── PROMO VIDEO ─── */
.video-wrapper {
  max-width: 860px;
  margin: 0 auto;
}
.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(200,165,77,0.2);
  transition: border-color 0.25s;
}
.video-placeholder:hover { border-color: var(--gold); }
.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.35);
  transition: background 0.25s;
}
.video-placeholder:hover::after { background: rgba(10,10,10,0.25); }
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}
.play-button:hover { transform: translate(-50%, -50%) scale(1.1); }
.video-overlay-text {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}
.video-overlay-text p {
  color: var(--off-white);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.video-embed-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(200,165,77,0.2);
}
.video-embed-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.video-embed-note {
  text-align: center;
  margin-top: 0.75rem;
  color: var(--gray);
  font-size: 0.8rem;
  font-style: italic;
}

/* ─── BOOKING FORM ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.booking-form-wrap { }
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  font-weight: 600;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: #141414;
  border: 1px solid rgba(200,165,77,0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { border-color: var(--gold); }
.booking-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8A54D' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.booking-form textarea { resize: vertical; min-height: 120px; }
.btn-booking { margin-top: 0.5rem; align-self: flex-start; }
.form-success {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(200,165,77,0.08);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  margin-top: 1rem;
}
.form-success span { font-size: 1.8rem; color: var(--gold); }
.form-success p { color: var(--off-white); font-size: 1.05rem; }

/* ─── CONTACT INFO PANEL ─── */
.contact-info-panel {
  background: #111;
  border: 1px solid rgba(200,165,77,0.15);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  position: sticky;
  top: 6rem;
}
.contact-info-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.contact-divider {
  height: 1px;
  background: rgba(200,165,77,0.15);
  margin: 0.75rem 0 1.5rem;
}
.contact-info-panel .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-icon { font-size: 1.3rem; color: var(--gold); line-height: 1.4; }
.contact-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 0.2rem; }
.contact-info-panel .contact-item a { font-size: 0.9rem; }
.contact-quote-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200,165,77,0.12);
  text-align: center;
}
.contact-quote-block p {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1.5;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info-panel { position: static; }
}
@media (max-width: 768px) {
  .site-header { padding: 0.9rem 1.5rem; }
  .site-logo-text { font-size: 0.95rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.8rem; }
  .hero { padding-top: 6rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .booking-form .form-row { flex-direction: column; }
  .btn-booking { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .nav-links { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .services-grid, .events-grid { grid-template-columns: 1fr; }
  .site-header { flex-wrap: wrap; gap: 0.5rem; }
}