/* =============================================================
   Olivio&Co Magyarország — Visual Identity
   Fonts: Barlow Condensed (display) + Barlow (body)
   Colors: Matching olivioandco.com official brand
   ============================================================= */

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

:root {
  /* --- Brand Colors (olivioandco.com palette) --- */
  --navy:        #147bd1;   /* announcement bar, footer, partner section */
  --navy-2:      #1169b8;   /* footer hover bg */
  --blue:        #2B5BA8;   /* section headings, tabs, accents */
  --blue-hover:  #1E4A90;   /* blue hover */
  --blue-light:  #EEF4FB;   /* blue tint backgrounds */
  --coral:       #E85A50;   /* primary CTA */
  --coral-hover: #C94038;   /* coral hover */
  --white:       #FFFFFF;
  --off-white:   #F8F7F3;   /* light section bg */
  --light-gray:  #F2F0EC;   /* cards, borders */
  --text:        #1A1828;   /* primary text */
  --text-mid:    #4A4860;   /* secondary text */
  --text-light:  #8A88A0;   /* muted text */
  --border:      #E0DDD8;   /* dividers, borders */

  /* --- Typography --- */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* --- Spacing --- */
  --section-pad: 96px;
  --nav-h: 68px;
  --max-w: 1240px;

  /* --- Transitions --- */
  --t: 0.22s ease;
  --t-med: 0.36s ease;

  /* --- Shadows --- */
  --shadow-sm: 0 2px 10px rgba(11,31,58,0.08);
  --shadow-md: 0 8px 30px rgba(11,31,58,0.12);
  --shadow-lg: 0 20px 60px rgba(11,31,58,0.16);
  --shadow-card: 0 4px 20px rgba(11,31,58,0.09);
}

/* ─── BASE ──────────────────────────────────────────────────── */

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: clip; /* clip nem hoz létre scroll-containert — iOS Safari fix */
  overscroll-behavior-x: none;
}

html {
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

address {
  font-style: normal;
}

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

/* ─── SCROLL REVEAL ─────────────────────────────────────────── */

/* Base: always hidden until revealed (opacity only for reduced-motion) */
.reveal {
  opacity: 0;
}

.reveal.revealed {
  opacity: 1;
}

/* Directional transforms + stagger — only when motion is ok */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal[data-reveal="up"]    { transform: translateY(40px); }
  .reveal[data-reveal="left"]  { transform: translateX(-50px); }
  .reveal[data-reveal="right"] { transform: translateX(50px); }

  .reveal.revealed { transform: none; }

  /* Stagger delays */
  .reveal[data-delay="0"] { transition-delay: 0s; }
  .reveal[data-delay="1"] { transition-delay: 0.1s; }
  .reveal[data-delay="2"] { transition-delay: 0.2s; }
  .reveal[data-delay="3"] { transition-delay: 0.3s; }
  .reveal[data-delay="4"] { transition-delay: 0.4s; }
  .reveal[data-delay="5"] { transition-delay: 0.5s; }
}

/* ─── BUTTONS ───────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
  transition: background var(--t), border-color var(--t), transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn--coral:hover {
  background: var(--coral-hover);
  border-color: var(--coral-hover);
  transform: translateY(-1px);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--blue:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
}

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

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

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

/* ─── TYPOGRAPHY HELPERS ────────────────────────────────────── */

.section-head {
  margin-bottom: 48px;
}

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

.section-title-blue {
  font-family: var(--font-body);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
}

.section-title-blue::after {
  content: '';
  display: block;
  width: 100%;
  height: 10px;
  margin-top: 8px;
  background-image: url("../hullam.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  margin-top: 6px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

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

.section-eyebrow--gold {
  color: #C8A840;
}

/* ─── ANNOUNCEMENT BAR ──────────────────────────────────────── */

.announce {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 100;
}

.announce p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── NAVIGATION ─────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(11,31,58,0.10);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 0;
  position: relative;
  transition: color var(--t);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width var(--t);
}

.nav__link:hover {
  color: var(--blue);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 24px;
}

.nav__icon-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  opacity: 0.75;
  transition: opacity var(--t), color var(--t);
  padding: 4px;
}

.nav__icon-btn:hover {
  opacity: 1;
  color: var(--blue);
}

.nav__store-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  flex-shrink: 0;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.28s ease;
  transform-origin: center;
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,31,58,0.5);
  z-index: 88;
  opacity: 0;
  transition: opacity var(--t-med);
}

.nav__backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ─── HERO ──────────────────────────────────────────────────── */

.hero {
  position: relative;
  height: calc(100vh - var(--nav-h) - 40px);
  min-height: 560px;
  max-height: 860px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,30,58,0.15) 0%,
    rgba(10,30,58,0.35) 50%,
    rgba(10,30,58,0.60) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.01em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.25);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 16px 40px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--t);
}

.hero__cta:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,90,80,0.4);
}

.hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-top: 18px;
  max-width: 480px;
  line-height: 1.6;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

@keyframes mesh-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ─── SLIDER ─────────────────────────────────────────────────── */

.slider-section {
  width: 100%;
  padding: 0 5%;
  box-sizing: border-box;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider__slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slider__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6%;
  max-width: 520px;
  gap: 20px;
  pointer-events: none;
}

.slider__overlay * {
  pointer-events: auto;
}

.slider__slide:first-child .slider__overlay {
  max-width: 100%;
}

.slider__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}

.slider__text {
  font-size: clamp(13px, 1.4vw, 16px);
  color: var(--white);
  line-height: 1.6;
  max-width: 420px;
}

.slider__btn {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  align-self: flex-start;
  transition: background var(--t-fast), color var(--t-fast);
}

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

.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  font-size: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background var(--t-fast);
  z-index: 10;
}

.slider__arrow:hover {
  background: rgba(255,255,255,0.4);
}

.slider__arrow--prev { left: 20px; }
.slider__arrow--next { right: 20px; }

.slider__dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: background var(--t-fast), transform var(--t-fast);
}

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

@media (max-width: 860px) {
  .slider {
    aspect-ratio: 3 / 2;
  }
  .slider__overlay {
    padding: 0 5%;
    gap: 12px;
    justify-content: flex-end;
    padding-bottom: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  }
  .slider__title {
    font-size: clamp(24px, 6vw, 40px);
  }
  .slider__text {
    font-size: 13px;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .slider-section {
    padding: 0;
  }
  .slider {
    aspect-ratio: 4 / 5;
  }
  .slider__overlay {
    padding: 0 6% 28px;
    gap: 10px;
  }
  .slider__title {
    font-size: clamp(22px, 7vw, 32px);
  }
  .slider__text {
    font-size: 12px;
    line-height: 1.5;
  }
  .slider__btn {
    font-size: 11px;
    padding: 10px 22px;
  }
  .slider__arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

/* ─── BESTSELLERS / KOLLEKCIÓK ──────────────────────────────── */

.bestsellers {
  padding: var(--section-pad) 0;
  background: var(--white);
}

/* Product Tabs */
.products__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--border);
}

.products__tab {
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  touch-action: manipulation; /* iOS Safari: azonnal tap, nem scroll-kísérlet */
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: all var(--t);
}

.products__tab:hover {
  color: var(--blue);
}

.products__tab.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

/* Product Grid */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all var(--t-med);
  cursor: default;
  transform-style: preserve-3d;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

.product-card.hidden {
  display: none;
}

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.04);
}

/* Individual product gradients */
.pc-img--1 { background: linear-gradient(145deg, #FFD4B2 0%, #FFB5A0 45%, #E89070 100%); }
.pc-img--2 { background: linear-gradient(145deg, #BFD8F0 0%, #6AAFD8 45%, #3475B0 100%); }
.pc-img--3 { background: linear-gradient(145deg, #FFE0EE 0%, #F4B8D2 45%, #E08AB5 100%); }
.pc-img--4 { background: linear-gradient(145deg, #E8F5A0 0%, #CCDF50 45%, #A0C030 100%); }
.pc-img--5 { background: linear-gradient(145deg, #1A2A4A 0%, #2A4880 50%, #1E3568 100%); }
.pc-img--6 { background: linear-gradient(145deg, #C8F0E8 0%, #88D8C0 45%, #48B095 100%); }

/* DB-driven dynamic image */
.product-card__img--placeholder {
  background: linear-gradient(135deg, #F5EBDF 0%, #CD9B77 100%);
}

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

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--coral);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.product-card__badge--new {
  background: var(--blue);
}

.product-card__body {
  padding: 18px 20px 22px;
}

.product-card__cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.product-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

.bestsellers__cta {
  text-align: center;
  margin-top: 48px;
}

/* Pagination */
.products__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 8px;
}

.products__page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: none;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  transition: border-color var(--t), color var(--t);
  font-family: inherit;
}

.products__page-btn:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--blue);
}

.products__page-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.products__page-info {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  min-width: 52px;
  text-align: center;
}

/* Pötty lapozó (mobilon) */
.products__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  flex-shrink: 0;
}

.products__dot.active {
  background: var(--blue);
  transform: scale(1.4);
}

@media (max-width: 600px) {
  .products__pagination {
    gap: 10px;
    margin-top: 20px;
  }
}

/* ─── COLLECTIONS FEATURE ────────────────────────────────────── */

.collections-feature {
  width: 100%;
}

.cf__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 480px;
}

.cf__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cf__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

.cf__item:hover .cf__bg {
  transform: scale(1.04);
}

.cf__bg--kids {
  background: linear-gradient(135deg, #F5D0A0 0%, #E8A060 40%, #D07035 70%, #B85520 100%);
}

.cf__bg--sport {
  background: linear-gradient(135deg, #0E2840 0%, #1A4878 40%, #206098 70%, #1A4878 100%);
}

.cf__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 40px 44px;
  background: linear-gradient(to top, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.0) 60%);
  z-index: 2;
}

.cf__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}

.cf__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.cf__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all var(--t);
}

.cf__btn:hover {
  background: var(--coral);
  color: var(--white);
}

/* ─── BRAND WHY ──────────────����───────────────────────────────── */

.brand-why {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f7f3 50%, #e8f0fb 100%);
}

.brand-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.brand-why__item {
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(43, 91, 168, 0.15);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(11, 31, 58, 0.06);
  padding: 40px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.brand-why__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 31, 58, 0.12);
}

.brand-why__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--blue);
}

.brand-why__icon svg {
  width: 100%;
  height: 100%;
}

.brand-why__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.brand-why__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ─── AWARDS ─────────────────────────────────────────────────── */

.awards {
  padding: var(--section-pad) 0;
  background: linear-gradient(
    -45deg,
    #f0f6ff,
    #ffffff,
    #eef4fb,
    #f8f7f3,
    #e8f0fb
  );
  background-size: 400% 400%;
  animation: mesh-shift 12s ease infinite;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.awards__track {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
}

.award-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.award-item__img {
  width: auto;
  height: 90px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(43, 91, 168, 0.12));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.award-item:hover .award-item__img {
  filter: drop-shadow(0 4px 16px rgba(43, 91, 168, 0.25));
  transform: translateY(-3px);
}

.award-item__name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.award-item__year {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--coral);
}

.awards__divider {
  display: none;
}

/* ─── MEDITERRANEAN ──────────────────────────────────────────── */

.mediterranean {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.med__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      #0f6ab8 0%,
      #147bd1 35%,
      #1a88e8 55%,
      #147bd1 75%,
      #0f6ab8 100%
    );
}

.med__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 40% at 50% 60%, rgba(38,104,144,0.5) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(14,40,64,0.4) 0%, rgba(14,40,64,0.2) 50%, rgba(14,40,64,0.7) 100%);
}

.med__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.med__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.med__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.30);
}

/* ─── RESELLERS ──────────────────────────────────────────────── */

.resellers {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.resellers__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.resellers__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.resellers__desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

.resellers__desc a {
  color: var(--blue);
  font-weight: 600;
}

.resellers__desc a:hover {
  text-decoration: underline;
}

.reseller-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  gap: 20px;
  transition: all var(--t-med);
}

.reseller-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-3px);
}

.reseller-card__pin {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.reseller-card__pin svg {
  width: 20px;
  height: 20px;
}

.reseller-card__body {
  flex: 1;
}

.reseller-card__country {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.reseller-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.reseller-card__address {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 14px;
  line-height: 1.5;
}

.reseller-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: color var(--t);
}

.reseller-card__link:hover {
  color: var(--blue-hover);
  text-decoration: underline;
}

/* ─── PARTNER CTA ─────────────────────────────────────────────── */

.partner-cta {
  background: var(--navy);
  padding: var(--section-pad) 0;
}

.partner-cta__inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.partner-cta__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
}

.partner-cta__right {
  flex: 1;
}

.partner-cta__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ─── RESELLER MAP ────────────────────────────────────────────── */

.reseller-map-wrap {
  position: relative;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11, 31, 58, 0.1);
}

#resellerMap {
  width: 100%;
  height: 380px;
}

.map-pin svg {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.map-popup strong {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #0B1F3A;
  display: block;
  margin-bottom: 4px;
}

.map-popup p {
  font-size: 12px;
  color: #555;
  margin: 2px 0;
}

.map-popup a {
  font-size: 12px;
  color: #2B5BA8;
  text-decoration: none;
}

.map-popup a:hover {
  text-decoration: underline;
}

/* ─── CONTACT ─────────────────────────────────────────────────── */

.contact {
  overflow: hidden;
}

.contact__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
}

.contact__panel {
  background: var(--navy);
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.80);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--t);
}

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

.contact__deco {
  position: absolute;
  bottom: -20px;
  right: -24px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  text-transform: uppercase;
}

.contact__deco span {
  color: rgba(255,255,255,0.06);
}

.contact__form-wrap {
  background: var(--off-white);
  padding: 0 0 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.contact-form {
  padding: 40px 40px 0;
}

/* Form Elements */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  position: relative;
  margin-bottom: 20px;
}

.form-field--textarea {
  margin-bottom: 24px;
}

.form-input {
  width: 100%;
  padding: 18px 16px 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}

.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43,91,168,0.12);
}

.form-input.is-invalid {
  border-color: var(--coral);
}

.form-input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(232,90,80,0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  padding-top: 20px;
}

.form-select {
  cursor: pointer;
  padding-right: 44px;
  color: var(--text);
}

.form-label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--text-light);
  pointer-events: none;
  transition: all 0.2s ease;
  line-height: 1;
}

.form-field--textarea .form-label {
  top: 18px;
  transform: none;
}

.form-label--fixed {
  top: 50%;
  transform: translateY(-50%);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: 10px;
  transform: translateY(0);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

.form-field--select .form-label--fixed {
  pointer-events: none;
}

.form-input:focus ~ .form-label--fixed,
.form-select:not([value=""]) ~ .form-label--fixed {
  top: 10px;
  transform: translateY(0);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

.form-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-light);
}

.form-err {
  display: none;
  font-size: 12px;
  color: var(--coral);
  margin-top: 5px;
  font-weight: 500;
}

.form-input.is-invalid ~ .form-err {
  display: block;
}

.form-opt {
  color: var(--text-light);
  font-weight: 400;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #F0FBF0;
  border: 1px solid #B8E0B8;
  border-radius: 4px;
  color: #1E6E1E;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
}

.form-success.visible {
  display: flex;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */

.footer {
  background: var(--navy);
}

.footer__top {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0;
}

.footer__top-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.footer__brand {
  flex-shrink: 0;
  max-width: 200px;
}

.footer__logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  /* Invert for dark background if logo is dark */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  line-height: 1.6;
}

.footer__cols {
  display: flex;
  gap: 60px;
  flex: 1;
}

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

.footer__col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.footer__link {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--t);
}

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

.footer__bottom {
  padding: 24px 0;
}

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

.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.45);
  transition: color var(--t);
  padding: 4px;
}

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

/* ─── RESPONSIVE ─────────────────────────────────────────────── */

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

  .contact__inner {
    grid-template-columns: 360px 1fr;
  }

  .footer__top-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer__cols {
    flex-wrap: wrap;
    gap: 32px;
  }
}

@media (max-width: 860px) {
  :root {
    --section-pad: 64px;
    --nav-h: 60px;
  }

  /* Nav mobile */
  .nav__inner {
    position: relative;
  }

  .nav__toggle {
    display: flex;
    order: -1;
  }

  .nav__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav__actions {
    display: none;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: min(320px, 85vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 32px 32px;
    z-index: 95;
    transform: translateX(-100%);
    transition: transform var(--t-med);
    box-shadow: var(--shadow-lg);
    margin-left: 0;
    overflow-y: auto;
  }

  .nav__menu.open {
    transform: translateX(0);
  }

  .nav__backdrop {
    display: block;
    pointer-events: none;
  }

  .nav__link {
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav__link::after {
    display: none;
  }

  .nav__store-label {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: 480px;
    max-height: 680px;
  }

  .hero__title {
    font-size: clamp(44px, 11vw, 80px);
  }

  .hero__eyebrow {
    font-size: 11px;
  }

  /* Collections feature */
  .cf__grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .cf__item {
    height: 280px;
  }

  /* Brand why */
  .brand-why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .brand-why__item:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  /* Awards */
  .awards {
    padding: 48px 0;
  }

  .awards .container {
    padding-inline: 16px;
  }
  .awards__track {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .award-item {
    min-width: 80px;
  }
  .award-item__img {
    height: 70px;
  }

  /* Mediterranean */
  .mediterranean {
    height: 400px;
  }

  /* Resellers */
  .resellers__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reseller-map-wrap {
    height: 320px;
  }

  #resellerMap {
    height: 320px;
  }

  /* Partner CTA */
  .partner-cta__inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .partner-cta__right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Contact */
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .contact__panel {
    padding: 56px 32px;
    min-height: auto;
  }

  .contact__form-wrap {
    padding: 0 0 48px;
  }

  .contact-form {
    padding: 32px 32px 0;
  }

  /* Footer */
  .footer__top-inner {
    flex-direction: column;
    gap: 36px;
  }

  .footer__brand {
    max-width: 100%;
    text-align: center;
  }

  .footer__logo-img {
    margin: 0 auto 12px;
    display: block;
  }

  .footer__tagline {
    text-align: center;
  }

  .footer__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .footer__col:last-child {
    grid-column: 1 / -1;
  }

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

  .footer__social {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  :root {
    --section-pad: 48px;
  }

  .container {
    padding: 0 16px;
  }

  /* Announce */
  .announce p {
    white-space: normal;
    font-size: 11px;
    line-height: 1.5;
  }

  /* Hero */
  .hero {
    min-height: 420px;
    max-height: 600px;
  }

  .hero__title {
    font-size: clamp(38px, 11vw, 64px);
  }

  .hero__cta {
    padding: 14px 28px;
    font-size: 12px;
  }

  /* Products — pill-style tab gombok, NEM scroll container (iOS tap-safe) */
  .products__tabs {
    flex-wrap: wrap;
    gap: 6px;
    border-bottom: none;
    margin-bottom: 24px;
  }

  .products__tab {
    padding: 6px 14px;
    font-size: 11px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
    margin-bottom: 0;
  }

  .products__tab.active {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    border-bottom-color: var(--blue);
  }

  .products__tab:hover {
    color: inherit;
  }

  .products__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .product-card__body {
    padding: 12px 14px 16px;
  }

  .product-card__name {
    font-size: 15px;
  }

  .product-card__desc {
    display: none;
  }

  /* Slider */
  .slider-section {
    padding: 0;
  }

  .slider {
    aspect-ratio: 4 / 5;
  }

  /* Collections feature */
  .cf__item {
    height: 220px;
  }

  .cf__content {
    padding: 24px 24px;
  }

  .cf__title {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 12px;
  }

  /* Brand why */
  .brand-why__grid {
    grid-template-columns: 1fr;
  }

  .brand-why__item:last-child {
    max-width: 100%;
  }

  .brand-why__item {
    padding: 28px 24px;
  }

  /* Awards */
  .award-item {
    min-width: 90px;
  }

  .award-item__img {
    height: 56px;
  }

  .award-item__name {
    font-size: 10px;
  }

  /* Mediterranean */
  .mediterranean {
    height: 320px;
  }

  .med__title {
    font-size: clamp(30px, 9vw, 52px);
  }

  /* Resellers */
  .reseller-map-wrap {
    height: 260px;
  }

  #resellerMap {
    height: 260px;
  }

  /* Partner CTA */
  .partner-cta__title {
    font-size: clamp(28px, 8vw, 44px);
  }

  /* Contact */
  .contact__panel {
    padding: 40px 16px;
  }

  .contact-form {
    padding: 24px 16px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Gallery header */
  .insta-gallery__header {
    padding: 0 16px;
  }

  /* Footer */
  .footer__top {
    padding: 40px 0;
  }

  .footer__top-inner {
    gap: 28px;
  }
}

/* ─── GRAIN TEXTURE ──────────────────────────────────────────────────────── */

.hero::after,
.mediterranean::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ─── MARQUEE STRIP ──────────────────────────────────────────────────────── */

.marquee-strip {
  background: var(--navy);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
}

.marquee-content {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--coral);
  text-transform: uppercase;
  padding-right: 60px;
  flex-shrink: 0;
  will-change: transform;
  animation: marquee-scroll 28s linear infinite;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-content { animation: none; }
}

/* ─── PRELOADER ──────────────────────────────────────────────────────────── */

#preloader {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

#preloader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader__text {
  font-family: var(--font-display);
  font-size: clamp(24px, 6vw, 56px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.preloader__text em {
  font-style: normal;
  color: var(--coral);
}

@media (prefers-reduced-motion: reduce) {
  #preloader { display: none !important; }
}

/* ─── HERO WORD REVEAL ───────────────────────────────────────────────────── */

.hero__title .word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.hero__title .word {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s ease;
}

.hero__title .word.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero__title .word { transform: none !important; opacity: 1 !important; }
}

/* ─── INSTAGRAM GALLERY ──────────────────────────────────────────────────── */

.insta-gallery {
  position: relative;
  padding: 32px 0 56px;
  background: transparent;
  overflow: hidden;
  touch-action: pan-y;
}

/* Subtle noise texture overlay (disabled – transparent bg) */
.insta-gallery::before {
  display: none;
}

/* Header: Instagram-style profile row */
.insta-gallery__header {
  max-width: var(--max-w);
  margin: 0 auto 40px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.insta-gallery__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(from 45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888, #833ab4, #5851db, #405de6, #f09433);
  flex-shrink: 0;
}

.insta-gallery__avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  overflow: hidden;
}

.insta-gallery__avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.insta-gallery__avatar-fallback {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
}

.insta-gallery__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.insta-gallery__handle {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: #262626;
  letter-spacing: -0.01em;
}

.insta-gallery__tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: #8e8e8e;
  letter-spacing: 0.01em;
}

.insta-gallery__follow-btn {
  margin-left: auto;
  padding: 8px 24px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t), transform 0.2s;
}

.insta-gallery__follow-btn:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
}

/* Marquee container */
.insta-gallery__marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* Edge fade masks */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.insta-gallery__track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
  animation: insta-marquee 120s linear infinite;
}

.insta-gallery__track.is-paused {
  animation-play-state: paused;
}

@keyframes insta-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Individual image tile */
.insta-gallery__tile {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}

.insta-gallery__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Hover overlay with heart + gradient */
.insta-gallery__tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.45) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-gallery__tile:hover .insta-gallery__tile-overlay {
  opacity: 1;
}

.insta-gallery__heart {
  width: 48px;
  height: 48px;
  fill: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.insta-gallery__tile:hover .insta-gallery__heart {
  transform: scale(1);
  opacity: 1;
}

/* Caption on hover */
.insta-gallery__tile-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.insta-gallery__tile:hover .insta-gallery__tile-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Bottom CTA link */
.insta-gallery__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.insta-gallery__cta a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--t), color var(--t);
}

.insta-gallery__cta a:hover {
  border-bottom-color: var(--navy);
}

.insta-gallery__cta svg {
  width: 18px;
  height: 18px;
}

/* ── Mobile: 3D Coverflow Gallery ─────────────────────────────── */
@media (max-width: 768px) {
  .insta-gallery {
    padding: 20px 0 40px;
  }

  .insta-gallery__marquee {
    perspective: 800px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  }

  .insta-gallery__track {
    gap: 12px;
  }

  .insta-gallery__tile {
    width: 240px;
    height: 240px;
    border-radius: 14px;
    box-shadow: none;
    transform: rotateY(-3deg) scale(0.95);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s ease;
  }

  /* Shimmer reflection effect on tiles */
  .insta-gallery__tile::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
      105deg,
      transparent 40%,
      rgba(255,255,255,0.15) 45%,
      rgba(255,255,255,0.25) 50%,
      rgba(255,255,255,0.15) 55%,
      transparent 60%
    );
    pointer-events: none;
    z-index: 2;
    animation: tile-shimmer 4s ease-in-out infinite;
    animation-delay: inherit;
  }

  .insta-gallery__tile:nth-child(odd) {
    transform: rotateY(3deg) scale(0.95);
  }

  .insta-gallery__tile:nth-child(3n) {
    transform: rotateY(-2deg) rotateX(2deg) scale(0.97);
  }

  .insta-gallery__tile-overlay,
  .insta-gallery__heart,
  .insta-gallery__tile-caption {
    display: none !important;
  }

  .insta-gallery__track {
    align-items: center;
  }
}

@keyframes tile-shimmer {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@media (max-width: 480px) {
  .insta-gallery__tile {
    width: 192px;
    height: 192px;
    border-radius: 12px;
  }

  .insta-gallery__track {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .insta-gallery__track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .insta-gallery__tile {
    scroll-snap-align: start;
  }
}

/* ─── FAQ SECTION ────────────────────────────────────────────────────────── */

.faq {
  position: relative;
  background: linear-gradient(165deg, #0e5fa8 0%, #147bd1 40%, #1a8be6 70%, #1170c0 100%);
  padding: calc(var(--section-pad) * 1.3) 0;
  overflow: hidden;
}

/* Subtle radial glow behind content */
.faq::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(20,123,209,0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Floating orbs for depth */
.faq::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,90,80,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.faq .section-eyebrow {
  color: var(--coral);
  letter-spacing: 0.22em;
}

.faq .section-title-blue {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.faq .section-title-blue::after {
  display: none;
}

.faq .section-head {
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.faq__list {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  counter-reset: faq-counter;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.faq__item {
  counter-increment: faq-counter;
  margin-bottom: 0;
  align-self: start;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}

.faq__item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}

.faq__item[open] {
  background: rgba(255,255,255,0.08);
  border-color: rgba(232,90,80,0.25);
  box-shadow: 0 4px 32px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  transition: color var(--t);
}

.faq__question::-webkit-details-marker {
  display: none;
}

/* Numbered counter badge */
.faq__question::before {
  content: counter(faq-counter, decimal-leading-zero);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(232,90,80,0.12);
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  transition: background var(--t-med), color var(--t-med);
}

.faq__item[open] .faq__question::before {
  background: var(--coral);
  color: var(--white);
}

/* Arrow icon right side */
.faq__question::after {
  content: '';
  flex-shrink: 0;
  margin-left: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 2v8M2 6h8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background var(--t-med);
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
  background-color: rgba(232,90,80,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='rgba(232,90,80,0.8)' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 2v8M2 6h8'/%3E%3C/svg%3E");
}

.faq__answer {
  padding: 0 26px 24px 80px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  animation: faqFadeIn 0.35s ease;
}

.faq__answer p {
  margin: 0;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .faq {
    padding: 72px 0;
  }
  .faq__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .faq__item {
    border-radius: 12px;
  }
  .faq__question {
    font-size: 15px;
    padding: 18px 20px;
    gap: 14px;
  }
  .faq__question::before {
    width: 32px;
    height: 32px;
    font-size: 12px;
    border-radius: 8px;
  }
  .faq__answer {
    font-size: 14px;
    padding: 0 20px 20px 66px;
  }
}

/* =============================================================
   ABOUT PAGE
   ============================================================= */

/* ─── ABOUT HERO ─────────────────────────────────────────────── */

.about-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.about-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.7) 0%, rgba(11,31,58,0.1) 60%, transparent 100%);
}
.about-hero__content {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 700px;
}
.about-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}

/* ─── ABOUT SPLIT SECTIONS ───────────────────────────────────── */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.about-split--reverse {
  direction: rtl;
}
.about-split--reverse > * {
  direction: ltr;
}
.about-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.about-split--dark .about-split__body {
  background: rgba(240,246,255,0.9);
}
.about-split__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.about-split__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.about-split__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}
.about-split__text:last-child {
  margin-bottom: 0;
}

/* Sustainability pills */
.sustain-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sustain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.sustain-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10l4 4 8-8' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}

/* ─── ABOUT AWARDS ───────────────────────────────────────────── */

.about-awards {
  padding: var(--section-pad) 0;
  text-align: center;
  background: linear-gradient(-45deg, #e8f0fb, #f0f4ff, #ddeeff, #f8f7f3);
  background-size: 400% 400%;
  animation: mesh-shift 12s ease infinite;
}
.about-awards__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}
.about-awards__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 60px;
}
.about-awards__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
.about-award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 110px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(43,91,168,0.15);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(11,31,58,0.06);
  padding: 28px 20px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.about-award-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11,31,58,0.12);
}
.about-award-item img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.about-award-item__name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
}
.about-award-item__year {
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
}

/* ─── ABOUT CTA ──────────────────────────────────────────────── */

.about-cta {
  background: var(--navy);
  padding: var(--section-pad) 0;
  text-align: center;
}
.about-cta__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.about-cta__btn {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 999px;
  text-decoration: none;
  transition: background var(--t), color var(--t), box-shadow var(--t);
}
.about-cta__btn:hover {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(232,90,80,0.3);
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes mesh-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
}

/* ─── ABOUT RESPONSIVE ───────────────────────────────────────── */

@media (max-width: 860px) {
  .about-split {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .about-split--reverse {
    direction: ltr;
  }
  .about-split__img {
    height: 280px;
  }
  .about-split__body {
    padding: 48px 32px;
  }
  .about-hero__content {
    padding: 40px 24px;
  }
  .about-awards {
    padding: 56px 0;
  }
  .about-awards__title {
    margin-bottom: 40px;
  }
  .about-awards__grid {
    gap: 24px;
    padding: 0 24px;
  }
  .about-award-item {
    min-width: 90px;
    padding: 20px 14px 16px;
  }
  .about-award-item img {
    height: 64px;
  }
  .about-cta {
    padding: 56px 0;
  }
}

@media (max-width: 600px) {
  .about-hero {
    min-height: 360px;
    height: 60vh;
  }
  .about-hero__content {
    padding: 28px 16px;
  }
  .about-split__img {
    height: 220px;
  }
  .about-split__body {
    padding: 36px 16px;
  }
  .about-split__text {
    font-size: 15px;
  }
  .about-awards {
    padding: 40px 0;
  }
  .about-awards__grid {
    gap: 16px;
    padding: 0 16px;
  }
  .about-award-item {
    min-width: 80px;
    padding: 16px 10px 12px;
  }
  .about-award-item img {
    height: 52px;
  }
  .about-award-item__name {
    font-size: 10px;
  }
  .about-cta {
    padding: 40px 0;
  }
  .about-cta__title {
    margin-bottom: 24px;
    font-size: clamp(24px, 7vw, 40px);
  }
  .about-cta__btn {
    padding: 14px 28px;
    font-size: 12px;
  }
}

/* ── Cookie Consent Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-banner__inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cookie-banner__text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  flex: 1;
}
.cookie-banner__link {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__link:hover {
  opacity: 0.8;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.cookie-banner__btn--accept {
  background: var(--coral);
  color: #fff;
  border: 2px solid var(--coral);
}
.cookie-banner__btn--accept:hover {
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}
.cookie-banner__btn--reject {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
}
.cookie-banner__btn--reject:hover {
  background: rgba(255, 107, 107, 0.08);
}

@media (max-width: 680px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner__actions {
    flex-direction: column;
    width: 100%;
  }
  .cookie-banner__btn {
    width: 100%;
  }
}
