@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&display=swap");

:root {
  --navy-950: #020913;
  --navy-900: #071427;
  --navy-850: #0B1B31;
  --gold-500: #C79A43;
  --gold-300: #E7C16C;
  --paper: #F7F4EE;
  --ink: #111111;
  --muted: #9A9A9A;
  --line: rgba(199, 154, 67, 0.32);
  --max: 1160px;
  --font-display: "Cormorant Garamond", "Times New Roman", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", serif;
  --font-title: "Cormorant Garamond", "Times New Roman", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", serif;
  --font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--paper);
  font-family: var(--font-text);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

@keyframes lp-soft-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lp-soft-scale {
  from {
    opacity: 0;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-copy,
.branch-copy,
.home-action-card,
.branch-panel,
.branch-review,
.menu-category,
.branch-map-card {
  animation: lp-soft-rise 680ms var(--ease-soft) both;
}

.hero-frame,
.branch-shell {
  animation: lp-soft-scale 820ms var(--ease-soft) both;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.92);
  backdrop-filter: blur(16px);
}

.language-switcher {
  position: fixed;
  z-index: 40;
  top: 18px;
  right: 18px;
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(231, 193, 108, 0.24);
  border-radius: 999px;
  background: rgba(2, 9, 19, 0.72);
  backdrop-filter: blur(18px) saturate(1.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.language-switcher button {
  min-width: 38px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 249, 237, 0.72);
  background: transparent;
  font: 700 12px/1 var(--font-text);
  transition:
    color 220ms var(--ease-soft),
    background 220ms var(--ease-soft),
    filter 220ms var(--ease-soft);
}

.language-switcher button:hover {
  color: #fff9ed;
  background: rgba(255, 255, 255, 0.08);
  filter: brightness(1.08);
}

.language-switcher button.active {
  color: #111;
  background: linear-gradient(180deg, #efc878 0%, #c88a35 100%);
}

.home-page {
  background:
    radial-gradient(circle at 76% 28%, rgba(199, 154, 67, 0.18), transparent 22%),
    radial-gradient(circle at 38% 62%, rgba(7, 30, 55, 0.85), transparent 38%),
    linear-gradient(135deg, #020913 0%, #071427 54%, #020913 100%);
}

.home-header {
  position: relative;
  background: rgba(2, 9, 19, 0.72);
  border-bottom: 0;
}

.topline {
  width: min(760px, calc(100% - 32px));
  min-height: 46px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.ornament {
  font-size: 20px;
  line-height: 1;
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-text);
  font-size: 20px;
}

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

.home-brand img {
  width: 148px;
  height: 148px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(247, 244, 238, 0.78);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links a {
  position: relative;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gold-300);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 38px;
  height: 1px;
  background: var(--gold-300);
  transform: translateX(-50%);
}

.home-nav {
  position: absolute;
  z-index: 4;
  top: 40px;
  right: 118px;
  display: flex;
  align-items: center;
  gap: 48px;
  color: rgba(247, 244, 238, 0.9);
  font-family: var(--font-text);
  font-size: 15px;
  text-transform: uppercase;
}

.home-nav a {
  position: relative;
}

.home-nav-menu {
  position: relative;
}

.home-nav-menu > button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-transform: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: color 220ms var(--ease-soft);
}

.home-nav-menu > button::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 240ms var(--ease-soft);
}

.home-nav-menu.is-open > button,
.home-nav-menu > button:hover {
  color: var(--gold-300);
}

.home-nav-menu.is-open > button::after {
  transform: translateY(2px) rotate(225deg);
}

.home-nav-dropdown {
  position: absolute;
  z-index: 20;
  top: calc(100% + 20px);
  left: 50%;
  width: 188px;
  display: grid;
  gap: 2px;
  padding: 8px;
  border: 1px solid rgba(230, 184, 95, 0.38);
  border-radius: 8px;
  background: rgba(2, 8, 19, 0.97);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -10px);
  transition:
    opacity 220ms var(--ease-soft),
    visibility 220ms var(--ease-soft),
    transform 260ms var(--ease-soft);
}

.home-nav-menu.is-open .home-nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.home-nav-dropdown a {
  display: block;
  padding: 11px 13px;
  border-radius: 5px;
  color: rgba(255, 249, 237, 0.88);
  font-size: 14px;
  font-weight: 650;
  text-transform: none;
  white-space: nowrap;
  transition:
    color 180ms var(--ease-soft),
    background 180ms var(--ease-soft),
    transform 180ms var(--ease-soft);
}

.home-nav-dropdown a:hover {
  color: #fff9ed;
  background: rgba(217, 154, 69, 0.13);
  transform: translateX(2px);
}

.home-nav-dropdown a::after {
  content: none !important;
}

.home-nav a.active,
.home-nav a:hover {
  color: var(--gold-300);
}

.home-nav a.active::after,
.home-nav a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 42px;
  height: 1px;
  background: var(--gold-300);
  transform: translateX(-50%);
}

.button,
.text-link,
.branch-button,
.home-action-card,
.branch-nav a,
.home-nav a,
.home-nav-menu > button,
.language-switcher button,
.menu-category-head {
  cursor: pointer;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 30px;
  border: 1px solid var(--gold-500);
  color: var(--paper);
  background: transparent;
  font-weight: 700;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 13px;
  transition:
    transform 260ms var(--ease-soft),
    border-color 260ms var(--ease-soft),
    background 260ms var(--ease-soft),
    box-shadow 260ms var(--ease-soft),
    filter 260ms var(--ease-soft);
}

.button.primary {
  background: linear-gradient(180deg, #E7C16C 0%, #B9822D 100%);
  color: var(--navy-950);
  border-color: #E7C16C;
}

.button:hover,
.text-link:hover {
  background: rgba(185, 154, 91, 0.12);
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.button.primary:hover {
  background: #d1b16c;
  box-shadow: 0 14px 34px rgba(217, 154, 69, 0.18);
}

.button:focus-visible,
.text-link:focus-visible,
.branch-button:focus-visible,
.home-action-card:focus-visible,
.branch-nav a:focus-visible,
.home-nav a:focus-visible,
.home-nav-menu > button:focus-visible,
.language-switcher button:focus-visible,
.menu-category-head:focus-visible {
  outline: 2px solid rgba(231, 193, 108, 0.82);
  outline-offset: 4px;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.home-hero {
  min-height: 682px;
  padding: 0 26px 28px;
  align-items: stretch;
  border-bottom: 0;
}

.hero-frame {
  position: relative;
  width: min(100%, 1588px);
  min-height: 648px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: 16px;
  padding: 112px 82px 54px;
  overflow: hidden;
  border: 1px solid rgba(231, 193, 108, 0.72);
  background:
    radial-gradient(circle at 88% 40%, rgba(199, 154, 67, 0.18), transparent 22%),
    linear-gradient(90deg, rgba(2, 9, 19, 0.94), rgba(7, 20, 39, 0.8) 45%, rgba(2, 9, 19, 0.18)),
    linear-gradient(135deg, #020913 0%, #071427 58%, #020913 100%);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35);
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-color: var(--gold-300);
  border-style: solid;
  opacity: 0.85;
  pointer-events: none;
}

.hero-frame::before {
  left: 18px;
  top: 18px;
  border-width: 1px 0 0 1px;
}

.hero-frame::after {
  right: 18px;
  bottom: 18px;
  border-width: 0 1px 1px 0;
}

.hero-frame .home-brand {
  position: absolute;
  z-index: 4;
  left: 88px;
  top: 24px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 48px;
  padding-top: 70px;
}

.hero-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 56px;
  align-items: center;
  padding: 72px 0;
}

.eyebrow {
  color: var(--gold-500);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-text);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.94;
}

.home-hero h1 {
  margin-top: 0;
  color: #fffaf0;
  font-size: clamp(84px, 8.8vw, 136px);
  line-height: 0.9;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

h3 {
  font-size: 24px;
}

p {
  color: rgba(247, 244, 238, 0.76);
  line-height: 1.7;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 18px;
}

.subtitle {
  margin: 20px 0 0;
  color: var(--gold-300);
  font-family: var(--font-text);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.25;
}

.locations {
  margin: 20px 0 0;
  color: rgba(247, 244, 238, 0.9);
  font-family: var(--font-text);
  font-size: clamp(20px, 1.55vw, 27px);
}

.gold-divider {
  position: relative;
  width: min(398px, 78%);
  height: 1px;
  margin-top: 24px;
  background: var(--gold-300);
}

.gold-divider::before {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 0 12px;
  color: var(--gold-300);
  background: #071427;
  transform: translate(-50%, -50%);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 42px;
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.luxury-plate {
  min-height: 526px;
}

.hero-media img {
  position: absolute;
  width: 62%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.hero-media img:first-child {
  right: 0;
  top: 0;
  height: 68%;
}

.hero-media img:last-child {
  left: 0;
  bottom: 0;
  height: 54%;
}

.luxury-plate img,
.luxury-plate img:first-child,
.luxury-plate img:last-child {
  left: auto;
  right: -54px;
  top: 48%;
  bottom: auto;
  width: min(820px, 104%);
  height: min(610px, 96%);
  object-fit: contain;
  border: 0;
  filter: drop-shadow(0 34px 50px rgba(0, 0, 0, 0.62));
  transform: translateY(-48%);
}

.section {
  padding: 84px 0;
  border-bottom: 1px solid var(--line);
}

.restaurant-strip {
  margin-top: -2px;
  padding: 28px 0 0;
  background: linear-gradient(180deg, rgba(2, 9, 19, 0.1), #020913 52%);
}

.section.light {
  background: var(--paper);
  color: var(--ink);
}

.section.light p {
  color: rgba(17, 17, 17, 0.72);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading p {
  max-width: 430px;
  margin: 0;
}

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

.store-card {
  border: 1px solid var(--line);
  background: rgba(14, 27, 45, 0.58);
}

.home-store-grid {
  max-width: 1215px;
  margin: 0 auto;
  gap: 28px;
}

.home-store-card {
  min-height: 132px;
  background:
    linear-gradient(180deg, rgba(7, 20, 39, 0.92), rgba(2, 9, 19, 0.86)),
    radial-gradient(circle at 50% 0, rgba(231, 193, 108, 0.16), transparent 48%);
  border-color: rgba(231, 193, 108, 0.55);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.home-store-card .store-card-content {
  min-height: 132px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "icon divider"
    "icon link";
  column-gap: 28px;
  row-gap: 6px;
  justify-items: center;
  align-content: center;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.home-store-card h3 {
  grid-area: title;
  justify-self: start;
  color: #fffaf0;
  font-size: 29px;
  text-transform: uppercase;
}

.store-icon {
  grid-area: icon;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-300);
  font-family: var(--font-text);
  font-size: 20px;
}

.store-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-divider {
  grid-area: divider;
  justify-self: start;
  width: 108px;
  height: 1px;
  background: var(--gold-500);
}

.text-link.quiet {
  grid-area: link;
  justify-self: start;
  min-height: auto;
  padding: 0;
  border: 0;
  color: rgba(247, 244, 238, 0.82);
  text-transform: none;
  font-weight: 500;
}

.section.light .store-card {
  background: #fff;
}

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

.store-card-content {
  padding: 22px;
}

.meta-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(247, 244, 238, 0.72);
  font-size: 14px;
}

.section.light .meta-list {
  color: rgba(17, 17, 17, 0.68);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.quiet-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.dark-gallery {
  background: #020913;
}

.quiet-list div {
  background: var(--navy-950);
  min-height: 120px;
  padding: 20px;
  display: flex;
  align-items: end;
  color: var(--paper);
  font-family: var(--font-text);
  font-size: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
}

.gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.store-hero {
  padding: 72px 0 58px;
}

.store-hero-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.store-hero img {
  height: 480px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.info-item {
  min-height: 140px;
  padding: 20px;
  background: var(--navy-900);
}

.info-item span {
  color: var(--gold-500);
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}

.site-footer {
  padding: 40px 0;
  color: rgba(247, 244, 238, 0.62);
}

.footer-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 860px) {
  .topline {
    min-height: auto;
    padding: 12px 0;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .home-brand img {
    width: 88px;
    height: 88px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 18px;
  }

  .home-nav {
    position: static;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 28px;
    font-size: 13px;
  }

  .nav-links a.active::after,
  .nav-links a:hover::after {
    bottom: -7px;
  }

  .hero-grid,
  .store-hero-grid,
  .store-grid,
  .gallery,
  .info-grid,
  .quiet-list {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding: 16px;
  }

  .hero-frame {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 138px 22px 30px;
  }

  .hero-frame .home-brand {
    left: 22px;
    top: 22px;
  }

  .hero-copy {
    position: static;
    padding-left: 0;
    padding-top: 0;
  }

  .home-hero h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .gold-divider {
    width: 100%;
  }

  .hero-media {
    min-height: 420px;
  }

  .luxury-plate {
    min-height: 300px;
  }

  .luxury-plate img,
  .luxury-plate img:first-child,
  .luxury-plate img:last-child {
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    width: min(520px, 112%);
    height: 320px;
    transform: translate(-50%, -45%);
  }

  .home-store-card .store-card-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "title"
      "divider"
      "link";
    justify-items: center;
    text-align: center;
  }

  .home-store-card h3,
  .mini-divider,
  .text-link.quiet {
    justify-self: center;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .gallery img,
  .store-hero img {
    height: 320px;
  }
}

/* Branch pages fixed reference format */
.branch-page {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background-color: #020813;
  color: #fff9ed;
}

.branch-marignane {
  --branch-bg: url("assets/store-marignane-bg.png");
}

.branch-martigues {
  --branch-bg: url("assets/store-martigues-bg.png");
}

.branch-pertuis {
  --branch-bg: url("assets/store-pertuis-bg.png");
}

.branch-page {
  background-image: none;
}

.branch-shell {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-image: var(--branch-bg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.branch-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 8, 19, 0.9) 0%, rgba(2, 8, 19, 0.66) 31%, rgba(2, 8, 19, 0.08) 57%, rgba(2, 8, 19, 0) 100%),
    linear-gradient(180deg, rgba(2, 8, 19, 0.22) 0%, rgba(2, 8, 19, 0) 36%, rgba(2, 8, 19, 0.1) 100%);
}

.branch-header {
  position: relative;
  z-index: 3;
  min-height: 112px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 16px 170px 16px 38px;
}

.branch-brand {
  width: 80px;
  height: 80px;
  display: inline-grid;
  place-items: center;
  color: #d79a48;
}

.branch-brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.branch-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding-top: 0;
  color: rgba(255, 249, 237, 0.88);
  font-size: 17px;
}

.branch-nav a {
  position: relative;
}

.branch-nav a.active::after,
.branch-nav a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 43px;
  height: 2px;
  background: #d99a45;
  transform: translateX(-50%);
}

.branch-hero {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 194px);
  display: flex;
  align-items: center;
  padding-left: 86px;
  padding-bottom: 78px;
}

.branch-copy {
  width: min(760px, 48vw);
  transform: translateY(48px);
}

.branch-copy h1 {
  margin: 0;
  color: #d99a45;
  font-family: var(--font-title);
  font-size: clamp(54px, 5.4vw, 82px);
  line-height: 1;
  font-weight: 650;
  text-transform: uppercase;
}

.branch-divider {
  display: none;
}

.branch-divider::after {
  content: none;
}

.branch-kicker,
.branch-city {
  margin: 0;
  color: #d99a45;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  text-transform: uppercase;
}

.branch-kicker {
  margin-top: 28px;
  font-family: var(--font-title);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.branch-city {
  display: none;
}

.branch-short-line {
  display: none;
}

.branch-lead {
  display: none;
}

.branch-actions {
  display: flex;
  gap: 24px;
  margin-top: 56px;
}

.branch-button {
  width: 210px;
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d99a45;
  border-radius: 4px;
  color: #d99a45;
  background: transparent;
  font-size: 17px;
  white-space: nowrap;
  transition:
    transform 260ms var(--ease-soft),
    filter 260ms var(--ease-soft),
    box-shadow 260ms var(--ease-soft),
    background 260ms var(--ease-soft);
}

.branch-button.primary {
  color: #1d1208;
  background: linear-gradient(180deg, #efc878 0%, #c88a35 100%);
  border-color: #efc878;
}

.branch-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 16px 34px rgba(217, 154, 69, 0.18);
}

.branch-info {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 107px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #b8782f;
  color: rgba(255, 249, 237, 0.86);
  font-size: 21px;
  background: rgba(2, 8, 19, 0.08);
}

.branch-info-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.branch-info-item {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.branch-info-action {
  min-height: 54px;
  padding: 10px 18px;
  border: 1px solid rgba(217, 154, 69, 0.42);
  border-radius: 8px;
  color: rgba(255, 249, 237, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(2, 8, 19, 0.54);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    color 220ms var(--ease-soft),
    background 220ms var(--ease-soft),
    border-color 220ms var(--ease-soft),
    box-shadow 220ms var(--ease-soft),
    transform 220ms var(--ease-soft);
}

.branch-info-action:hover {
  color: #fff9ed;
  border-color: rgba(217, 154, 69, 0.48);
  background: rgba(217, 154, 69, 0.11);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.branch-info-action:focus-visible,
.branch-social-link:focus-visible {
  outline: 2px solid rgba(231, 193, 108, 0.82);
  outline-offset: 4px;
}

.branch-social-links {
  position: absolute;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.branch-social-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(217, 154, 69, 0.46);
  border-radius: 50%;
  overflow: hidden;
  color: #efc878;
  background: rgba(2, 8, 19, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    background 220ms var(--ease-soft),
    border-color 220ms var(--ease-soft),
    box-shadow 220ms var(--ease-soft),
    filter 220ms var(--ease-soft),
    transform 220ms var(--ease-soft);
}

.branch-social-link:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  filter: brightness(1.12) saturate(1.08);
  transform: translateY(-2px) scale(1.04);
}

.social-brand-icon {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}

.branch-icon {
  width: 24px;
  height: 24px;
  color: #d99a45;
}

.branch-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-section {
  width: calc(100% - 54px);
  margin: 0 auto;
  padding: 56px 0 74px;
  border-top: 1px solid rgba(230, 184, 95, 0.32);
}

.home-reservation {
  position: relative;
  width: 100%;
  margin-top: -1px;
  padding: 38px 54px 66px;
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(2, 9, 19, 0) 0%, rgba(2, 9, 19, 0.72) 16%, #020913 100%);
}

.home-section-head {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.home-section-head span {
  display: none;
  margin-bottom: 12px;
  color: #e6b85f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-section-head h2 {
  margin: 0;
  color: #d99a45;
  font-family: var(--font-text);
  font-size: clamp(38px, 3.5vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.home-section-head p {
  margin: 16px 0 0;
  color: rgba(255, 249, 237, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.home-reservation-grid,
.home-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

.home-action-card,
.home-contact-grid article {
  min-height: 132px;
  padding: 26px;
  border: 1px solid rgba(230, 184, 95, 0.45);
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 260ms var(--ease-soft),
    border-color 260ms var(--ease-soft),
    background 260ms var(--ease-soft),
    box-shadow 260ms var(--ease-soft),
    filter 260ms var(--ease-soft);
}

.home-action-card {
  position: relative;
  overflow: hidden;
}

.home-action-card::after {
  content: "→";
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: rgba(230, 184, 95, 0.78);
  font-size: 20px;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 260ms var(--ease-soft),
    transform 260ms var(--ease-soft);
}

.home-action-card:hover,
.home-contact-grid article:hover,
.branch-panel:hover,
.branch-review:hover,
.menu-card:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 184, 95, 0.58);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
  filter: brightness(1.06);
}

.home-action-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.home-action-card strong,
.home-contact-grid h3 {
  display: block;
  margin: 0 0 12px;
  color: #e6b85f;
  font-family: var(--font-text);
  font-size: 25px;
  font-weight: 500;
  text-transform: uppercase;
}

.home-action-card span,
.home-contact-grid p,
.home-contact-grid a {
  color: rgba(255, 249, 237, 0.8);
  font-size: 16px;
  line-height: 1.55;
}

.home-action-card em {
  display: inline-flex;
  margin-top: 18px;
  color: #e6b85f;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

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

.home-gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid rgba(230, 184, 95, 0.35);
}

.branch-map {
  position: relative;
  z-index: 4;
  min-height: 680px;
  padding: 76px 48px;
  overflow: hidden;
  border-top: 1px solid rgba(217, 154, 69, 0.36);
  background:
    radial-gradient(circle at 18% 0%, rgba(217, 154, 69, 0.14), transparent 28%),
    linear-gradient(180deg, #020813 0%, #071426 52%, #020813 100%);
  perspective: 1300px;
}

.branch-map::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 88px;
  z-index: -1;
  width: min(1100px, calc(100% - 148px));
  height: 500px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(231, 193, 108, 0.18), rgba(2, 9, 19, 0.28));
  box-shadow:
    0 54px 96px rgba(0, 0, 0, 0.42),
    0 18px 34px rgba(199, 154, 67, 0.11);
  transform: translateX(-50%) translateY(22px) scale(0.965);
  pointer-events: none;
}

.branch-map iframe {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  height: 520px;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  filter: saturate(0.9) contrast(0.96);
  box-shadow:
    0 42px 86px rgba(0, 0, 0, 0.48),
    0 14px 28px rgba(217, 154, 69, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transform: rotateX(1.35deg) translateY(-4px);
  transform-origin: center top;
  transition:
    transform 360ms var(--ease-soft),
    filter 360ms var(--ease-soft),
    box-shadow 360ms var(--ease-soft);
}

.branch-map:hover iframe {
  filter: saturate(0.96) contrast(0.98);
  box-shadow:
    0 52px 98px rgba(0, 0, 0, 0.52),
    0 18px 34px rgba(217, 154, 69, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: rotateX(0deg) translateY(-10px) scale(1.004);
}

.branch-map-card {
  position: absolute;
  z-index: 2;
  right: max(72px, calc((100% - 1180px) / 2 + 48px));
  top: 50%;
  width: min(430px, 84vw);
  padding: 34px;
  color: #fff9ed;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(7, 20, 38, 0.72);
  backdrop-filter: blur(24px) saturate(1.24);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}

.branch-map-card h2 {
  margin: 0 0 18px;
  font-family: var(--font-text);
  font-size: 36px;
  color: #d99a45;
  text-transform: uppercase;
}

.branch-map-card p {
  margin: 10px 0;
  color: rgba(255, 249, 237, 0.84);
  font-size: 17px;
  line-height: 1.5;
}

.branch-map-card a {
  display: inline-flex;
  margin-top: 18px;
  padding: 12px 22px;
  border: 1px solid rgba(217, 154, 69, 0.68);
  border-radius: 999px;
  color: #f2c777;
  font-weight: 700;
}

.branch-bottom-home {
  display: flex;
  justify-content: center;
  padding: 0 24px 58px;
  background: #020813;
}

.branch-bottom-home a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid rgba(231, 193, 108, 0.48);
  border-radius: 999px;
  color: #f2c777;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(7, 20, 38, 0.72);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-weight: 700;
  transition:
    transform 260ms var(--ease-soft),
    border-color 260ms var(--ease-soft),
    filter 260ms var(--ease-soft);
}

.branch-bottom-home a:hover {
  border-color: rgba(231, 193, 108, 0.78);
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.detail-page {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 154, 69, 0.1), transparent 24%),
    linear-gradient(135deg, #020813 0%, #071426 54%, #020813 100%);
  color: #fff9ed;
}

.detail-header {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 112px;
  padding: 16px 170px 16px 38px;
  border-bottom: 1px solid rgba(217, 154, 69, 0.32);
}

.detail-header .branch-nav {
  gap: 24px;
  font-size: 16px;
}

.detail-main {
  padding: 54px 55px 92px;
}

.detail-main .branch-content {
  padding: 0;
  border-top: 0;
  background: transparent;
}

.branch-content {
  position: relative;
  z-index: 4;
  padding: 92px 86px;
  border-top: 1px solid rgba(217, 154, 69, 0.42);
  background:
    linear-gradient(135deg, rgba(4, 13, 27, 0.98) 0%, rgba(7, 20, 38, 0.98) 56%, rgba(2, 8, 19, 0.98) 100%);
  color: #fff9ed;
}

.branch-content-alt {
  background:
    linear-gradient(135deg, rgba(2, 8, 19, 0.98) 0%, rgba(8, 18, 32, 0.98) 54%, rgba(2, 8, 19, 0.98) 100%);
}

.branch-section-head {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.branch-section-head span {
  display: none;
  margin-bottom: 12px;
  color: #d99a45;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.branch-section-head h1,
.branch-section-head h2 {
  margin: 0;
  color: #d99a45;
  font-family: var(--font-text);
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1.05;
  font-weight: 650;
  text-transform: uppercase;
}

.branch-section-head p {
  margin: 12px 0 0;
  color: rgba(255, 249, 237, 0.76);
  font-size: 16px;
  line-height: 1.65;
}

.branch-content-grid,
.branch-review-grid,
.drink-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 92px);
  margin: 0 0 44px;
  padding: 34px 0 40px;
  border-top: 1px solid rgba(217, 154, 69, 0.36);
  border-bottom: 1px solid rgba(217, 154, 69, 0.22);
}

.about-story h2 {
  margin: 0;
  color: #d99a45;
  font-family: var(--font-text);
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.1;
  font-weight: 650;
}

.about-story-copy {
  width: min(880px, 100%);
  display: grid;
  gap: 14px;
}

.about-story-copy p {
  margin: 0;
  color: rgba(255, 249, 237, 0.82);
  font-size: 17px;
  line-height: 1.72;
}

.about-story-copy p:last-child {
  color: #efc878;
  font-weight: 650;
}

.menu-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.menu-card {
  overflow: hidden;
  border: 1px solid rgba(217, 154, 69, 0.36);
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 260ms var(--ease-soft),
    border-color 260ms var(--ease-soft),
    background 260ms var(--ease-soft),
    box-shadow 260ms var(--ease-soft);
}

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

.menu-card h3 {
  margin: 22px 22px 8px;
  color: #d99a45;
  font-family: var(--font-text);
  font-size: 23px;
  font-weight: 500;
}

.menu-card p {
  margin: 0 22px 24px;
  color: rgba(255, 249, 237, 0.82);
  font-size: 16px;
  line-height: 1.5;
}

.menu-detail-main {
  padding-top: 44px;
}

.takeaway-order-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 0 38px;
  padding: 24px 0;
  border-top: 1px solid rgba(217, 154, 69, 0.42);
  border-bottom: 1px solid rgba(217, 154, 69, 0.42);
}

.takeaway-order-cta > div {
  display: grid;
  gap: 5px;
}

.takeaway-order-cta span {
  color: #d99a45;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.takeaway-order-cta strong {
  color: #fff9ed;
  font-family: var(--font-text);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.15;
}

.takeaway-order-button {
  min-width: 238px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid #e7c16c;
  border-radius: 2px;
  color: #071426;
  background: linear-gradient(180deg, #f0cf7b 0%, #c88e36 100%);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    transform 260ms var(--ease-soft),
    filter 260ms var(--ease-soft),
    box-shadow 260ms var(--ease-soft);
}

.takeaway-order-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 20px 42px rgba(217, 154, 69, 0.2);
}

.takeaway-order-button:focus-visible {
  outline: 2px solid rgba(231, 193, 108, 0.9);
  outline-offset: 4px;
}

.menu-category {
  margin-top: 34px;
  padding: 30px;
  border: 1px solid rgba(217, 154, 69, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.022));
  transition:
    border-color 260ms var(--ease-soft),
    background 260ms var(--ease-soft);
}

.menu-category-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(217, 154, 69, 0.22);
  user-select: none;
}

.menu-category-head::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(217, 154, 69, 0.42);
  border-radius: 999px;
  color: #d99a45;
  font-size: 22px;
  line-height: 1;
  transition:
    transform 260ms var(--ease-soft),
    background 260ms var(--ease-soft),
    filter 260ms var(--ease-soft);
}

.menu-category-head:hover::after {
  background: rgba(217, 154, 69, 0.12);
  filter: brightness(1.1);
}

.menu-category-head h2 {
  margin: 0;
  color: #d99a45;
  font-family: var(--font-text);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.menu-category-head span {
  color: rgba(255, 249, 237, 0.62);
  font-size: 14px;
}

.menu-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  overflow: hidden;
  max-height: 5000px;
  opacity: 1;
  transition:
    max-height 360ms var(--ease-soft),
    opacity 240ms var(--ease-soft);
}

.menu-category.is-collapsed .menu-list-grid {
  max-height: 0;
  opacity: 0;
}

.menu-category.is-collapsed .menu-category-head {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom-color: transparent;
}

.menu-category:not(.is-collapsed) .menu-category-head::after {
  content: "−";
  transform: rotate(180deg);
}

.menu-list-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 116px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 8, 19, 0.36);
  transition:
    transform 260ms var(--ease-soft),
    border-color 260ms var(--ease-soft),
    background 260ms var(--ease-soft);
}

.menu-list-item:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 154, 69, 0.42);
  background: rgba(255, 255, 255, 0.055);
}

.menu-list-item img,
.menu-placeholder {
  width: 96px;
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(217, 154, 69, 0.12);
}

.menu-placeholder {
  display: grid;
  place-items: center;
  color: #d99a45;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.menu-list-item h3 {
  margin: 0;
  color: rgba(255, 249, 237, 0.94);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 650;
}

.menu-list-item p {
  margin: 7px 0 0;
  color: rgba(255, 249, 237, 0.64);
  font-size: 14px;
  line-height: 1.45;
}

.menu-list-item strong {
  color: #f0c36c;
  font-size: 18px;
  white-space: nowrap;
}

.branch-panel,
.branch-review {
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(217, 154, 69, 0.36);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 249, 237, 0.03);
  transition:
    transform 260ms var(--ease-soft),
    border-color 260ms var(--ease-soft),
    background 260ms var(--ease-soft),
    box-shadow 260ms var(--ease-soft);
}

.branch-panel h3,
.branch-review strong {
  display: block;
  margin: 0 0 16px;
  color: #d99a45;
  font-family: var(--font-text);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 500;
}

.branch-panel p,
.branch-review p {
  margin: 0;
  color: rgba(255, 249, 237, 0.84);
  font-size: 17px;
  line-height: 1.65;
}

.branch-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 249, 237, 0.84);
  font-size: 17px;
  line-height: 1.6;
}

.branch-panel li::marker {
  color: #d99a45;
}

.tariff-layout {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: 22px;
}

.tariff-hours-card,
.tariff-table-card {
  border: 1px solid rgba(217, 154, 69, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(2, 8, 19, 0.34);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.tariff-hours-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  padding: 28px;
}

.tariff-hours-card > span {
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 2px solid #d99a45;
  color: #efc878;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.tariff-hours-card h2 {
  margin: 0 0 12px;
  color: #fff9ed;
  font-size: 25px;
  font-weight: 700;
}

.tariff-hours-card p {
  margin: 0;
  color: rgba(255, 249, 237, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.tariff-table-card {
  overflow: hidden;
}

.tariff-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tariff-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: rgba(255, 249, 237, 0.9);
}

.tariff-table th,
.tariff-table td {
  padding: 21px 20px;
  border-bottom: 1px solid rgba(217, 154, 69, 0.18);
  text-align: left;
  vertical-align: middle;
}

.tariff-table thead th {
  color: #efc878;
  background: rgba(217, 154, 69, 0.08);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.tariff-table tbody th {
  width: 42%;
  color: #fff9ed;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
}

.tariff-table td {
  color: #f2c777;
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.tariff-table tbody tr:last-child th,
.tariff-table tbody tr:last-child td {
  border-bottom: 0;
}

.tariff-note {
  margin: 0;
  padding: 16px 20px;
  border-top: 1px solid rgba(217, 154, 69, 0.18);
  color: rgba(255, 249, 237, 0.7);
  font-size: 14px;
}

.tariff-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.tariff-drinks-section {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(217, 154, 69, 0.36);
  scroll-margin-top: 150px;
}

.tariff-drinks-head {
  margin-bottom: 6px;
}

.tariff-drinks-section .menu-category {
  margin-top: 24px;
}

.buffet-tariff-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  padding: 20px 0;
  border-top: 1px solid rgba(217, 154, 69, 0.36);
  border-bottom: 1px solid rgba(217, 154, 69, 0.36);
}

.buffet-tariff-cta > div {
  display: grid;
  gap: 5px;
}

.buffet-tariff-cta span {
  color: #d99a45;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.buffet-tariff-cta strong {
  color: #fff9ed;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
}

.buffet-tariff-cta > a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(231, 193, 108, 0.72);
  border-radius: 6px;
  color: #f2c777;
  background: rgba(217, 154, 69, 0.06);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    transform 220ms var(--ease-soft),
    background 220ms var(--ease-soft),
    filter 220ms var(--ease-soft);
}

.buffet-tariff-cta > a:hover {
  transform: translateY(-2px);
  background: rgba(217, 154, 69, 0.13);
  filter: brightness(1.08);
}

.buffet-explorer {
  margin-top: 0;
  padding: 28px;
  border: 1px solid rgba(217, 154, 69, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(2, 8, 19, 0.3);
}

.buffet-explorer-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.buffet-explorer-head h2 {
  margin: 0;
  color: #d99a45;
  font-family: var(--font-text);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
  font-weight: 650;
  text-transform: uppercase;
}

.buffet-explorer-head p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 249, 237, 0.82);
  font-size: 17px;
  line-height: 1.6;
}

.buffet-filter {
  border: 1px solid rgba(217, 154, 69, 0.34);
  color: rgba(255, 249, 237, 0.86);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-text);
  font-weight: 750;
  transition:
    transform 220ms var(--ease-soft),
    border-color 220ms var(--ease-soft),
    background 220ms var(--ease-soft),
    filter 220ms var(--ease-soft);
}

.buffet-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.buffet-filter {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
}

.buffet-filter:hover,
.buffet-filter.active {
  transform: translateY(-2px);
  border-color: rgba(240, 195, 108, 0.68);
  background: rgba(217, 154, 69, 0.12);
  filter: brightness(1.08);
}

.buffet-filter.active {
  color: #071426;
  background: linear-gradient(180deg, #f0cf7b 0%, #c88e36 100%);
}

.buffet-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 260ms var(--ease-soft),
    transform 260ms var(--ease-soft);
}

.buffet-gallery-grid.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.buffet-gallery-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid rgba(217, 154, 69, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  isolation: isolate;
}

.buffet-gallery-card.is-featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 478px;
}

.buffet-gallery-card.is-wide {
  grid-column: span 2;
}

.buffet-gallery-card.is-tall {
  grid-row: span 2;
  min-height: 478px;
}

.buffet-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 8, 19, 0.02) 0%, rgba(2, 8, 19, 0.86) 100%),
    linear-gradient(90deg, rgba(2, 8, 19, 0.52), rgba(2, 8, 19, 0.08));
}

.buffet-gallery-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 520ms var(--ease-soft),
    filter 520ms var(--ease-soft);
}

.buffet-gallery-card:hover img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.buffet-gallery-card span {
  display: inline-flex;
  margin-bottom: 9px;
  color: #f0c36c;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.buffet-gallery-card h3 {
  color: #fff9ed;
  font-family: var(--font-text);
  font-size: clamp(17px, 1.25vw, 23px);
  line-height: 1.16;
  font-weight: 650;
}

.buffet-gallery-card.is-featured h3,
.buffet-gallery-card.is-wide h3 {
  font-size: clamp(22px, 2vw, 31px);
}

.buffet-load-more {
  display: flex;
  justify-content: center;
  padding-top: 28px;
}

.buffet-load-more-button {
  min-width: 230px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  border: 1px solid rgba(231, 193, 108, 0.62);
  border-radius: 6px;
  color: #f4cf83;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(2, 8, 19, 0.56);
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 750;
  transition:
    transform 220ms var(--ease-soft),
    border-color 220ms var(--ease-soft),
    background 220ms var(--ease-soft),
    box-shadow 220ms var(--ease-soft);
}

.buffet-load-more-button small {
  min-width: 36px;
  padding: 5px 7px;
  border-radius: 4px;
  color: #071426;
  background: #e7bd68;
  font-size: 12px;
  font-weight: 800;
}

.buffet-load-more-button:hover {
  border-color: #e7bd68;
  background: rgba(217, 154, 69, 0.12);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.buffet-load-more-button:focus-visible {
  outline: 2px solid rgba(231, 193, 108, 0.82);
  outline-offset: 4px;
}

.social-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 7px 14px 7px 8px;
  border: 1px solid rgba(217, 154, 69, 0.34);
  border-radius: 999px;
  color: rgba(255, 249, 237, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 220ms var(--ease-soft),
    border-color 220ms var(--ease-soft),
    background 220ms var(--ease-soft),
    filter 220ms var(--ease-soft);
}

a.social-button:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 195, 108, 0.64);
  background: rgba(217, 154, 69, 0.12);
  filter: brightness(1.08);
}

.social-initial {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #111;
  background: linear-gradient(180deg, #efc878 0%, #c88a35 100%);
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 800;
}

.text-link {
  color: #f0c36c;
  border-bottom: 1px solid rgba(240, 195, 108, 0.55);
}

.text-link:hover {
  border-bottom-color: #f0c36c;
}

.branch-review span {
  display: block;
  margin-bottom: 16px;
  color: #d99a45;
  font-size: 18px;
  letter-spacing: 0.12em;
}

@media (max-width: 1320px) {
  .branch-header,
  .detail-header {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
    padding-right: 145px;
    padding-left: 28px;
  }

  .branch-brand {
    width: 72px;
    height: 72px;
  }

  .branch-brand img {
    width: 72px;
    height: 72px;
  }

  .branch-nav,
  .detail-header .branch-nav {
    gap: 16px;
    font-size: 15px;
  }
}

@media (max-width: 980px) {
  .branch-header {
    grid-template-columns: 68px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    min-height: 0;
    padding: 64px 24px 20px;
  }

  .branch-brand {
    width: 64px;
    height: 64px;
  }

  .branch-brand img {
    width: 64px;
    height: 64px;
  }

  .branch-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 0;
    font-size: 14px;
  }

  .branch-nav a.active::after,
  .branch-nav a:hover::after {
    bottom: -8px;
  }

  .branch-hero {
    min-height: 680px;
    padding: 80px 24px 220px;
    align-items: flex-start;
  }

  .branch-copy {
    width: min(100%, 560px);
    transform: none;
  }

  .branch-copy h1 {
    font-size: 58px;
  }

  .branch-kicker,
  .branch-city {
    font-size: 24px;
  }

  .branch-kicker {
    white-space: normal;
  }

  .branch-lead {
    font-size: 20px;
  }

  .branch-actions {
    width: min(100%, 280px);
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .branch-actions .branch-button {
    width: 100%;
    min-width: 0;
    padding: 0 18px;
    white-space: nowrap;
  }

  .branch-info {
    min-height: 184px;
    flex-direction: column;
    gap: 16px;
    padding: 18px 20px;
    font-size: 17px;
  }

  .branch-social-links {
    position: static;
    order: 1;
  }

  .branch-info-actions {
    order: 2;
    flex-direction: column;
    gap: 4px;
  }

  .branch-info-action {
    min-height: 44px;
  }

  .branch-separator {
    display: none;
  }

  .home-section {
    width: calc(100% - 48px);
    padding: 58px 0;
  }

  .home-reservation-grid,
  .home-link-grid,
  .home-contact-grid,
  .home-gallery-grid,
  .menu-card-grid,
  .drink-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .branch-map {
    min-height: 720px;
    padding: 36px 20px;
  }

  .branch-map::before {
    top: 44px;
    width: calc(100% - 42px);
    height: 400px;
    border-radius: 30px;
    transform: translateX(-50%) translateY(14px) scale(0.96);
  }

  .branch-map iframe {
    width: 100%;
    height: 420px;
    border-radius: 24px;
    transform: none;
  }

  .branch-map:hover iframe {
    transform: none;
  }

  .branch-map-card {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    margin: 18px 0 0;
    transform: none;
  }

  .detail-header {
    grid-template-columns: 68px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    min-height: 0;
    padding: 64px 24px 20px;
  }

  .detail-main {
    padding: 48px 24px 72px;
  }

  .branch-content {
    padding: 64px 24px;
  }

  .detail-main .branch-content {
    padding: 0;
  }

  .takeaway-order-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    padding: 20px 0;
  }

  .takeaway-order-button {
    width: 100%;
    min-width: 0;
  }

  .tariff-layout {
    grid-template-columns: 1fr;
  }

  .tariff-hours-card {
    min-height: 220px;
  }

  .tariff-actions {
    flex-direction: column;
  }

  .tariff-actions .text-link {
    width: 100%;
  }

  .tariff-drinks-section {
    margin-top: 56px;
    padding-top: 42px;
    scroll-margin-top: 110px;
  }

  .buffet-tariff-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .buffet-tariff-cta > a {
    width: 100%;
  }

  .branch-content-grid,
  .branch-review-grid,
  .menu-list-grid {
    grid-template-columns: 1fr;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
    padding: 26px 0 30px;
  }

  .about-story-copy p {
    font-size: 16px;
  }

  .buffet-explorer {
    padding: 16px;
  }

  .buffet-explorer-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .buffet-gallery-card {
    min-height: 172px;
    padding: 14px;
  }

  .buffet-gallery-card.is-featured {
    grid-column: span 2;
    min-height: 330px;
  }

  .buffet-gallery-card.is-wide {
    grid-column: span 2;
    min-height: 230px;
  }

  .buffet-gallery-card.is-tall {
    min-height: 356px;
  }

  .buffet-gallery-card h3 {
    font-size: 17px;
  }

  .buffet-gallery-card.is-featured h3,
  .buffet-gallery-card.is-wide h3 {
    font-size: 21px;
  }

  .menu-category {
    padding: 22px;
  }

  .menu-list-item {
    grid-template-columns: 78px 1fr;
  }

  .menu-list-item strong {
    grid-column: 2;
  }

  .menu-list-item img,
  .menu-placeholder {
    width: 78px;
    height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

/* Homepage reference mockup replication */
.home-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(160, 108, 37, 0.15), transparent 24%),
    radial-gradient(circle at 24% 55%, rgba(12, 35, 62, 0.72), transparent 38%),
    linear-gradient(135deg, #020813 0%, #071426 52%, #020813 100%);
}

.home-page .site-header {
  position: relative;
  height: 56px;
  border: 0;
  background: #020813;
  backdrop-filter: none;
}

.home-page .topline {
  width: min(850px, calc(100% - 32px));
  height: 56px;
  min-height: 56px;
  color: #e6b85f;
  font-size: 12px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0;
}

.home-page .ornament {
  color: #e6b85f;
  font-size: 22px;
}

.home-main {
  padding: 0 27px;
}

.home-page .home-hero {
  min-height: 0;
  display: block;
  padding: 0;
}

.home-page .hero-frame {
  position: relative;
  width: 100%;
  max-width: none;
  height: 676px;
  min-height: 0;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(230, 184, 95, 0.82);
  background:
    linear-gradient(90deg, rgba(3, 10, 19, 0.98) 0%, rgba(8, 23, 42, 0.94) 42%, rgba(5, 16, 30, 0.72) 53%, rgba(3, 10, 19, 0.12) 70%, rgba(3, 10, 19, 0.18) 100%),
    radial-gradient(circle at 82% 52%, rgba(201, 143, 54, 0.12), transparent 26%),
    linear-gradient(135deg, #020813 0%, #08172a 58%, #020813 100%);
  background-repeat: no-repeat;
  background-position: left top, center, center;
  background-size: 100% 100%, 100% 100%, cover;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.42);
}

.home-page .hero-plate {
  position: absolute;
  z-index: 1;
  right: -34px;
  bottom: -18px;
  width: min(920px, 57vw);
  height: 560px;
  background: url("assets/reference-hero-plate.png") center / contain no-repeat;
  opacity: 0.98;
  pointer-events: none;
  -webkit-mask-image:
    radial-gradient(ellipse 74% 72% at 54% 50%, #000 0%, #000 46%, rgba(0, 0, 0, 0.72) 62%, rgba(0, 0, 0, 0.22) 78%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 74% 72% at 54% 50%, #000 0%, #000 46%, rgba(0, 0, 0, 0.72) 62%, rgba(0, 0, 0, 0.22) 78%, transparent 100%);
}

.home-page .hero-plate::after {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(180deg, rgba(5, 16, 30, 0.98) 0%, rgba(5, 16, 30, 0.76) 10%, rgba(5, 16, 30, 0) 28%, rgba(2, 8, 19, 0) 78%, rgba(2, 8, 19, 0.86) 100%),
    linear-gradient(90deg, rgba(7, 20, 38, 0.98) 0%, rgba(7, 20, 38, 0.58) 12%, rgba(7, 20, 38, 0) 28%, rgba(2, 8, 19, 0) 78%, rgba(2, 8, 19, 0.72) 100%);
  pointer-events: none;
}

.home-page .hero-frame::before,
.home-page .hero-frame::after {
  width: 72px;
  height: 72px;
  opacity: 1;
  border-color: #e6b85f;
}

.home-page .hero-frame::before {
  left: 22px;
  top: 22px;
}

.home-page .hero-frame::after {
  right: 22px;
  bottom: 22px;
}

.home-page .hero-frame .home-brand {
  position: absolute;
  z-index: 5;
  left: 93px;
  top: 21px;
}

.home-page .home-brand img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.home-page .home-nav {
  position: absolute;
  z-index: 5;
  top: 45px;
  right: 178px;
  display: flex;
  gap: 16px;
  align-items: center;
  color: rgba(255, 251, 241, 0.94);
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.home-page .home-nav a.active,
.home-page .home-nav a:hover,
.home-page .home-nav-menu.is-open > button,
.home-page .home-nav-menu > button:hover {
  color: #e6b85f;
}

.home-page .home-nav a.active::after,
.home-page .home-nav a:hover::after {
  bottom: -18px;
  width: 43px;
  background: #e6b85f;
}

.home-page .hero-copy {
  position: absolute;
  z-index: 4;
  left: 133px;
  top: 252px;
  width: 610px;
  padding: 0;
}

.home-page .home-hero h1 {
  margin: 0;
  color: #d99a45;
  font-family: var(--font-title);
  font-size: clamp(72px, 6.8vw, 112px);
  line-height: 0.92;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
}

.home-page .subtitle {
  margin: 20px 0 0;
  color: #e6b85f;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.2;
}

.home-page .gold-divider {
  width: 412px;
  margin-top: 24px;
  background: #e6b85f;
}

.home-page .gold-divider::before {
  content: "✤";
  color: #e6b85f;
  background: #071426;
  font-size: 24px;
}

.home-page .locations {
  margin: 22px 0 0;
  color: #fffdf6;
  font-family: var(--font-text);
  font-size: 26px;
  line-height: 1.2;
}

.home-page .actions {
  gap: 32px;
  margin-top: 40px;
}

.home-page .button {
  width: 228px;
  min-height: 56px;
  padding: 0 24px;
  border-color: #d9a64c;
  border-radius: 4px;
  color: #e6b85f;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
}

.home-page .button.primary {
  color: #06101d;
  background: linear-gradient(180deg, #f0cf7b 0%, #c88e36 100%);
  border-color: #f0cf7b;
}

.home-page .restaurant-strip {
  margin: 0;
  padding: 28px 0 0;
  background: transparent;
}

.home-page .restaurant-strip .container {
  width: 100%;
}

.home-page .home-store-grid {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.home-page .home-store-card {
  min-height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(10, 27, 49, 0.96), rgba(4, 13, 25, 0.96)),
    radial-gradient(circle at 50% 0, rgba(230, 184, 95, 0.12), transparent 48%);
  box-shadow: none;
}

.home-page .home-store-card .store-card-content {
  min-height: 132px;
  grid-template-columns: 86px 1fr;
  grid-template-areas:
    "icon title"
    "icon divider"
    "icon link";
  column-gap: 28px;
  padding: 18px 38px;
  align-content: center;
}

.home-page .store-icon {
  width: 78px;
  height: 78px;
  border-color: #c98f36;
  color: #c98f36;
}

.home-page .store-icon svg {
  width: 43px;
  height: 43px;
  stroke-width: 1.45;
}

.home-page .home-store-card h3 {
  color: #fffdf6;
  font-size: 29px;
  font-weight: 500;
}

.home-page .mini-divider {
  width: 110px;
  background: #c98f36;
}

.home-page .text-link.quiet {
  color: rgba(255, 253, 246, 0.86);
  font-size: 14px;
}

@media (max-width: 1120px) {
  .home-page .home-nav {
    right: 150px;
    gap: 12px;
    font-size: 13px;
  }

  .home-page .hero-copy {
    left: 54px;
    width: 520px;
  }

  .home-page .hero-plate {
    right: -160px;
    width: min(860px, 72vw);
  }

  .home-page .restaurant-strip .container {
    width: calc(100% - 32px);
  }
}

@media (max-width: 860px) {
  .language-switcher {
    top: 12px;
    right: 12px;
    padding: 4px;
  }

  .language-switcher button {
    min-width: 34px;
    height: 30px;
  }

  .home-page .site-header {
    height: auto;
  }

  .home-page .topline {
    height: auto;
    min-height: 0;
    padding: 12px 132px 12px 16px;
    align-items: flex-start;
    text-align: left;
  }

  .home-page .topline .ornament,
  .home-page .topline span:last-child {
    display: none;
  }

  .home-main {
    padding: 0 16px;
  }

  .home-page .hero-frame {
    height: auto;
    min-height: 700px;
  }

  .home-page .hero-frame .home-brand {
    left: 22px;
    top: 22px;
  }

  .home-page .home-brand img {
    width: 104px;
    height: 104px;
  }

  .home-page .home-nav {
    left: 22px;
    right: 22px;
    top: 144px;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 14px;
    font-size: 13px;
  }

  .home-page .home-nav-dropdown {
    position: fixed;
    top: 226px;
    right: 22px;
    left: 22px;
    width: auto;
    transform: translateY(-10px);
  }

  .home-page .home-nav-menu.is-open .home-nav-dropdown {
    transform: translateY(0);
  }

  .home-page .hero-copy {
    left: 24px;
    right: 24px;
    top: 258px;
    width: auto;
  }

  .home-page .home-hero h1 {
    font-size: 52px;
  }

  .home-page .subtitle {
    font-size: 24px;
  }

  .home-page .gold-divider {
    width: min(100%, 360px);
  }

  .home-page .locations {
    font-size: 18px;
  }

  .home-page .actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .home-page .button {
    width: 100%;
  }

  .home-page .hero-plate {
    right: -138px;
    bottom: 0;
    width: 560px;
    height: 430px;
    opacity: 0.72;
  }

  .home-page .home-store-grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-store-card .store-card-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "title"
      "divider"
      "link";
    justify-items: center;
    text-align: center;
  }
}
