@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=Bebas+Neue&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --red:        #C8282E;
  --red-dark:   #9B1C21;
  --black:      #1C1A18;
  --charcoal:   #2C2A27;
  --cream:      #F5F0E8;
  --warm-white: #FDFAF5;
  --tan:        #D4C9B0;
  --gray:       #888;
  --text:       #2C2A27;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--warm-white); color: var(--text); overflow-x: hidden; }

/* ── NAV ── */
nav {
  background: var(--black);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  position: relative;
  z-index: 200;
  gap: 0;
}

.nav-logo-wrap {
  flex-shrink: 0;
  margin-right: auto;
  position: relative;
  z-index: 300;
}

.nav-logo-wrap a {
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--black);
  border: 3px solid var(--red);
  overflow: hidden;
  margin-top: 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-logo { width: 100%; height: 100%; object-fit: cover; display: block; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  margin-left: auto;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #aaa; }

.nav-mobile-links {
  display: none;
  position: absolute;
  top: 68px; left: 0; right: 0;
  background: var(--black);
  flex-direction: column;
  list-style: none;
  padding: 1.5rem 2rem;
  gap: 1.2rem;
  border-bottom: 2px solid var(--red);
  z-index: 200;
}
.nav-mobile-links.open { display: flex; }
.nav-mobile-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaa;
  text-decoration: none;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  background: var(--black);
  margin-top: -1px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  background: var(--black);
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.hero-left h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 4.5vw, 5.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.hero-left h1 span { color: var(--red); display: block; }

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 1.75rem 0 2.5rem;
}

.hero-details span {
  font-size: 0.88rem;
  color: #777;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.03em;
}

.hero-details span::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── HERO RIGHT: photo with torn left edge ── */
.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Torn edge on LEFT side of photo */
.hero-right::before {
  content: '';
  position: absolute;
  top: 0; left: -2px;
  width: 80px;
  height: 100%;
  background: var(--black);
  z-index: 2;
  clip-path: polygon(
    0% 0%, 100% 0%,
    85% 4%, 100% 8%, 80% 13%, 100% 18%,
    78% 23%, 100% 28%, 82% 33%, 100% 38%,
    76% 43%, 100% 48%, 80% 53%, 100% 58%,
    78% 63%, 100% 68%, 82% 73%, 100% 78%,
    79% 83%, 100% 88%, 81% 93%, 100% 98%,
    100% 100%, 0% 100%
  );
}

/* ── BUTTONS ── */
.btn {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: #fff; }
.btn-outline-light {
  display: inline-block; margin-top: 1.75rem;
  font-family: 'Jost', sans-serif; font-weight: 600;
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.8rem 2rem; text-decoration: none;
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.btn-outline-light:hover { border-color: var(--cream); }
.btn-dark {
  display: inline-block; margin-top: 1.5rem;
  font-family: 'Jost', sans-serif; font-weight: 600;
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.8rem 2rem; text-decoration: none;
  background: var(--black); color: #fff; transition: all 0.2s;
}
.btn-dark:hover { background: var(--charcoal); }

/* ── INFO STRIP ── */
.info-strip { background: var(--cream); border-bottom: 1px solid var(--tan); padding: 0.9rem 2rem; }
.info-strip-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.info-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.86rem; color: var(--text); text-decoration: none; letter-spacing: 0.02em;
}
.info-item svg { color: var(--red); flex-shrink: 0; }
.info-item:hover { color: var(--red); }
.info-divider { width: 1px; height: 18px; background: var(--tan); }

/* ── SELECTION ── */
.selection { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'Jost', sans-serif; font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--black); margin-bottom: 3rem;
}
.selection-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e0d9ce;
}
.selection-card {
  padding: 2.5rem 2rem; border-right: 1px solid #e0d9ce;
  background: var(--warm-white); transition: background 0.2s; text-align: center;
}
.selection-card:last-child { border-right: none; }
.selection-card:hover { background: var(--cream); }
.selection-icon { width: 55px; height: 75px; margin: 0 auto 1.25rem; }
.selection-icon svg { width: 100%; height: 100%; }
.selection-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--black);
}
.selection-card p { font-size: 0.86rem; line-height: 1.6; color: var(--gray); }

/* ── DARK BAND ── */
.dark-band { background: var(--charcoal); padding: 5rem 2rem; }
.dark-band-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.dark-band-label {
  font-family: 'Jost', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem;
}
.dark-band-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem; font-style: italic; line-height: 1.9; color: #bbb;
}
.dark-band-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.fact { border-left: 2px solid var(--red); padding-left: 1rem; }
.fact span {
  font-family: 'Jost', sans-serif; font-weight: 600;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream); display: block; margin-bottom: 0.25rem;
}
.fact p { font-size: 0.86rem; color: #666; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--black); padding: 5rem 5rem 4rem;
  border-bottom: 3px solid var(--red); margin-top: -1px;
}
.page-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 700; font-style: italic;
  color: var(--warm-white); line-height: 1;
}
.page-header h1 span { color: var(--red); }
.page-header p {
  font-family: 'Jost', sans-serif; font-size: 0.78rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: #555; margin-top: 1rem;
}

/* ── INNER SECTIONS ── */
.inner-section { padding: 5rem; max-width: 1200px; margin: 0 auto; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-text p { font-size: 1rem; line-height: 1.9; color: #555; margin-bottom: 1.2rem; }
.about-image img { width: 100%; border: 1px solid var(--tan); }
.facts-list { list-style: none; margin-top: 2rem; border: 1px solid #e0d9ce; }
.facts-list li {
  padding: 0.85rem 1.25rem; border-bottom: 1px solid #e0d9ce;
  font-size: 0.9rem; color: #555; display: flex; align-items: center; gap: 0.75rem;
}
.facts-list li:last-child { border-bottom: none; }
.facts-list li::before { content: '—'; color: var(--red); flex-shrink: 0; }

.events-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2rem; }
.event-card { background: var(--warm-white); border: 1px solid #e0d9ce; padding: 2rem; }
.event-tag {
  font-family: 'Jost', sans-serif; font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.75rem; display: block;
}
.event-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--black);
}
.event-card p { font-size: 0.9rem; line-height: 1.7; color: #666; }
.ig-callout {
  margin-top: 3rem; padding: 2rem 2.5rem;
  border-left: 3px solid var(--red); background: var(--cream);
}
.ig-callout p { font-size: 0.93rem; color: #555; line-height: 1.7; }
.ig-callout strong { color: var(--red); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-block { margin-bottom: 2.5rem; }
.contact-block h3 {
  font-family: 'Jost', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem;
}
.contact-block p, .contact-block a { font-size: 1rem; color: #555; text-decoration: none; line-height: 1.9; }
.contact-block a:hover { color: var(--red); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid #e0d9ce; }
.hours-table td { padding: 0.6rem 0; font-size: 0.92rem; color: #666; }
.hours-table td:last-child { text-align: right; color: var(--text); font-weight: 500; }
.map-embed { width: 100%; height: 400px; border: 1px solid #e0d9ce; }

/* ── FOOTER ── */
footer { background: var(--black); border-top: 3px solid var(--red); padding: 4rem 2rem 0; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem;
  padding-bottom: 3rem; border-bottom: 1px solid #2a2826;
}
.footer-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem; font-style: italic; color: var(--cream); margin-bottom: 0.75rem;
}
.footer-col p { font-size: 0.86rem; color: #555; line-height: 1.9; }
.footer-col a { font-size: 0.86rem; color: #555; text-decoration: none; display: block; margin-top: 0.4rem; }
.footer-col a:hover { color: var(--red); }
.footer-heading {
  font-family: 'Jost', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li a { font-size: 0.86rem; color: #555; text-decoration: none; display: block; padding: 0.25rem 0; margin-top: 0; }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 1.5rem 0; }
.footer-bottom p { font-size: 0.78rem; color: #3a3836; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 2rem 3rem; min-height: 60vh; }
  .hero-right { height: 55vw; }
  .hero-right::before { display: none; }
  .selection-grid { grid-template-columns: 1fr 1fr; }
  .selection-card { border-bottom: 1px solid #e0d9ce; }
  .dark-band-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .inner-section { padding: 3rem 1.5rem; }
  .page-header { padding: 3rem 1.5rem; }
  .events-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
