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

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
p {
  margin: 0;
}

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

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

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* =========================
   VARIABLES
========================= */
:root {
  --parchment-1: #e2d2b2;
  --parchment-2: #ccb184;
  --wood-1: #6b3f21;
  --wood-2: #3a1f0f;
  --wood-3: #24130b;
  --gold: #d8bc79;
  --gold-soft: #f0dfb1;
  --cream: #f5ecd7;
  --dark: #120c08;
  --shadow: rgba(0, 0, 0, 0.4);
}

/* =========================
   GLOBAL
========================= */
body {
  background: var(--dark);
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  overflow-x: hidden;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, var(--parchment-1), var(--parchment-2));
  border-top: 2px solid rgba(55, 32, 19, 0.65);
  border-bottom: 2px solid rgba(55, 32, 19, 0.45);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.8;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.15), transparent 30%),
    radial-gradient(circle at bottom, rgba(90,60,35,0.12), transparent 40%);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  width: min(100% - 1rem, 1400px);
  min-height: 64px;
  margin: 0 auto;
  padding: 0.35rem 0;
}

.brand-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0.6rem;
  position: relative;
  z-index: 2;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.45rem 0.9rem;
  color: #f2e2bc;
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: linear-gradient(to bottom, var(--wood-1), var(--wood-2));
  border: 2px solid #3a2114;
  border-radius: 10px;
  box-shadow:
    0 4px 10px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.map-link:hover {
  filter: brightness(1.05);
}

.top-sign-wrap {
  justify-self: center;
  position: relative;
  z-index: 2;
}

.top-sign {
  position: relative;
  min-width: 230px;
  padding: 0.7rem 1.2rem;
  text-align: center;
  color: #f2e2bc;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(to bottom, #5c3922, #2c180f);
  border: 2px solid #24130b;
  border-radius: 0.35rem;
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.top-sign::before,
.top-sign::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 2px;
  background: rgba(127, 88, 49, 0.55);
}

.top-sign::before {
  left: -20px;
}

.top-sign::after {
  right: -20px;
}

.menu-toggle {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-right: 0.35rem;
  background: linear-gradient(to bottom, #67412a, #3a2215);
  border: 2px solid #3a2114;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.16);
  position: relative;
  z-index: 2;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: #f1e1bc;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  display: none;
  width: min(100% - 1rem, 1400px);
  margin: 0 auto;
  padding: 0 0 0.75rem;
  background: #70665d;
}

.site-nav.open {
  display: block;
  pointer-events: auto;
}

.site-nav a {
  display: block;
  padding: 0.9rem 0.3rem;
  color: #ffffff;
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(70, 42, 25, 0.12);
  text-decoration: none;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: calc(100svh - 64px);
  padding: 1rem 1rem 2rem;
  overflow: hidden;
  background: url("../images/main-hero.png");
  background-repeat: no-repeat;
  background-position: center -70px;
  background-size: 1000px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 180, 80, 0.04), rgba(7, 4, 2, 0.55) 72%);
}

.hero-darken {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(33,17,10,0.18), rgba(15,8,5,0.32));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
  padding-top: 1rem;
}

.hero h1 {
  margin-bottom: 0.25rem;
  color: var(--cream);
  font-family: "Cinzel", serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.05;
  text-shadow:
    0 2px 0 rgba(71, 43, 25, 0.7),
    0 5px 14px rgba(0, 0, 0, 0.45);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
  radial-gradient(circle at center,
  rgba(255,200,120,0.05),
  rgba(0,0,0,0.6) 70%);
}

.tagline-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: min(100%, 820px);
  margin: 0 auto 1rem;
}

.tagline-wrap p {
  color: var(--gold-soft);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}

.tag-line {
  flex: 1;
  max-width: 170px;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(232, 211, 167, 0.8), transparent);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 54px;
  padding: 0.9rem 1.2rem;
  color: #f1dfb9;
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(to bottom, #70462d, #3a2115);
  border: 2px solid #26140c;
  border-radius: 0.5rem;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 8px 15px rgba(0,0,0,0.24);
  margin-bottom: 85px;
}

.hero-btn::before,
.hero-btn::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(216, 188, 121, 0.6);
}

.hero-btn::before {
  top: 7px;
  left: 7px;
  border-right: 0;
  border-bottom: 0;
}

.hero-btn::after {
  right: 7px;
  bottom: 7px;
  border-top: 0;
  border-left: 0;
}

/* =========================
   HOME REVIEWS / INTRO
========================= */
.reviews-home {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 3rem 2rem 4rem;
  background:
    linear-gradient(to bottom, rgba(20,12,8,0.96), rgba(10,6,4,0.98));
}

.review-card,
.home-intro {
  background: rgba(43, 24, 15, 0.78);
  border: 1px solid rgba(216, 188, 121, 0.18);
  border-radius: 0.8rem;
  padding: 1.5rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.review-card {
  color: #eadfc9;
}

.review-card p {
  margin: 0.8rem 0;
  font-size: 1.1rem;
}

.review-card span {
  color: #bda983;
  font-size: 0.95rem;
}

.review-left {
  position: absolute;
  left: 6%;
  top: 35%;
  width: 260px;
}

.review-right {
  position: absolute;
  right: 6%;
  top: 35%;
  width: 260px;
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.hero-side-review {
  background:rgb(72, 45, 27, 0.95);
  border: 1px solid rgba(216, 188, 121, 0.28);
  border-radius: 14px;
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  color: #f1e6cf;
}

.hero-side-review p {
  color: #f1e6cf;
  font-size: 1rem;
  line-height: 1.5;
}

.hero-side-review span {
  color: #d8bc79;
  font-size: 0.95rem;
}

.stars {
  color: #ffb300;
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 0.55rem;
}

.home-intro {
  text-align: center;
}

.home-intro h2 {
  margin-bottom: 0.75rem;
  color: var(--cream);
  font-family: "Cinzel", serif;
  font-size: 2rem;
}

.home-intro p {
  color: #eadfc9;
  font-size: 1.2rem;
  line-height: 1.5;
}

/* =========================
   ALEHOUSE VIBE SECTION
========================= */

.ale-vibe-section {
  position: relative;
  padding: 4.5rem 1.25rem 5rem;
  background:
    radial-gradient(circle at top left, rgba(216, 188, 121, 0.13), transparent 28%),
    radial-gradient(circle at bottom right, rgba(98, 57, 30, 0.28), transparent 30%),
    linear-gradient(to bottom, #120c08, #1b1009 45%, #090604);
  overflow: hidden;
}

.ale-vibe-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent, rgba(255, 217, 140, 0.05), transparent);
  pointer-events: none;
}

.vibe-heading {
  position: relative;
  z-index: 2;
  width: min(100%, 820px);
  margin: 0 auto 3rem;
  text-align: center;
}

.vibe-kicker {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.vibe-heading h2 {
  color: var(--cream);
  font-family: "Cinzel", serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.45);
  margin-bottom: 1rem;
}

.vibe-heading p {
  color: #e9d8b5;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.vibe-story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.3rem;
  width: min(100%, 1180px);
  margin: 0 auto 1.4rem;
}

.vibe-feature,
.vibe-photo {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(216, 188, 121, 0.26);
  background: rgba(43, 24, 15, 0.72);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.vibe-feature {
  min-height: 440px;
}

.vibe-feature img,
.vibe-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03) brightness(0.9);
  transform: scale(1.04);
  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}

.vibe-feature:hover img,
.vibe-photo:hover img {
  transform: scale(1.1) rotate(0.4deg);
  filter: saturate(1.18) contrast(1.05) brightness(1);
}

.vibe-feature::after,
.vibe-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 4, 2, 0.78), rgba(8, 4, 2, 0.08) 58%),
    radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.vibe-card-text {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.3rem;
  z-index: 3;
  text-align: left;
}

.vibe-card-text span {
  display: inline-block;
  color: #21180d;
  background: linear-gradient(135deg, #f0dfb1, #d8bc79);
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.vibe-card-text h3 {
  color: #fff5dc;
  font-family: "Cinzel", serif;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.08;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.65);
}

.vibe-mosaic {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 1.1rem;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.vibe-photo.tall {
  grid-row: span 2;
}

.vibe-photo.wide {
  grid-column: span 2;
}

.vibe-reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.vibe-reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

/* warm light sweep */
.vibe-feature::before,
.vibe-photo::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -80%;
  z-index: 2;
  width: 55%;
  height: 220%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 225, 160, 0.14),
    transparent
  );
  transform: rotate(18deg);
  transition: left 0.9s ease;
  pointer-events: none;
}

.vibe-feature:hover::before,
.vibe-photo:hover::before {
  left: 120%;
}

/* =========================
   VIBE MOBILE
========================= */

@media (max-width: 900px) {
  .vibe-story-grid {
    grid-template-columns: 1fr;
  }

  .vibe-feature {
    min-height: 360px;
  }

  .vibe-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
  }

  .vibe-photo.tall {
    grid-row: span 1;
  }

  .vibe-photo.wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .ale-vibe-section {
    padding: 3.5rem 0.85rem 4rem;
  }

  .vibe-heading {
    margin-bottom: 2rem;
  }

  .vibe-story-grid {
    gap: 0.9rem;
    margin-bottom: 0.9rem;
  }

  .vibe-feature {
    min-height: 330px;
    border-radius: 18px;
  }

  .vibe-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
    gap: 0.9rem;
  }

  .vibe-photo.wide {
    grid-column: span 1;
  }

  .vibe-card-text {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

/* =========================
   LOWER BAND
========================= */
.bottom-parchment {
  min-height: 90px;
  background: linear-gradient(to bottom, #e0cfaf, #ccb184);
  border-top: 1px solid rgba(73, 46, 28, 0.18);
}

footer {
  text-align: center;
  padding: 20px;
  background: #090909;
  color: #999;
  margin-top: 40px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .header-inner {
    min-height: 60px;
    padding: 0.25rem 0.5rem;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .brand-left {
    padding-left: 0;
  }

  .map-link {
    min-height: 34px;
    padding: 0.4rem 0.7rem;
    font-size: 0.7rem;
  }

  .top-sign {
    min-width: 170px;
    padding: 0.55rem 0.85rem;
    font-size: .91rem;
  }

  .top-sign::before,
  .top-sign::after {
    width: 12px;
  }

  .top-sign::before {
    left: -14px;
  }

  .top-sign::after {
    right: -14px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    margin-right: 0;
  }

  .hero {
    position: relative;
    display: block;
    min-height: auto;
    padding: 1rem 1rem 2rem;
    background:
    url("../images/main-hero.png");
     background-size: 600px;
     background-position: center 10px;
     background-repeat: no-repeat;
     margin-top: -60px;
      }

  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding-top: 23rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.02;
    margin: 0 0 0.45rem;
    letter-spacing: 0.02em;
  }

  .tagline-wrap {
    width: 100%;
    gap: 0.6rem;
    margin: 0 auto 1rem;
  }

  .tagline-wrap p {
    font-size: 0.95rem;
    line-height: 1.15;
    white-space: normal;
  }

  .tag-line {
    max-width: 42px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
  }

  .hero-buttons a,
  .hero-buttons button {
    margin: 0;
  }


  .hero-btn {
    width: 100%;
    max-width: 320px;
    min-height: 54px;
    font-size: 0.9rem;
  }

  .hero-side-review,
  .review-left,
  .review-right {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 320px;
    margin: 1rem auto 0;
    z-index: 5;
  }

  .hero-side-review p {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .stars {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .bottom-parchment {
    min-height: 70px;
  }

  .hero-side-review {
    background: rgba(30, 16, 10, 0.9);
    padding: 1rem;
    max-width: 340px;
  }

  .hero-side-review p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-side-review span {
    font-size: 0.9rem;
  }

  .stars {
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
  }
}