/* ============================================================
   OLD 41 — Homepage sections (Golden Hour Roadside)
   ============================================================ */

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: min(88svh, 820px);
  display: flex; align-items: center;
  background: var(--espresso);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(36, 23, 14, .88) 0%, rgba(36, 23, 14, .55) 46%, rgba(36, 23, 14, .12) 75%),
    linear-gradient(to top, rgba(36, 23, 14, .55), transparent 38%);
}
.hero-rays {
  position: absolute; right: -16%; top: -42%; width: 1100px; height: 1100px;
  background: repeating-conic-gradient(from 90deg at 50% 50%,
    rgba(232,163,61,.16) 0deg 5deg, transparent 5deg 14deg);
  border-radius: 50%; pointer-events: none; mix-blend-mode: screen;
}
.hero-inner { position: relative; z-index: 2; padding: clamp(4.5rem, 10vw, 7rem) 0; max-width: 660px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(232,163,61,.16); border: 1px solid rgba(232,163,61,.45);
  color: var(--amber-soft); border-radius: 999px;
  padding: .45rem 1.1rem; font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero-badge .stars svg { width: 14px; height: 14px; }
.hero h1 { color: var(--cream); }
.hero h1 .sun { color: var(--amber); }
.hero-sub { margin: 1.2rem 0 2rem; font-size: clamp(1.05rem, 2vw, 1.22rem); color: #E3D2BF; max-width: 520px; }
.hero-ctas { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 2.2rem; font-size: .95rem; color: #CBB9A8; }
.hero-meta span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-meta svg { width: 17px; height: 17px; color: var(--amber); }

/* ---------- Award ticker band ---------- */
.award-band {
  background: var(--amber); color: var(--espresso);
  padding: .85rem 0; overflow: hidden; white-space: nowrap;
  border-top: 3px solid var(--espresso); border-bottom: 3px solid var(--espresso);
}
.ticker { display: inline-flex; gap: 0; animation: tick 38s linear infinite; }
.ticker-set { display: inline-flex; align-items: center; }
.ticker-set span {
  display: inline-flex; align-items: center; gap: .8rem;
  font-weight: 800; font-size: .92rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 0 1.6rem;
}
.ticker-set span::after { content: "✦"; margin-left: 1.6rem; font-size: .8rem; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker { animation: none; } }

/* ---------- Favorites grid ---------- */
.fav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.fav-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease);
}
.fav-card:hover { transform: translateY(-6px); }
.fav-card .fav-img { aspect-ratio: 4 / 3; overflow: hidden; }
.fav-card .fav-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.fav-card:hover .fav-img img { transform: scale(1.05); }
.fav-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.fav-body .fav-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.fav-body h3 { font-size: 1.22rem; }
.fav-price { font-weight: 800; color: var(--terracotta-dark); white-space: nowrap; }
.fav-body p { font-size: .95rem; }
.fav-tag {
  align-self: flex-start; margin-top: auto;
  font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  background: var(--amber-soft); color: var(--espresso); border-radius: 999px; padding: .3rem .8rem;
}

/* ---------- Story split ---------- */
.story-split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story-imgs { position: relative; }
.story-imgs .arch-img { aspect-ratio: 4 / 5; }
.story-year {
  position: absolute; right: -14px; bottom: 26px;
  background: var(--terracotta); color: var(--white);
  border-radius: 50%; width: 128px; height: 128px;
  display: grid; place-items: center; text-align: center;
  box-shadow: var(--shadow); transform: rotate(6deg);
}
.story-year .n { font-family: var(--font-display); font-size: 1.6rem; line-height: 1; }
.story-year .l { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .9; }
.story-copy p + p { margin-top: 1rem; }
.story-stats { display: flex; gap: 2.4rem; margin-top: 2rem; flex-wrap: wrap; }
.stat .num { font-family: var(--font-display); font-size: 2.3rem; color: var(--terracotta-dark); line-height: 1; }
.stat .lbl { font-size: .85rem; font-weight: 600; color: var(--espresso-soft); margin-top: .3rem; }

/* ---------- Specials band ---------- */
.specials-band { position: relative; overflow: hidden; }
.specials-band .sunrise {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -58%);
  width: 1500px; height: 1500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,163,61,.2) 0%, transparent 60%);
  pointer-events: none;
}
.specials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; position: relative; }
.special-card {
  background: rgba(253, 248, 239, .07); border: 1px solid rgba(232, 163, 61, .3);
  border-radius: var(--radius); padding: 1.6rem;
}
.special-card .day { font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); }
.special-card h3 { color: var(--cream); margin: .5rem 0 .4rem; }
.special-card p { font-size: .95rem; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review-card { display: flex; flex-direction: column; gap: .9rem; }
.review-card blockquote { font-size: 1.02rem; color: var(--espresso); line-height: 1.6; }
.review-card cite { font-style: normal; font-weight: 700; font-size: .9rem; color: var(--espresso-soft); margin-top: auto; }
.review-summary {
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2.4rem;
}
.review-summary .big { font-family: var(--font-display); font-size: 3rem; color: var(--espresso); line-height: 1; }
.review-summary .src { font-size: .9rem; color: var(--espresso-soft); }

/* ---------- Visit split ---------- */
.visit-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: stretch; }
.visit-card { display: flex; flex-direction: column; gap: 1.3rem; }
.visit-row { display: flex; gap: 1rem; align-items: flex-start; }
.visit-row svg { width: 22px; height: 22px; color: var(--terracotta); flex: none; margin-top: .2rem; }
.visit-row h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 800; }
.visit-row p { font-size: .98rem; }
.visit-map { border-radius: var(--radius); overflow: hidden; min-height: 380px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.visit-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ---------- Big CTA ---------- */
.big-cta { text-align: center; position: relative; overflow: hidden; }
.big-cta h2 { max-width: 620px; margin-inline: auto; }
.big-cta p { max-width: 480px; margin: 1rem auto 2rem; }
.big-cta .hero-ctas { justify-content: center; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .fav-grid, .specials-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .story-split, .visit-split { grid-template-columns: 1fr; }
  .story-imgs { max-width: 480px; }
}
@media (max-width: 640px) {
  .fav-grid, .specials-grid, .reviews-grid { grid-template-columns: 1fr; }
  .hero { min-height: 78svh; }
  .story-year { width: 104px; height: 104px; right: 4px; }
}
