/* ==========================================================================
   Bar 59 — brand tokens
   ========================================================================== */
:root {
  --cream: #f3e8cd;
  --cream-deep: #ece0c0;
  --gold: #b9862d;
  --gold-light: #dcb35f;
  --ink: #221d15;
  --ink-soft: #3a3226;

  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body: 'Oswald', sans-serif;

  --wrap: 1140px;
  --radius: 14px;
  --shadow-soft: 0 12px 32px rgba(34, 29, 21, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.75rem, 9vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }

p { margin: 0 0 1em; }

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; overflow: hidden; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold);
  margin: 0 0 0.75em;
}
.center { text-align: center; }
.section-sub {
  max-width: 620px;
  margin: -0.5em auto 2.5em;
  color: var(--ink-soft);
}
h2.center + .section-sub { margin-left: auto; margin-right: auto; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.9em 1.6em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--cream);
}
.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-ghost {
  background: rgba(243, 232, 205, 0.12);
  color: var(--cream);
  border-color: rgba(243, 232, 205, 0.6);
  backdrop-filter: blur(2px);
}
.btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.btn-lg { font-size: 0.95rem; padding: 1.1em 2em; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  background: var(--cream);
  box-shadow: 0 2px 16px rgba(34, 29, 21, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand-logo { height: 52px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  font-size: 0.95rem;
}
.site-header:not(.is-scrolled) .main-nav a:not(.btn) { color: var(--cream); }
.main-nav a:not(.btn) { color: var(--ink); }
.main-nav a:not(.btn):hover { color: var(--gold); }
.btn-nav { padding: 0.7em 1.4em; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-header:not(.is-scrolled) .nav-toggle span { background: var(--cream); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 160px 0 88px;
  background: var(--ink);
  color: var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.hero-copy { display: flex; flex-direction: column; align-items: flex-start; }

.hero-media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #000;
}
.hero-poster,
.hero-media video,
.hero-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media iframe { border: 0; }

.hero-video-sound {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(34, 29, 21, 0.65);
  color: var(--cream);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.hero-video-sound:hover { background: rgba(34, 29, 21, 0.85); transform: scale(1.06); }

.hero-logo {
  width: 110px;
  height: 110px;
  margin-bottom: 20px;
  padding: 14px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

.hero-title { color: var(--cream); }
.hero-title span { color: var(--gold-light); }

.hero-tagline {
  max-width: 460px;
  font-size: 1.1rem;
  color: var(--cream-deep);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.scroll-cue span {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--cream);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: cueScroll 1.6s ease-in-out infinite;
}
@keyframes cueScroll {
  0% { opacity: 1; top: 6px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 6px; }
}

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
}
.about-copy .lede {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-soft);
}
.signature {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: var(--gold);
  margin: 1.2em 0 1.4em;
}

/* ==========================================================================
   Services
   ========================================================================== */
.services { background: var(--cream-deep); }

.pour-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.pour-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(34,29,21,0.08);
}
.pour-icon { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.pour-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

.event-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.event-tag {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.03em;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
/* Masonry-style collage: each photo keeps its natural aspect ratio (no
   forced cropping), laid out in CSS columns so nothing gets cut off. */
.gallery-grid {
  column-count: 3;
  column-gap: 20px;
}
.gallery-item {
  margin: 0 0 20px;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 18px rgba(34,29,21,0.1);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.25s ease;
}
.gallery-item:nth-child(3n+1) { --tilt: -1.3deg; }
.gallery-item:nth-child(3n+2) { --tilt: 1deg; }
.gallery-item:hover { transform: rotate(0deg) scale(1.02); }
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin: 0 auto;
}
.price-card {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.price-card--featured {
  background: var(--ink);
  color: var(--cream);
  transform: scale(1.03);
  box-shadow: var(--shadow-soft);
}
.price-card--featured h3,
.price-card--featured .price span { color: var(--cream); }
.price-card--featured .price { color: var(--gold-light); }

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}

.price { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); margin: 0; }
.price span { font-size: 1.9rem; }

.price-note {
  margin: -8px 0 4px;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink-soft);
}
.price-card--featured .price-note { color: var(--cream-deep); }

.price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.price-card--featured ul { color: var(--cream-deep); }
.price-card li {
  padding-left: 1.3em;
  position: relative;
  margin-bottom: 0.6em;
}
.price-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.addons { margin-top: 56px; text-align: center; }
.addon-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
.addon-tag {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--gold);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { background: var(--cream-deep); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: 0 6px 18px rgba(34,29,21,0.08);
}
.stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.6em; }
.testimonial-quote { font-style: italic; color: var(--ink-soft); }
.testimonial-name { font-weight: 600; margin: 0; font-size: 0.9rem; }

/* ==========================================================================
   Book a call
   ========================================================================== */
.book-a-call { background: var(--ink); color: var(--cream); }
.book-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.book-copy h2 { color: var(--cream); }
.book-copy p { color: var(--cream-deep); }
.book-alt a { color: var(--gold-light); text-decoration: underline; }

.book-form {
  background: var(--ink-soft);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hidden-field { position: absolute; left: -9999px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row--split > div { display: flex; flex-direction: column; gap: 6px; }

label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-light);
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(243, 232, 205, 0.25);
  background: rgba(243, 232, 205, 0.06);
  color: var(--cream);
}
input::placeholder, textarea::placeholder { color: rgba(243,232,205,0.45); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold-light);
}
select { color: var(--cream); }
select option { color: var(--ink); }

.form-note {
  margin: 0;
  font-size: 0.9rem;
  min-height: 1.2em;
  color: var(--gold-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #17130d; color: var(--cream-deep); padding-top: 64px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(243,232,205,0.12);
}
.footer-logo { height: 56px; margin-bottom: 14px; }
.footer-brand p { max-width: 280px; font-size: 0.9rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-cta a.btn { margin-bottom: 4px; }
.footer-cta a:hover { color: var(--gold-light); }
.footer-bottom { padding: 22px 0; font-size: 0.8rem; opacity: 0.7; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .book-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { align-items: center; text-align: center; }
  .hero-actions { justify-content: center; }
  .pour-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .gallery-grid { column-count: 2; }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }

  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 24px;
    gap: 22px;
    font-size: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .main-nav a:not(.btn) { color: var(--ink) !important; }
  .main-nav.is-open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-header.is-scrolled .nav-toggle span,
  .nav-toggle.is-active span { background: var(--ink); }

  .pour-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row--split { grid-template-columns: 1fr; }
  .gallery-grid { column-count: 1; }
}
