:root {
  --bg: #0b0b0c;
  --bg-soft: #121214;
  --text: #f7f3eb;
  --muted: #b8b0a3;
  --accent: #c8982b;
  --line: rgba(200, 152, 43, 0.35);
  --container: 1180px;
  --section-space: 5.2rem;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-heading: "Cormorant Garamond", Georgia, serif;
}

html[data-theme="light"] {
  --bg: #f4f0e7;
  --bg-soft: #ffffff;
  --text: #1b1813;
  --muted: #645b4e;
  --line: rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #17181b 0%, var(--bg) 38%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 6.5rem;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open main,
body.menu-open .site-footer {
  filter: blur(2.5px);
  pointer-events: none;
}

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

html[data-theme="light"] body {
  background: radial-gradient(circle at top, #ffffff 0%, #efe8db 44%);
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
}

.section > .container > h1,
.section > .container > h2,
.section > .container > p {
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 5.6rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 3rem);
}

h3 {
  font-size: 1.12rem;
}

p {
  margin: 0 0 1rem;
}

.muted {
  color: var(--muted);
}

.about-title {
  font-size: clamp(1.7rem, 4.6vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}

.about-title-sm {
  font-size: clamp(1.55rem, 3.6vw, 3rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.78rem 1.18rem;
  border-radius: 999px;
  background: transparent;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  border-color: var(--accent);
  background: rgba(200, 152, 43, 0.13);
}

.btn.primary {
  background: linear-gradient(90deg, #c8982b 0%, #fbe291 100%);
  color: #111;
  border-color: transparent;
}

.btn.primary:hover {
  background: linear-gradient(90deg, #e0b954 0%, #fff0bc 100%);
}

.menu-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.4rem 0 0;
  justify-content: center;
}

.grid-2 {
  display: grid;
  gap: 1.15rem;
}

.panel {
  background: linear-gradient(180deg, rgba(19, 20, 24, 0.9) 0%, rgba(14, 15, 18, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.35rem;
  text-align: center;
}

html[data-theme="light"] .panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 246, 238, 0.94) 100%);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  padding-top: 0.9rem;
  background: linear-gradient(to bottom, rgba(8, 10, 14, 0.86) 0%, rgba(8, 10, 14, 0.62) 62%, rgba(8, 10, 14, 0) 100%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  pointer-events: auto;
}

.header-inner {
  position: relative;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.6rem;
  pointer-events: auto;
}

.header-left {
  display: flex;
  justify-content: flex-start;
}

.header-right {
  display: none;
  justify-content: flex-end;
  gap: 0.45rem;
}

.menu-btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(12, 12, 13, 0.88);
  color: var(--text);
  padding: 0.58rem 1rem;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.56rem;
}

.menu-icon {
  width: 20px;
  display: inline-grid;
  gap: 4px;
}

.menu-icon i {
  display: block;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, #c8982b 0%, #fbe291 100%);
}

.logo {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-self: center;
  gap: 0.5rem;
  text-shadow: 0 7px 24px rgba(0, 0, 0, 0.45);
}

.logo-icon {
  height: clamp(36px, 5vw, 48px);
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.logo strong {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
}

.logo span {
  font-size: 0.62rem;
  color: #efe2c0;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.menu-pill {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 0.58rem 0.95rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(7, 7, 8, 0.6);
}

.menu-pill:hover {
  background: rgba(200, 152, 43, 0.12);
  border-color: var(--accent);
}

.mobile-menu {
  position: fixed;
  inset: 92px 0 0 0;
  z-index: 115;
  background: rgba(8, 10, 14, 0.56);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: none;
  pointer-events: auto;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-inner {
  width: min(100% - 2rem, 620px);
  margin: 0.8rem auto 0;
  display: grid;
  gap: 0.65rem;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.2rem;
  color: #d0c5ad;
}

/* Theme is fixed to light mode, hide switcher UI */
.mobile-menu-top {
  display: none;
}

.theme-switch {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 0.2rem;
  display: inline-flex;
  gap: 0.15rem;
  background: rgba(12, 12, 13, 0.88);
}

.theme-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #d6cab3;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.theme-btn.is-active {
  background: linear-gradient(90deg, #c8982b 0%, #fbe291 100%);
  color: #111;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.58rem;
  --menu-item-fg: #1f1810;
  --menu-item-stroke: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.78rem;
  background: rgba(15, 15, 16, 0.9);
  padding: 0.95rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--menu-item-fg);
}

.nav-item-icon {
  display: inline-flex;
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 1.1rem;
}

.nav-item-icon svg {
  width: 100%;
  height: 100%;
}

.mobile-menu a > span:last-child {
  color: var(--menu-item-fg);
  -webkit-text-stroke: 0.35px var(--menu-item-stroke);
  text-shadow: 0 0 0.45px var(--menu-item-stroke), 0 0 0.75px var(--menu-item-stroke);
}

.mobile-menu a.glass-on-light {
  --menu-item-fg: #1b1610;
  --menu-item-stroke: rgba(0, 0, 0, 0.28);
}

.mobile-menu a.glass-on-dark {
  --menu-item-fg: #fff;
  --menu-item-stroke: rgba(255, 255, 255, 0.78);
}

.mobile-menu a.active,
.mobile-menu a:hover {
  border-color: var(--accent);
  background: rgba(200, 152, 43, 0.14);
  color: var(--menu-item-fg);
}

.hero {
  min-height: 100vh;
  background-position: var(--hero-position-desktop, center);
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  align-items: end;
  padding: 8.8rem 0 4.5rem;
}

.hero .hero-content {
  text-align: center;
  max-width: 860px;
}

.hero-branding {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
}

.hero-main-logo {
  width: min(92vw, 780px);
  max-height: 220px;
  object-fit: contain;
  margin-inline: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
}

.hero-align-left {
  text-align: left;
}

.hero-align-center {
  text-align: center;
}

.hero-align-right {
  text-align: right;
}

.hero-align-left .hero-branding {
  justify-items: start;
}

.hero-align-right .hero-branding {
  justify-items: end;
}

.hero-align-left .hero-main-logo {
  margin-inline: 0 auto;
}

.hero-align-right .hero-main-logo {
  margin-inline: auto 0;
}

.hero-align-left .menu-links {
  justify-content: flex-start;
}

.hero-align-right .menu-links {
  justify-content: flex-end;
}

.hero .menu-links {
  justify-content: center;
}

.hero h1 {
  color: #f7f2e6;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #efe5d1;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

/* Kadim Davet Banner */
.kadim-davet-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border: none;
  box-shadow: 0 0 0 0.5px rgba(200, 152, 43, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.kadim-davet-banner:hover {
  border-color: var(--accent);
  background: rgba(200, 152, 43, 0.1);
}

.kadim-davet-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

.kadim-davet-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

html[data-theme="light"] .kadim-davet-banner {
  border-color: rgba(143, 115, 64, 0.4);
  background: rgba(255, 255, 255, 0.5);
}

html[data-theme="light"] .kadim-davet-banner:hover {
  background: rgba(210, 165, 93, 0.2);
  border-color: #785e34;
}

/* Kadim Davet Hero (Organizasyon page) */
.kadim-davet-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(200, 152, 43, 0.35);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(200, 152, 43, 0.08) 0%, rgba(200, 152, 43, 0.03) 100%);
}

.kadim-davet-hero-logo {
  width: 180px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
}

.kadim-davet-hero-text {
  text-align: left;
}

.kadim-davet-hero-text h1 {
  text-align: left;
  margin-bottom: 0.3rem;
}

.kadim-davet-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin: 0;
  text-align: left;
}

html[data-theme="light"] .kadim-davet-hero {
  border-color: rgba(143, 115, 64, 0.35);
  background: linear-gradient(135deg, rgba(200, 152, 43, 0.06) 0%, rgba(255, 255, 255, 0.5) 100%);
}

@media (max-width: 480px) {
  .kadim-davet-hero {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem 1rem;
    gap: 1rem;
  }

  .kadim-davet-hero-text {
    text-align: center;
  }

  .kadim-davet-hero-text h1 {
    text-align: center;
  }

  .kadim-davet-subtitle {
    text-align: center;
  }

  .kadim-davet-hero-logo {
    width: 140px;
    height: auto;
  }
}

/* WhatsApp Floating Button */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}

/* Instagram Section */
.ig-section {
  margin-top: 1.5rem;
  text-align: center;
}

.ig-header {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  transition: border-color 0.18s ease, background-color 0.18s ease;
  margin-bottom: 1rem;
}

.ig-header:hover {
  border-color: #d6249f;
  background: rgba(214, 36, 159, 0.08);
}

.ig-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.ig-handle {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.ig-follow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d6249f;
  border: 1px solid #d6249f;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
}

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

.ig-grid a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.55rem;
  border: 1px solid var(--line);
}

.ig-grid a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.ig-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.ig-grid a:hover img {
  transform: scale(1.06);
}

@media (max-width: 520px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.category-list {
  display: grid;
  gap: 0.8rem;
}

.category-list article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.72rem;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
}

.menu-category-grid {
  display: grid;
  gap: 1rem;
}

.menu-category-panel h3 {
  margin-bottom: 0.6rem;
}

.menu-keywords {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.menu-keywords li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 0.34rem 0.74rem;
  font-size: 0.82rem;
  color: #dfd7c8;
}

.menu-hub-meta {
  display: grid;
  gap: 0.35rem;
}

.menu-hub-meta p {
  margin: 0;
}

.menu-hub-section {
  padding-top: 2.2rem;
  padding-bottom: 0;
}

.product-grid {
  display: grid;
  gap: 1rem;
}

.product-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.9rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
}

.product-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, 0.03);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.product-card-body h3 {
  margin: 0;
}

.product-card-body h3 a:hover {
  color: var(--accent);
}

.product-price,
.product-price-lg {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
}

.product-price-lg {
  font-size: 1.35rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.product-detail {
  display: grid;
  gap: 1.25rem;
}

.product-detail-media {
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-content {
  display: grid;
  gap: 0.9rem;
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rating-box {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 1.2rem;
}

.rating-box strong {
  color: var(--accent);
  font-size: 2.5rem;
}

.review-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.review-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.74rem;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
}

html[data-theme="light"] .review-card,
html[data-theme="light"] .product-card,
html[data-theme="light"] .menu-keywords li,
html[data-theme="light"] .category-list article,
html[data-theme="light"] .mobile-menu a,
html[data-theme="light"] .menu-pill,
html[data-theme="light"] .map-frame,
html[data-theme="light"] .gallery img {
  border-color: rgba(0, 0, 0, 0.14);
}

html[data-theme="light"] .menu-btn,
html[data-theme="light"] .menu-pill {
  background: rgba(255, 255, 255, 0.78);
  color: #1a1814;
  border-color: rgba(38, 30, 19, 0.34);
}

html[data-theme="light"] .menu-btn:hover,
html[data-theme="light"] .menu-pill:hover {
  background: rgba(210, 165, 93, 0.28);
  border-color: #9a7740;
}

html[data-theme="light"] .logo {
  color: #1e1710;
  text-shadow: none;
  background: rgba(255, 252, 245, 0.82);
  border: 1px solid rgba(40, 31, 20, 0.22);
  border-radius: 0.85rem;
  padding: 0.38rem 0.95rem 0.3rem;
  backdrop-filter: blur(3px);
}

html[data-theme="light"] .logo span {
  color: #3f301f;
  font-weight: 600;
}

html[data-theme="light"] .btn {
  border-color: #8f7340;
  background: rgba(255, 255, 255, 0.72);
  color: #1c160f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

html[data-theme="light"] .btn:hover {
  background: rgba(210, 165, 93, 0.25);
  border-color: #785e34;
}

html[data-theme="light"] .btn.primary {
  border-color: #8f7340;
  box-shadow: 0 4px 16px rgba(124, 90, 36, 0.22);
}

html[data-theme="light"] .mobile-menu {
  background: rgba(244, 240, 231, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

html[data-theme="light"] .mobile-menu-top {
  color: #4d4438;
}

html[data-theme="light"] .theme-switch {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.2);
}

html[data-theme="light"] .theme-btn {
  color: #4d4438;
}

html[data-theme="light"] .mobile-menu a {
  background: rgba(255, 252, 245, 0.95);
  color: #1e1912;
}

html[data-theme="light"] .mobile-menu a.active,
html[data-theme="light"] .mobile-menu a:hover {
  background: rgba(210, 165, 93, 0.25);
  border-color: #b88f4f;
  color: var(--menu-item-fg);
}

html[data-theme="light"] .site-footer {
  background: #f1eade;
  border-top: 1px solid rgba(35, 28, 20, 0.14);
}

html[data-theme="light"] .footer-grid a,
html[data-theme="light"] .footer-grid span,
html[data-theme="light"] .footer-bottom small {
  color: #504434;
}

html[data-theme="light"] .footer-grid h3,
html[data-theme="light"] .footer-brand {
  color: #2a2016;
}

html[data-theme="light"] .footer-grid a:hover {
  color: #1a130b;
}

html[data-theme="light"] .footer-bottom {
  border-top: 1px solid rgba(35, 28, 20, 0.14);
}

.review-top {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.gallery img {
  border-radius: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 1 1 100%;
  max-width: 100%;
}

.gallery img:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

body.gallery-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(5, 7, 12, 0.88);
  backdrop-filter: blur(4px);
  display: none;
}

.gallery-lightbox.is-open {
  display: grid;
  place-items: center;
}

.gallery-stage {
  margin: 0;
  width: min(94vw, 1120px);
  max-height: 86vh;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #0f1116;
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  max-height: 86vh;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.gallery-stage img.is-visible {
  opacity: 1;
  transform: scale(1);
}

.gallery-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-nav.prev {
  left: 1rem;
}

.gallery-nav.next {
  right: 1rem;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
}

.map-frame {
  width: 100%;
  min-height: 390px;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: #09090a;
  padding: 3.4rem 0 2.2rem;
}

.footer-wrap {
  display: grid;
  gap: 2.2rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

.footer-grid section {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
}

.footer-grid h3 {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.footer-grid a,
.footer-grid span {
  color: #bfb7ab;
  font-size: 0.88rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.social-icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-heading);
  letter-spacing: 0.14em;
  font-size: 1.2rem;
}

.footer-bottom small {
  color: #9e988f;
}

@media (min-width: 760px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1.2fr 1fr;
  }
}

@media (min-width: 980px) {
  .header-right {
    display: inline-flex;
  }

  .logo strong {
    font-size: clamp(1.55rem, 2.4vw, 2.3rem);
  }

  .logo span {
    font-size: 0.66rem;
  }

  .gallery img {
    flex: 1 1 calc(33.333% - 0.67rem);
    max-width: calc(33.333% - 0.67rem);
  }

  /* 4 images: 2x2 grid */
  .gallery img:first-child:nth-last-child(4),
  .gallery img:first-child:nth-last-child(4) ~ img {
    flex: 1 1 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }

  /* 5 images: 3 top + 2 bottom centered */
  .gallery img:first-child:nth-last-child(5),
  .gallery img:first-child:nth-last-child(5) ~ img {
    flex: 0 0 calc(33.333% - 0.67rem);
    max-width: calc(33.333% - 0.67rem);
  }
  .gallery img:first-child:nth-last-child(5) ~ img:nth-child(4),
  .gallery img:first-child:nth-last-child(5) ~ img:nth-child(5) {
    flex: 0 0 calc(33.333% - 0.67rem);
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 3.8rem 0 2.8rem;
  }

  .footer-wrap {
    gap: 2.5rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-grid section {
    gap: 0.65rem;
  }

  .footer-grid h3 {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.3rem;
  }

  .footer-grid a,
  .footer-grid span {
    font-size: 1.03rem;
    line-height: 1.5;
  }

  .footer-grid a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.1rem 0.25rem;
  }

  .footer-social-link {
    gap: 0.6rem;
  }

  .social-icon {
    width: 1.2rem;
    height: 1.2rem;
  }

  .footer-brand {
    font-size: 2.1rem;
    letter-spacing: 0.1em;
  }

  .footer-bottom small {
    font-size: 1.02rem;
    line-height: 1.5;
  }
}

@media (max-width: 980px) {
  .about-title {
    line-height: 1.02;
  }

  .site-header {
    padding-top: 0.55rem;
    background: linear-gradient(to bottom, rgba(8, 10, 14, 0.92) 0%, rgba(8, 10, 14, 0.72) 68%, rgba(8, 10, 14, 0) 100%);
  }

  .mobile-menu {
    inset: 82px 0 0 0;
  }

  .header-inner {
    min-height: 64px;
  }

  .logo strong {
    font-size: clamp(1rem, 4.5vw, 1.28rem);
    letter-spacing: 0.1em;
    line-height: 1.04;
  }

  .logo span {
    font-size: 0.5rem;
    letter-spacing: 0.22em;
  }

  .hero {
    background-position: var(--hero-position-mobile, center);
  }

  .hero-main-logo {
    max-height: 150px;
  }

  .gallery-stage {
    width: min(96vw, 680px);
    max-height: 78vh;
  }

  .gallery-stage img {
    max-height: 78vh;
  }

  .gallery-nav {
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }

  .gallery-nav.prev {
    left: 0.55rem;
  }

  .gallery-nav.next {
    right: 0.55rem;
  }

  .gallery-close {
    top: 0.55rem;
    right: 0.55rem;
  }
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.18s ease, border-color 0.18s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  border-color: var(--accent);
  background: rgba(200, 152, 43, 0.15);
}

html[data-theme="light"] .scroll-top {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .scroll-top:hover {
  background: rgba(210, 165, 93, 0.2);
  border-color: #785e34;
}
