/* ==========================================================================
   Fish Style — Design system
   Couleurs reprises du site original : corail #df2b2b, rose poudré #f6d2d2
   ========================================================================== */

:root {
  --red: #df2b2b;
  --red-dark: #b81f1f;
  --red-light: #f6d2d2;
  --ink: #171310;
  --ink-soft: #241d19;
  --cream: #faf5ee;
  --cream-2: #f1e7d8;
  --gray: #6b6660;
  --gray-light: #a89f96;
  --white: #ffffff;

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Actor", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 50px -20px rgba(23, 19, 16, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(23, 19, 16, 0.3);

  --nav-h: 84px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

p { line-height: 1.75; margin: 0 0 1em; }

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.section {
  padding: clamp(60px, 9vw, 120px) 0;
}
.section--dark {
  background: var(--ink);
  color: var(--gray-light);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--tint {
  background: var(--cream-2);
}

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------------------------------- Buttons --------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s, background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 30px -8px rgba(223, 43, 43, 0.65);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -10px rgba(223, 43, 43, 0.75);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-3px);
}

.btn--sm { padding: 12px 24px; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ---------------------------------- Site header (topbar + navbar) ------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

.topbar {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  max-height: 44px;
  opacity: 1;
  transition: max-height 0.4s ease, opacity 0.4s ease, border-color 0.4s ease;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 24px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.68);
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  white-space: nowrap;
  transition: color 0.3s;
}
a.topbar__item:hover { color: var(--red-light); }
.topbar__item svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.85; }
.topbar__social { display: flex; align-items: center; gap: 12px; margin-left: 6px; padding-left: 18px; border-left: 1px solid rgba(255,255,255,0.15); }
.topbar__social a { color: rgba(255,255,255,0.65); display: flex; transition: color 0.3s, transform 0.3s; }
.topbar__social a:hover { color: var(--red-light); transform: translateY(-2px); }
.topbar__social svg { width: 14px; height: 14px; }

.site-header.is-scrolled .topbar {
  max-height: 0;
  opacity: 0;
  border-color: transparent;
}

@media (max-width: 1100px) {
  .topbar__item--hide-sm { display: none; }
}
@media (max-width: 880px) {
  .topbar { display: none; }
}

/* ---------------------------------- Navbar ----------------------------- */
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, height 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  transition: color 0.4s ease;
}
.nav__logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
  object-fit: contain;
  border: 2px solid var(--red);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.nav__brand-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav__brand-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
}
.nav__brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--red-light);
  opacity: 0.85;
  margin-top: 3px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}
.nav__links a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.nav__links a.is-active { background: var(--red); color: var(--white); }

.nav__links-head,
.nav__links-cta,
.nav__links-social { display: none; }

.nav__actions { display: flex; align-items: center; gap: 14px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav__toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-scrolled .nav {
  height: 68px;
  background: rgba(23, 19, 16, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.6);
}

.site-header:not(.is-scrolled) .nav.is-solid {
  background: rgba(23, 19, 16, 0.5);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 8, 7, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
body.nav-open .nav-overlay { opacity: 1; visibility: visible; }

@media (min-width: 881px) {
  .nav-overlay { display: none !important; }
}

@media (max-width: 880px) {
  .nav__toggle { display: flex; }
  .nav__actions .btn--ghost-desktop { display: none; }

  .nav__links {
    position: fixed;
    top: 0; right: 0;
    z-index: 1001;
    height: 100vh;
    width: min(84vw, 340px);
    flex-direction: column;
    align-items: stretch;
    background: linear-gradient(165deg, var(--ink) 0%, var(--ink-soft) 100%);
    padding: 26px 24px 32px;
    gap: 3px;
    box-shadow: -24px 0 60px rgba(0,0,0,0.45);
    transform: translateX(100%);
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(.22,1,.36,1);
    overflow-y: auto;
  }
  body.nav-open .nav__links {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav__links-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav__links-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
  }
  .nav__close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }
  .nav__close:hover { background: var(--red); transform: rotate(90deg); }

  .nav__links a {
    padding: 15px 16px;
    text-align: left;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav__links a.is-active { border-radius: var(--radius-sm); }

  .nav__links-cta {
    display: block;
    margin-top: 16px;
    text-align: center;
    text-transform: none;
    letter-spacing: normal;
  }

  .nav__links-social {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav__links-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.3s, color 0.3s, transform 0.3s;
  }
  .nav__links-social a:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
}

@media (max-width: 420px) {
  .nav__brand-sub { display: none; }
  .nav__brand-divider { display: none; }
  .nav__logo { width: 42px; height: 42px; }
  .nav__brand-title { font-size: 1.2rem; }
  .nav__links { width: 88vw; }
}

/* ---------------------------------- Hero -------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 1.6s ease;
  animation: kenburns 14s ease-in-out infinite;
}
.hero__slide.is-active { opacity: 1; z-index: 1; }
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(15,12,10,0.55) 0%, rgba(15,12,10,0.35) 40%, rgba(15,12,10,0.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  padding-top: var(--nav-h);
}
.hero__eyebrow {
  color: var(--red-light);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 22px;
  display: block;
  opacity: 0.9;
}
.hero h1 {
  color: var(--red-light);
  margin-bottom: 20px;
  text-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.hero p.lead {
  color: rgba(255,255,255,0.86);
  max-width: 560px;
  margin: 0 auto 38px;
  font-size: 1.1rem;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  opacity: 0.75;
  animation: bob 2.4s ease-in-out infinite;
}
.hero__dots {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  right: 34px;
  display: flex;
  gap: 8px;
}
.hero__dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hero__dots button.is-active { background: var(--red); transform: scale(1.3); }

@keyframes kenburns {
  0% { transform: scale(1.12) translate3d(0,0,0); }
  50% { transform: scale(1.22) translate3d(-1%, -1%, 0); }
  100% { transform: scale(1.12) translate3d(0,0,0); }
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* Page (non-home) header banner */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,12,10,0.45) 0%, rgba(15,12,10,0.92) 100%);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--nav-h) + 40px) 0 56px;
  text-align: center;
}
.page-hero .eyebrow { color: var(--red-light); justify-content: center; }
.page-hero .eyebrow::before { display: none; }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; gap: 8px; justify-content: center;
  font-size: 0.8rem; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  margin-top: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--red-light); }

/* ---------------------------------- Highlights -------------------------- */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.highlight {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s;
}
.highlight:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.highlight__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.highlight__icon svg { width: 26px; height: 26px; }
.highlight h3 { margin-bottom: 10px; }
.highlight p { margin: 0; font-size: 0.95rem; }

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

/* ---------------------------------- Split / About ----------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split__media { position: relative; }
.split__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split__media::before {
  content: "";
  position: absolute;
  top: -18px; left: -18px;
  width: 68%; height: 68%;
  border: 3px solid var(--red);
  border-radius: var(--radius);
  z-index: -1;
}
.split__text .eyebrow { margin-bottom: 16px; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split__media::before { display: none; }
}

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 30px; }
.tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--cream-2);
  color: var(--ink);
}

/* ---------------------------------- Gallery / Lightbox ------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,19,16,0) 45%, rgba(23,19,16,0.75) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.gallery__item span {
  position: absolute;
  left: 16px; bottom: 14px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.gallery__item:hover img { transform: scale(1.1); }
.gallery__item:hover::after,
.gallery__item:hover span { opacity: 1; transform: translateY(0); }

.gallery__item--wide { grid-column: span 2; aspect-ratio: 2/1; }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; aspect-ratio: 2/1; }
}

.lightbox {
  position: fixed; inset: 0;
  z-index: 3000;
  background: rgba(10, 8, 7, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  padding: 40px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(90vw, 1000px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(0.94);
  transition: transform 0.35s ease;
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--red); transform: scale(1.06); }
.lightbox__close { top: 28px; right: 28px; }
.lightbox__nav--prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 28px; top: 50%; transform: translateY(-50%); }
.lightbox__caption {
  position: absolute;
  bottom: 30px; left: 0; right: 0;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ---------------------------------- Menu section ------------------------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.menu-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 1px solid rgba(23,19,16,0.06);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.menu-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.menu-card__label {
  padding: 14px 18px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-card__label small { color: var(--red); font-family: var(--font-body); font-weight: 700; }

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

/* ---------------------------------- CTA row / cards ---------------------- */
.cta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cta-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  padding: 30px 26px;
  border-radius: var(--radius);
  background: var(--ink-soft);
  color: var(--gray-light);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), border-color 0.4s;
}
.cta-card:hover { transform: translateY(-6px); border-color: var(--red); }
.cta-card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(223,43,43,0.15);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.cta-card h3 { color: var(--white); margin-bottom: 4px; }
.cta-card p { font-size: 0.9rem; margin-bottom: 6px; }

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

/* ---------------------------------- Prestations cards --------------------- */
.service-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}
.service-card__media { position: relative; min-height: 320px; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.service-card__body { padding: 46px; display: flex; flex-direction: column; justify-content: center; }
.service-card__body ul { margin: 18px 0; padding-left: 20px; }
.service-card__body li { margin-bottom: 10px; line-height: 1.6; }
.service-card.reverse { grid-template-columns: 1.1fr 0.9fr; }
.service-card.reverse .service-card__media { order: 2; }

@media (max-width: 900px) {
  .service-card, .service-card.reverse { grid-template-columns: 1fr; }
  .service-card__media { order: -1 !important; min-height: 240px; }
  .service-card__body { padding: 32px 26px; }
}

/* ---------------------------------- Hours / location strip ---------------- */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.info-strip__col {
  background: var(--white);
  padding: 40px 34px;
  border-left: 1px solid rgba(23,19,16,0.06);
}
.info-strip__col:first-child { border-left: none; }
.info-strip__col h3 { display: flex; align-items: center; gap: 12px; }
.info-strip__col h3 svg { color: var(--red); width: 22px; height: 22px; flex-shrink: 0; }
.info-strip__col p { margin: 0; font-size: 0.94rem; }
.info-strip__col p + p { margin-top: 6px; }

@media (max-width: 880px) {
  .info-strip { grid-template-columns: 1fr; }
  .info-strip__col { border-left: none; border-top: 1px solid rgba(23,19,16,0.06); }
  .info-strip__col:first-child { border-top: none; }
}

/* ---------------------------------- Contact page --------------------------*/
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-list { list-style: none; margin: 0 0 30px; padding: 0; }
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(23,19,16,0.08);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .ic {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-list strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 2px; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.social-row a:hover { background: var(--red); color: var(--white); transform: translateY(-3px); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 30px;
}
.map-frame iframe { width: 100%; height: 260px; border: 0; display: block; }

/* Form */
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(23,19,16,0.14);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(223,43,43,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-note {
  font-size: 0.82rem;
  color: var(--gray-light);
  margin-top: 14px;
}
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}
.form-status.is-success { display: block; background: #e5f6ec; color: #1e7a45; }
.form-status.is-error { display: block; background: #fbe7e7; color: #b71f1f; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------------------------------- Footer -------------------------------- */
.footer {
  background: var(--ink);
  color: var(--gray-light);
  padding: 72px 0 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__brand img {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  padding: 3px;
}
.footer p { font-size: 0.9rem; }
.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 18px;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 12px; font-size: 0.92rem; }
.footer ul a { transition: color 0.3s, padding-left 0.3s; }
.footer ul a:hover { color: var(--red-light); padding-left: 4px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 26px;
  font-size: 0.8rem;
}
.footer__bottom a { color: inherit; text-decoration: underline; text-underline-offset: 2px; transition: color 0.3s; }
.footer__bottom a:hover { color: var(--red-light); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.footer__social a:hover { background: var(--red); transform: translateY(-3px); }

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------------------------------- Mobile sticky CTA bar ------------------ */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  display: none;
  background: rgba(23,19,16,0.96);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
}
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 74px; }
}

/* ---------------------------------- Back to top ---------------------------- */
.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 800;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px -10px rgba(223,43,43,0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 720px) { .back-to-top { bottom: 90px; } }

/* ---------------------------------- Reveal on scroll ------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }

/* ---------------------------------- Preloader -------------------------------- */
.preloader {
  position: fixed; inset: 0;
  z-index: 5000;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__fish {
  width: 54px; height: 54px;
  border: 3px solid rgba(223,43,43,0.25);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------------------------------- Misc ------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

::selection { background: var(--red); color: var(--white); }

.marquee {
  background: var(--red);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}
.marquee__track {
  display: inline-block;
  animation: marquee 26s linear infinite;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.marquee__track span { margin: 0 28px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
