/* Deniz Balık — white & navy theme */
:root {
  --navy: #1a3a8a;
  --navy-dark: #0f2660;
  --navy-light: #2d5bb8;
  --white: #ffffff;
  --off-white: #f4f7fc;
  --gray-100: #e8edf5;
  --gray-500: #6b7a94;
  --gray-800: #2a3347;
  --gold: #c9a227;
  --shadow: 0 4px 24px rgba(26, 58, 138, 0.1);
  --shadow-lg: 0 12px 48px rgba(26, 58, 138, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --topbar-h: 40px;
  --header-h: 72px;
  --site-offset: calc(var(--topbar-h) + var(--header-h));
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-offset);
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--navy-light);
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Top bar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-h);
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  transform: translateY(0);
  transition: transform 0.35s ease;
  will-change: transform;
}

html.is-topbar-hidden .topbar {
  transform: translateY(-100%);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  font-weight: 600;
}

.topbar__phone:hover {
  color: #a8c4ff;
}

.topbar__hours {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all var(--transition);
}

.social-links--topbar a {
  width: 32px;
  height: 32px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.social-links--topbar a:hover {
  background: var(--white);
  color: var(--navy);
}

.social-links--footer a {
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links--footer a:hover {
  background: var(--white);
  color: var(--navy-dark);
}

/* Header */
.header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition:
    top 0.35s ease,
    box-shadow var(--transition);
}

html.is-topbar-hidden .header {
  top: 0;
}

html.is-topbar-hidden {
  --site-offset: var(--header-h);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.nav {
  margin-left: auto;
}

.nav__social {
  display: none;
}

.social-links a[aria-label="WhatsApp"]:hover {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
}

.logo img {
  border-radius: 50%;
  object-fit: cover;
}

.logo__fish {
  flex-shrink: 0;
  color: var(--navy);
  transition: transform 0.3s ease;
}

.logo:hover .logo__fish {
  transform: translateX(3px);
}

.header.scrolled .logo__fish {
  color: var(--navy);
}

.footer .logo__fish {
  color: rgba(255, 255, 255, 0.9);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__text strong {
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.logo__text small {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-style: italic;
}

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

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
}

.nav a:hover {
  color: var(--navy);
}

.nav__cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
}

.nav__cta:hover {
  background: var(--navy-dark) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--site-offset);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 58, 138, 0.88) 0%, rgba(15, 38, 96, 0.75) 100%),
    url("../assets/magaza.jpg") center 35% / cover no-repeat;
  z-index: -1;
}

.hero__bg::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,58.7C960,64,1056,64,1152,58.7C1248,53,1344,43,1392,37.3L1440,32L1440,120L0,120Z'/%3E%3C/svg%3E") bottom / cover no-repeat;
}

.hero__content {
  color: var(--white);
  padding: 4rem 0 6rem;
  max-width: 640px;
}

.hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: #a8c4ff;
}

.hero__lead {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__stats strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
}

.hero__stats span {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--primary:hover {
  background: var(--off-white);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero .btn--primary {
  background: var(--white);
  color: var(--navy);
}

.reviews .btn--primary,
.location .btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.reviews .btn--primary:hover,
.location .btn--primary:hover {
  background: var(--navy-dark);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
}

.location .btn--outline {
  color: var(--navy);
  border-color: var(--navy);
}

.location .btn--outline:hover {
  background: var(--off-white);
}

.btn--full {
  width: 100%;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 0.5rem;
}

.section-label--center {
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-desc {
  text-align: center;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.about {
  background: var(--off-white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__media > img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 220px;
}

.about__badge p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.about__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.about__text p {
  margin-bottom: 1rem;
  color: var(--gray-500);
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
  list-style: none;
  margin-top: 1.5rem;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.about__features li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Menu */
.menu {
  background: var(--white);
}

.menu__photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.menu__photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

@media (max-width: 768px) {
  .menu__photos {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

.menu__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  padding-bottom: 0.25rem;
}

.menu__tab {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.6rem 1.15rem;
  border: 2px solid var(--gray-100);
  border-radius: 999px;
  background: var(--off-white);
  color: var(--gray-800);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.menu__tab:hover:not(.menu__tab--active) {
  border-color: var(--navy-light);
  color: var(--navy);
  background: var(--white);
}

.menu__tab--active,
.menu__tab--active:hover,
.menu__tab--active:focus,
.menu__tab--active:focus-visible,
.menu__tab--active:active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.menu__tab:focus-visible:not(.menu__tab--active) {
  outline: 2px solid var(--navy-light);
  outline-offset: 2px;
  color: var(--gray-800);
}

.menu__panels {
  max-width: 720px;
  margin-inline: auto;
}

.menu__panel {
  animation: menuFade 0.35s ease;
}

.menu__category-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 1rem;
  text-align: center;
}

@keyframes menuFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu__item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--gray-100);
}

.menu__item:last-child {
  border-bottom: none;
}

.menu__item-name {
  font-weight: 500;
  color: var(--gray-800);
  flex-shrink: 0;
  max-width: 70%;
}

.menu__item-dots {
  flex: 1;
  border-bottom: 2px dotted var(--gray-100);
  min-width: 1rem;
  margin-bottom: 0.2rem;
}

.menu__item-price {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .menu__tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-inline: 0.25rem;
    margin-inline: -0.25rem;
  }

  .menu__tabs::-webkit-scrollbar {
    display: none;
  }

  .menu__item-name {
    max-width: 58%;
    font-size: 0.92rem;
  }

  .menu__item-price {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .menu__tab {
    font-size: 0.82rem;
    padding: 0.5rem 0.9rem;
  }
}

/* Gallery — bento grid (ilk görsel 2×2) */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-auto-flow: dense;
}

.gallery__item {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: var(--gray-100);
  transition: box-shadow 0.35s ease;
}

.gallery__item--hero {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery__item:not(.gallery__item--hero) {
  aspect-ratio: 4 / 3;
}

.gallery__item:hover,
.gallery__item:focus-visible {
  box-shadow: 0 12px 32px rgba(26, 58, 138, 0.22);
}

.gallery__item:focus-visible {
  outline: 2px solid var(--navy-light);
  outline-offset: 3px;
}

.gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 42%;
  margin: 0;
  padding: 1.15rem 1.25rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: left;
  color: var(--white);
  background: linear-gradient(
    to top,
    rgba(26, 58, 138, 0.97) 0%,
    rgba(26, 58, 138, 0.82) 28%,
    rgba(26, 58, 138, 0.45) 58%,
    rgba(26, 58, 138, 0.08) 82%,
    transparent 100%
  );
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  pointer-events: none;
}

.gallery__item:hover .gallery__caption,
.gallery__item:focus-visible .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .gallery__caption {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 38, 96, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 85vh;
  max-width: 90vw;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
}

.lightbox__prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__caption {
  position: absolute;
  bottom: 1.5rem;
  color: var(--white);
  font-size: 0.95rem;
}

/* Reviews */
.reviews {
  background: var(--off-white);
}

.reviews__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.reviews__score {
  text-align: center;
}

.reviews__number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.reviews__score p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin: 0.35rem 0;
  font-size: 1.25rem;
  color: var(--gold);
}

.stars .empty {
  color: var(--gray-100);
}

.reviews__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reviews__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 0.5rem 0 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}

.reviews__track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--navy);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.review-card__meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-800);
}

.review-card__meta small {
  color: var(--gray-500);
  font-size: 0.8rem;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.review-card__stars .empty {
  color: var(--gray-100);
}

.review-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.55;
}

.review-card__source {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--gray-500);
}

.reviews__nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition);
}

.reviews__nav:hover {
  background: var(--navy);
  color: var(--white);
}

.reviews__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 1.5rem;
}

.reviews__loading {
  text-align: center;
  padding: 2rem;
  color: var(--gray-500);
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact .section-desc {
  text-align: left;
  margin: 0 0 1.5rem;
}

.contact__list {
  list-style: none;
}

.contact__list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.contact__list strong,
.contact__item-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact__list a {
  display: block;
  font-weight: 500;
}

.contact__form {
  background: var(--off-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}

.contact__form h3 {
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact__form > p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.contact__form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.contact__form input,
.contact__form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--navy);
}

/* Location */
.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
  aspect-ratio: 16/9;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

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

/* Footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}

.footer__brand .logo {
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.footer .logo__text strong {
  color: var(--white);
}

.footer .logo__text small {
  color: rgba(255, 255, 255, 0.6);
}

.footer__col h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer__links,
.footer__contact {
  list-style: none;
}

.footer__links li,
.footer__contact li {
  margin-bottom: 0.55rem;
}

.footer__links a,
.footer__contact a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--white);
}

.footer__contact li {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.footer__col--cta p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.btn--footer {
  display: inline-flex;
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  margin-bottom: 0.75rem;
}

.btn--footer:hover {
  background: var(--off-white);
  color: var(--navy-dark);
}

.footer__map-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #a8c4ff;
}

.footer__map-link:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.social-links--footer-bottom {
  gap: 0.35rem;
  font-size: 0.82rem;
}

.social-links--footer-bottom a {
  width: auto;
  height: auto;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.social-links--footer-bottom a:hover {
  color: var(--white);
  background: none;
}

.social-links--footer-bottom span {
  color: rgba(255, 255, 255, 0.35);
}

/* Developer credit strip */
.dev-credit {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.1rem 0;
  position: relative;
}

.dev-credit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(168, 196, 255, 0.35), transparent);
}

.dev-credit__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dev-credit__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dev-credit__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(168, 196, 255, 0.6);
}

.dev-credit p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.01em;
}

.dev-credit p strong {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.dev-credit__github {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.dev-credit__github:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(168, 196, 255, 0.4);
  background: rgba(168, 196, 255, 0.07);
}

@media (max-width: 600px) {
  .dev-credit__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

/* FAB */
.fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.fab:hover {
  transform: scale(1.08);
  color: var(--white);
}

/* Responsive */
@media (max-width: 900px) {
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__badge {
    right: 0;
    bottom: -1rem;
  }

}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

}

@media (max-width: 768px) {
  :root {
    --topbar-h: 36px;
  }

  .topbar__hours {
    display: none;
  }

  .topbar__phone {
    font-size: 0.78rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--site-offset);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--gray-100);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    box-shadow: var(--shadow);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav__cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .nav__social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-100);
    width: 100%;
  }

  .nav__social a {
    width: 48px;
    height: 48px;
    color: var(--navy);
    background: var(--off-white);
    border: 1px solid var(--gray-100);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    padding: 2.5rem 0 1.5rem;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  .reviews__nav--prev,
  .reviews__nav--next {
    display: none;
  }

  .reviews__summary {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery__item--hero {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery__item:not(.gallery__item--hero) {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    gap: 1.5rem;
  }
}
