:root {
  --bg-main: #faf8f5;
  --bg-surface: #ffffff;
  --color-primary: #1e788a;
  --color-primary-dark: #155f6e;
  --color-secondary: #bc6c25;
  --text-main: #2b2d42;
  --text-muted: #6c757d;
  --color-border: #e5e5e5;
  --shadow-soft: 0 4px 12px rgba(43, 45, 66, 0.05);
  --radius: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: Inter, Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text-main);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.12;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.75rem, 9vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.1rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--max-width));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 4vw, 1.65rem);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  fill: var(--color-primary);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--color-primary);
  content: "";
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--color-primary);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding: 56px 0;
}

.section-contained {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.hero {
  display: grid;
  gap: 32px;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding-top: 40px;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 20px;
}

.eyebrow {
  color: var(--color-secondary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.3vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--color-primary);
  color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-primary-dark);
}

.button-secondary {
  border-color: var(--color-primary);
  background: transparent;
  color: var(--color-primary);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(30, 120, 138, 0.08);
}

.store-note {
  max-width: 56ch;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  box-shadow: var(--shadow-soft);
}

.hero-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-media figcaption,
.booth-footer {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.hero-media figcaption {
  padding: 10px 12px;
  background: var(--bg-surface);
}

.hero-media a,
.booth-footer a,
.text-link {
  color: var(--color-primary);
  font-weight: 800;
  text-underline-offset: 3px;
}

.intro-band {
  display: grid;
  gap: 20px;
  padding: 30px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.intro-band p:last-child {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading > p:last-child {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.booth-grid {
  display: grid;
  gap: 18px;
}

.booth-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booth-card:hover {
  box-shadow: 0 10px 22px rgba(43, 45, 66, 0.08);
  transform: translateY(-4px);
}

.booth-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.booth-image-button:focus-visible {
  outline: 3px solid rgba(30, 120, 138, 0.5);
  outline-offset: -6px;
}

.booth-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.booth-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.booth-footer {
  color: var(--text-muted);
}

.booth-title {
  display: inline-flex;
  align-items: center;
  min-height: 2.4em;
  color: var(--color-secondary);
  font-size: 1.05rem;
  line-height: 1.2;
}

.booth-footer {
  padding-top: 10px;
  border-top: 1px solid var(--color-border);
  font-size: 0.88rem;
  line-height: 1.45;
}

.vendor-callout {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-secondary);
  border-radius: var(--radius);
  background: var(--bg-surface);
  box-shadow: var(--shadow-soft);
}

.vendor-copy {
  display: grid;
  gap: 14px;
}

.vendor-copy > p:not(.eyebrow) {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.benefit-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.benefit-list li::marker {
  color: var(--color-secondary);
}

.visit-section {
  background: #f1eee8;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.visit-grid {
  display: grid;
  gap: 18px;
}

.info-panel {
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  box-shadow: var(--shadow-soft);
}

.info-panel h3 {
  margin-bottom: 14px;
}

.hours-list {
  display: grid;
  grid-template-columns: minmax(92px, auto) 1fr;
  gap: 8px 14px;
  margin: 0;
}

.hours-list dt {
  color: var(--text-main);
  font-weight: 800;
}

.hours-list dd {
  margin: 0;
  color: var(--text-muted);
}

address {
  margin-bottom: 12px;
  color: var(--text-muted);
  font-style: normal;
}

.location-list {
  display: grid;
  gap: 18px;
}

.location-name {
  margin-bottom: 6px;
  color: var(--text-main);
  font-weight: 800;
}

.location-item address {
  margin-bottom: 8px;
}

.map-link {
  display: inline-block;
  margin-top: 16px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-list p {
  display: grid;
  gap: 2px;
}

.contact-list p + p {
  margin-top: 0;
}

.contact-list span {
  color: var(--text-main);
  font-weight: 800;
}

.contact-email {
  margin-top: 2px;
}

.info-panel p + p {
  margin-top: 8px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  padding: 7px 10px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  background: var(--text-main);
  color: #ffffff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 28px 0;
}

.footer-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  gap: 14px;
  padding: 72px 16px 24px;
  background: rgba(18, 20, 28, 0.86);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox-image {
  width: auto;
  max-width: min(96vw, 1200px);
  max-height: 86dvh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.image-lightbox-badge {
  max-width: min(92vw, 520px);
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(18, 20, 28, 0.54);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.image-lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-main);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  background: #ffffff;
}

:focus-visible {
  outline: 3px solid rgba(30, 120, 138, 0.36);
  outline-offset: 3px;
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 56px;
  }

  .booth-grid,
  .visit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-band {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    padding: 40px;
  }

  .vendor-callout {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 40px;
  }
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 56px;
  }

  .hero-media img {
    max-height: min(760px, calc(100vh - 140px));
  }

  .booth-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .visit-grid {
    grid-template-columns: 1.1fr 0.95fr 0.95fr;
  }
}

@media (max-width: 520px) {
  .nav-shell {
    align-items: flex-start;
    justify-content: center;
    min-height: 64px;
    padding: 12px 0;
  }

  .brand {
    white-space: normal;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .intro-band,
  .vendor-callout {
    padding: 24px;
  }
}
