:root {
  --ink: #211a14;         /* espresso near-black */
  --ink-soft: #4b4038;
  --muted: #8a7d6e;
  --paper: #f3ece0;       /* warm cream */
  --surface: #fbf7ef;
  --line: rgba(33, 20, 17, 0.14);
  --blue: #0a6d8c;        /* Beacon signature blue */
  --blue-dark: #075067;
  --wood: #b98a3e;
  --gold: #b98a3e;        /* restrained brass — primary accent */
  --gold-dark: #a5772f;
  --coffee: #5a3a1e;      /* dark band background */
  --charcoal: #1a1512;
  --shadow: 0 22px 60px rgba(33, 26, 20, 0.16);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(251, 246, 236, 0.95);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.brand-mark img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.98rem;
  font-weight: 900;
}

.brand small {
  margin-top: 0.22rem;
  color: currentColor;
  opacity: 0.76;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2.2vw, 1.9rem);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 0.6rem 0;
}

.nav-cta {
  border-bottom: 2px solid currentColor;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 84svh;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(18, 26, 30, 0.62), rgba(18, 26, 30, 0.18) 55%, rgba(18, 26, 30, 0.02)),
    linear-gradient(0deg, rgba(18, 26, 30, 0.5), rgba(18, 26, 30, 0.02) 46%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 2rem));
  margin-left: clamp(1rem, 8vw, 7rem);
  padding-top: 6rem;
}

.hero-logo {
  width: clamp(90px, 12vw, 132px);
  height: clamp(90px, 12vw, 132px);
  padding: 0.5rem;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  line-height: 0.96;
}

h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 10vw, 8.8rem);
}

h2 {
  font-size: clamp(2.35rem, 5.5vw, 4.8rem);
}

.hero-copy {
  max-width: 610px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.9rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.quick-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1160px, calc(100% - 2rem));
  margin: -2.3rem auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.quick-panel a {
  min-height: 112px;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
}

.quick-panel a:last-child {
  border-right: 0;
}

.quick-panel span,
.contact-links span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-panel strong,
.contact-links strong {
  display: block;
  margin-top: 0.55rem;
  font-size: clamp(1rem, 2vw, 1.32rem);
}

.section {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(5.5rem, 11vw, 9rem) 0;
}

.story-section,
.gallery-section,
.contact-section,
.brand-showcase {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
}

.story-section {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
}

.story-text p:not(.eyebrow),
.gallery-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.story-visuals {
  position: relative;
  min-height: 520px;
}

.story-main,
.story-floating {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-main {
  inset: 0 0 6rem 4rem;
  width: calc(100% - 4rem);
  height: calc(100% - 6rem);
}

.story-floating {
  left: 0;
  bottom: 0;
  width: min(360px, 55%);
  aspect-ratio: 4 / 3;
  background: #d8d8d8;
}

.menu-band {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1160px) / 2));
  color: #fff;
  background: var(--coffee);
}

.section-heading {
  max-width: 820px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.menu-card {
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

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

.menu-card span,
.menu-card h3,
.menu-card p {
  display: block;
  margin-inline: 1.25rem;
}

.menu-card span {
  margin-top: 1.15rem;
  color: var(--gold);
  font-weight: 900;
}

.menu-card h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.menu-card p {
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.brand-showcase {
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  align-items: end;
}

.wide-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.wide-photo img {
  width: 100%;
  height: min(520px, 50vw);
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.gallery-section {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: 0.6rem;
  color: var(--blue);
  font-weight: 900;
  border-bottom: 2px solid var(--blue);
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 170px;
  gap: 1rem;
}

.photo-tile {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 var(--line);
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-large {
  grid-row: span 2;
}

.tile-accent {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 1.2rem;
  color: #fff;
  background: var(--blue);
}

.tile-accent span {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tile-accent strong {
  margin-top: 0.5rem;
  font-size: 1.45rem;
  line-height: 1.1;
}

.reservation-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding-inline: max(1rem, calc((100vw - 1160px) / 2));
  color: #fff;
  background: var(--blue-dark);
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.reservation-form label {
  display: grid;
  gap: 0.45rem;
}

.reservation-form label span {
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reservation-form input,
.reservation-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0.85rem;
}

.reservation-form select option {
  color: var(--ink);
}

.reservation-form button {
  align-self: end;
  min-height: 48px;
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--gold);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.5rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.contact-section {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
}

address {
  margin-top: 1.2rem;
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.contact-links {
  display: grid;
  gap: 0.9rem;
}

.contact-links a {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 900;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem 1rem 1rem;
    color: var(--ink);
    background: rgba(251, 246, 236, 0.98);
    box-shadow: 0 20px 35px rgba(17, 19, 21, 0.14);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 78svh;
  }

  .hero-image {
    object-position: center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(18, 26, 30, 0.6), rgba(18, 26, 30, 0.28)),
      linear-gradient(0deg, rgba(18, 26, 30, 0.5), transparent 44%);
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 5rem;
  }

  h1 {
    max-width: 8ch;
  }

  .quick-panel,
  .story-section,
  .menu-grid,
  .brand-showcase,
  .gallery-section,
  .reservation-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    margin-top: 1rem;
  }

  .quick-panel a {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-panel a:last-child {
    border-bottom: 0;
  }

  .story-visuals {
    min-height: auto;
  }

  .story-main,
  .story-floating {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .story-main {
    aspect-ratio: 4 / 3;
  }

  .story-floating {
    width: min(420px, 82%);
    margin-top: -3rem;
    margin-left: 1rem;
  }

  .wide-photo img {
    height: auto;
  }

  .photo-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 190px;
  }

  .tile-large {
    grid-row: span 1;
  }

  .reservation-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-mark img {
    width: 39px;
    height: 39px;
  }

  .hero-logo {
    width: 86px;
    height: 86px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    justify-content: center;
  }

  .section,
  .quick-panel,
  .site-footer {
    width: min(100% - 1rem, 1160px);
  }

  .site-footer {
    flex-direction: column;
  }
}

.social-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.social-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link.facebook svg,
.social-link.youtube svg {
  fill: currentColor;
  stroke: none;
}

.social-link:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--blue);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 210px;
  padding: 0.55rem;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.98);
  box-shadow: var(--shadow);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown a {
  display: block;
  padding: 0.72rem 0.8rem;
  border-radius: 6px;
}

.dropdown a:hover {
  color: #fff;
  background: var(--blue);
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 48svh;
  padding: 8rem max(1rem, calc((100vw - 1160px) / 2)) 4rem;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 26, 30, 0.66), rgba(18, 26, 30, 0.3)),
    url("assets/interior-wide.png") center / cover;
}

.page-hero.compact {
  min-height: 42svh;
}

.page-hero h1 {
  max-width: 11ch;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
  line-height: 1.65;
}

.home-feature,
.brand-showcase,
.split-page,
.contact-page,
.two-column-text {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
}

.home-feature,
.split-page,
.contact-page {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
}

.home-feature p:not(.eyebrow),
.rich-text p,
.two-column-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  grid-auto-rows: 220px;
  gap: 1rem;
}

.feature-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 1px 0 var(--line);
}

.feature-grid img:first-child {
  grid-row: span 2;
}

.mini-menu-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.mini-menu-card {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mini-menu-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.menu-slider-section {
  text-align: center;
}

.menu-slider {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 1rem;
  align-items: center;
}

.menu-stage {
  position: relative;
  min-height: 70svh;
}

.menu-slide {
  display: none;
  margin: 0 auto;
}

.menu-slide.is-active {
  display: block;
}

.menu-slide img {
  width: min(720px, 100%);
  max-height: 78svh;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-slide figcaption {
  margin-top: 0.9rem;
  color: var(--muted);
  font-weight: 900;
}

.slider-btn {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--surface);
  font-size: 2rem;
  cursor: pointer;
}

.slider-btn:hover {
  color: #fff;
  background: var(--blue);
}

.slider-dots,
.center-actions,
.tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(24, 20, 17, 0.24);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--blue);
}

.button.outline {
  color: var(--blue);
  border-color: var(--blue);
  background: transparent;
}

.media-tabs {
  padding-top: 3rem;
}

.tab-buttons button {
  min-height: 44px;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--surface);
  font-weight: 900;
}

.tab-buttons button.is-active {
  color: #fff;
  background: var(--blue);
}

.tab-panel {
  display: none;
  margin-top: 2rem;
}

.tab-panel.is-active {
  display: block;
}

.gallery-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-card,
.blog-card,
.empty-state,
.contact-card,
.two-column-text article {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 var(--line);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card figcaption,
.blog-card div,
.empty-state,
.contact-card,
.two-column-text article {
  padding: 1.2rem;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.rich-text {
  max-width: 820px;
}

.rich-text blockquote {
  margin: 2rem 0 0;
  padding-left: 1rem;
  border-left: 4px solid var(--gold);
  color: var(--coffee);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.25;
}

.page-photo {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card {
  display: grid;
  gap: 0.8rem;
}

.contact-card address {
  margin: 0;
}

.map-frame {
  width: 100%;
  min-height: 460px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reservation-page {
  max-width: 920px;
}

.reservation-form.light {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.reservation-form.light input,
.reservation-form.light select,
.reservation-form.light textarea {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.reservation-form .full {
  grid-column: 1 / -1;
}

.form-status.visible {
  color: var(--blue);
  font-weight: 800;
}

.article-content img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(180px, 0.8fr) auto;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-brand p {
  margin: 0.35rem 0 0;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  gap: 0.4rem;
  font-weight: 800;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.admin-entry {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  color: #fff;
  background: var(--coffee);
  font-size: 0.78rem;
  font-weight: 900;
}

.admin-body {
  min-height: 100vh;
  background: #f2eee6;
}

.admin-login {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 1rem;
}

.admin-card {
  display: grid;
  gap: 0.9rem;
  width: min(420px, 100%);
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.admin-card.wide {
  width: 100%;
}

.admin-card img {
  width: 96px;
  margin: 0 auto;
}

.admin-card label,
.admin-form label {
  display: grid;
  gap: 0.4rem;
}

.admin-card input,
.admin-card textarea,
.admin-card select,
.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-table input,
.admin-table select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  background: #fff;
}

.admin-error {
  color: #9b1c1c;
  font-weight: 800;
}

.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 230px;
  padding: 1rem;
  color: #fff;
  background: var(--coffee);
}

.admin-sidebar img {
  width: 82px;
  margin: 0 auto 1rem;
  padding: 0.35rem;
  border-radius: 50%;
  background: #fff;
}

.admin-sidebar a {
  padding: 0.75rem 0.85rem;
  border-radius: 6px;
  font-weight: 800;
}

.admin-sidebar a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.admin-main {
  margin-left: 230px;
  padding: clamp(1rem, 4vw, 2.5rem);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.admin-stats article,
.admin-list article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.admin-stats span,
.admin-list span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-stats strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 2.2rem;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

.admin-table th,
.admin-table td {
  padding: 0.7rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.button.small {
  min-height: 38px;
  padding: 0.55rem 0.8rem;
}

@media (max-width: 980px) {
  .social-nav {
    display: none;
  }

  .home-feature,
  .split-page,
  .contact-page,
  .gallery-grid,
  .blog-grid,
  .mini-menu-row,
  .site-footer,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .menu-slider {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .slider-btn {
    width: 44px;
    height: 44px;
  }

  .admin-sidebar {
    position: static;
    width: 100%;
  }

  .admin-main {
    margin-left: 0;
  }
}

@media (max-width: 860px) {
  .nav-item .dropdown {
    position: static;
    display: grid;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 1rem;
    background: transparent;
  }
}

/* Final Beacon refinements */
body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.04;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.85rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.35rem);
}

.page-hero {
  min-height: 36svh;
  padding-top: 7.5rem;
  padding-bottom: 3rem;
}

.page-hero.compact {
  min-height: 32svh;
}

.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.55rem, 6vw, 5rem);
}

.hero h1 {
  max-width: 15ch;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.6rem 1rem !important;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-button:hover {
  transform: translateY(-1px);
  background: var(--gold);
  color: var(--ink);
}

.site-header.is-scrolled .nav-button,
.site-header.nav-active .nav-button {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.menu-stage {
  min-height: 82svh;
}

.menu-slide img {
  width: min(920px, 100%);
  max-height: 88svh;
}

.legal-text {
  max-width: 960px;
}

.legal-text p,
.legal-text li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
}

.legal-text ol,
.legal-text ul {
  padding-left: 1.25rem;
}

.kvkk-center,
.auth-section {
  display: grid;
  place-items: center;
  text-align: center;
}

.kvkk-center p {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.65;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(10, 12, 12, 0.72);
  backdrop-filter: blur(10px);
}

.modal-backdrop.is-open {
  display: grid;
}

.kvkk-modal {
  position: relative;
  display: grid;
  gap: 1rem;
  width: min(980px, 100%);
  max-height: 92svh;
  padding: 1rem;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.kvkk-modal iframe {
  width: 100%;
  height: min(70svh, 720px);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.notice {
  padding: 0.85rem 1rem;
  border-radius: 6px;
  color: var(--blue-dark);
  background: rgba(0, 88, 124, 0.08);
  font-weight: 700;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: start;
}

.profile-card {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  text-align: center;
}

.profile-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: var(--shadow);
}

.check-row {
  display: flex !important;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 0.7rem;
  text-align: left;
}

.check-row input {
  width: auto !important;
  margin-top: 0.2rem;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.map-cta {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  background: var(--surface);
}

.map-pin {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, background 180ms ease;
}

.map-pin:hover {
  transform: translateY(-4px);
  background: var(--coffee);
}

.map-pin svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.map-full {
  padding: 0;
}

.map-frame.large {
  display: block;
  min-height: 620px;
  border-radius: 0;
  box-shadow: none;
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  z-index: 35;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease;
}

.whatsapp-float {
  right: 1rem;
  bottom: 5rem;
  background: #25d366;
}

.back-to-top {
  right: 1rem;
  bottom: 8.7rem;
  background: var(--blue);
  font-size: 1.5rem;
  font-weight: 900;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-float:hover,
.back-to-top:hover {
  transform: translateY(-3px);
}

@media (max-width: 880px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .menu-slider {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 0.4rem;
  }

  .menu-stage {
    min-height: 72svh;
  }

  .menu-slide img {
    max-height: 78svh;
  }
}

/* ---- Gallery & card polish ---- */
.gallery-card,
.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(33, 26, 20, 0.15);
}

.gallery-card img,
.blog-card img {
  transition: transform 0.6s ease;
}

.gallery-card:hover img,
.blog-card:hover img {
  transform: scale(1.05);
}

.gallery-card figcaption {
  position: relative;
  z-index: 1;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Legibility for gold eyebrow / white text set over photos */
.hero .eyebrow,
.page-hero .eyebrow,
.menu-band .eyebrow {
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}

/* ---- Category menu (item gallery) ---- */
.menu-index {
  position: sticky;
  top: 66px;
  z-index: 15;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.85rem 0;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  background: rgba(243, 236, 224, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.menu-index::-webkit-scrollbar {
  display: none;
}

.menu-index a {
  flex: 0 0 auto;
}

.menu-index a {
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.menu-index a:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.menu-group {
  scroll-margin-top: 140px;
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
}

.menu-group:first-of-type {
  margin-top: 0;
}

.menu-group-title {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  margin-bottom: 1.4rem;
}

.menu-group-title h2 {
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  white-space: nowrap;
}

.menu-group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.menu-category {
  scroll-margin-top: 140px;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.menu-group .menu-category:first-of-type {
  margin-top: 1.4rem;
}

.menu-cat-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.menu-cat-head h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
}

.menu-cat-head span {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.menu-item {
  text-align: center;
}

.menu-item .thumb {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 1px 0 var(--line);
}

.menu-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-item:hover img {
  transform: scale(1.07);
}

.menu-item figcaption {
  margin: 0.65rem 0 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.88rem;
  line-height: 1.32;
  letter-spacing: 0;
  color: var(--ink);
}

@media (max-width: 620px) {
  .menu-items {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.85rem;
  }

  .menu-item figcaption {
    font-size: 0.8rem;
  }
}
