/* ==========================================================================
   Home page — hero, signature drinks poster, about, visit, and the heading
   above the gallery carousel. The carousel itself lives in gallery.css.
   ========================================================================== */

/* Hero -------------------------------------------------------------------- */

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1.1fr);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 56px 6vw 72px;
  gap: 7vw;
}

.hero-logo-wrap {
  overflow: hidden;
  border-radius: 50% 50% 46% 46%;
  background: #fff;
  box-shadow: 0 30px 80px rgba(26, 61, 28, 0.12);
}

.logo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

/* Signature drinks poster ------------------------------------------------- */

.signature-poster {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(560px, 1.3fr);
  align-items: center;
  gap: clamp(36px, 5vw, 80px);
  min-height: 760px;
  padding: clamp(72px, 9vw, 120px) 6vw;
  overflow: hidden;
  background: radial-gradient(circle at 72% 42%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #ffd91a 0%, #f6b900 100%);
  color: #153819;
}

/* Oversized watermark inset from the right edge so the full word stays visible. */
.signature-poster::before {
  content: "SIGNATURE";
  position: absolute;
  top: 3%;
  right: 2%;
  color: rgba(255, 255, 255, 0.2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
}

.signature-poster-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.signature-kicker {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.signature-poster h2 {
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 7rem);
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.signature-poster-copy > p:not(.signature-kicker) {
  max-width: 490px;
  margin: 30px 0;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.signature-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 22px;
  border-radius: 999px;
  background: #153819;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(21, 56, 25, 0.2);
  transition: transform 180ms ease, background-color 180ms ease;
}

.signature-button:hover {
  background: #275f2e;
  transform: translateY(-2px);
}

/* White on the yellow poster is only 1.77:1, so the ring uses the dark green. */
.signature-button:focus-visible {
  outline: 3px solid var(--focus-on-light);
  outline-offset: 4px;
}

/* Five overlapping cups, fanned out and rotated. The negative side margins
   are what make them overlap; the per-cup rules below stagger the heights. */
.signature-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  min-height: 580px;
}

.signature-drink {
  position: relative;
  margin: 0 -18%;
  text-align: center;
  transition: transform 220ms ease;
}

.signature-drink:hover {
  z-index: 5;
  transform: translateY(-12px);
}

.signature-drink img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  box-shadow: 0 25px 55px rgba(74, 48, 0, 0.24);
}

.signature-drink figcaption {
  display: inline-block;
  margin-top: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  font-weight: 900;
  white-space: nowrap;
}

.signature-drink-1,
.signature-drink-5 {
  transform: translateY(70px) rotate(-4deg);
}

.signature-drink-2 {
  transform: translateY(25px) rotate(2deg);
}

.signature-drink-4 {
  transform: translateY(25px) rotate(-2deg);
}

.signature-drink-5 {
  transform: translateY(70px) rotate(4deg);
}

/* The middle cup sits highest and in front. */
.signature-drink-featured {
  z-index: 3;
  transform: translateY(-12px);
}

/* About ------------------------------------------------------------------- */

.about {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding: clamp(72px, 10vw, 140px) 6vw;
  background: #e7eddf;
}

.about-photo-wrap {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 65px rgba(24, 59, 28, 0.18);
}

.about-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.about-copy {
  max-width: 760px;
}

.about h2,
.visit h2 {
  margin: 0 0 28px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.about-copy > p:not(.eyebrow) {
  margin: 0 0 20px;
  color: #425944;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.72;
}

/* Visit ------------------------------------------------------------------- */

.visit {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  padding: clamp(76px, 10vw, 140px) 6vw;
  background: var(--green-dark);
  color: var(--cream);
}

.visit .eyebrow {
  color: #b9cdb7;
}

.visit-heading > p:not(.eyebrow) {
  margin: 0 0 32px;
  color: #d5dfd2;
  font-size: 1.25rem;
  line-height: 1.7;
}

.hours-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.hours-card h3 {
  margin: 0 0 24px;
  font-size: 2rem;
}

.hours-card dl {
  margin: 0;
}

.hours-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.hours-card dl div:last-child {
  border: 0;
}

.hours-card dt {
  font-weight: 700;
}

.hours-card dd {
  margin: 0;
  color: #dce6d9;
}

/* Gallery heading --------------------------------------------------------- */
/* Dark band introducing the carousel; the carousel styles are in gallery.css. */

.home-gallery {
  padding: clamp(76px, 10vw, 130px) 0 0;
  background: #102d14;
}

.home-gallery-heading {
  max-width: 850px;
  padding: 0 6vw;
  color: var(--cream);
}

.home-gallery-heading .eyebrow {
  color: #b9cdb7;
}

.home-gallery-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.home-gallery-heading > p:last-child {
  max-width: 640px;
  margin: 24px 0 0;
  color: #c5d2c2;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

/* Responsive -------------------------------------------------------------- */

@media (max-width: 1000px) {
  .signature-poster {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .signature-poster-copy {
    max-width: 720px;
  }

  .signature-showcase {
    min-height: auto;
    padding: 20px 0 70px;
  }
}

@media (max-width: 820px) {
  .hero,
  .about {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 32px;
    gap: 32px;
  }

  .hero-logo-wrap,
  .about-photo-wrap {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-copy {
    padding-bottom: 32px;
  }

  .visit {
    grid-template-columns: 1fr;
  }
}

/* Below this width the fan becomes a horizontal swipe strip. */
@media (max-width: 620px) {
  .signature-poster {
    padding-inline: 20px;
  }

  .signature-showcase {
    grid-template-columns: repeat(5, 44vw);
    justify-content: start;
    gap: 14px;
    margin-inline: -20px;
    padding: 20px 20px 34px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .signature-drink,
  .signature-drink-1,
  .signature-drink-2,
  .signature-drink-4,
  .signature-drink-5,
  .signature-drink-featured {
    margin: 0;
    transform: none;
    scroll-snap-align: center;
  }

  .signature-drink:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero,
  .visit {
    padding-inline: 20px;
  }

  .about {
    padding-inline: 20px;
  }

  .hours-card {
    padding: 24px 20px;
  }

  .hours-card dl div {
    gap: 12px;
    font-size: 0.95rem;
  }
}
