
@font-face {
  font-family: "Clarendon Condensed BQ";
  src: url("/static/fonts/ClarendonCondensedBQ-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #151312;
  --panel: #211f1b;
  --gold: #c7ad72;
  --cream: #efe7ce;
  --teal: #5f7771;
  --brown: #5c442e;
  --site-font: "Clarendon Condensed BQ", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(199,173,114,.08), transparent 35%),
    repeating-radial-gradient(ellipse at 30% 20%, rgba(255,255,255,.025) 0 1px, transparent 1px 18px),
    var(--bg);
  color: var(--cream);
  font-family: var(--site-font);
}

.topbar {
  padding: 14px 18px;
}

.topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 4vw, 54px);
  flex-wrap: wrap;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: clamp(16px, 4vw, 54px);
}

.topbar a {
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-weight: bold;
  font-size: 15px;
  opacity: .9;
}

.logo-wrap {
  flex-shrink: 0;
  margin-left: 20px;
  text-align: center;
}

.tagline {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-logo {
  height: 110px;
  max-width: 100%;
  width: auto;
  display: inline-block;
}

.showcase-frame {
  width: min(1180px, 92vw);
  margin: 0 auto 50px;
  padding: clamp(18px, 3vw, 36px);
  border: 2px solid rgba(199,173,114,.85);
  background: url('/static/images/frame-bg.jpg') repeat center;
  background-size: auto;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

.hero-image-wrap {
  width: min(760px, 100%);
  height: clamp(230px, 38vw, 405px);
  margin: 0 auto 4px;
  overflow: hidden;
  border: 1px solid rgba(199,173,114,.45);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .25s ease;
}

.hero-image-wrap img.fade { opacity: .2; }

h1 {
  text-align: center;
  color: var(--gold);
  font-size: clamp(44px, 8vw, 86px);
  letter-spacing: .08em;
  margin: 4px 0 22px;
  line-height: .9;
}

.flavor-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 2vw, 24px);
  width: min(960px, 100%);
  margin: 0 auto 36px;
}

.flavor-card {
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  transition: transform .2s ease, box-shadow .2s ease;
  outline: none;
}

.flavor-card img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(199,173,114,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}

.flavor-card:hover,
.flavor-card.active {
  transform: translateY(-4px);
}

.flavor-card:hover img,
.flavor-card.active img {
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.flavor-description {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(199,173,114,.45);
  background: rgba(0,0,0,.18);
  text-align: center;
}

.flavor-description h2 {
  color: var(--gold);
  font-size: 34px;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.flavor-description p {
  font-family: var(--site-font);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.best-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px 0;
  text-align: left;
}

.best-grid div {
  padding: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(199,173,114,.25);
}

.best-grid span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  margin-bottom: 8px;
}

.cta, button.submit {
  display: inline-block;
  border: none;
  background: var(--gold);
  color: #171410;
  padding: 15px 25px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: bold;
  cursor: pointer;
}

.page-card {
  width: min(850px, 92vw);
  margin: 30px auto 60px;
  padding: 34px;
  border: 2px solid rgba(199,173,114,.75);
  background: rgba(33,31,27,.92);
}

.page-card h1 {
  font-size: clamp(34px, 6vw, 60px);
  margin-bottom: 20px;
}

.seo-card {
  width: min(980px, 92vw);
}

.seo-eyebrow {
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

.seo-intro {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.seo-grid > div,
.seo-section {
  padding: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(199,173,114,.25);
  margin-bottom: 18px;
}

.seo-grid h2,
.seo-section h2 {
  color: var(--gold);
  font-size: 25px;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.seo-section p,
.seo-grid li,
.seo-section li {
  font-size: 18px;
  line-height: 1.7;
}

.seo-note {
  color: rgba(239,231,206,.84);
  margin-top: 12px;
}

.seo-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.owner-page h1 {
  margin-bottom: 16px;
}

.owner-lead {
  max-width: 880px;
}

.owner-hero-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.owner-hero-card > div,
.owner-contact-grid > div {
  padding: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(199,173,114,.25);
}

.owner-hero-card h2 {
  color: var(--gold);
  font-size: 25px;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.owner-hero-card p,
.owner-contact-grid p,
.owner-list li {
  font-size: 18px;
  line-height: 1.7;
}

.owner-grid {
  margin-top: 0;
}

.owner-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.owner-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.owner-contact-grid span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  margin-bottom: 8px;
}

.owner-contact-grid a {
  color: var(--cream);
}

.flavors-public-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 28px 0;
}

.flavor-public-card {
  padding: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(199,173,114,.25);
}

.flavor-public-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border: 1px solid rgba(199,173,114,.35);
  margin-bottom: 18px;
}

.flavor-public-card h2 {
  color: var(--gold);
  font-size: 28px;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.flavor-public-card p,
.flavor-public-meta p {
  font-size: 18px;
  line-height: 1.7;
}

.flavor-public-meta {
  margin: 18px 0 22px;
  padding: 16px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(199,173,114,.22);
}

.flavor-public-meta span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  margin-bottom: 8px;
}

.cta-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(199,173,114,.75);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-family: var(--site-font);
}

input, textarea, select {
  width: 100%;
  padding: 13px;
  background: #111;
  color: var(--cream);
  border: 1px solid rgba(199,173,114,.45);
  font: 16px/1.3 var(--site-font);
}

textarea, .full { grid-column: 1 / -1; }

.chatbox {
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(199,173,114,.35);
  padding: 18px;
}

#chatLog {
  min-height: 240px;
  font-family: var(--site-font);
  line-height: 1.5;
}

.message { margin: 10px 0; }
.user { color: #fff; }
.bot { color: var(--gold); }

table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--site-font);
  font-size: 14px;
}

th, td {
  border: 1px solid rgba(199,173,114,.25);
  padding: 10px;
  vertical-align: top;
}

th { color: var(--gold); }

@media (max-width: 768px) {
  .topbar {
    padding: 10px 12px;
  }

  .topbar-inner {
    flex-direction: column;
    gap: 8px;
  }

  .nav-left, .nav-right {
    gap: 12px;
    order: 1;
  }

  .logo-wrap {
    margin-left: 0;
    order: 0;
  }

  .topbar a {
    font-size: 11px;
    letter-spacing: .14em;
  }

  .nav-logo {
    height: 72px;
  }

  .tagline {
    font-size: 12px;
    letter-spacing: .25em;
  }

  .showcase-frame {
    width: 95vw;
    padding: 12px;
    margin-bottom: 30px;
  }

  .hero-image-wrap {
    height: clamp(180px, 50vw, 280px);
  }

  h1 {
    font-size: clamp(32px, 9vw, 52px);
  }

  .flavor-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .best-grid, .form-grid, .seo-grid, .owner-hero-card, .owner-contact-grid, .flavors-public-grid {
    grid-template-columns: 1fr;
  }

  .flavor-public-card img {
    height: 220px;
  }

  .flavor-description {
    padding: 18px 14px;
  }

  .flavor-description h2 {
    font-size: 24px;
  }

  .flavor-description p {
    font-size: 15px;
  }

  .page-card {
    width: 95vw;
    padding: 20px 16px;
  }

  .page-card h1 {
    font-size: clamp(28px, 7vw, 44px);
  }

  .seo-grid h2,
  .seo-section h2 {
    font-size: 21px;
  }

  .seo-intro,
  .seo-section p,
  .seo-grid li,
  .seo-section li {
    font-size: 16px;
  }

  .cta, button.submit {
    padding: 12px 18px;
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  .topbar a {
    font-size: 10px;
    letter-spacing: .1em;
  }

  .nav-logo {
    height: 58px;
  }

  .tagline {
    font-size: 10px;
  }

  .flavor-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .flavor-description h2 {
    font-size: 20px;
  }

  .flavor-description p {
    font-size: 14px;
    line-height: 1.5;
  }
}
