:root {
  --green: #2f9e4f;
  --green-dark: #1e7a3a;
  --green-soft: #e8f5ec;
  --text: #1a1f1c;
  --text-muted: #5c6560;
  --bg: #dce8de;
  --bg-soft: #e8f0e9;
  --white: #ffffff;
  --dark: #0f1411;
  --border: #e2e8e4;
  --radius: 16px;
  --radius-lg: 28px;
  --shadow: 0 16px 48px rgba(15, 20, 17, 0.1);
  --shadow-lg: 0 24px 64px rgba(15, 20, 17, 0.18);
  --font: "DM Sans", system-ui, sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

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

.logo {
  display: block;
  object-fit: contain;
  background: transparent;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 8% 18%, rgba(47, 158, 79, 0.28), transparent 58%),
    radial-gradient(ellipse 55% 45% at 92% 12%, rgba(126, 232, 154, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 75% 88%, rgba(47, 158, 79, 0.2), transparent 60%),
    radial-gradient(ellipse 45% 40% at 15% 75%, rgba(30, 122, 61, 0.15), transparent 55%),
    linear-gradient(165deg, #d4e4d6 0%, var(--bg) 40%, #cfdccf 100%);
}

a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--green);
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), #5fd67a);
  transform-origin: left;
  transition: width 0.1s linear;
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

[data-reveal="fade-up"] {
  transform: translateY(48px);
}

[data-reveal="fade-left"] {
  transform: translateX(-40px);
}

[data-reveal="fade-right"] {
  transform: translateX(40px);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(15, 20, 17, 0);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.header.is-scrolled {
  background: rgba(250, 251, 250, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(15, 20, 17, 0.06);
}

.header.is-scrolled .nav__brand,
.header.is-scrolled .nav__links a:not(.nav__cta) {
  color: var(--text);
}

.header.is-scrolled .nav__toggle span {
  background: var(--text);
}

.header:not(.is-scrolled) .nav__brand {
  color: var(--white);
}

.header:not(.is-scrolled) .nav__links a:not(.nav__cta) {
  color: rgba(255, 255, 255, 0.85);
}

.header:not(.is-scrolled) .nav__links a:not(.nav__cta):hover {
  color: var(--white);
}

.header:not(.is-scrolled) .nav__toggle span {
  background: var(--white);
}

.header--solid,
.header--solid.is-scrolled {
  background: rgba(250, 251, 250, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.header--solid .nav__brand,
.header--solid .nav__links a:not(.nav__cta),
.header--solid.is-scrolled .nav__brand,
.header--solid.is-scrolled .nav__links a:not(.nav__cta) {
  color: var(--text);
}

.header--solid .nav__toggle span,
.header--solid.is-scrolled .nav__toggle span {
  background: var(--text);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--header-h);
  gap: 1rem;
}

.nav__tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: end;
}

.lang-switch {
  display: flex;
  padding: 3px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.lang-switch__btn {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text-muted);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.lang-switch__btn.is-active {
  background: var(--green);
  color: var(--white);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.125rem;
  transition: color 0.3s var(--ease);
}

.nav__brand:hover {
  opacity: 0.9;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-self: end;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s var(--ease);
}

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

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

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), background 0.3s;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero — editorial */
.hero--editorial {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--text);
  background: transparent;
}

.hero__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero__blob--1 {
  width: 420px;
  height: 420px;
  top: -80px;
  right: 10%;
  background: rgba(47, 158, 79, 0.22);
  animation: blob-drift 14s var(--ease) infinite alternate;
}

.hero__blob--2 {
  width: 320px;
  height: 320px;
  bottom: 10%;
  left: -60px;
  background: rgba(126, 232, 154, 0.35);
  animation: blob-drift 18s var(--ease) infinite alternate-reverse;
}

@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(24px, -16px) scale(1.08); }
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3rem;
  align-items: center;
  padding: calc(var(--header-h) + 2.5rem) 0 5rem;
}

@media (min-width: 960px) {
  .hero__layout {
    grid-template-columns: 1fr 0.92fr;
    gap: 2rem;
    padding-bottom: 4rem;
  }
}

.hero__content {
  text-align: left;
  max-width: 560px;
}

.hero__brand-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero__logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.hero__tag {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.hero__name {
  margin: 0.15rem 0 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero__title em {
  font-style: normal;
  color: var(--green);
  position: relative;
}

.hero__title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.35em;
  background: var(--green-soft);
  z-index: -1;
  border-radius: 4px;
}

.hero__lead {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.hero__meta li {
  display: grid;
  gap: 0.15rem;
}

.hero__meta strong {
  font-size: 0.9375rem;
  font-weight: 700;
}

.hero__meta span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero__meta-hours {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 0.5rem;
  row-gap: 0.2rem;
  align-items: baseline;
}

.hero__meta-hours-sun {
  margin-top: 0.25rem;
}

/* Hero photo composition */
.hero__visual {
  position: relative;
  width: min(100%, 440px);
  margin-inline: auto;
  aspect-ratio: 4/5;
}

@media (min-width: 960px) {
  .hero__visual {
    width: 100%;
    max-width: 480px;
    margin-inline: auto 0;
    justify-self: end;
  }
}

.hero__photo-main {
  position: absolute;
  inset: 8% 0 0 12%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.hero__photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-photo-in 1.2s var(--ease-out) both;
}

@keyframes hero-photo-in {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__photo-float {
  position: absolute;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 20, 17, 0.15);
  border: 4px solid var(--white);
  z-index: 3;
}

.hero__photo-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__photo-float--1 {
  width: 38%;
  aspect-ratio: 1;
  top: 4%;
  left: 0;
  transform: rotate(-6deg);
  animation: float-card 5s var(--ease) infinite alternate;
}

.hero__photo-float--2 {
  width: 34%;
  aspect-ratio: 1;
  bottom: 6%;
  right: -2%;
  transform: rotate(5deg);
  animation: float-card 6s var(--ease) infinite alternate-reverse;
}

@keyframes float-card {
  from { transform: rotate(-6deg) translateY(0); }
  to { transform: rotate(-4deg) translateY(-10px); }
}

.hero__photo-float--2 {
  animation-name: float-card-2;
}

@keyframes float-card-2 {
  from { transform: rotate(5deg) translateY(0); }
  to { transform: rotate(7deg) translateY(-8px); }
}

.hero__chip {
  position: absolute;
  bottom: 18%;
  left: 4%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  border: 1px solid var(--border);
}

.hero__chip-logo {
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0.5rem;
}

.hero__scroll--dark span {
  border-color: rgba(26, 31, 28, 0.2);
}

.hero__scroll--dark span::after {
  background: var(--green);
}

.hero__scroll span {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  position: relative;
}

.hero__scroll span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--white);
  border-radius: 2px;
  animation: scroll-dot 2s var(--ease) infinite;
}

@keyframes scroll-dot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.25; transform: translateY(12px); }
}

/* Marquee */
.marquee {
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.55);
  border-block: 1px solid var(--border);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee__track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee__group {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
}

.marquee__item {
  flex-shrink: 0;
  width: 220px;
  height: 160px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.marquee__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.marquee__item:hover img {
  transform: scale(1.08);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(47, 158, 79, 0.35);
}

.btn--primary:hover {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(47, 158, 79, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.btn--light.btn--primary {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn--light.btn--primary:hover {
  background: var(--green-soft);
  color: var(--green-dark);
}

.btn--light.btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

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

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

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.section--muted {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.section--insta {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
}

.section:not(.section--dark):not(.hero) {
  background: transparent;
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section__header {
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.section__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.section__label--light {
  color: #7ee89a;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section__intro {
  margin: 0;
  color: var(--text-muted);
  max-width: 52ch;
}

.section__intro--light {
  color: rgba(255, 255, 255, 0.65);
}

.section__intro--light a {
  color: #7ee89a;
}

.section__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .section__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

/* About */
.about {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about {
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
  }
}

.about__visual {
  position: relative;
  min-height: 420px;
}

.about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__img--main {
  width: 78%;
  aspect-ratio: 4/5;
}

.about__img--accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 1;
  border: 4px solid var(--bg);
}

.about__badge {
  position: absolute;
  top: 1.5rem;
  right: 28%;
  background: var(--green);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: float-badge 4s var(--ease) infinite alternate;
}

@keyframes float-badge {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

.about__badge-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.about__badge-text {
  font-size: 0.75rem;
  opacity: 0.9;
}

.about__content p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.facts li {
  flex: 1;
  min-width: 100px;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.facts__value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
}

.facts__label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Bento gallery */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.85rem;
}

.bento__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: default;
}

.bento__item > a {
  display: block;
  width: 100%;
  height: 100%;
}

.bento__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.bento__item:hover img {
  transform: scale(1.06);
}

.bento__item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.bento__item:hover figcaption {
  opacity: 1;
  transform: none;
}

.bento__item--wide {
  grid-column: span 2;
}

.bento__item--tall {
  grid-row: span 2;
}

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

  .bento__item--wide {
    grid-column: span 2;
  }

  .bento__item--tall {
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .bento__item--wide {
    grid-column: span 1;
  }
}

/* Cards with photos */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.card--photo {
  padding: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.card--photo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.card__img--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dept-bg, var(--green-pale));
}

.card__img--logo .logo {
  width: 38%;
  height: auto;
}

.card--photo:hover .card__img img {
  transform: scale(1.05);
}

.card--dept {
  border-top: 4px solid var(--dept-color, var(--green));
}

.card--dept .card__body {
  background: var(--dept-bg, var(--white));
}

.card--dept-grocery {
  --dept-color: #2f9e4f;
  --dept-bg: #eef8f1;
}

.card--dept-fish {
  --dept-color: #1a6fb5;
  --dept-bg: #edf5fc;
}

.card--dept-frozen {
  --dept-color: #3d8b9e;
  --dept-bg: #edf7fa;
}

.card--dept-sweets {
  --dept-color: #c45c26;
  --dept-bg: #fdf3ec;
}

.card--dept-dairy {
  --dept-color: #b8860b;
  --dept-bg: #fdf8ec;
}

.card--dept-service {
  --dept-color: #6b4fa8;
  --dept-bg: #f3effa;
}

.card__body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.card__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.0625rem;
}

.card__body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Parallax banner */
.parallax-banner {
  position: relative;
  height: 55vh;
  min-height: 360px;
  max-height: 520px;
  overflow: hidden;
}

.parallax-banner img {
  position: absolute;
  inset: -15% 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
}

.parallax-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 17, 0.5);
}

.parallax-banner__text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  color: var(--white);
}

.parallax-banner__text p {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* Hours */
.hours-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hours-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hours-grid__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.hours-grid__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hours__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 0.5rem;
}

.hours__table th,
.hours__table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.hours__table tr {
  border-bottom: 1px solid var(--border);
}

.hours__table tr:last-child {
  border-bottom: none;
}

.hours__table th {
  font-weight: 500;
  color: var(--text-muted);
}

.hours__table td {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--green-dark);
}

.hours__note {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Route */
.address {
  font-style: normal;
  margin: 0 0 1.5rem;
}

.route-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.route-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.map-link {
  display: block;
  padding: 0.9rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  background: var(--white);
}

/* Instagram */
.insta-block {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .insta-block {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
  }
}

.insta-showcase__hint {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.insta-showcase--grid-only .insta-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

@media (max-width: 900px) {
  .insta-showcase--grid-only .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.insta-grid--live .insta-grid__item {
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), opacity 0.25s;
  opacity: 0.75;
}

.insta-grid--live .insta-grid__item.is-active {
  opacity: 1;
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(47, 158, 79, 0.25);
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.insta-block__text p {
  color: var(--text-muted);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

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

.insta-grid__item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.insta-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.insta-grid__item:hover img {
  transform: scale(1.08);
}

.insta-grid__item--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #bc1888);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.4;
}

.insta-grid__item--cta span {
  color: var(--white);
}

.insta-grid__item--cta:hover {
  filter: brightness(1.08);
}

/* Quotes */
.quotes {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .quotes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quotes blockquote {
  margin: 0;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.quotes blockquote:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* Reviews — Google style */
.reviews-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.reviews-source {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.reviews-score {
  text-align: right;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.reviews-score__num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--green-dark);
}

.reviews-score__stars {
  color: #f5b301;
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin: 0.25rem 0;
}

.reviews-score__count {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.review-card {
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(15, 20, 17, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__author {
  margin: 0;
  font-weight: 700;
  font-size: 0.9375rem;
}

.review-card__stars {
  color: #f5b301;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.review-card__google {
  margin-left: auto;
  opacity: 0.85;
}

.review-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.reviews-more {
  margin: 2rem 0 0;
  text-align: center;
}

.reviews-more a {
  font-weight: 600;
  font-size: 0.9375rem;
}

/* Gallery slider */
.gallery-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.gallery-slider__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #0f1411;
  box-shadow: var(--shadow-lg);
}

.gallery-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.7s var(--ease), transform 0.9s var(--ease);
  pointer-events: none;
}

.gallery-slider__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.gallery-slider__slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slider__btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.gallery-slider__btn:hover {
  background: var(--green);
  border-color: var(--green);
}

.gallery-slider__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
  grid-column: 1 / -1;
  justify-content: center;
  width: 100%;
  pointer-events: none;
}

.gallery-slider__dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.gallery-slider__dot.is-active {
  background: var(--white);
  transform: scale(1.25);
}

.section--gallery-end {
  padding-bottom: 5rem;
}

.footer__company {
  font-weight: 600;
  color: var(--text);
}

.footer__rights {
  font-size: 0.8125rem !important;
  opacity: 0.85;
}

/* Contact */
.contact {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .contact {
    grid-template-columns: 1.2fr 0.75fr;
    gap: 4rem;
  }
}

.contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact__list li {
  display: grid;
  gap: 0.15rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact__key {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact__list a {
  font-size: 1.125rem;
  font-weight: 600;
}

.contact__cta {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow);
}

.contact__cta-img {
  width: 88px;
  height: 88px;
  margin: 0 auto 1rem;
  background: var(--green-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__cta p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

.contact__cta .btn {
  margin-bottom: 0.65rem;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--white);
}

.footer p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer__sub {
  margin-top: 0.35rem !important;
  opacity: 0.75;
}

/* Mobile */
@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto auto;
  }

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

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

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

  .nav__links a {
    color: var(--text) !important;
    display: block;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
  }

  .header:not(.is-scrolled) .nav__links a {
    color: var(--text) !important;
  }

  .about__visual {
    min-height: 340px;
  }

  .hero__visual {
    max-width: 360px;
  }

  .hero__photo-float--1 {
    width: 42%;
  }

  .hero__photo-float--2 {
    width: 38%;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .marquee__item {
    width: 180px;
    height: 130px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .marquee__track {
    animation: none;
  }

  .gallery-slider__slide {
    transition: none;
  }
}
