:root {
  --rs-serif:       "Playfair Display", "Didot", "Georgia", serif;
  --rs-sans:        system-ui, -apple-system, "Segoe UI", sans-serif;
  --rs-ink:         var(--ink, #132411);
  --rs-gold:        var(--ornament-line, #c5a880);
  --rs-gold-dim:    rgba(197, 168, 128, 0.18);
  --rs-gold-mid:    rgba(197, 168, 128, 0.48);
  --rs-cream:       var(--cream, #fdfbf4);
  --rs-cream-dark:  var(--cream-dark, #f4f0e5);
  --rs-text:        var(--text-dark, #2b2a26);
  --rs-py:          clamp(4rem, 7.5vw, 7rem);
  --rs-px:          clamp(1.5rem, 5vw, 3.5rem);
  --rs-h2:          clamp(2.8rem, 5.5vw, 5rem);
  --rs-lead:        clamp(1.2rem, 1.9vw, 1.55rem); 
  --rs-body:        clamp(1.05rem, 1.2vw, 1.18rem);
  --rs-ease:        cubic-bezier(0.25, 1, 0.5, 1);
  --rs-ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --rs-ease-expo:   cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-welcome {
  position: relative;
  min-height: 95dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block-start: calc(var(--header-h, 90px) + 2rem);
  padding-inline: 1.5rem;
  text-align: center;
  overflow: hidden;
  background-color: var(--rs-ink);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  animation: rs-heroZoom 22s var(--rs-ease) infinite alternate;
}

.hero-welcome::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(19,36,17,.08) 0%, rgba(19,36,17,.70) 100%),
    linear-gradient(to bottom,
      rgba(0,0,0,.40) 0%,
      rgba(0,0,0,.06) 45%,
      rgba(0,0,0,.54) 100%);
}

.hero-welcome::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rs-gold) 50%, transparent);
  z-index: 1;
}

.welcome-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  opacity: 0;
  transform: translateY(22px);
  animation: rs-heroReveal 1.5s var(--rs-ease-out) 0.15s forwards;
}

.welcome-box span {
  display: inline-block;
  font-family: var(--rs-sans);
  font-size: clamp(0.6rem, 1vw, 0.75rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.38em;
  color: rgba(252, 250, 242, 0.80);
  margin-bottom: 1.75rem;
  padding: 0.55rem 1.75rem;
  border-block: 1px solid var(--rs-gold-mid);
  background: rgba(19, 36, 17, 0.30);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.welcome-box h1 {
  font-family: var(--rs-serif);
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.025em;
  text-shadow: 0 6px 40px rgba(0,0,0,.45);
  margin: 0;
}

.rs-reveal {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity   0.9s var(--rs-ease-expo),
    transform 0.9s var(--rs-ease-expo);
}

.rs-reveal[data-delay="1"] { transition-delay: 0.15s; }
.rs-reveal[data-delay="2"] { transition-delay: 0.30s; }
.rs-reveal[data-delay="3"] { transition-delay: 0.45s; }

.rs-reveal.rs-visible {
  opacity: 1;
  transform: translateX(0);
}

.location-section .rs-reveal,
.hospitality-section .rs-reveal {
  transform: translateX(60px);
}

.location-section .rs-reveal.rs-visible,
.hospitality-section .rs-reveal.rs-visible {
  transform: translateX(0);
}

.rs-reveal-child > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity   0.7s var(--rs-ease-expo),
    transform 0.7s var(--rs-ease-expo);
}

.rs-reveal-child.rs-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s;    }
.rs-reveal-child.rs-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
.rs-reveal-child.rs-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.24s; }


.section {
  padding-block: var(--rs-py);
}

.history-section,
.cuisine-section {
  background-color: var(--rs-cream);
}

.location-section,
.hospitality-section {
  background-color: var(--rs-cream-dark);
  border-block: 1px solid rgba(42, 58, 30, 0.055);
}

.section + .section {
  border-top: 1px solid var(--rs-gold-dim);
}


/* ============================================================
   § 4  INNER GRID
   ============================================================ */
.section .container {
  width: 100%;
  max-width: 1340px;
  margin-inline: auto;
  padding-inline: var(--rs-px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2rem;
  row-gap: 3rem;
  align-items: start;
}


/* ============================================================
   § 5  HEADINGS
   ============================================================ */
.section h2 {
  grid-column: 1 / -1;
  font-family: var(--rs-serif);
  font-size: var(--rs-h2);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1.4rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--rs-gold-dim);
  transition: color 0.5s var(--rs-ease), -webkit-text-stroke 0.5s var(--rs-ease);
}

.section h2::after {
  content: "— EST. 1993";
  font-family: var(--rs-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.30em;
  color: var(--rs-gold);
  -webkit-text-stroke: 0;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}

@media (min-width: 769px) {
  .section h2 {
    color: transparent;
    -webkit-text-stroke: 1px var(--rs-ink);
  }

  .section h2:hover {
    color: var(--rs-ink);
    -webkit-text-stroke: 1px transparent;
  }
}

.history-section h2,
.cuisine-section h2 {
  justify-content: flex-start;
  text-align: left;
}

.location-section h2,
.hospitality-section h2 {
  justify-content: flex-end;
  text-align: right;
}


/* ============================================================
   § 6  PARAGRAPHS
   ============================================================ */

/* Lead — more presence */
.section p:first-of-type {
  font-family: var(--rs-serif);
  font-size: var(--rs-lead);
  font-weight: 500;             /* ↑ was implicitly 400 — now has real weight */
  font-style: italic;
  line-height: 1.5;
  color: var(--rs-ink);
  margin: 0;
  padding-left: 1.6rem;
  border-left: 3px solid var(--rs-gold);  /* ↑ was 2px */
  position: relative;

  &::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 0.15em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--rs-gold);
  }
}

/* Body — readable, full opacity */
.section p:not(:first-of-type) {
  font-family: var(--rs-sans);
  font-size: var(--rs-body);
  line-height: 1.95;
  color: var(--rs-text);
  opacity: 1;
  margin: 0;
  letter-spacing: 0.012em;
  text-align: justify;
  text-align-last: left;       
  hyphens: auto;               
  -webkit-hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  word-spacing: 0.02em;
}

.section p:not(:first-of-type)::first-letter {
  font-family: var(--rs-serif);
  font-size: 3.8em;
  font-weight: 400;
  line-height: 0.82;
  float: left;
  margin-right: 0.1em;
  margin-top: 0.06em;
  color: var(--rs-ink);
}

.history-section p:first-of-type,
.cuisine-section p:first-of-type {
  grid-column: 1 / span 5;
  align-self: center;
}

.history-section p:not(:first-of-type),
.cuisine-section p:not(:first-of-type) {
  grid-column: 7 / span 6;
  align-self: center;
}

.location-section p:first-of-type,
.hospitality-section p:first-of-type {
  grid-column: 8 / span 5;
  border-left: none;
  border-right: 3px solid var(--rs-gold);
  padding-left: 0;
  padding-right: 1.6rem;
  text-align: right;
  align-self: center;

  &::before {
    left: auto;
    right: -4px;
  }
}

.location-section p:not(:first-of-type),
.hospitality-section p:not(:first-of-type) {
  grid-column: 1 / span 6;
  align-self: center;
}

.dish-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.dish-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(1.02) brightness(0.97);
  transition:
    transform  0.9s var(--rs-ease),
    filter     0.9s var(--rs-ease),
    box-shadow 0.9s var(--rs-ease);
  will-change: transform;
}

.dish-gallery img:nth-child(1) { grid-column: 1 / span 7; aspect-ratio: 16 / 9; }
.dish-gallery img:nth-child(2) { grid-column: 8 / span 5; aspect-ratio: 4 / 3; }
.dish-gallery img:nth-child(3) { grid-column: 1 / -1; height: 360px; object-position: center 60%; }

@media (hover: hover) {
  .dish-gallery img { cursor: zoom-in; }

  .dish-gallery img:hover {
    transform: scale(1.018);
    filter: saturate(1.06) brightness(1.02);
    box-shadow: 0 12px 40px rgba(19, 36, 17, 0.13);
    position: relative;
    z-index: 1;
  }
}

@keyframes rs-heroZoom {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.10) translate(-1.2%, -0.6%); }
}

@keyframes rs-heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  :root { --rs-py: 5rem; }

  .dish-gallery img:nth-child(1) { grid-column: 1 / span 6; aspect-ratio: 4/3; }
  .dish-gallery img:nth-child(2) { grid-column: 7 / span 6; aspect-ratio: 4/3; }
  .dish-gallery img:nth-child(3) { height: 260px; }

  .history-section p:first-of-type,
  .cuisine-section p:first-of-type,
  .location-section p:first-of-type,
  .hospitality-section p:first-of-type {
    grid-column: 1 / -1;
    border-left: 3px solid var(--rs-gold);
    border-right: none;
    padding-left: 1.6rem;
    padding-right: 0;
    text-align: left;
    align-self: auto;
    &::before { left: -4px; right: auto; }
  }

  .history-section p:not(:first-of-type),
  .cuisine-section p:not(:first-of-type),
  .location-section p:not(:first-of-type),
  .hospitality-section p:not(:first-of-type) {
    grid-column: 1 / -1;
    grid-row: auto;
    align-self: auto;
  }
}

@media (max-width: 768px) {
  :root { --rs-py: 3.5rem; }

  .hero-welcome { min-height: 62dvh; }

  .section h2 {
    font-size: clamp(2rem, 8.5vw, 2.8rem) !important;
    color: var(--rs-ink) !important;
    -webkit-text-stroke: 0 !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left !important;
    justify-content: flex-start !important;
    padding-bottom: 1.25rem;
  }

  .section h2::after { margin-bottom: 0; }

  .section .container {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }

  .dish-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0;
  }

  .dish-gallery img,
  .dish-gallery img:nth-child(1),
  .dish-gallery img:nth-child(2),
  .dish-gallery img:nth-child(3) {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 400px) {
  .hero-welcome  { min-height: 55dvh; }
  .welcome-box h1 { font-size: 2.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  .rs-reveal,
  .rs-reveal-child > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-bg img,
  .welcome-box,
  .dish-gallery img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

main {
  overflow-x: hidden;
}

