/* ===================================
   Pescheria L'Acquario — Style
   =================================== */

:root {
  --color-primary: #234951;
  --color-primary-light: #607980;
  --color-accent: #4793a3;
  --color-accent-dark: #3a7a88;
  --color-accent-light: #90c4cf;
  --color-warm: #e1eff2;
  --color-warm-light: #f0f7f9;
  --color-red: #c0392b;
  --color-cta: #b83b2e;        /* rosso smorzato, richiama il logo */
  --color-cta-dark: #9a3226;
  --color-text: #191919;
  --color-text-light: #5f6360;
  --color-white: #ffffff;
  --color-border: #d1d3d6;
  --color-dark-bg: #1a2e33;

  --font-display: "Raleway", sans-serif;
  --font-body: "Raleway", sans-serif;

  --max-width: 1200px;
  --header-height: 88px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(35, 73, 81, 0.08);
  --shadow-lg: 0 12px 40px rgba(35, 73, 81, 0.14);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-accent-dark); }

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

/* --- Animations --- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn--accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(71, 147, 163, 0.35);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-dark-bg);
  border-color: var(--color-dark-bg);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-accent);
  border-color: var(--color-white);
}
.btn--white:hover {
  background: var(--color-warm);
  border-color: var(--color-warm);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn--cta {
  background: var(--color-cta);
  color: var(--color-white);
  border-color: var(--color-cta);
}
.btn--cta:hover {
  background: var(--color-cta-dark);
  border-color: var(--color-cta-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 59, 46, 0.35);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 17px;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--color-white);
  backdrop-filter: blur(12px);
  height: var(--header-height);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--transition);
}

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

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header__logo-img {
  height: 64px;
  width: auto;
  border-radius: 4px;
}

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

.header__logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
}

.header__logo-sub {
  font-size: 11px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.header__nav { display: flex; gap: 32px; }

.header__link {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}
.header__link:hover { color: var(--color-accent); }

.header__link::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.header__link:hover::after { width: 100%; }

.header__cta { padding: 8px 20px; font-size: 14px; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-primary);
  transition: all var(--transition);
  border-radius: 2px;
}

/* === HERO SPLIT === */
.hero {
  display: flex;
  min-height: 92vh;
  margin-top: var(--header-height);
}

.hero__left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  background: var(--color-warm-light);
  position: relative;
  overflow: hidden;
}

.hero__content {
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.hero__question {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero__title-accent {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--color-accent);
  font-style: italic;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero__subtitle {
  font-size: 17px;
  color: var(--color-text-light);
  margin-bottom: 32px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.45s both;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* Decorative bubbles */
.hero__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.06;
  animation: float 8s ease-in-out infinite;
}
.bubble--1 { width: 200px; height: 200px; top: -40px; right: -60px; animation-delay: 0s; }
.bubble--2 { width: 120px; height: 120px; bottom: 20%; left: -30px; animation-delay: 2s; }
.bubble--3 { width: 80px; height: 80px; top: 40%; right: 10%; animation-delay: 4s; }
.bubble--4 { width: 160px; height: 160px; bottom: -40px; right: 20%; animation-delay: 1s; opacity: 0.04; }
.bubble--5 { width: 60px; height: 60px; top: 20%; left: 20%; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

/* Hero right — image slider */
.hero__right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero__slider {
  width: 100%; height: 100%;
  position: relative;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide--active { opacity: 1; }

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

.hero__slider-dots {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.hero__dot--active {
  background: var(--color-white);
  transform: scale(1.3);
}

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

/* === WAVE DIVIDERS === */
.wave-divider {
  margin-top: -1px;
  line-height: 0;
}
.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}
.wave-divider--flip {
  transform: scaleY(-1);
  margin-top: 0;
  margin-bottom: -1px;
}

/* === SECTIONS === */
.section { padding: 100px 0; position: relative; }
.section--warm { background: var(--color-warm); }
.section--dark { background: var(--color-dark-bg); color: var(--color-white); }
.section--dark a { color: var(--color-accent-light); }

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section__icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: var(--color-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  animation: pulse 3s ease-in-out infinite;
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(71, 147, 163, 0.2); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(71, 147, 163, 0); }
}

.section__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section__title--white { color: var(--color-white); }

.section__desc {
  font-size: 17px;
  color: var(--color-text-light);
  line-height: 1.7;
}
.section--dark .section__desc { color: rgba(255, 255, 255, 0.7); }

/* === ABOUT GRID === */
/* About sections — full-bleed image split */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 500px;
  /* Break out of container */
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}

.about__grid--reverse {
  direction: rtl;
}
.about__grid--reverse > * {
  direction: ltr;
}

.about__lead {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.about__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  max-width: 640px;
}

.about__grid:not(.about__grid--reverse) .about__text {
  margin-left: auto;
}

.about__grid--reverse .about__text {
  margin-right: auto;
}

.about__text p {
  margin-bottom: 16px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.about__image {
  position: relative;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__image:hover img {
  transform: scale(1.03);
}

/* Wave clip: image bleeds into text side with water-like curves */
.about__grid:not(.about__grid--reverse) .about__image {
  clip-path: url(#wave-clip-right);
}

.about__grid--reverse .about__image {
  clip-path: url(#wave-clip-left);
}

.about__quote {
  margin-top: 28px;
  padding: 24px 28px;
  border-left: 4px solid var(--color-accent);
  background: var(--color-warm);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.7;
}
.about__quote p { margin-bottom: 0; color: var(--color-primary); }

/* Story block */
.about__story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  margin-top: 64px;
  padding: 56px;
  background: linear-gradient(135deg, #faf6f0 0%, var(--color-warm) 100%);
  border-radius: var(--radius-lg);
  position: relative;
}

/* Decorative quotes */
.about__story::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 32px;
  font-family: "Caveat", cursive;
  font-size: 120px;
  color: var(--color-accent);
  opacity: 0.15;
  line-height: 1;
}

/* Photo frame effect */
.about__story-image {
  position: relative;
  padding: 12px;
  background: var(--color-white);
  border-radius: 4px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease;
}

.about__story-image:hover {
  transform: rotate(0deg);
}

.about__story-image img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 260px;
  object-fit: cover;
}

.about__story-caption {
  display: block;
  text-align: center;
  font-family: "Caveat", cursive;
  font-size: 16px;
  color: var(--color-text-light);
  padding-top: 12px;
  padding-bottom: 4px;
}

/* Handwritten story text */
.about__story-text {
  font-family: "Caveat", cursive;
  font-size: 24px;
  line-height: 1.7;
  color: var(--color-primary);
  position: relative;
}

.about__story-text p {
  margin-bottom: 20px;
}

.about__story-text p:first-child::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  margin-bottom: 20px;
  border-radius: 2px;
}

.about__story-signature {
  font-family: "Caveat", cursive;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 12px;
}

/* === COUNTERS === */
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.counter {
  text-align: center;
  padding: 36px 20px;
  background: var(--color-warm);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.counter__icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.counter__number {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.counter__label {
  font-size: 13px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* === CTA SECTION === */
.section--accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section--accent::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -100px; right: -100px;
}

.section--accent::after {
  content: "";
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -60px; left: -60px;
}

.cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.section--accent .btn--outline {
  border-color: var(--color-white);
  color: var(--color-white);
}
.section--accent .btn--outline:hover {
  background: var(--color-white);
  color: var(--color-accent);
}

/* === REVIEWS === */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  transition: all var(--transition);
}
.review-card:hover {
  border-color: var(--color-accent-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-card__stars {
  color: #f5a623;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 16px;
  font-style: italic;
}

.review-card__source {
  font-size: 13px;
  color: var(--color-text-light);
  font-weight: 600;
}

.reviews__cta { text-align: center; }

/* === CAROUSEL === */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  max-width: 700px;
  margin: 0 auto;
}

.carousel__track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel__slide {
  min-width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}

.carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--color-white);
  box-shadow: var(--shadow);
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}

.carousel__btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.carousel__btn--prev { left: 12px; }
.carousel__btn--next { right: 12px; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 0 4px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  transition: all var(--transition);
}

.carousel__dot--active {
  background: var(--color-accent);
  transform: scale(1.3);
}

/* === BOOKING PAGE === */
.page-booking {
  margin-top: var(--header-height);
  padding: 60px 0 80px;
  min-height: calc(100vh - var(--header-height));
  background: var(--color-warm-light);
}

.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.booking__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 24px;
}
.booking__back:hover { color: var(--color-accent-dark); }

.booking__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.booking__desc {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 36px;
}

.booking__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--color-primary);
}

.booking__detail svg {
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}

.booking__detail div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.booking__detail strong {
  font-size: 15px;
  font-weight: 700;
}

.booking__detail span {
  font-size: 14px;
  color: var(--color-text-light);
}

.booking__detail a {
  color: var(--color-accent);
  font-weight: 700;
}

.booking__form-wrap {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

/* Nav active link */
.header__link--cta {
  color: var(--color-accent);
}
.header__link--active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .booking__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .booking__form-wrap {
    padding: 24px;
  }
  .page-booking {
    padding: 32px 0 60px;
  }
}

/* === FORMS === */
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form__group { display: flex; flex-direction: column; }
.form__group--full { grid-column: 1 / -1; }

.form__label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text);
}
.section--dark .form__label { color: rgba(255, 255, 255, 0.9); }

.form__input {
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(71, 147, 163, 0.15);
}
.form__input.error { border-color: var(--color-red); }
.form__textarea { resize: vertical; min-height: 100px; }

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-light);
  cursor: pointer;
  margin-bottom: 12px;
}
.section--dark .form__checkbox { color: rgba(255, 255, 255, 0.7); }

.form__checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--color-accent);
  width: 18px; height: 18px;
  flex-shrink: 0;
}

.form__submit { width: 100%; justify-content: center; }

.form__feedback {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.form__feedback--success {
  background: rgba(71, 147, 163, 0.12);
  color: var(--color-accent-dark);
  border: 1px solid var(--color-accent);
}
.form__feedback--error {
  background: rgba(192, 57, 43, 0.1);
  color: var(--color-red);
  border: 1px solid var(--color-red);
}

/* === CONTACT === */
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact__form-wrap {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 32px;
}
.contact__form-wrap .form__group { margin-bottom: 16px; }

.contact__map {
  border-radius: 12px;
  overflow: hidden;
  min-height: 350px;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* === FOOTER === */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__col { display: flex; flex-direction: column; gap: 8px; }

.footer__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.footer__text {
  font-size: 14px;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer__text svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.7;
}
.footer__text a { color: rgba(255, 255, 255, 0.8); }
.footer__text a:hover { color: var(--color-accent-light); }

.footer__social { display: flex; gap: 12px; margin-top: 8px; }
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
  overflow: hidden;
}
.footer__social-link:hover { background: var(--color-accent); }
.footer__social-link svg {
  width: 20px; height: 20px;
  fill: var(--color-white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__vat { font-size: 13px; }
.footer__copy {
  font-size: 13px;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid,
  .about__grid--reverse {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    width: auto;
    min-height: auto;
  }
  .about__grid--reverse { direction: ltr; }
  .about__grid--reverse .about__image { order: 0; }
  .about__grid:not(.about__grid--reverse) .about__image,
  .about__grid--reverse .about__image { clip-path: none; }
  .about__text { padding: 32px 24px; max-width: none; }
  .about__image { min-height: 280px; }
  .about__story { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
  .about__story-text { font-size: 20px; }
  .about__story-image { transform: rotate(-1deg); max-width: 320px; margin: 0 auto; }
  .about__story::before { font-size: 80px; top: 12px; left: 16px; }
  .counters { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--color-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    text-align: center;
  }
  .header__nav.is-open { display: flex; }
  .header__cta { display: none; }
  .header__burger { display: flex; }

  .header__burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .header__burger.is-open span:nth-child(2) { opacity: 0; }
  .header__burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Hero mobile: stack */
  .hero {
    flex-direction: column;
    min-height: auto;
  }
  .hero__left { padding: 40px 24px; }
  .hero__right { height: 50vh; }
  .hero__title { font-size: 32px; }

  .section { padding: 64px 0; }
  .section__header { margin-bottom: 40px; }

  .reviews__grid { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact__map { max-height: 300px; aspect-ratio: auto; height: 300px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer__col { align-items: center; }
  .footer__text { justify-content: center; }
  .footer__social { justify-content: center; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }

  .counters { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .counter { padding: 24px 16px; }
  .counter__number { font-size: 32px; }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn { justify-content: center; }

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

  .header__logo-name { font-size: 17px; }
  .header__logo-img { height: 48px; }
}
