/*
 * Boro Spajta — editorial wine-house direction
 * Unlayered by design: this file is the final visual skin over the legacy layers.
 */
:root {
  color-scheme: light;
  --color-bg: #f2ecdf;
  --color-bg-elevated: #fffaf0;
  --color-bg-soft: #e6dccb;
  --color-text: #271815;
  --color-text-muted: #725f57;
  --color-primary: #6f1d2c;
  --color-primary-soft: #8d3543;
  --color-gold: #ad742d;
  --color-gold-soft: #d2a55d;
  --color-border-subtle: #cdbda9;
  --color-overlay: rgba(31, 12, 13, 0.78);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --radius-md: 2px;
  --radius-lg: 2px;
  --radius-xl: 2px;
  --shadow-soft: 0 18px 45px rgba(62, 37, 28, 0.1);
  --shadow-elevated: 0 28px 70px rgba(43, 23, 18, 0.18);
}

html,
body {
  background: var(--color-bg);
  color: var(--color-text);
}

body {
  padding-top: 0 !important;
  background-image: linear-gradient(rgba(111, 29, 44, 0.035) 1px, transparent 1px);
  background-size: 100% 96px;
}

body > .rt-ribbon { display: none; }

p { color: var(--color-text-muted); }

h1,
h2,
h3 {
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 6.8vw, 6.8rem);
  line-height: .92;
}

h2 { font-size: clamp(2.15rem, 4vw, 4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }

a:hover {
  color: var(--color-primary);
  text-shadow: none;
}

.container { max-width: 1180px; }
.container-wide { max-width: 1440px; }
.section { padding-block: clamp(72px, 10vw, 144px); }

.section-kicker,
.index-label,
.card-meta {
  font-family: var(--font-body);
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: .18em;
}

.section-kicker::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 1px;
  margin-right: .75rem;
  vertical-align: middle;
  background: currentColor;
}

.rt-ribbon {
  position: static;
  background: #6f1d2c;
  border: 0;
  box-shadow: none;
  color: #fff8e9;
}

.rt-ribbon-inner {
  justify-content: space-between;
  min-height: 34px;
  padding-block: 6px;
  font-size: .64rem;
  letter-spacing: .12em;
}

.rt-ribbon-inner p { margin: 0; color: inherit; }
.rt-ribbon-pill { color: inherit; border-color: rgba(255,255,255,.45); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(242, 236, 223, .94);
  border-bottom: 1px solid #bda992;
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.site-header-inner {
  min-height: 84px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.rt-brand__monogram {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 0;
  color: #fff9ef;
  box-shadow: none;
  font-style: italic;
}

.rt-brand__title { color: var(--color-text); }
.rt-brand__tagline { color: var(--color-text-muted); }

.nav-list { gap: clamp(14px, 1.8vw, 28px); font-size: .7rem; }
.nav-link { color: var(--color-text); }
.nav-link::after { height: 1px; background: var(--color-primary); }

.nav-link--cta {
  border-radius: 0;
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fffaf0 !important;
  box-shadow: none;
  padding: 10px 15px;
}

.nav-link--cta:hover { background: var(--color-text); }

.home-hero,
.page-header,
[class$="-hero"] {
  background: transparent;
}

.home-hero { padding-block: clamp(72px, 9vw, 132px); }

.home-hero__grid {
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(40px, 8vw, 116px);
}

.home-hero__title { max-width: 800px; }
.home-hero__title em { color: var(--color-primary); font-weight: 400; }
.home-hero__lead { font-size: 1.07rem; line-height: 1.8; }

.home-hero__image-frame,
[class*="hero__image-frame"] {
  border: 0;
  border-radius: 46% 46% 3px 3px;
  background: #d8c7af;
  box-shadow: var(--shadow-elevated);
}

.home-hero__image-frame img {
  min-height: 620px;
  object-fit: cover;
  filter: sepia(.1) saturate(.8) contrast(1.04);
}

.home-hero__caption { text-align: left; font-style: italic; }

.home-hero__seal {
  right: auto;
  left: -42px;
  bottom: 7%;
  background: #fffaf0;
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: var(--shadow-soft);
}

.home-facts {
  justify-content: flex-start;
  border: 0;
  border-top: 1px solid #bda992;
  border-bottom: 1px solid #bda992;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 16px 0;
}

.home-facts__dot { background: var(--color-primary); box-shadow: none; }

.btn {
  min-height: 46px;
  border-radius: 0;
  font-size: .72rem;
  box-shadow: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #fffaf0;
  border-color: var(--color-primary);
  box-shadow: none;
}

.btn-primary:hover { background: var(--color-text); color: #fffaf0; box-shadow: none; }
.btn-outline { color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fffaf0; }
.btn-ghost { background: transparent; color: var(--color-primary); border-color: #bda992; }

.card {
  border: 0;
  border-top: 1px solid #bda992;
  border-radius: 0;
  background: rgba(255, 250, 240, .58);
  box-shadow: none;
}

.card::before { display: none; }

/* Vary repeated card grids with an editorial rhythm. */
[class$="__grid"] > .card:nth-child(even),
[class$="-grid"] > .card:nth-child(even) {
  background: #e4d6c2;
}

[class$="__grid"] > .card:nth-child(3n),
[class$="-grid"] > .card:nth-child(3n) {
  margin-top: clamp(0px, 3vw, 42px);
}

.input,
textarea,
select {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #a9937a;
  background: rgba(255, 250, 240, .6);
  color: var(--color-text);
  box-shadow: none;
  padding-block: 14px;
}

.input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 2px 0 var(--color-primary);
}

img { border-radius: 2px; }

.home-index,
.home-team,
.home-testimonials,
.home-culinary {
  background: transparent;
  border-color: #c9b9a4;
}

.home-index__grid { gap: 1px; background: #bda992; }
.home-index__item { background: #f7f0e4 !important; }
.home-index__item:nth-child(2), .home-index__item:nth-child(3) { background: #e7dac7 !important; }

.experience-guide {
  padding-block: clamp(72px, 9vw, 128px);
  background: #281716;
  color: #fff8e9;
}

.experience-guide__shell {
  display: grid;
  grid-template-columns: minmax(250px, .75fr) minmax(0, 1.55fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: end;
}

.experience-guide h2,
.experience-guide strong { color: #fff8e9; }
.experience-guide p { color: #cdbeb1; }
.experience-guide .section-kicker { color: #d2a55d; }

.experience-guide__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #715c52;
}

.experience-guide__step {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 4px 16px;
  padding: 22px 8px;
  border-bottom: 1px solid #715c52;
}

.experience-guide__step:nth-child(odd) { border-right: 1px solid #715c52; }
.experience-guide__step span { grid-row: 1 / 3; color: #d2a55d; font-size: .72rem; }
.experience-guide__step strong { font: 400 1.4rem var(--font-heading); }
.experience-guide__step small { color: #aa9a8e; letter-spacing: .1em; text-transform: uppercase; }
.experience-guide__step:hover strong { color: #d2a55d; }

.visit-note { background: #6f1d2c; color: #fff8e9; }
.visit-note__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.visit-note p { margin: 0; color: #fff8e9; font-size: .75rem; }
.visit-note p span { display: block; color: #e1ba78; text-transform: uppercase; letter-spacing: .14em; }
.visit-note a { color: #fff8e9; border-bottom: 1px solid currentColor; padding-bottom: 3px; }

.footer {
  margin-top: 0;
  padding-block: 52px 34px;
  border: 0;
  background: #f2ecdf;
  color: var(--color-text);
}
.footer-nav a, .footer-meta, .footer-meta__links a { color: var(--color-text-muted); }

.cookie-banner { background: #fffaf0; border-color: #bda992; box-shadow: 0 -10px 40px rgba(40,23,22,.16); }
.age-gate-modal-backdrop { background: rgba(40, 23, 22, .86); }
.age-gate-modal { background: #fffaf0; border-radius: 0; border-color: #bda992; color: var(--color-text); }

@media (max-width: 1100px) {
  .nav-list { gap: 12px; }
  .rt-brand__tagline { display: none; }
}

@media (max-width: 900px) {
  .site-header-inner { min-height: 72px; padding-top: 10px; }
  .site-nav { top: 106px; }
  .nav-list {
    background: #f7f0e4;
    border-color: #bda992;
    border-radius: 0;
    box-shadow: var(--shadow-elevated);
  }
  .nav-toggle { border-radius: 0; border-color: var(--color-primary); background: transparent; box-shadow: none; }
  .nav-toggle__bar { background: var(--color-primary); }
  .home-hero__grid, .experience-guide__shell { grid-template-columns: 1fr; }
  .home-hero__media { order: -1; }
  .home-hero__image-frame img { min-height: 460px; }
  .home-hero__seal { left: 16px; }
  .visit-note__inner { padding-block: 24px; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.7rem, 14vw, 4.3rem); }
  .rt-ribbon-inner p { font-size: .56rem; line-height: 1.3; }
  .rt-brand__tagline { display: none; }
  .experience-guide__steps { grid-template-columns: 1fr; }
  .experience-guide__step:nth-child(odd) { border-right: 0; }
  .visit-note__inner { display: grid; grid-template-columns: 1fr 1fr; }
  .visit-note a { grid-column: 1 / -1; width: max-content; }
  [class$="__grid"] > .card:nth-child(3n),
  [class$="-grid"] > .card:nth-child(3n) { margin-top: 0; }
}
