:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --ink: #1f2924;
  --muted: #66736d;
  --line: #ded8cd;
  --green: #23523d;
  --gold: #c69a45;
  --warm: #f1d8b1;
  --red: #9f3540;
  --blue: #1d426c;
  --charcoal: #111914;
  --shadow: 0 18px 48px rgba(31, 41, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 58px;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(246, 244, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.top-disclaimer {
  padding: 12px clamp(18px, 5vw, 64px);
  background: #1a120d;
  color: #fff6e8;
  font-size: 0.92rem;
  line-height: 1.45;
}

.top-disclaimer strong {
  color: #f2c76f;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(198, 154, 69, 0.95), rgba(35, 82, 61, 0.96)),
    var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(35, 82, 61, 0.18);
}

.brand-mark svg {
  width: 38px;
  height: 38px;
}

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

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

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-collage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 30%, rgba(198, 154, 69, 0.18), transparent 28%),
    linear-gradient(135deg, #0d1410, #17231d);
}

.hero-collage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 18, 15, 0.92), rgba(12, 18, 15, 0.58) 48%, rgba(12, 18, 15, 0.18)),
    linear-gradient(0deg, rgba(12, 18, 15, 0.58), rgba(12, 18, 15, 0.02) 54%);
}

.hero-shot {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.hero-shot-main {
  right: -4%;
  top: 12%;
  width: min(920px, 62vw);
  height: 58%;
  object-fit: cover;
  object-position: center;
  transform: rotate(-1.5deg);
  opacity: 0.92;
}

.hero-shot-phone {
  right: 9%;
  bottom: 5%;
  width: min(270px, 20vw);
  height: 54%;
  object-position: center;
  transform: rotate(2deg);
}

.hero-shot-calendar {
  right: 32%;
  bottom: 10%;
  width: min(360px, 26vw);
  height: 28%;
  object-position: top center;
  opacity: 0.9;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  padding: 0 clamp(20px, 6vw, 76px) clamp(60px, 9vw, 96px);
  color: #fff;
}

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

.hero .eyebrow {
  color: #f2c76f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  max-width: 760px;
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.hero-copy p:last-child {
  max-width: 690px;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.about,
.market-hours,
.activities,
.strategy,
.mentorship,
.contact {
  padding: clamp(46px, 8vw, 88px) clamp(18px, 5vw, 64px);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 32px;
  align-items: end;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.about p:last-child,
.hours-note,
.activities p,
.strategy p,
.mentorship p,
.contact p {
  color: var(--muted);
  font-size: 1.04rem;
}

.market-hours {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  background: #fdfbf6;
  border-bottom: 1px solid var(--line);
}

.hours-copy {
  align-self: start;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(145px, 1fr));
  gap: 10px;
}

.hours-grid article {
  min-height: 126px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(31, 41, 36, 0.07);
}

.hours-grid span,
.hours-grid strong,
.hours-grid small {
  display: block;
}

.hours-grid span {
  color: var(--blue);
  font-weight: 800;
}

.hours-grid strong {
  margin: 8px 0 10px;
  font-size: 0.9rem;
}

.hours-grid small {
  color: var(--muted);
}

.hours-grid article.is-open {
  border-color: rgba(35, 82, 61, 0.45);
  background: #edf7f0;
}

.hours-grid article.is-open small {
  color: var(--green);
  font-weight: 800;
}

.hours-grid article.is-next {
  border-color: rgba(198, 154, 69, 0.6);
}

.hours-note {
  grid-column: 2;
  margin: 0;
  font-size: 0.92rem;
}

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

.activities article {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.activity-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.activity-card span,
.activity-card h3,
.activity-card p {
  margin-left: clamp(22px, 4vw, 34px);
  margin-right: clamp(22px, 4vw, 34px);
}

.activities span {
  display: block;
  margin-top: 24px;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 800;
}

.activity-card p {
  padding-bottom: clamp(24px, 4vw, 34px);
}

.gastronomy-card {
  background:
    linear-gradient(145deg, rgba(151, 47, 36, 0.16), rgba(255, 248, 235, 0.95)),
    var(--surface);
}

.gastronomy-visual {
  position: relative;
  height: 230px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(123, 47, 34, 0.92), rgba(198, 154, 69, 0.64)),
    var(--warm);
}

.gastronomy-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
}

.plate {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 116px;
  height: 116px;
  border: 12px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.18);
}

.cutlery {
  position: absolute;
  top: 56px;
  width: 8px;
  height: 126px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.fork {
  left: calc(50% - 108px);
}

.fork::before {
  content: "";
  position: absolute;
  left: -9px;
  top: -2px;
  width: 26px;
  height: 34px;
  border-left: 4px solid rgba(255, 255, 255, 0.9);
  border-right: 4px solid rgba(255, 255, 255, 0.9);
}

.knife {
  right: calc(50% - 108px);
  border-radius: 0 12px 999px 999px;
}

.gastronomy-card h3 {
  color: #7b2f22;
}

.trading-card {
  background:
    linear-gradient(145deg, rgba(29, 66, 108, 0.14), rgba(255, 255, 255, 0.94)),
    var(--surface);
}

.trading-card img {
  object-position: right center;
}

.trading-card h3 {
  color: var(--blue);
}

.strategy {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.strategy-copy {
  position: sticky;
  top: 92px;
}

.chart-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.chart-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(31, 41, 36, 0.12);
}

.chart-gallery img:nth-child(3) {
  object-position: top center;
}

.chart-gallery img:nth-child(2) {
  object-position: center;
}

.contact {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: var(--surface);
}

.contact div {
  max-width: 760px;
}

.mentorship {
  background:
    linear-gradient(135deg, rgba(29, 66, 108, 0.92), rgba(35, 82, 61, 0.92)),
    var(--blue);
  color: #fff;
}

.mentorship .eyebrow {
  color: #f2c76f;
}

.mentorship p {
  max-width: 760px;
  color: #e8f0eb;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--gold);
  color: #211707;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.market-ticker {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: #0f1713;
  box-shadow: 0 -10px 30px rgba(17, 25, 20, 0.22);
}

.ticker-label {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 0 18px;
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.market-ticker .tradingview-widget-container {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.market-ticker .tradingview-widget-container__widget {
  min-height: 46px;
}

@media (max-width: 820px) {
  .site-header,
  .contact,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-shot-main {
    right: -26%;
    width: 92vw;
    height: 45%;
  }

  .hero-shot-phone {
    right: 8%;
    width: 150px;
    height: 42%;
  }

  .hero-shot-calendar {
    right: 38%;
    width: 220px;
    height: 22%;
  }

  .about,
  .market-hours,
  .activities,
  .strategy {
    grid-template-columns: 1fr;
  }

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

  .hours-note {
    grid-column: auto;
  }

  .strategy-copy {
    position: static;
  }

  .button {
    width: 100%;
    white-space: normal;
  }

  .market-ticker {
    grid-template-columns: 1fr;
  }

  .ticker-label {
    min-height: 26px;
    padding: 5px 12px;
  }
}

@media (max-width: 560px) {
  .hours-grid {
    grid-template-columns: 1fr;
  }

  .chart-gallery {
    grid-template-columns: 1fr;
  }

  .chart-gallery img {
    height: 230px;
  }
}
