/* ============================================================
   Villa Soldo — Apartmani Neum
   Mediteranski mobile-first stil
   ============================================================ */

:root {
  --c-sea: #1e88a8;
  --c-sea-dark: #156077;
  --c-sea-darker: #0e4555;
  --c-terra: #d97757;
  --c-terra-dark: #b95d40;
  --c-sand: #f3ece1;
  --c-bg: #ffffff;
  --c-bg-alt: #f7f9fb;
  --c-text: #1b2a33;
  --c-text-muted: #5a6b75;
  --c-border: #e3e8ec;
  --c-shadow: 18, 38, 50;

  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5d;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 6px rgba(var(--c-shadow), .06);
  --shadow-md: 0 8px 24px rgba(var(--c-shadow), .08);
  --shadow-lg: 0 20px 50px rgba(var(--c-shadow), .14);

  --container: 1180px;
  --container-narrow: 760px;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--c-sea-dark);
  text-decoration: none;
  transition: color .2s var(--ease);
}
a:hover { color: var(--c-sea); }

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

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }

.btn--primary {
  background: var(--c-sea);
  color: #fff;
  box-shadow: 0 6px 18px rgba(30, 136, 168, .35);
}
.btn--primary:hover {
  background: var(--c-sea-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(30, 136, 168, .42);
}

.btn--secondary {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-color: rgba(255, 255, 255, .65);
  backdrop-filter: blur(6px);
}
.btn--secondary:hover {
  background: #fff;
  color: var(--c-sea-darker);
  transform: translateY(-2px);
}

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

.btn--outline {
  background: transparent;
  color: var(--c-sea-dark);
  border-color: var(--c-sea);
}
.btn--outline:hover {
  background: var(--c-sea);
  color: #fff;
  transform: translateY(-2px);
}

.btn--terra {
  background: var(--c-terra);
  color: #fff;
  box-shadow: 0 6px 18px rgba(217, 119, 87, .35);
}
.btn--terra:hover {
  background: var(--c-terra-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(217, 119, 87, .45);
}

.btn--link-light {
  background: transparent;
  color: #fff;
  padding: 14px 8px;
  border: 0;
  font-weight: 500;
}
.btn--link-light:hover {
  color: #fff;
  transform: translateX(4px);
  background: transparent;
}

/* ============================================================
   SECTION CTA STRIP
   ============================================================ */

.section__cta {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  color: #fff;
}

.nav__brand {
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
}
.nav__brand-sub {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .8;
}

.nav__links {
  display: none;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

@media (min-width: 820px) {
  .nav__links { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8, 30, 42, .55) 0%,
      rgba(8, 30, 42, .25) 40%,
      rgba(8, 30, 42, .75) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 120px;
  max-width: 760px;
}

.hero__promo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  background: rgba(217, 119, 87, .92);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  animation: fadeUp .8s var(--ease) both;
}
.hero__promo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .8);
  animation: pulseDot 1.8s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, .8); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.hero__eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: .9;
  animation: fadeUp .9s .05s var(--ease) both;
}
.hero__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 96px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.01em;
  animation: fadeUp 1s .15s var(--ease) both;
}
.hero__subtitle {
  margin: 0 0 36px;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.5;
  max-width: 600px;
  opacity: .95;
  animation: fadeUp 1s .3s var(--ease) both;
}
.hero__subtitle strong { color: #fff; font-weight: 600; }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 1s .45s var(--ease) both;
}

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

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, .85);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero__scroll span {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .9));
}
@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); opacity: .7; }
  50%      { transform: translate(-50%, 8px); opacity: 1; }
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
  padding: 96px 0;
}
.section--alt {
  background: var(--c-bg-alt);
}
.section--promo {
  background:
    linear-gradient(180deg, #fff 0%, var(--c-sand) 60%, #fff 100%);
  position: relative;
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-terra);
}
.section__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-text);
}
.section__lead {
  margin: 0;
  font-size: 17px;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* ============================================================
   FEATURES
   ============================================================ */

.features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
@media (min-width: 640px) {
  .features { gap: 22px; }
}

.feature {
  flex: 1 1 240px;
  max-width: 340px;
  background: #fff;
  padding: 26px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 136, 168, .35);
}
.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30, 136, 168, .12), rgba(217, 119, 87, .12));
  color: var(--c-sea);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature__icon svg {
  width: 22px;
  height: 22px;
}
.feature h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--c-text);
}
.feature p {
  margin: 0;
  font-size: 14.5px;
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* ============================================================
   PROMO CARDS
   ============================================================ */

.promo {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 820px) {
  .promo { grid-template-columns: repeat(3, 1fr); }
}

.promo__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}
.promo__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--c-sea);
  opacity: .85;
}
.promo__card--accent::before {
  background: var(--c-terra);
}
.promo__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.promo__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-sea-dark);
  background: rgba(30, 136, 168, .1);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.promo__card--accent .promo__badge {
  color: var(--c-terra-dark);
  background: rgba(217, 119, 87, .14);
}

.promo__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(30, 136, 168, .12), rgba(217, 119, 87, .12));
  color: var(--c-sea);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.promo__card--accent .promo__icon { color: var(--c-terra); }
.promo__icon svg { width: 26px; height: 26px; }

.promo__card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.25;
}
.promo__card p {
  margin: 0;
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ============================================================
   SHOWCASE (editorial gallery)
   ============================================================ */

.showcase {
  margin-top: 56px;
}
.showcase:first-of-type { margin-top: 40px; }

.showcase__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 26px;
}
.showcase__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-terra);
}
.showcase__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text);
}
.showcase__text {
  margin: 0;
  font-size: 15.5px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.showcase__grid {
  display: grid;
  gap: 6px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--c-bg-alt);
}

.showcase__cell {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: var(--c-bg-alt);
  cursor: pointer;
  overflow: hidden;
}
.showcase__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.showcase__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(8, 30, 42, .25), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.showcase__cell:hover img { transform: scale(1.04); }
.showcase__cell:hover::after { opacity: 1; }
.showcase__cell:focus-visible {
  outline: 3px solid var(--c-sea);
  outline-offset: -3px;
}

/* --- Layout: 5 photos (sobe) ---
   mobile: 1 col | tablet: 2 col (big spans both) | desktop: 2fr 1fr 1fr asymmetric */
.showcase__grid--five {
  grid-template-columns: 1fr;
}
.showcase__grid--five .showcase__cell { aspect-ratio: 4 / 3; }

@media (min-width: 640px) {
  .showcase__grid--five {
    grid-template-columns: 1fr 1fr;
  }
  .showcase__grid--five > :nth-child(1) { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}
@media (min-width: 980px) {
  .showcase__grid--five {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
  }
  .showcase__grid--five .showcase__cell { aspect-ratio: auto; }
  .showcase__grid--five > :nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
  .showcase__grid--five > :nth-child(2) { grid-column: 2; grid-row: 1; }
  .showcase__grid--five > :nth-child(3) { grid-column: 3; grid-row: 1; }
  .showcase__grid--five > :nth-child(4) { grid-column: 2; grid-row: 2; }
  .showcase__grid--five > :nth-child(5) { grid-column: 3; grid-row: 2; }
}

/* --- Layout: 2 photos (kuhinja, kupatilo) --- */
.showcase__grid--pair {
  grid-template-columns: 1fr;
}
.showcase__grid--pair .showcase__cell { aspect-ratio: 4 / 3; }

@media (min-width: 700px) {
  .showcase__grid--pair {
    grid-template-columns: 1fr 1fr;
  }
  .showcase__grid--pair .showcase__cell { aspect-ratio: 5 / 4; }
}

/* --- Layout: 4 photos (terase) — mosaic 1 big + 3 stacked --- */
.showcase__grid--mosaic {
  grid-template-columns: 1fr;
}
.showcase__grid--mosaic .showcase__cell { aspect-ratio: 4 / 3; }

@media (min-width: 700px) {
  .showcase__grid--mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .showcase__grid--mosaic > :nth-child(1) { grid-column: 1 / -1; aspect-ratio: 16 / 7; }
}
@media (min-width: 980px) {
  .showcase__grid--mosaic {
    grid-template-columns: 1.8fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .showcase__grid--mosaic .showcase__cell { aspect-ratio: auto; }
  .showcase__grid--mosaic > :nth-child(1) { grid-column: 1; grid-row: 1 / 4; }
  .showcase__grid--mosaic > :nth-child(2) { grid-column: 2; grid-row: 1; }
  .showcase__grid--mosaic > :nth-child(3) { grid-column: 2; grid-row: 2; }
  .showcase__grid--mosaic > :nth-child(4) { grid-column: 2; grid-row: 3; }
}

/* --- Layout: 1 photo (rostilj) --- */
.showcase__grid--single {
  grid-template-columns: 1fr;
}
.showcase__grid--single .showcase__cell { aspect-ratio: 16 / 9; }
@media (min-width: 980px) {
  .showcase__grid--single .showcase__cell { aspect-ratio: 21 / 9; }
}

/* ============================================================
   CTA BANNER (između showcase blokova)
   ============================================================ */

.cta-banner {
  margin: 56px 0;
  padding: 32px 36px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, .15), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, .1), transparent 50%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }

.cta-banner--blue {
  background: linear-gradient(135deg, var(--c-sea) 0%, var(--c-sea-darker) 100%);
  color: #fff;
}
.cta-banner--terra {
  background: linear-gradient(135deg, var(--c-terra) 0%, var(--c-terra-dark) 100%);
  color: #fff;
}

.cta-banner__text { flex: 1 1 280px; }
.cta-banner__eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .9;
}
.cta-banner__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cta-banner { padding: 26px 22px; margin: 40px 0; }
  .cta-banner__actions { width: 100%; }
  .cta-banner__actions .btn { flex: 1 1 auto; }
}

/* button varijante za CTA banner (na obojanoj pozadini) */
.btn--white {
  background: #fff;
  color: var(--c-sea-darker);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}
.cta-banner--terra .btn--white { color: var(--c-terra-dark); }
.btn--white:hover {
  background: var(--c-sand);
  color: var(--c-sea-darker);
  transform: translateY(-2px);
}
.cta-banner--terra .btn--white:hover { color: var(--c-terra-dark); }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .7);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   MAP
   ============================================================ */

.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--c-bg-alt);
}
.map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}
@media (max-width: 600px) {
  .map iframe { height: 360px; }
}

.map__cta {
  margin-top: 28px;
  text-align: center;
}

/* ============================================================
   FORM
   ============================================================ */

.form {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
}
@media (max-width: 540px) {
  .form { padding: 24px 20px; }
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (min-width: 640px) {
  .form__row { grid-template-columns: 1fr 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
}
.field .req { color: var(--c-terra); }

.field input,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--c-text);
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-sea);
  box-shadow: 0 0 0 4px rgba(30, 136, 168, .14);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(217, 119, 87, .65);
}

.form button[type="submit"] {
  margin-top: 12px;
}

.form__note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--c-text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--c-sea-darker);
  color: #d8e6ec;
  padding: 60px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

.footer__brand .footer__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.footer__brand .footer__tag {
  margin: 4px 0 0;
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .7;
}

.footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.footer__contact svg { color: #9ec5d2; flex-shrink: 0; }
.footer__contact a {
  color: #fff;
}
.footer__contact a:hover { color: #9ec5d2; }

.footer__copy {
  margin: 28px 0 0;
  font-size: 13px;
  text-align: center;
  opacity: .7;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */

.fab-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .45);
  z-index: 9999;
  transition: transform .25s var(--ease), background .2s var(--ease), box-shadow .25s var(--ease);
}
.fab-whatsapp:hover {
  background: var(--whatsapp-dark);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(37, 211, 102, .55);
}
.fab-whatsapp svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
}
.fab-whatsapp__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: .55;
  animation: wpPulse 2s ease-out infinite;
}
@keyframes wpPulse {
  0%   { transform: scale(1);   opacity: .55; }
  80%  { transform: scale(1.7); opacity: 0;   }
  100% { transform: scale(1.7); opacity: 0;   }
}
.fab-whatsapp__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #1b2a33;
  color: #fff;
  font-size: 13px;
  padding: 7px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}
.fab-whatsapp__tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1b2a33;
}
.fab-whatsapp:hover .fab-whatsapp__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 540px) {
  .fab-whatsapp { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .fab-whatsapp svg { width: 28px; height: 28px; }
  .fab-whatsapp__tooltip { display: none; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 14, 18, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }

.lightbox__figure {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lightbox__img {
  max-width: min(1200px, 92vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  object-fit: contain;
}
.lightbox__caption {
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease), transform .2s var(--ease);
  line-height: 1;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, .2);
  transform: scale(1.06);
}
.lightbox__close {
  top: 20px;
  right: 20px;
  font-size: 32px;
}
.lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.06); }

@media (max-width: 600px) {
  .lightbox__nav { width: 42px; height: 42px; font-size: 24px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__close { top: 12px; right: 12px; }
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

/* ============================================================
   SWIPE HINT (vidljivo samo na mobile-u)
   ============================================================ */

.showcase__swipe {
  display: none;
}
.showcase__swipe-arrow {
  display: inline-block;
  color: var(--c-sea);
  font-weight: 700;
  font-size: 16px;
  animation: swipeNudge 1.8s ease-in-out infinite;
}
.showcase__swipe-arrow:first-child { animation-delay: 0s; }
.showcase__swipe-arrow:last-child { animation-delay: .3s; }
@keyframes swipeNudge {
  0%, 100% { transform: translateX(0); opacity: .6; }
  50%      { transform: translateX(-3px); opacity: 1; }
}
.showcase__swipe-arrow:last-child {
  animation-name: swipeNudgeRight;
}
@keyframes swipeNudgeRight {
  0%, 100% { transform: translateX(0); opacity: .6; }
  50%      { transform: translateX(3px); opacity: 1; }
}

/* ============================================================
   UTILS: show/hide po viewportu
   ============================================================ */

.hide-mobile { display: inline-flex; }
.show-mobile { display: none; }

/* ============================================================
   MOBILE OVERRIDES (≤640px)
   ============================================================ */

@media (max-width: 640px) {

  /* utils */
  .hide-mobile { display: none !important; }
  .show-mobile { display: inline-flex !important; }

  /* sekcije: manje vertikalnog prostora */
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 36px; }

  /* hero: kompaktnije, manje teksta */
  .hero__content {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .hero__promo {
    font-size: 11.5px;
    padding: 6px 14px 6px 12px;
    margin-bottom: 14px;
  }
  .hero__promo-text--full { display: none; }
  .hero__promo-text--short { display: inline; }
  .hero__eyebrow {
    font-size: 10.5px;
    letter-spacing: .3em;
    margin-bottom: 12px;
  }
  .hero__title {
    font-size: clamp(40px, 12vw, 56px);
    margin-bottom: 14px;
  }
  .hero__subtitle {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 26px;
  }
  .hero__cta { gap: 10px; }
  .hero__cta .btn {
    padding: 12px 20px;
    font-size: 15px;
  }
  .hero__scroll { bottom: 18px; }
  .hero__scroll span { height: 28px; }

  /* features: 2 kolone, kompaktne kartice s manjim ikonama */
  .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-content: stretch;
  }
  .feature {
    padding: 14px 12px;
    flex: none;
    max-width: 100%;
    border-radius: 12px;
  }
  .feature__icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    margin-bottom: 8px;
  }
  .feature__icon svg { width: 17px; height: 17px; }
  .feature h3 {
    font-size: 14px;
    margin-bottom: 3px;
    line-height: 1.25;
  }
  .feature p {
    font-size: 12.5px;
    line-height: 1.35;
  }

  /* promo kartice */
  .promo__card {
    padding: 28px 22px 24px;
  }
  .promo__icon { width: 44px; height: 44px; margin-bottom: 14px; }
  .promo__icon svg { width: 22px; height: 22px; }
  .promo__card h3 { font-size: 19px; }

  /* section CTA strip: jedan glavni CTA */
  .section__cta { margin-top: 32px; }

  /* footer */
  .footer { padding: 44px 0 24px; }
  .footer__brand .footer__name { font-size: 24px; }
}

/* ============================================================
   MOBILE: HORIZONTAL SWIPE GALLERY (≤700px)
   ============================================================ */

@media (max-width: 700px) {

  /* hint vidljiv */
  .showcase__swipe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 0 0;
    font-size: 11.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--c-text-muted);
  }

  /* prebaci sve multi-image gridove u horizontalni scroll */
  .showcase__grid--five,
  .showcase__grid--pair,
  .showcase__grid--mosaic {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 20px;
    padding: 4px 20px 12px;
    margin: 0 -20px;
    border-radius: 0;
    box-shadow: none;
    background: transparent;

    /* skriva default scrollbar; styled custom */
    scrollbar-width: thin;
    scrollbar-color: rgba(30, 136, 168, .35) transparent;
  }
  .showcase__grid--five::-webkit-scrollbar,
  .showcase__grid--pair::-webkit-scrollbar,
  .showcase__grid--mosaic::-webkit-scrollbar {
    height: 4px;
  }
  .showcase__grid--five::-webkit-scrollbar-thumb,
  .showcase__grid--pair::-webkit-scrollbar-thumb,
  .showcase__grid--mosaic::-webkit-scrollbar-thumb {
    background: rgba(30, 136, 168, .4);
    border-radius: 2px;
  }

  /* svaka slika: peek susjedne (~88% širine), rounded, soft shadow */
  .showcase__grid--five .showcase__cell,
  .showcase__grid--pair .showcase__cell,
  .showcase__grid--mosaic .showcase__cell {
    flex: 0 0 88%;
    max-width: 88%;
    aspect-ratio: 4 / 3 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    scroll-snap-align: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    background: var(--c-bg-alt);
  }

  /* roštilj (samo 1 slika) ostaje kako jest, bez swipe-a */
  .showcase__grid--single {
    margin: 0;
    border-radius: var(--radius-md);
  }
  .showcase__grid--single .showcase__cell {
    aspect-ratio: 16 / 9;
  }

  /* showcase head tighter */
  .showcase { margin-top: 40px; }
  .showcase__head { margin-bottom: 18px; }
  .showcase__title { font-size: 22px; }
  .showcase__text { font-size: 14.5px; }

  /* CTA banners: manji */
  .cta-banner { margin: 32px 0; padding: 24px 22px; }
  .cta-banner__title { font-size: 20px; }
}
