/* Red Dot Hospitality — static marketing site */
:root {
  --cream: #FBF6EE;
  --cream-dark: #F3EAD9;
  --maroon: #7A1A1A;
  --maroon-deep: #5C1212;
  --maroon-soft: #9A3A3A;
  --gold: #C4A35A;
  --gold-light: #D4BC7A;
  --ink: #1A1210;
  --ink-muted: #5C534C;
  --white: #FFFFFF;
  --shadow: 0 12px 40px rgba(26, 18, 16, 0.08);
  --radius: 14px;
  --header-h: 72px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--maroon);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--maroon-deep);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--maroon);
  color: var(--cream);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(122, 26, 26, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand:hover { color: inherit; }

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--maroon);
}

.brand-tag {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(122, 26, 26, 0.2);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  background: var(--maroon);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(122, 26, 26, 0.1);
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-list a {
  display: block;
  padding: 0.65rem 0.75rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  border-radius: 8px;
}

.nav-list a:hover {
  background: var(--cream-dark);
  color: var(--maroon);
}

.nav-cta {
  background: var(--maroon) !important;
  color: var(--cream) !important;
  text-align: center;
  margin-top: 0.5rem;
}

.nav-cta:hover {
  background: var(--maroon-deep) !important;
}

.nav-sister {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(196, 163, 90, 0.35);
}

.nav-sister a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
}

.nav-sister a:hover {
  color: var(--maroon);
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }

  .site-nav {
    display: flex !important;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
  }

  .nav-list a {
    padding: 0.45rem 0.7rem;
    font-size: 0.92rem;
  }

  .nav-cta {
    margin-top: 0 !important;
    padding-inline: 1rem !important;
    border-radius: 999px !important;
  }

  .nav-sister {
    flex-direction: row;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    border-left: 1px solid rgba(196, 163, 90, 0.4);
    padding-left: 1.25rem;
    gap: 0.85rem;
  }

  .nav-sister a {
    white-space: nowrap;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(196, 163, 90, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 80%, rgba(122, 26, 26, 0.08), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--maroon);
  font-weight: 600;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--maroon);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--maroon-deep);
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(122, 26, 26, 0.35);
  color: var(--maroon);
}

.btn-ghost:hover {
  border-color: var(--maroon);
  background: rgba(122, 26, 26, 0.05);
  color: var(--maroon-deep);
}

.btn-block {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(196, 163, 90, 0.4);
}

.hero-stats dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-weight: 500;
}

.hero-stats dd {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--maroon);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-head.light .eyebrow { color: var(--gold-light); }
.section-head.light h2,
.section-head.light .section-lead { color: var(--cream); }

.section-lead {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

/* Services cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--white);
  border: 1px solid rgba(122, 26, 26, 0.06);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(26, 18, 16, 0.1);
}

.card-icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  margin-bottom: 0.4rem;
  color: var(--maroon);
}

.card p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.card-accent {
  background: linear-gradient(145deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  border-color: transparent;
}

.card-accent h3,
.card-accent p,
.card-accent .card-icon {
  color: var(--cream);
}

.card-accent p { opacity: 0.9; }

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold-light) !important;
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  color: var(--white) !important;
}

/* Venues */
.venues {
  background: var(--cream-dark);
}

.venue-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .venue-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.venue-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.venue-visual {
  height: 140px;
  background-size: cover;
}

.venue-visual.v1 {
  background: linear-gradient(135deg, #7A1A1A 0%, #C4A35A 100%);
}

.venue-visual.v2 {
  background: linear-gradient(135deg, #5C1212 0%, #F3EAD9 60%, #C4A35A 100%);
}

.venue-visual.v3 {
  background: linear-gradient(160deg, #C4A35A 0%, #7A1A1A 55%, #1A1210 100%);
}

.venue-body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.venue-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.venue-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.venue-body p {
  color: var(--ink-muted);
  font-size: 0.92rem;
  flex: 1;
}

.badge {
  display: inline-block;
  align-self: flex-start;
  margin-top: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(196, 163, 90, 0.2);
  color: var(--maroon);
}

/* Brand family */
.family {
  background: var(--maroon);
  background-image:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(196, 163, 90, 0.2), transparent 50%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(0, 0, 0, 0.2), transparent 45%);
}

.family-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .family-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.family-card {
  display: block;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(251, 246, 238, 0.08);
  border: 1px solid rgba(251, 246, 238, 0.15);
  text-decoration: none;
  color: var(--cream);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.family-card:hover {
  background: rgba(251, 246, 238, 0.14);
  border-color: var(--gold);
  color: var(--cream);
  transform: translateY(-2px);
}

.family-card.current {
  border-color: var(--gold);
  background: rgba(196, 163, 90, 0.15);
}

.family-kicker {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.family-card h3 {
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.family-card p {
  color: rgba(251, 246, 238, 0.8);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.family-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

.about p {
  color: var(--ink-muted);
}

.checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

.about-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.about-panel h3 {
  color: var(--maroon);
}

.about-panel p {
  color: var(--ink-muted);
}

.about-phone {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}

.about-phone a {
  text-decoration: none;
  color: var(--maroon);
}

/* Contact */
.contact {
  background: var(--cream-dark);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.contact-details {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-details .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.contact-details a,
.contact-details span:not(.label) {
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--maroon);
}

.contact-form {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(122, 26, 26, 0.18);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(122, 26, 26, 0.12);
}

.form-note {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin: 0.85rem 0 0;
}

.form-success {
  margin: 0.85rem 0 0;
  padding: 0.75rem 1rem;
  background: rgba(196, 163, 90, 0.2);
  border-radius: 8px;
  color: var(--maroon);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(251, 246, 238, 0.75);
  padding: 2.5rem 0 2rem;
}

.footer-inner {
  display: grid;
  gap: 1.75rem;
}

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

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--cream);
}

.footer-brand strong {
  display: block;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.footer-brand p {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-legal {
  padding-top: 1rem;
  border-top: 1px solid rgba(251, 246, 238, 0.12);
  font-size: 0.82rem;
}

.footer-legal p {
  margin: 0 0 0.35rem;
}

.footer-domain {
  color: var(--gold);
  letter-spacing: 0.04em;
}

@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer-legal {
    grid-column: 1 / -1;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .family-card, .btn { transition: none; }
}

/* —— Event facilities gallery —— */
.facilities { background: var(--cream); }

.capability-row {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin: 0 0 1.75rem; justify-content: center;
}
.capability-row span {
  font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--maroon); background: #F3E9D8;
  border: 1px solid rgba(196, 163, 90, 0.45);
  padding: 0.45rem 0.75rem; border-radius: 999px;
}

.facility-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem;
}
@media (min-width: 900px) {
  .facility-grid { grid-template-columns: repeat(4, 1fr); }
  .facility-card.wide { grid-column: span 2; }
}

.facility-card {
  margin: 0; border-radius: 12px; overflow: hidden;
  background: #1a1412; box-shadow: 0 10px 28px rgba(42, 36, 32, 0.12);
  position: relative;
}
.facility-card img {
  display: block; width: 100%; height: 220px; object-fit: cover;
  transition: transform 0.45s ease;
}
.facility-card.wide img { height: 280px; }
.facility-card:hover img { transform: scale(1.04); }
.facility-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.65rem 0.85rem; font-size: 0.82rem; color: #FBF6EE;
  background: linear-gradient(transparent, rgba(26, 20, 18, 0.88));
}

.facility-videos { margin-top: 2.25rem; }
.facility-videos-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem; color: var(--maroon); text-align: center; margin: 0 0 0.4rem;
}
.facility-video-lead { text-align: center; margin: 0 auto 1rem; max-width: 36rem; }

.video-grid { display: grid; gap: 1rem; }
@media (min-width: 800px) { .video-grid { grid-template-columns: 1fr 1fr; } }
.video-card {
  margin: 0; border-radius: 12px; overflow: hidden; background: #1a1412;
  box-shadow: 0 10px 28px rgba(42, 36, 32, 0.12);
}
.video-card video {
  display: block; width: 100%; height: auto; max-height: 360px; background: #000;
}
.video-card figcaption {
  padding: 0.65rem 0.9rem 0.85rem; font-size: 0.85rem;
  color: var(--cream); background: #2A2420;
}

.venue-card.featured { border: 1.5px solid var(--gold); }
.badge-live { background: var(--maroon); color: var(--cream); }


/* Johnny Tamales venue card */
.venue-visual.v-jt {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  background: linear-gradient(145deg, #1a1412 0%, #3a2018 55%, #7A1A1A 100%);
}
.venue-visual.v-jt .venue-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35));
}
.venue-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 0.9rem;
}
.venue-photo-row figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1412;
}
.venue-photo-row img {
  display: block;
  width: 100%;
  height: 110px;
  object-fit: cover;
}
.venue-photo-row figcaption {
  font-size: 0.72rem;
  padding: 0.35rem 0.5rem;
  color: var(--muted, #5C534C);
  background: #F3E9D8;
}
