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

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #0f1115;
  color: #e6e6e6;
  line-height: 1.6;
}

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

a {
  color: #a0b4d0;
  text-decoration: none;
}

a:hover {
  color: #c8d8ed;
}

/* =========================
   LAYOUT
========================= */
.site-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

/* =========================
   HEADER / NAV
========================= */
.site-header {
  background: #0f1115;
  border-bottom: 1px solid #1f232b;
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo a {
  font-size: 18px;
  font-weight: 700;
  color: #e6e6e6;
  text-decoration: none;
}

.site-logo a:hover {
  color: #fff;
}

.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-size: 14px;
  color: #9aa3b2;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #e6e6e6;
}

/* =========================
   HERO
========================= */
.hero {
  background: #151922;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #1f232b;
  padding: 48px 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 18, 0.72);
}

.hero-panel {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-panel {
    grid-template-columns: 1fr;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a0b4d0;
  font-weight: 600;
}

.hero h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hero p {
  margin: 0;
  color: #cbd3df;
  font-size: 16px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================
   VERIFICATION
========================= */
.verification-badge,
.verification-callout {
  background: #151922;
  border: 1px solid #2a2f38;
  border-radius: 8px;
  padding: 14px;
  font-size: 13px;
}

.verification-status {
  font-weight: 600;
  color: #7ac97a;
  margin-bottom: 4px;
}

.verification-source {
  color: #9aa3b2;
}

.verification-callout strong {
  color: #7ac97a;
}

/* =========================
   INFO CARD (hero sidebar)
========================= */
.info-card {
  background: #151922;
  border: 1px solid #2a2f38;
  border-radius: 8px;
  padding: 14px;
  font-size: 13px;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 14px;
  color: #e6e6e6;
}

.info-card p {
  margin: 4px 0;
  color: #cbd3df;
}

/* =========================
   SECTIONS
========================= */
.section {
  margin-top: 32px;
}

.section-card {
  background: #151922;
  border: 1px solid #1f232b;
  border-radius: 10px;
  padding: 24px;
}

.section-title {
  margin: 0 0 8px;
  font-size: 22px;
  color: #e6e6e6;
}

.section-intro {
  margin: 0 0 20px;
  color: #9aa3b2;
  font-size: 14px;
}

/* =========================
   INFO GRID
========================= */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.info-item {
  background: #1a1f2a;
  border: 1px solid #1f232b;
  border-radius: 8px;
  padding: 14px;
}

.info-item h3 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #a0b4d0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
}

.info-item p {
  margin: 0;
  font-size: 13px;
  color: #cbd3df;
}

/* =========================
   ABOUT GRID
========================= */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.about-card {
  background: #1a1f2a;
  border: 1px solid #1f232b;
  border-radius: 8px;
  padding: 16px;
}

.about-card h3 {
  margin: 0 0 10px;
  font-size: 15px;
  color: #e6e6e6;
}

.about-card p {
  margin: 0 0 6px;
  font-size: 13px;
  color: #cbd3df;
}

.about-card a {
  color: #a0b4d0;
  font-size: 13px;
}

/* =========================
   HOTEL GRID / CARDS
========================= */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.hotel-card {
  background: #1a1f2a;
  border: 1px solid #1f232b;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hotel-image {
  height: 160px;
  background: #1c2130 center/cover no-repeat;
  position: relative;
}

.hotel-overlay {
  position: absolute;
  bottom: 8px;
  left: 8px;
}

.hotel-distance {
  background: rgba(0,0,0,0.7);
  color: #e6e6e6;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
}

.hotel-content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.hotel-content h3 {
  margin: 0;
  font-size: 16px;
  color: #e6e6e6;
}

.hotel-rating {
  font-size: 12px;
  color: #9aa3b2;
  margin: 0;
}

.hotel-content p {
  margin: 0;
  font-size: 13px;
  color: #cbd3df;
}

.hotel-content .button {
  margin-top: auto;
  align-self: flex-start;
}

/* =========================
   CLUSTER HOTEL CTA
========================= */
.cluster-hotel-cta {
  margin-bottom: 20px;
}

.cluster-hotel-cta .section-intro {
  margin-bottom: 12px;
}

.trip-link {
  display: inline-block;
  background: #1a3a5c;
  color: #7eb8f7;
  border: 1px solid #2a5080;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.trip-link:hover {
  background: #1e4a7a;
  color: #b8d8ff;
}

/* =========================
   TRAVELPAYOUTS PLACEHOLDER
========================= */
.travelpayouts-placeholder {
  background: #1a1f2a;
  border: 1px dashed #2a3a50;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: #9aa3b2;
  font-size: 13px;
}

.travelpayouts-placeholder strong {
  display: block;
  color: #a0b4d0;
  margin-bottom: 6px;
  font-size: 14px;
}

/* =========================
   DISTILLERY GRID / CARDS
========================= */
.distillery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.distillery-card {
  background: #1a1f2a;
  border: 1px solid #1f232b;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.distillery-image {
  height: 160px;
  background: #1c2130 center/cover no-repeat;
  position: relative;
}

.distillery-overlay {
  position: absolute;
  bottom: 8px;
  left: 8px;
}

.distillery-distance {
  background: rgba(0,0,0,0.7);
  color: #e6e6e6;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
}

.distillery-content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.distillery-content h2 {
  margin: 0 0 6px;
  font-size: 17px;
  color: #e6e6e6;
}

.distillery-content h2 a {
  color: #e6e6e6;
  text-decoration: none;
}

.distillery-content h2 a:hover {
  color: #7eb8f7;
}

.distillery-content h3 {
  margin: 0;
  font-size: 16px;
  color: #e6e6e6;
}

.distillery-meta {
  margin: 0 0 4px;
  font-size: 13px;
  color: #9aa3b2;
}

.distillery-cluster {
  margin: 0 0 10px;
  font-size: 12px;
  color: #6b7a96;
}

.distillery-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  background: #1a2535;
  border: 1px solid #2a3a55;
  border-radius: 4px;
  color: #7eb8f7;
}

.distillery-rating {
  font-size: 12px;
  color: #9aa3b2;
  margin: 0;
}

.distillery-content p {
  margin: 0;
  font-size: 13px;
  color: #cbd3df;
}

.distillery-content .button {
  margin-top: auto;
  align-self: flex-start;
}

/* =========================
   REGION GRID
========================= */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.region-card {
  background: #1a1f2a;
  border: 1px solid #1f232b;
  border-radius: 10px;
  padding: 16px;
}

.region-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #e6e6e6;
}

.region-card p {
  margin: 0 0 12px;
  font-size: 13px;
  color: #cbd3df;
}

/* =========================
   TAGS
========================= */
.tag {
  display: inline-block;
  padding: 3px 8px;
  font-size: 11px;
  background: #232938;
  border-radius: 4px;
  margin-right: 5px;
  color: #e6e6e6;
}

/* =========================
   BUTTONS
========================= */
.button {
  display: inline-block;
  padding: 9px 14px;
  background: #2b3345;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.button:hover {
  background: #3a4560;
  color: #fff;
}

.button.primary {
  background: #2e4a7a;
}

.button.primary:hover {
  background: #3a5e9a;
}

.button.secondary {
  background: #1f2633;
}

.button.secondary:hover {
  background: #2c3648;
}

.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  border-top: 1px solid #1f232b;
  margin-top: 40px;
  padding: 20px;
}

.site-footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  color: #888;
}

.site-footer p {
  margin: 4px 0;
}

.disclosure {
  font-size: 12px;
  color: #666;
}

.disclosure a {
  color: #777;
}

.disclosure a:hover {
  color: #9aa3b2;
}

/* =========================
   EMPTY / ERROR
========================= */
.empty-state {
  padding: 20px;
  text-align: center;
  color: #888;
}

.error {
  color: #ff6b6b;
  margin-top: 20px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 26px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-links ul {
    flex-wrap: wrap;
    gap: 12px;
  }
}