:root {
  --bg-main: #181614;
  --bg-alt: #211e1b;
  --panel: rgba(37, 31, 27, 0.9);
  --terracotta: #c1653a;
  --beige: #e8dcc4;
  --blue-gray: #3d4b54;
  --line: rgba(232, 220, 196, 0.18);
  --muted: rgba(232, 220, 196, 0.72);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Karla", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(193, 101, 58, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(61, 75, 84, 0.16), transparent 24%),
    var(--bg-main);
  color: var(--beige);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(24, 22, 20, 0.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(24, 22, 20, 0.95);
  border-color: rgba(61, 75, 84, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.9rem;
  height: 3.9rem;
  flex-shrink: 0;
  border: 2px solid rgba(232, 220, 196, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(232, 220, 196, 0.18) 0 38%, transparent 39%),
    repeating-conic-gradient(from -12deg, rgba(193, 101, 58, 0.9) 0 10deg, rgba(232, 220, 196, 0.85) 10deg 20deg, rgba(61, 75, 84, 0.88) 20deg 30deg);
  color: var(--bg-main);
  font-family: "Alfa Slab One", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 0.55rem rgba(24, 22, 20, 0.78);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong,
h1,
h2,
h3 {
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.15rem;
}

.brand-copy span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.desktop-nav,
.header-cta {
  display: none;
}

.desktop-nav {
  gap: 1.4rem;
}

.desktop-nav a,
.menu-toggle,
.secondary-link,
.service-card a {
  position: relative;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a::after,
.secondary-link::after,
.service-card a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.secondary-link:hover::after,
.service-card a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  border: 1px solid rgba(232, 220, 196, 0.2);
  background: transparent;
  color: var(--beige);
  padding: 0.8rem 1rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5.75rem 1rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(24, 22, 20, 0.92), rgba(24, 22, 20, 0.98)),
    repeating-linear-gradient(-45deg, rgba(193, 101, 58, 0.08) 0 12px, transparent 12px 26px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-nav {
  width: min(100%, 27rem);
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem;
  background: linear-gradient(180deg, rgba(33, 30, 27, 0.98), rgba(24, 22, 20, 0.98));
  border: 1px solid rgba(232, 220, 196, 0.12);
  box-shadow: var(--shadow);
}

.mobile-menu-tag {
  margin: 0 0 0.3rem;
  color: var(--terracotta);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mobile-menu-nav a {
  display: block;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(232, 220, 196, 0.08);
  background: rgba(255, 255, 255, 0.02);
  font-family: "Alfa Slab One", serif;
  font-size: clamp(1.35rem, 7vw, 2.1rem);
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}


.cta-link,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.45rem;
  border: 1px solid rgba(232, 220, 196, 0.22);
  background: var(--terracotta);
  color: var(--beige);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.cta-link:hover,
.cta-button:hover {
  filter: brightness(1.06);
}

.header-cta {
  display: none;
  min-width: 12rem;
  padding: 0.88rem 1.2rem;
  border: 1px solid rgba(232, 220, 196, 0.22);
  border-radius: 2px;
  background: linear-gradient(180deg, #c86d40, #b95631);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(24, 22, 20, 0.18), 0 10px 22px rgba(0, 0, 0, 0.2);
}

.cta-link.mobile-menu-cta {
  display: inline-flex;
  width: auto;
  min-width: min(100%, 16rem);
  margin: 0.8rem auto 0;
  padding: 0.95rem 1.35rem;
  border-color: rgba(232, 220, 196, 0.18);
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.secondary-link {
  color: var(--beige);
}

.hero-band,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero-band {
  padding: 3rem 0 2rem;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(193, 101, 58, 0.12), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(61, 75, 84, 0.18), transparent 22%),
    repeating-linear-gradient(90deg, rgba(232, 220, 196, 0.03) 0 1px, transparent 1px 8px);
  opacity: 0.9;
}

.hero-layout,
.compact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.framed-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(33, 30, 27, 0.92), rgba(24, 22, 20, 0.96));
  border: 1px solid rgba(232, 220, 196, 0.14);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.story-plain,
.menu-note {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  border-left: 2px solid rgba(193, 101, 58, 0.65);
}

.menu-note {
  max-width: 24rem;
}

.hero-copy {
  padding: 0.5rem 0;
}

.story-plain .secondary-link,
.menu-note .cta-link {
  margin-top: 1rem;
}


.framed-panel::before,
.info-card::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border: 1px solid rgba(61, 75, 84, 0.34);
  pointer-events: none;
}

.section-tag {
  margin: 0 0 1rem;
  color: var(--terracotta);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.8rem, 9vw, 5.8rem);
  margin: 0 0 1rem;
  max-width: 11ch;
}

.hero-lead,
.compact-note,
.editorial-intro p,
.story-column p,
.story-text p,
.info-card p,
.service-line p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-poster {
  position: relative;
  padding-top: 1rem;
}

.poster-frame {
  border: 1px solid rgba(232, 220, 196, 0.18);
  padding: 0.65rem;
  background: rgba(33, 30, 27, 0.8);
  transform: rotate(-2deg);
}

.poster-photo,
.space-photo,
.story-photo,
.story-photo {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) sepia(0.24) contrast(1.05);
}

.poster-photo {
  position: relative;
  min-height: 460px;
  background:
    linear-gradient(180deg, rgba(24, 22, 20, 0.12), rgba(24, 22, 20, 0.7)),
    url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.photo-note,
.space-badge,
.hero-stamp {
  background: rgba(24, 22, 20, 0.82);
  border: 1px solid rgba(232, 220, 196, 0.14);
}

.photo-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 11rem;
  padding: 0.8rem;
  color: var(--beige);
  font-size: 0.82rem;
}

.hero-stamp {
  position: absolute;
  left: -0.5rem;
  bottom: -1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  transform: rotate(4deg);
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.marquee-strip {
  overflow: hidden;
  border-block: 1px solid rgba(61, 75, 84, 0.5);
  background: var(--bg-alt);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  min-width: max-content;
  animation: drift 24s linear infinite;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(232, 220, 196, 0.8);
}

@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

.section-shell {
  padding: 4.5rem 0;
}

.alt-shell {
  background:
    linear-gradient(180deg, rgba(33, 30, 27, 0.96), rgba(24, 22, 20, 0.94)),
    repeating-linear-gradient(-34deg, rgba(61, 75, 84, 0.08) 0 2px, transparent 2px 18px);
}

.editorial-grid,
.split-story,
.menu-layout,
.story-layout,
.contact-layout {
  display: grid;
  gap: 2rem;
}

.editorial-intro h2,
.story-column h2,
.section-heading h2,
.story-text h2,
.booking-form h2,
.menu-sidebar h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 1rem;
}

.service-stack {
  display: grid;
  gap: 1rem;
}

.service-card,
.testimonial-card,
.info-card {
  position: relative;
  background: rgba(33, 30, 27, 0.52);
  border: 1px solid rgba(232, 220, 196, 0.1);
  padding: 1.25rem;
}

.service-card h3,
.service-head h3,
.info-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.45rem;
}

.service-index {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--blue-gray);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
}

.offset-card {
  transform: translateX(0.8rem);
}

.wide-card {
  background:
    linear-gradient(120deg, rgba(193, 101, 58, 0.12), transparent 48%),
    rgba(33, 30, 27, 0.82);
}

.photo-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: end;
}

.photo-one {
  background:
    linear-gradient(180deg, rgba(24, 22, 20, 0.18), rgba(24, 22, 20, 0.55)),
    url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=900&q=80");
}

.photo-two {
  min-height: 220px;
  transform: translateY(2rem);
  background:
    linear-gradient(180deg, rgba(24, 22, 20, 0.14), rgba(24, 22, 20, 0.48)),
    url("https://images.unsplash.com/photo-1517832606299-7ae9b720a186?auto=format&fit=crop&w=900&q=80");
}

.space-badge {
  grid-column: span 2;
  width: fit-content;
  padding: 0.9rem 1rem;
  color: var(--muted);
  transform: translateY(-0.5rem);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.testimonial-row {
  display: grid;
  gap: 1rem;
}

.raised-card {
  transform: translateY(1rem);
}

.closing-banner {
  padding: 2rem 0 5rem;
}

.closing-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.7rem;
  border: 1px solid rgba(232, 220, 196, 0.16);
  background:
    linear-gradient(135deg, rgba(193, 101, 58, 0.2), rgba(61, 75, 84, 0.18)),
    rgba(24, 22, 20, 0.92);
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(61, 75, 84, 0.35);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: rgba(232, 220, 196, 0.66);
  font-size: 0.92rem;
}

.compact-hero {
  padding: 7rem 0 3rem;
}

.compact-note {
  max-width: 24rem;
  border-left: 2px solid rgba(193, 101, 58, 0.65);
  padding-left: 1rem;
}

.hero-band h1,
.compact-hero h1 {
  font-size: clamp(1.75rem, 5.6vw, 3.2rem);
  max-width: 16ch;
}

.menu-board {
  border-top: 1px solid rgba(61, 75, 84, 0.5);
}

.service-line {
  padding: 1.4rem 0 1.6rem;
  border-bottom: 1px solid rgba(61, 75, 84, 0.5);
}

.service-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.4rem;
}

.service-head span {
  color: var(--terracotta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-photo {
  background:
    linear-gradient(180deg, rgba(24, 22, 20, 0.12), rgba(24, 22, 20, 0.62)),
    url("https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&w=1000&q=80");
}

.story-photo {
  min-height: 280px;
  margin: -1.4rem -1.4rem 1rem;
}

.shifted-card {
  transform: translateY(1.2rem);
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.booking-form label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.94rem;
  color: var(--muted);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(61, 75, 84, 0.56);
  background: rgba(24, 22, 20, 0.82);
  color: var(--beige);
  padding: 0.95rem 1rem;
  font: inherit;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(232, 220, 196, 0.42);
}
@media (min-width: 760px) {
  .hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .editorial-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .service-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide-card {
    grid-column: 1 / -1;
    width: min(78%, 32rem);
  }

  .split-story,
  .story-layout,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .testimonial-row,
  .testimonial-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-layout {
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
  }

  .menu-sidebar {
    position: sticky;
    top: 6.8rem;
  }

  .compact-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }

  .closing-layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1080px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }

  .desktop-nav {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .header-cta {
    display: inline-flex;
    justify-self: end;
  }

  .menu-toggle {
    display: none !important;
  }
}

@media (min-width: 1080px) {
  .section-shell {
    padding: 5.5rem 0;
  }

  .hero-band {
    padding-top: 4rem;
  }

  .offset-card {
    transform: translate(2rem, 1.6rem);
  }

  .raised-card {
    transform: translateY(2rem);
  }

  .shifted-card {
    transform: translateY(2.2rem);
  }
}
