@import url('https://api.fontshare.com/v2/css?f[]=satoshi@700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&display=swap');

:root {
  --white:         #FFFFFF;
  --white-soft:    #FAFAFA;
  --white-mid:     #F4F4F4;
  --tosca:         #3D8B7A;
  --tosca-dark:    #265C50;
  --tosca-pale:    #BDD5CF;
  --tosca-muted:   #76AAA0;
  --tosca-cream:   #EAF3F0;
  --tosca-strip:   #2A6558;
  --black:         #080808;
  --charcoal:      #101010;
  --dark-mid:      #282828;
  --mid:           #6A6A6A;
  --light-mid:     #A8A8A8;
  --border:        #E6E6E6;
  --border-light:  #F1F1F1;

  --ff-brand: 'Satoshi', sans-serif;
  --ff-body:  'Poppins', sans-serif;

  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  --section-pad: 120px;
  --container:   1240px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--tosca-muted); border-radius: 2px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.32s; }
.delay-4 { transition-delay: 0.46s; }
.delay-5 { transition-delay: 0.62s; }

.label-small {
  font-family: var(--ff-brand);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--tosca);
  font-style: italic;
}

.display-hero {
  font-family: var(--ff-brand);
  font-weight: 900;
  font-size: clamp(72px, 11vw, 148px);
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.display-lg {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-md {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 28px 0;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav.scrolled {
  padding: 18px 0;
  border-color: var(--border-light);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav__logo {
  font-family: var(--ff-brand);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.14em;
  color: var(--tosca-dark);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  position: relative;
  transition: color 0.3s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--tosca);
  transition: width 0.3s var(--ease-out);
}
.nav__links a:hover { color: var(--tosca-dark); }
.nav__links a:hover::after { width: 100%; }

.nav__social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__social a {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-mid);
  transition: color 0.3s;
}
.nav__social a:hover { color: var(--tosca); }

.nav__divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.35s var(--ease-in-out);
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--white);
  z-index: 199;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__mobile ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.nav__mobile ul a {
  font-family: var(--ff-brand);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s;
}
.nav__mobile ul a:hover { color: var(--tosca); }
.nav__mobile-social {
  display: flex;
  gap: 24px;
}
.nav__mobile-social a {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--light-mid);
  transition: color 0.3s;
}
.nav__mobile-social a:hover { color: var(--tosca); }

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(0,0,0,0.82) 0%,
      rgba(0,0,0,0.65) 40%,
      rgba(0,0,0,0.28) 70%,
      rgba(0,0,0,0.12) 100%
    ),
    radial-gradient(ellipse at 20% 60%, rgba(0,0,0,0.55) 0%, transparent 70%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  align-items: end;
  padding-bottom: 80px;
  padding-top: 60px;
  gap: 60px;
  width: 100%;
}

.hero__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero__label-line {
  width: 40px;
  height: 1px;
  background: var(--tosca-pale);
}
.hero__label .label-small {
  color: var(--tosca-pale);
  letter-spacing: 0.32em;
}

.hero__title {
  font-family: var(--ff-brand);
  font-weight: 900;
  font-size: clamp(72px, 11vw, 148px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.hero__title span { color: var(--tosca-pale); }

.hero__tagline {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: var(--tosca-dark);
  color: #FFFFFF;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.35s, transform 0.3s;
}
.btn-primary:hover {
  background: var(--black);
  transform: translateY(-2px);
}

.btn-ghost {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover {
  color: var(--tosca-pale);
  border-color: var(--tosca-muted);
}

.hero__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  padding-bottom: 12px;
}

.hero__kanji {
  font-size: 110px;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  writing-mode: vertical-rl;
  font-weight: 300;
  letter-spacing: 0.1em;
  user-select: none;
}

.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: right;
}
.hero__stat-num {
  font-family: var(--ff-brand);
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -0.03em;
  color: var(--tosca-pale);
  line-height: 1;
}
.hero__stat-sup {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}
.hero__stat-label {
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-top: 3px;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-indicator__text {
  font-family: var(--ff-body);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  font-weight: 400;
}
.scroll-indicator__line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-indicator__line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--tosca-pale);
  animation: scrollLine 1.8s var(--ease-in-out) infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}

.hours-strip {
  background: var(--tosca-strip);
  padding: 22px 0;
  overflow: hidden;
}
.hours-strip__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
}
.hours-strip__item {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.hours-strip__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--tosca-muted);
}
.hours-strip__text {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(189,213,207,0.75);
}
.hours-strip__text strong {
  font-weight: 600;
  color: #FFFFFF;
}

.about {
  padding: var(--section-pad) 0;
  background: var(--white-soft);
  position: relative;
  overflow: hidden;
}
.about__deco-kanji {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 280px;
  color: var(--tosca-pale);
  opacity: 0.08;
  writing-mode: vertical-rl;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 4/5;
}
.about__img-main {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about__img-float {
  position: absolute;
  width: 52%;
  aspect-ratio: 1;
  bottom: -32px;
  right: -32px;
  border: 6px solid var(--white-soft);
  overflow: hidden;
}
.about__img-badge {
  position: absolute;
  top: -20px;
  left: 20px;
  background: var(--tosca-dark);
  color: #FFFFFF;
  padding: 14px 20px;
}
.about__img-badge-text {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.about__section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.about__line {
  width: 32px;
  height: 1px;
  background: var(--tosca);
}
.about__heading {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.about__heading em {
  font-family: var(--ff-body);
  font-style: italic;
  color: var(--tosca);
  font-weight: 400;
}
.about__body {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 40px;
}
.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about__pill {
  padding: 8px 18px;
  border: 1px solid var(--border);
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  transition: all 0.3s;
}
.about__pill:hover {
  border-color: var(--tosca);
  color: var(--tosca-dark);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.section-header__left {}
.section-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.section-label-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.section-label-row .label-line {
  width: 32px;
  height: 1px;
  background: var(--tosca);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
}
.slider-btn:hover {
  background: var(--tosca-dark);
  border-color: var(--tosca-dark);
}
.slider-btn:hover svg { stroke: #FFFFFF; }
.slider-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--mid);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}
.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  justify-content: center;
}
.slider-dot {
  width: 20px;
  height: 2px;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active {
  width: 36px;
  background: var(--tosca);
}

.menu-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.menu-section__track-wrap { overflow: hidden; }
.menu-section__track {
  display: flex;
  gap: 24px;
  transition: transform 0.7s var(--ease-in-out);
}
.menu-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white-soft);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out);
}
.menu-card:hover { transform: translateY(-6px); }
.menu-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.menu-card__img img { transition: transform 0.7s var(--ease-out); }
.menu-card:hover .menu-card__img img { transform: scale(1.06); }
.menu-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white);
  padding: 6px 12px;
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tosca-dark);
}
.menu-card__body { padding: 24px 24px 28px; }
.menu-card__category {
  font-family: var(--ff-body);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tosca-muted);
  font-weight: 500;
  margin-bottom: 10px;
}
.menu-card__name {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.menu-card__desc {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 18px;
}
.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-card__price {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--tosca-dark);
  letter-spacing: -0.02em;
}
.menu-card__add {
  width: 32px;
  height: 32px;
  background: var(--tosca-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.menu-card__add:hover { background: var(--tosca); }
.menu-card__add:hover svg { stroke: white; }
.menu-card__add svg {
  width: 14px;
  height: 14px;
  stroke: var(--tosca-dark);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  transition: stroke 0.3s;
}

.bukber-section {
  padding: var(--section-pad) 0;
  background: var(--tosca-dark);
  position: relative;
  overflow: hidden;
}
.bukber-section::before {
  content: 'Bukber';
  position: absolute;
  right: -40px;
  bottom: -60px;
  font-family: var(--ff-brand);
  font-weight: 900;
  font-size: 220px;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
}
.bukber-section .label-small { color: var(--tosca-pale); }
.bukber-section .section-label-row .label-line { background: var(--tosca-muted); }
.bukber-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.bukber-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.09);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}
.bukber-card:hover {
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-4px);
}
.bukber-card--featured { grid-row: 1 / 3; }
.bukber-card__img { width: 100%; overflow: hidden; }
.bukber-card--featured .bukber-card__img { height: 340px; }
.bukber-card:not(.bukber-card--featured) .bukber-card__img { height: 180px; }
.bukber-card__img img { transition: transform 0.7s var(--ease-out); }
.bukber-card:hover .bukber-card__img img { transform: scale(1.05); }
.bukber-card__body { padding: 20px 22px 22px; }
.bukber-card__tag {
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tosca-muted);
  margin-bottom: 8px;
}
.bukber-card__name {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 17px;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.bukber-card__desc {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
}
.bukber-card__price {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--tosca-pale);
  letter-spacing: -0.02em;
}

.dessert-section {
  padding: var(--section-pad) 0;
  background: var(--white-mid);
  position: relative;
  overflow: hidden;
}
.dessert-section__kanji-deco {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 260px;
  color: var(--tosca-pale);
  opacity: 0.1;
  writing-mode: vertical-rl;
  user-select: none;
  pointer-events: none;
}
.dessert-track-wrap { overflow: hidden; }
.dessert-track {
  display: flex;
  gap: 20px;
  transition: transform 0.7s var(--ease-in-out);
}
.dessert-card {
  flex: 0 0 calc(25% - 15px);
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out);
}
.dessert-card:hover { transform: translateY(-6px); }
.dessert-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.dessert-card__img img { transition: transform 0.6s var(--ease-out); }
.dessert-card:hover .dessert-card__img img { transform: scale(1.07); }
.dessert-card__label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--white);
  padding: 4px 10px;
  font-size: 9px;
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tosca-dark);
}
.dessert-card__body { padding: 18px 20px 22px; }
.dessert-card__name {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.dessert-card__note {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 14px;
}
.dessert-card__price {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--tosca);
  letter-spacing: -0.02em;
}

.gallery-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.gallery-section__header {
  text-align: center;
  margin-bottom: 56px;
}
.gallery-section__label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}
.gallery-section__label-line {
  width: 48px;
  height: 1px;
  background: var(--border);
}
.gallery-section__title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 44px);
  letter-spacing: -0.015em;
  color: var(--charcoal);
}
.gallery-section__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--tosca);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 240px);
  gap: 10px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s;
}
.gallery-item:hover .gallery-item__label { opacity: 1; transform: translateY(0); }

.gallery-item:nth-child(1)  { grid-column: 1/5;  grid-row: 1/3; }
.gallery-item:nth-child(2)  { grid-column: 5/8;  grid-row: 1/2; }
.gallery-item:nth-child(3)  { grid-column: 8/10; grid-row: 1/2; }
.gallery-item:nth-child(4)  { grid-column: 10/13;grid-row: 1/3; }
.gallery-item:nth-child(5)  { grid-column: 5/8;  grid-row: 2/3; }
.gallery-item:nth-child(6)  { grid-column: 8/10; grid-row: 2/3; }
.gallery-item:nth-child(7)  { grid-column: 1/4;  grid-row: 3/4; }
.gallery-item:nth-child(8)  { grid-column: 4/7;  grid-row: 3/4; }
.gallery-item:nth-child(9)  { grid-column: 7/10; grid-row: 3/4; }
.gallery-item:nth-child(10) { grid-column: 10/13;grid-row: 3/4; }

.insta-strip {
  background: var(--tosca);
  padding: 18px 0;
  overflow: hidden;
  cursor: pointer;
}
.insta-strip__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.insta-strip__item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  color: #FFFFFF;
}
.insta-strip__icon {
  width: 15px;
  height: 15px;
  opacity: 0.55;
}
.insta-strip__text {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.location-section {
  padding: var(--section-pad) 0;
  background: var(--white-soft);
}
.location-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.location-address {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 36px;
}
.location-hours { margin-bottom: 40px; }
.location-hours__row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-light);
}
.location-hours__day {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}
.location-hours__time {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--tosca-dark);
  letter-spacing: -0.01em;
}
.location-socials { display: flex; gap: 14px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  transition: all 0.3s;
  cursor: pointer;
}
.social-btn:hover {
  background: var(--tosca-dark);
  color: #FFFFFF;
  border-color: var(--tosca-dark);
}
.social-btn svg { width: 12px; height: 12px; fill: currentColor; }
.location-map {
  aspect-ratio: 4/3;
  background: var(--white-mid);
  overflow: hidden;
  position: relative;
}
.location-map__embed {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(1.04);
}
.location-map__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 10px solid var(--white-soft);
}

.social-section {
  padding: 80px 0;
  background: var(--charcoal);
}
.social-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.social-section__heading {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 50px);
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1.1;
}
.social-section__heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--tosca-muted);
}
.social-section__sub {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.36);
  margin-top: 12px;
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.social-section__links { display: flex; gap: 16px; flex-wrap: wrap; }
.social-link-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 26px;
  border: 1px solid rgba(255,255,255,0.09);
  cursor: pointer;
  transition: all 0.4s;
  text-decoration: none;
  color: inherit;
  min-width: 90px;
}
.social-link-btn:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.social-link-btn__icon {
  width: 20px;
  height: 20px;
  fill: var(--tosca-muted);
  transition: fill 0.3s;
}
.social-link-btn:hover .social-link-btn__icon { fill: #FFFFFF; }
.social-link-btn__name {
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  transition: color 0.3s;
}
.social-link-btn:hover .social-link-btn__name { color: #FFFFFF; }

.footer {
  background: var(--black);
  padding: 38px 0 34px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  font-family: var(--ff-brand);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
}
.footer__copy {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
}
.footer__copy a { color: var(--tosca-muted); transition: color 0.3s; }
.footer__copy a:hover { color: var(--tosca-pale); }
.footer__nav { display: flex; gap: 24px; }
.footer__nav a {
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}
.footer__nav a:hover { color: var(--tosca-muted); }

@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .about__inner { grid-template-columns: 1fr; gap: 60px; }
  .about__media { max-width: 480px; }
  .bukber-grid { grid-template-columns: 1fr 1fr; }
  .bukber-card--featured { grid-column: 1/3; grid-row: 1/2; }
  .bukber-card--featured .bukber-card__img { height: 280px; }
  .menu-card { flex: 0 0 calc(50% - 12px); }
  .dessert-card { flex: 0 0 calc(50% - 10px); }
  .location-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { grid-template-rows: repeat(4, 200px); }
  .gallery-item:nth-child(1)  { grid-column: 1/7;  grid-row: 1/3; }
  .gallery-item:nth-child(4)  { grid-column: 7/13; grid-row: 1/3; }
  .gallery-item:nth-child(2)  { grid-column: 1/5;  grid-row: 3/4; }
  .gallery-item:nth-child(3)  { grid-column: 5/9;  grid-row: 3/4; }
  .gallery-item:nth-child(5)  { grid-column: 9/13; grid-row: 3/4; }
  .gallery-item:nth-child(6)  { grid-column: 1/4;  grid-row: 4/5; }
  .gallery-item:nth-child(7)  { grid-column: 4/7;  grid-row: 4/5; }
  .gallery-item:nth-child(8)  { grid-column: 7/10; grid-row: 4/5; }
  .gallery-item:nth-child(9)  { grid-column: 10/13;grid-row: 4/5; }
  .gallery-item:nth-child(10) { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 20px; }
  .nav { padding: 20px 0; }
  .nav.scrolled { padding: 14px 0; }
  .nav__links { display: none; }
  .nav__social { display: none; }
  .nav__divider { display: none; }
  .nav__hamburger { display: flex; }
  .hero { min-height: calc(100svh - 70px); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__side { display: none; }
  .hero__tagline { max-width: 100%; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .menu-card { flex: 0 0 calc(85% - 12px); }
  .dessert-card { flex: 0 0 calc(76% - 10px); }
  .bukber-grid { grid-template-columns: 1fr; }
  .bukber-card--featured { grid-column: 1/2; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; gap: 8px; }
  .gallery-item { grid-column: auto !important; grid-row: auto !important; aspect-ratio: 1; }
  .gallery-item:nth-child(n+7) { display: none; }
  .social-section__inner { flex-direction: column; align-items: flex-start; }
  .footer__inner { flex-direction: column; gap: 18px; text-align: center; }
  .footer__nav { flex-wrap: wrap; justify-content: center; }
  .about__img-float { display: none; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(56px, 18vw, 80px); }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .social-section__links { justify-content: flex-start; }
}
