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

:root {
  --color-cream: #f2ede8;
  --color-cream-light: #f7f3ef;
  --color-dark: #1a1610;
  --color-dark-warm: #2a2218;
  --color-gold: #b8975a;
  --color-gold-light: #c9a96b;
  --color-text: #3a3228;
  --color-text-light: #6b5e50;
  --color-white: #ffffff;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Manrope', 'Helvetica Neue', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  overflow-x: hidden;
}

/* =========================================
   PAGE LOADER
   ========================================= */

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: scale(0.95);
  animation: loaderReveal 0.8s var(--ease-out) 0.2s forwards;
}

.loader__name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--color-white);
}

.loader__divider {
  width: 50px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0;
  animation: loaderLine 0.6s var(--ease-out) 0.6s forwards;
}

.loader__tagline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--color-white);
  opacity: 0;
  animation: fadeIn 0.5s var(--ease-out) 0.8s forwards;
}

@keyframes loaderReveal {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes loaderLine {
  from { opacity: 0; width: 0; }
  to { opacity: 0.6; width: 50px; }
}

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

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

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

/* =========================================
   NAVIGATION
   ========================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.nav--scrolled {
  background: rgba(26, 22, 16, 0.95);
  backdrop-filter: blur(12px);
  padding: 18px 48px;
}

.nav__menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}

.nav__menu span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav__menu.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__menu.active span:nth-child(2) {
  opacity: 0;
}

.nav__menu.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 110;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--color-white);
}

.nav__logo-divider {
  width: 50px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.6;
}

.nav__logo-tagline {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--color-white);
  opacity: 0.8;
}

.nav__cta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 14px 28px;
  transition: all 0.3s var(--ease-out);
  z-index: 110;
}

.nav__cta:hover {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}

/* =========================================
   MOBILE MENU
   ========================================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.3s;
}

.mobile-menu.active .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu__link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu__link:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-menu__link:nth-child(7) { transition-delay: 0.4s; }

.mobile-menu__link:hover {
  color: var(--color-gold);
}

.mobile-menu__link--cta {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.15em;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 16px 36px;
}

/* =========================================
   SECTION LABEL (reusable)
   ========================================= */

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: 8px;
}

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0c0a06;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 8, 5, 0.7) 0%,
    rgba(10, 8, 5, 0.4) 45%,
    rgba(10, 8, 5, 0.1) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 700px;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}

.hero__divider {
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin: 28px 0;
  opacity: 0;
  animation: fadeIn 0.6s var(--ease-out) 0.9s forwards;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

/* =========================================
   BRANDS
   ========================================= */

.brands {
  background: var(--color-cream-light);
  padding: 120px 48px 100px;
}

.brands__header {
  text-align: center;
  margin-bottom: 64px;
}

.brands__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.brands__divider {
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto 24px;
}

.brands__desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.7;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.brands__item {
  text-align: center;
}

.brands__img-wrap {
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 28px;
  aspect-ratio: 3/3.5;
}

.brands__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.brands__item:hover .brands__img-wrap img {
  transform: scale(1.04);
}

.brands__name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-text);
  position: relative;
  padding-top: 16px;
}

.brands__name::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1.5px;
  background: var(--color-gold);
  opacity: 0.5;
}

/* =========================================
   ABOUT US
   ========================================= */

.about {
  background: var(--color-cream);
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.about__text {
  padding: 100px 80px 100px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__label-divider {
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin: 20px 0 32px;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--color-dark);
  margin-bottom: 32px;
}

.about__desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 420px;
}

.about__stats {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(58, 50, 40, 0.15);
}

.about__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.about__stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  line-height: 1.6;
}

.about__stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(58, 50, 40, 0.2);
  align-self: center;
}

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

.about__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================
   AREAS WE SERVE
   ========================================= */

.areas {
  background: var(--color-cream-light);
}

.areas__content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 90vh;
}

.areas__text {
  padding: 100px 60px 100px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.areas__label-divider {
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin: 20px 0 32px;
}

.areas__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 28px;
}

.areas__desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 8px;
  max-width: 400px;
}

.areas__desc--italic {
  font-style: italic;
  margin-bottom: 40px;
}

.areas__locations {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.areas__location {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(58, 50, 40, 0.1);
}

.areas__location:last-child {
  border-bottom: none;
}

.areas__location-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(184, 151, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

.areas__location-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.areas__location-cities {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.6;
}

.areas__tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  line-height: 1.6;
}

.areas__map {
  display: flex;
  align-items: center;
  padding: 80px 24px 60px 0;
}

.map__container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.map__container img {
  width: 100%;
  display: block;
}

.map__pin {
  position: absolute;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
}

.map__pin::before {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--color-white);
  border-radius: 50%;
  z-index: 2;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.map__pin::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.3s, transform 0.3s;
}

.map__pin:hover::before {
  transform: scale(1.4);
  box-shadow: 0 0 16px rgba(184, 151, 90, 0.7), 0 0 32px rgba(184, 151, 90, 0.3);
  background: var(--color-gold);
}

.map__pin:hover::after {
  opacity: 1;
  animation: pinPulse 1.2s var(--ease-out) infinite;
}

.map__pin[data-city]::marker { display: none; }

.map__pin .map__tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--color-white);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s var(--ease-out), visibility 0.25s;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.map__pin .map__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--color-white);
}

.map__pin:hover .map__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@keyframes pinPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3.5); opacity: 0; }
}

/* =========================================
   HOW WE WORK
   ========================================= */

.howwework {
  background: var(--color-cream);
}

.howwework__content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 75vh;
}

.howwework__text {
  padding: 100px 60px 100px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.howwework__label-divider {
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin: 20px 0 32px;
}

.howwework__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--color-dark);
  margin-bottom: 28px;
}

.howwework__desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 380px;
}

.howwework__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-dark);
  border: 1.5px solid var(--color-dark);
  padding: 18px 32px;
  transition: all 0.3s var(--ease-out);
  align-self: flex-start;
}

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

.howwework__cta svg {
  transition: transform 0.3s var(--ease-out);
}

.howwework__cta:hover svg {
  transform: translateX(4px);
}

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

.howwework__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.features {
  background: var(--color-cream);
  padding: 48px;
  border-top: 1px solid rgba(58, 50, 40, 0.1);
}

.features__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.features__item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.features__icon {
  flex-shrink: 0;
  color: var(--color-text-light);
  opacity: 0.6;
}

.features__text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.6;
  max-width: 280px;
}

.features__divider {
  width: 1px;
  height: 48px;
  background: rgba(58, 50, 40, 0.15);
}

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

.footer {
  background: var(--color-cream);
  padding: 32px 48px;
  border-top: 1px solid rgba(58, 50, 40, 0.1);
}

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

.footer__brand {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-text);
}

.footer__locations {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
}

.footer__dot {
  opacity: 0.4;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer__links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text);
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--color-gold);
}

/* =========================================
   MODAL
   ========================================= */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 5, 0.5);
  backdrop-filter: blur(4px);
}

.modal__container {
  position: relative;
  background: var(--color-white);
  padding: 56px 48px 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out);
  max-height: 90vh;
  overflow-y: auto;
}

.modal.active .modal__container {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px;
  color: var(--color-text-light);
  transition: color 0.3s;
}

.modal__close:hover {
  color: var(--color-dark);
}

.modal__label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.modal__desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 28px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal__input {
  font-family: var(--font-body);
  font-size: 13px;
  padding: 16px 20px;
  border: 1px solid rgba(58, 50, 40, 0.2);
  outline: none;
  transition: border-color 0.3s;
  color: var(--color-dark);
}

.modal__input::placeholder {
  color: var(--color-text-light);
  opacity: 0.6;
}

.modal__input:focus {
  border-color: var(--color-gold);
}

.modal__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b5e50' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal__submit {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-white);
  background: var(--color-dark);
  padding: 18px;
  margin-top: 4px;
  transition: background 0.3s var(--ease-out);
}

.modal__submit:hover {
  background: var(--color-dark-warm);
}

.modal__privacy {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text-light);
  opacity: 0.6;
  margin-top: 20px;
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

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

@media (max-width: 1024px) {
  .nav {
    padding: 20px 32px;
  }

  .hero__content {
    padding: 0 32px;
  }

  .brands {
    padding: 80px 32px 60px;
  }

  .about__text {
    padding: 60px 40px 60px 32px;
  }

  .areas__text {
    padding: 60px 40px 60px 32px;
  }

  .howwework__text {
    padding: 60px 40px 60px 32px;
  }

  .footer__content {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 16px 24px;
  }

  .nav__cta {
    font-size: 10px;
    padding: 10px 16px;
  }

  .nav__logo-name {
    font-size: 18px;
  }

  .hero__content {
    padding: 0 24px;
  }

  .brands {
    padding: 60px 24px 48px;
  }

  .brands__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 400px;
  }

  .brands__img-wrap {
    aspect-ratio: 4/3;
  }

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

  .about__text {
    padding: 60px 24px;
    order: 2;
  }

  .about__image {
    order: 1;
    max-height: 50vh;
  }

  .about__stats {
    flex-direction: column;
    gap: 24px;
  }

  .about__stat-divider {
    width: 60px;
    height: 1px;
  }

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

  .areas__text {
    padding: 60px 24px;
  }

  .areas__map {
    padding: 24px;
    min-height: 400px;
  }

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

  .howwework__text {
    padding: 60px 24px;
    order: 2;
  }

  .howwework__image {
    order: 1;
    max-height: 50vh;
  }

  .features__grid {
    flex-direction: column;
    gap: 32px;
  }

  .features__divider {
    width: 60px;
    height: 1px;
  }

  .footer {
    padding: 24px;
  }

  .footer__content {
    gap: 12px;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
