/* ============================================================
   ANAMI DECORS — style.css
   Typography System:
     --font-display : Cormorant Garamond  (hero headings, display)
     --font-head    : DM Serif Display    (section headings, quotes)
     --font-body    : DM Sans             (body, UI, forms)
     --font-util    : Jost                (eyebrows, labels, caps, nav)
   ============================================================ */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Colour Palette ── */
  --bg: #f7f4ef;
  --primary: #ede8e1;
  --secondary: #d6c6b2;
  --accent: #b19470;
  --accent-dark: #8a7357;
  --accent-light: #d4c4a8;
  --dark: #1b1b1b;
  --body: #4a4a4a;
  --white: #ffffff;

  /* ── Typography Families ── */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-head: "DM Serif Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-util: "Jost", system-ui, sans-serif;

  /* ── Easing ── */
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Layout ── */
  --nav-h: 80px;
  --section-pad: clamp(80px, 10vw, 140px);
  --container-pad: clamp(20px, 4vw, 80px);

  /* ── Type Scale ── */
  /* Utility / Labels */
  --text-2xs: clamp(9px, 0.65vw, 10px);
  --text-xs: clamp(10px, 0.72vw, 11px);
  --text-sm: clamp(11px, 0.85vw, 13px);
  /* Body */
  --text-base: clamp(14px, 1vw, 16px);
  --text-md: clamp(15px, 1.1vw, 17px);
  --text-lg: clamp(17px, 1.3vw, 20px);
  /* Headings */
  --heading-xs: clamp(20px, 2vw, 26px);
  --heading-sm: clamp(28px, 3vw, 38px);
  --heading-md: clamp(36px, 4.5vw, 56px);
  --heading-lg: clamp(44px, 6vw, 72px);
  --heading-xl: clamp(56px, 7.5vw, 100px);
  --heading-2xl: clamp(72px, 10vw, 130px);
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .about__marquee-track {
    animation: none;
  }
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10001;
  padding: 12px 20px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-util);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: top 0.3s var(--ease-smooth);
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== BODY BASE ===== */
html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  background: var(--bg);
  color: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Optical sizing for DM Sans */
  font-optical-sizing: auto;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
}

/* ===== CURSOR ===== */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    background 0.3s;
}
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s,
    border-color 0.4s;
}
body.cursor-hover .cursor {
  width: 12px;
  height: 12px;
}
body.cursor-hover .cursor-follower {
  width: 48px;
  height: 48px;
}
@media (max-width: 1024px) {
  .cursor,
  .cursor-follower {
    display: none;
  }
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: transparent; /* curtains alone carry the solid color */
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.preloader__curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: var(--dark);
  z-index: 2;
}
.preloader__curtain--left {
  left: 0;
}
.preloader__curtain--right {
  right: 0;
}

.preloader.is-done {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

.preloader__inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.preloader__logo-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin: 0;
}

.preloader__logo-row {
  position: relative;
  display: grid;
  font-family: "Montserrat", "Poppins", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(52px, 9.5vw, 128px);
  letter-spacing: 0.04em;
}

.preloader__logo-row--sub {
  font-size: clamp(38px, 6.5vw, 92px);
}
.preloader__word {
  grid-column: 1;
  grid-row: 1;
}
.preloader__word--solid {
  color: var(--white);
  opacity: 1;
}
.preloader__word--outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
  text-stroke: 1px var(--white);
  opacity: 0;
}
.preloader.is-done .preloader__word--solid {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(247, 244, 239, 0.96);
  opacity: 1;
  transition:
    background 0.38s var(--ease-smooth),
    box-shadow 0.38s var(--ease-smooth),
    opacity 0.6s var(--ease-luxury);
}
/* index.html only — hidden until preloader curtain opens */
body:has(#preloader) .nav {
  opacity: 0;
}
/* Hero pages start transparent */
.nav--hero {
  background: transparent;
}
.nav.scrolled {
  background: rgba(247, 244, 239, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 1px 0 rgba(27, 27, 27, 0.07),
    0 4px 24px rgba(27, 27, 27, 0.06);
}
.nav__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-img {
  width: clamp(90px, 10vw, 140px);
  height: auto;
  display: block;
  object-fit: contain;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin-left: auto;
}

/* Default — dark links (about, gallery, blog, contact pages) */
.nav__link {
  font-family: var(--font-util);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--dark);
  text-shadow: none;
  opacity: 0.65;
  position: relative;
  transition:
    color 0.38s var(--ease-smooth),
    opacity 0.38s var(--ease-smooth),
    text-shadow 0.38s var(--ease-smooth);
}

/* Hero mode — white links (index.html only, before scroll) */
.nav--hero .nav__link {
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
  opacity: 0.88;
}

/* After scroll — always dark regardless of page */
.nav.scrolled .nav__link {
  color: var(--dark);
  text-shadow: none;
  opacity: 0.65;
}

/* Hamburger — default dark */
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition:
    background 0.38s var(--ease-smooth),
    all 0.3s;
}

/* Hamburger — white on hero pages */
.nav--hero .nav__hamburger span {
  background: #ffffff;
}

/* Hamburger — dark after scroll */
.nav.scrolled .nav__hamburger span {
  background: var(--dark);
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease-luxury);
}
.nav__link:hover,
.nav__link.active {
  opacity: 1;
}
.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active {
  opacity: 1;
  color: var(--dark);
}
.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-util);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-luxury);
}
.btn:hover::before {
  transform: translateX(0);
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent-dark);
}

.btn--nav {
  background: var(--dark);
  color: var(--white);
  padding: 11px 22px;
  font-size: 11px;
}
.btn--nav:hover {
  background: var(--accent);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid currentColor;
}
.btn--outline:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

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

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

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
.nav__hamburger.active span:first-child {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav__hamburger.active span:last-child {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu__link {
  /* Signature: large display serif for the mobile menu — editorial, refined */
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  opacity: 0.8;
  transition:
    opacity 0.3s,
    color 0.3s;
}
.mobile-menu__link:hover,
.mobile-menu__link.active {
  opacity: 1;
  color: var(--accent);
}
.mobile-menu__cta {
  margin-top: 20px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  isolation: isolate;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.4;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  will-change: transform;
}
.hero__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.05) saturate(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 15, 0.55) 0%,
    rgba(15, 15, 15, 0.3) 20%,
    rgba(15, 15, 15, 0.1) 45%,
    rgba(15, 15, 15, 0.18) 65%,
    rgba(15, 15, 15, 0.72) 100%
  );
}

/* ── Content block pushed lower for a more editorial feel ── */
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 960px;
  /* More bottom padding → headline sits lower, closer to center-bottom */
  padding: clamp(160px, 16vw, 220px) clamp(24px, 6vw, 120px)
    clamp(80px, 8vw, 110px);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-util);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
}
.hero__eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

/* ── Hero centered brand-only variant ── */
.hero__content--brand {
  position: relative;
  z-index: 4; /* sits above .hero__overlay (z-index: 1) */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  max-width: none;
  text-align: center;
}

.hero__brand-title {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Radial darkening pad behind the text — guarantees contrast no matter
   how light or busy the underlying photo is at the exact center point */
.hero__brand-title::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.28) 45%,
    rgba(0, 0, 0, 0) 75%
  );
  pointer-events: none;
}

.hero__brand-title span {
  display: inline-block;
  font-family: "Montserrat", "Poppins", system-ui, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(52px, 9.5vw, 128px);
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  text-stroke: 1px #ffffff;
  text-shadow: none;
  opacity: 1 !important;
}

.hero__brand-title span.hero__brand-title--sub {
  font-size: clamp(38px, 6.5vw, 92px);
}

/* HERO H1 — Cormorant Garamond */
.hero__headline {
  font-family: var(--font-display);
  font-size: var(--heading-xl);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  margin-bottom: 28px;
}
.hero__headline em {
  font-style: italic;
  color: var(--accent);
}

.hero__subtext {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(20px);
}
.hero__scroll-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-util);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s;
}
.hero__scroll-link:hover {
  color: var(--accent);
}

/* ── Stats (bottom-right) ── */
.hero__stats {
  position: absolute;
  bottom: 40px;
  right: clamp(24px, 6vw, 120px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(18, 18, 18, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  padding: 20px 32px;
}
.hero__stat {
  text-align: center;
}
.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-num sup {
  font-size: 0.55em;
  color: var(--accent);
}
.hero__stat-label {
  font-family: var(--font-util);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
}

/* ── Bottom-left CTA — replaces the Scroll indicator ── */
.hero__bottom-cta {
  position: absolute;
  left: clamp(24px, 6vw, 120px);
  bottom: 40px;
  z-index: 3;
  opacity: 0;
  transform: translateY(16px);
  animation: heroCtaIn 0.9s 1.3s var(--ease-luxury) forwards;
}
@keyframes heroCtaIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero__stats {
    display: none;
  }
  .hero__bottom-cta {
    /* On mobile, anchor it inside the content flow instead */
    position: static;
    margin-top: 28px;
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero__content {
    padding-bottom: clamp(100px, 14vw, 140px);
  }
}

@media (max-width: 480px) {
  .hero__bottom-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== ABOUT ===== */
.about {
  padding: clamp(100px, 12vw, 180px) 0 0;
  overflow: hidden;
}
.about__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}
.about__img-wrapper {
  position: relative;
}
.about__img-frame {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about__img-frame img {
  transition: transform 0.8s var(--ease-luxury);
}
.about__img-frame:hover img {
  transform: scale(1.04);
}
.about__img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--accent);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.about__img-accent span:first-child {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
}
.about__img-accent span:last-child {
  font-family: var(--font-util);
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* Eyebrow pattern — used across multiple sections */
.about__eyebrow,
.portfolio__eyebrow,
.reels-eyebrow,
.services__eyebrow,
.before-after__eyebrow,
.testimonials__eyebrow,
.contact__eyebrow {
  font-family: var(--font-util);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}

/* Section headings — DM Serif Display: modern, strong contrast */
.about__headline {
  font-family: var(--font-head);
  font-size: var(--heading-lg);
  font-weight: 400;
  line-height: 1.08;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.about__headline em {
  font-style: italic;
  color: var(--accent);
}

.about__body p {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.85;
  color: var(--body);
  margin-bottom: 20px;
  font-weight: 300;
}

/* Blockquote — Cormorant Garamond for the literary pull-quote */
.about__quote {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  margin: 36px 0;
}
.about__quote p {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-style: italic;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.55;
  margin-bottom: 14px;
}
.about__quote cite {
  font-family: var(--font-util);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.about__marquee {
  margin-top: clamp(80px, 10vw, 140px);
  overflow: hidden;
  border-top: 1px solid rgba(27, 27, 27, 0.08);
  border-bottom: 1px solid rgba(27, 27, 27, 0.08);
  padding: 18px 0;
}
.about__marquee-track {
  display: flex;
  gap: 48px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.about__marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--dark);
  opacity: 0.4;
}
.about__marquee-track .sep {
  color: var(--accent);
  opacity: 1;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: clamp(100px, 12vw, 180px) 0;
}

.portfolio__header {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 80px);
}

.portfolio__headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.portfolio__headline em {
  font-style: italic;
  color: var(--accent);
}

.portfolio__header-right p {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.85;
  color: var(--body);
  font-weight: 300;
  max-width: 420px;
}

/* ── Filters ── */
.portfolio__filters {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.portfolio__filter {
  font-family: var(--font-util);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  color: var(--body);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.portfolio__filter:hover {
  color: var(--dark);
  border-color: rgba(177, 148, 112, 0.5);
}
.portfolio__filter.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* ── Grid — desktop masonry-style ── */
.portfolio__grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 300px;
  gap: 16px;
}

/* ── Individual items ── */
.portfolio__item {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  /* Prevents mobile stacking issues */
  min-height: 0;
}
.portfolio__item--large {
  grid-column: span 8;
}
.portfolio__item--tall {
  grid-row: span 2;
}

/* ── Image wrapper ── */
.portfolio__item-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.portfolio__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* ── Hover: image zoom ── */
.portfolio__item:hover .portfolio__item-img img {
  transform: scale(1.06);
}

/* ── Hidden state for filter ── */
.portfolio__item.hidden {
  display: none;
}

/* ── CTA ── */
.portfolio__cta {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: clamp(40px, 6vw, 64px);
  padding: clamp(48px, 6vw, 80px) 0 0;
}

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

/* Tablet — 2 column, fixed heights, no masonry */
@media (max-width: 1200px) {
  .portfolio__grid {
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 280px;
  }
  .portfolio__item {
    grid-column: span 4;
  }
  .portfolio__item--large {
    grid-column: span 8;
  }
  .portfolio__item--tall {
    grid-row: span 1;
  } /* flatten tall on tablet */
}

/* Mobile — completely flat, single column, fixed height per card */
@media (max-width: 768px) {
  .portfolio__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Kill the CSS grid entirely on mobile — flex column instead */
  .portfolio__grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 clamp(16px, 4vw, 24px);
  }

  /* Every card same fixed height on mobile — no tall, no large */
  .portfolio__item,
  .portfolio__item--large,
  .portfolio__item--tall {
    grid-column: unset;
    grid-row: unset;
    height: 260px;
    width: 100%;
    border-radius: 4px;
  }

  /* Info always visible on mobile (no hover on touch) */
  .portfolio__item-info {
    transform: translateY(0);
  }

  .portfolio__filters {
    gap: 6px;
    padding: 0 clamp(16px, 4vw, 24px);
  }
  .portfolio__filter {
    padding: 8px 14px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .portfolio__item,
  .portfolio__item--large,
  .portfolio__item--tall {
    height: 220px;
  }
}
/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 32px 0;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.trust-bar__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.trust-bar__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(177, 148, 112, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.trust-bar__text strong {
  display: block;
  font-family: var(--font-util);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 2px;
}
.trust-bar__text span {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== REELS / DESIGN STORIES ===== */
.reels-section {
  padding: var(--section-pad) 0;
  background: var(--primary);
  overflow: hidden;
}
.reels-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto clamp(32px, 4vw, 48px);
  padding: 0 var(--container-pad);
  gap: 24px;
}
.reels-header-text {
  flex: 1;
}
.reels-heading {
  font-family: var(--font-head);
  font-size: var(--heading-md);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
}
.reels-heading em {
  font-style: italic;
  color: var(--accent);
}
.reels-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.reel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--dark);
  background: transparent;
  cursor: pointer;
  transition:
    background 0.2s ease,
    opacity 0.2s ease;
  flex-shrink: 0;
}
.reel-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--dark);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s ease;
}
.reel-btn:hover:not(:disabled) {
  background: var(--dark);
}
.reel-btn:hover:not(:disabled) svg {
  stroke: var(--primary);
}
.reel-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.reels-viewport {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  overflow: hidden;
  --reels-visible: 4;
  --reel-gap: clamp(12px, 1.5vw, 20px);
}
@media (max-width: 1024px) {
  .reels-viewport {
    --reels-visible: 3;
  }
}
@media (max-width: 640px) {
  .reels-viewport {
    --reels-visible: 2;
    --reel-gap: 10px;
    padding: 0 16px;
  }

  .hero__brand-title span,
  .preloader__word {
    -webkit-text-stroke: 0.5px #ffffff;
    text-stroke: 0.5px #ffffff;
    text-shadow: none;
  }

  .hero__brand-title span,
  .preloader__logo-row {
    font-size: clamp(46px, 13vw, 88px);
    letter-spacing: 0.02em;
  }

  .hero__brand-title--sub,
  .preloader__logo-row--sub {
    font-size: clamp(32px, 9vw, 56px);
  }
}

.reels-track {
  display: flex;
  gap: var(--reel-gap);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}
.reel-card {
  flex: 0 0
    calc(
      (
          min(100vw, 1440px) - (var(--container-pad) * 2) -
            (var(--reel-gap) * (var(--reels-visible) - 1))
        ) /
        var(--reels-visible)
    );
  aspect-ratio: 9 / 16;
  border-radius: clamp(12px, 1.5vw, 20px);
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 16px 40px rgba(27, 27, 27, 0.1);
  position: relative;
  cursor: grab;
}
.reel-card:active {
  cursor: grabbing;
}
.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--dark);
  pointer-events: none;
}
.reels-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(20px, 3vw, 32px);
  padding: 0 var(--container-pad);
}
.reels-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dark);
  opacity: 0.2;
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    width 0.25s ease;
  flex-shrink: 0;
}
.reels-dots .dot.active {
  opacity: 1;
  width: 20px;
  border-radius: 3px;
}

/* ===== SERVICES ===== */
.services {
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
  overflow: hidden;
  background: #0e0e0e;
}
.services__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.018);
  letter-spacing: 0.35em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.services__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 1;
}
.services__header {
  margin-bottom: clamp(48px, 7vw, 88px);
}
.services__eyebrow {
  color: var(--accent);
}
.services__headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.services__headline em {
  font-style: italic;
  color: var(--accent);
}

.services__list {
  position: relative;
}
.service-row {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  overflow: hidden;
}
.service-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.service-row__inner {
  display: flex;
  align-items: center;
  height: 80px;
  gap: 0;
  transition: height 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-row__num {
  font-family: var(--font-util);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  width: 56px;
  flex-shrink: 0;
}
.service-row__name {
  /* Service names in DM Serif Display: authoritative, clean */
  font-family: var(--font-head);
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: 400;
  color: #ffffff;
  flex: 1;
  letter-spacing: -0.01em;
  transition:
    color 0.35s ease,
    transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.service-row__tags {
  font-family: var(--font-util);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.9;
  width: 150px;
  flex-shrink: 0;
  text-align: right;
  opacity: 0;
  transform: translateX(-12px);
  transition:
    opacity 0.4s 0.1s ease,
    transform 0.4s 0.1s ease;
  padding-right: 24px;
}
.service-row__desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  width: 300px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-12px);
  transition:
    opacity 0.4s 0.15s ease,
    transform 0.4s 0.15s ease;
  padding-right: 28px;
}
.service-row__img-wrap {
  width: 0;
  overflow: hidden;
  flex-shrink: 0;
  transition: width 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  align-self: stretch;
}
.service-row__img-wrap img {
  width: 220px;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-row.is-active .service-row__inner {
  height: 160px;
}
.service-row.is-active .service-row__name {
  color: var(--accent);
  transform: translateY(-2px);
}
.service-row.is-active .service-row__tags {
  opacity: 1;
  transform: translateX(0);
}
.service-row.is-active .service-row__desc {
  opacity: 1;
  transform: translateX(0);
}
.service-row.is-active .service-row__img-wrap {
  width: 220px;
}
.service-row.is-active .service-row__img-wrap img {
  transform: scale(1.06);
}
.service-row.is-stacked .service-row__inner {
  height: 52px;
}
.service-row.is-stacked .service-row__name {
  color: rgba(255, 255, 255, 0.25);
}
.service-row.is-stacked .service-row__num {
  opacity: 0.35;
}

/* ===== BEFORE & AFTER ===== */
.before-after {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--bg);
}
.before-after__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}
.before-after__header {
  margin-bottom: 48px;
  max-width: 600px;
}
.before-after__headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.before-after__headline em {
  font-style: italic;
  color: var(--accent);
}
.before-after__header p {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.75;
  color: var(--body);
  font-weight: 300;
}
.ba-slider {
  position: relative;
  user-select: none;
  height: clamp(400px, 50vw, 700px);
  overflow: hidden;
  cursor: ew-resize;
  border: 1px solid rgba(27, 27, 27, 0.08);
}
.ba-slider__before,
.ba-slider__after {
  position: absolute;
  inset: 0;
}
.ba-slider__after {
  clip-path: inset(0 50% 0 0);
}
.ba-label {
  position: absolute;
  font-family: var(--font-util);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(27, 27, 27, 0.65);
  color: var(--white);
  padding: 8px 16px;
}
.ba-label--before {
  bottom: 20px;
  left: 20px;
}
.ba-label--after {
  bottom: 20px;
  right: 20px;
}
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
.ba-slider__handle-line {
  width: 2px;
  height: 100%;
  background: var(--white);
}
.ba-slider__handle-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
  color: var(--dark);
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--primary);
}
.testimonials__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}
.testimonials__header {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.testimonials__headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.testimonials__headline em {
  font-style: italic;
  color: var(--accent);
}
.testimonials__swiper {
  overflow: hidden;
}
.testimonial {
  padding: clamp(28px, 3vw, 48px);
  background: var(--white);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}
.testimonial__quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: var(--accent);
  line-height: 0.7;
  margin-bottom: 20px;
}
/* Testimonial body text — DM Serif Display italic for a refined magazine feel */
.testimonial__text {
  font-family: var(--font-head);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 32px;
  border: none;
  padding: 0;
  margin-left: 0;
  flex: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.testimonial__name {
  display: block;
  font-family: var(--font-util);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.testimonial__role {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.testimonial__stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}
.testimonials__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}
.testimonials__nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(27, 27, 27, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s;
  flex-shrink: 0;
}
.testimonials__nav-btn:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.testimonials__pagination {
  display: flex;
  gap: 8px;
  align-items: center;
}
.swiper-pagination-bullet {
  width: 24px !important;
  height: 2px !important;
  border-radius: 0 !important;
  background: rgba(27, 27, 27, 0.18) !important;
  opacity: 1 !important;
  margin: 0 !important;
  transition:
    background 0.3s,
    width 0.3s !important;
}
.swiper-pagination-bullet-active {
  background: var(--accent) !important;
  width: 48px !important;
}

/* ===== CONTACT ===== */
.contact {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--bg);
}
.contact__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}
.contact__left {
  display: flex;
  flex-direction: column;
}
.contact__headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}
.contact__headline em {
  font-style: italic;
  color: var(--accent);
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.contact__info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact__info-label {
  font-family: var(--font-util);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact__info-value {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
}
a.contact__info-value {
  transition: color 0.3s;
}
a.contact__info-value:hover {
  color: var(--accent);
}

.contact__right {
  padding-top: 4px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact__form-group {
  position: relative;
  padding-bottom: 18px;
}
.contact__form-group input,
.contact__form-group textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(27, 27, 27, 0.18);
  padding: 18px 0 12px;
  outline: none;
  transition: border-color 0.3s;
}
.contact__form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact__form-group label {
  position: absolute;
  top: 18px;
  left: 0;
  font-family: var(--font-util);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(74, 74, 74, 0.45);
  pointer-events: none;
  transition: all 0.3s;
}
.contact__form-group input:focus,
.contact__form-group textarea:focus {
  border-bottom-color: var(--accent);
}
.contact__form-group input:focus + label,
.contact__form-group input:not(:placeholder-shown) + label,
.contact__form-group textarea:focus + label,
.contact__form-group textarea:not(:placeholder-shown) + label {
  top: 2px;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.contact__form-group input::placeholder,
.contact__form-group textarea::placeholder {
  color: transparent;
}

.contact__form-error {
  position: absolute;
  bottom: 2px;
  left: 0;
  font-family: var(--font-body);
  font-size: 11px;
  color: #c44;
  min-height: 14px;
  line-height: 1.2;
}
.contact__form-group input[aria-invalid="true"],
.contact__form-group textarea[aria-invalid="true"] {
  border-bottom-color: #c44;
}
.form-status {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--accent-dark);
  min-height: 20px;
}
.contact__map {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border: 1px solid rgba(27, 27, 27, 0.1);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  overflow: hidden;
  position: relative;
}

.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
  position: relative;
  z-index: 1;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding: clamp(60px, 8vw, 100px) 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- Brand --- */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}

.footer__logo span:last-child {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
}

.footer__brand-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.32);
  max-width: 270px;
  margin-bottom: 28px;
}

/* --- Social Icons --- */
.footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  text-decoration: none;
}

.footer__social-link:hover {
  border-color: transparent;
}

/* Per-platform brand colors on hover */
.footer__social-link--instagram:hover {
  color: #fff;
  background: radial-gradient(
    circle at 30% 110%,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.footer__social-link--facebook:hover {
  color: #fff;
  background: #1877f2;
  border-color: #1877f2;
}

.footer__social-link--youtube:hover {
  color: #fff;
  background: #ff0000;
  border-color: #ff0000;
}

.footer__social-link--whatsapp:hover {
  color: #fff;
  background: #25d366;
  border-color: #25d366;
}

/* --- Nav Columns --- */
.footer__col-title {
  display: block;
  font-family: var(--font-util);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

.footer__links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 0;
  margin: 0;
}

.footer__links-col a {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.25s ease;
  display: inline-block;
  position: relative;
}

.footer__links-col a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

.footer__links-col a:hover::after {
  width: 100%;
}

/* --- Bottom Bar --- */
.footer__bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-util);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.18);
  flex-wrap: wrap;
  gap: 8px;
}

.footer__founder {
  color: rgba(255, 255, 255, 0.32);
}

/* --- Large BG Text --- */
.footer__big-text {
  position: absolute;
  bottom: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw, 240px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.018);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.15em;
  line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
  }

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

  .footer__brand-desc {
    max-width: 460px;
  }
}

@media (max-width: 600px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

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

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 400px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.3s var(--ease-luxury),
    box-shadow 0.3s;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}
.whatsapp-fab span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== BLOG / ARTICLE (carried over) ===== */
.page-hero {
  padding: calc(var(--nav-h) + clamp(48px, 8vw, 80px)) var(--container-pad)
    clamp(48px, 6vw, 72px);
  background: var(--dark);
  color: var(--white);
}
.page-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}
.page-hero__eyebrow {
  color: var(--accent);
  margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: var(--heading-lg);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 16px;
}
.page-hero__title em {
  font-style: italic;
  color: var(--accent);
}
.page-hero__desc {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.blog {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.blog__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.blog-card {
  background: var(--white);
  border: 1px solid rgba(27, 27, 27, 0.07);
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.35s var(--ease-luxury);
}
.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.blog-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card__body {
  padding: clamp(20px, 2.5vw, 28px);
}
.blog-card__cat {
  font-family: var(--font-util);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.blog-card__title {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 12px;
}
.blog-card__excerpt {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.78;
  color: var(--body);
  font-weight: 300;
  margin-bottom: 16px;
}
.blog-card__meta {
  font-family: var(--font-util);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  color: rgba(74, 74, 74, 0.55);
}
.blog-card__link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-util);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent);
}

.article {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.article__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.article__meta {
  font-family: var(--font-util);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.article__title {
  font-family: var(--font-head);
  font-size: var(--heading-md);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 28px;
}
.article__content p {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.9;
  color: var(--body);
  font-weight: 300;
  margin-bottom: 22px;
}
.article__content h2 {
  font-family: var(--font-head);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--dark);
  margin: 36px 0 14px;
}
.article__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-util);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 32px;
}
.nav--static {
  background: rgba(247, 244, 239, 0.98);
  box-shadow: 0 1px 0 rgba(27, 27, 27, 0.07);
}

/* ===== REVEAL UTILITIES ===== */
.reveal-text {
  opacity: 0;
  transform: translateY(20px);
}
.split-title .word {
  overflow: hidden;
  display: inline-block;
  margin-right: 0.25em;
}
.split-title .char {
  display: inline-block;
}

/* ===== PROCESS (carried over, updated fonts) ===== */
.process {
  padding: clamp(100px, 12vw, 180px) 0;
  background: #1a1a18;
}
.process__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}
.process__header {
  max-width: 640px;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.process__eyebrow {
  color: var(--accent);
  margin-bottom: 16px;
}
.process__headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  color: #f0ece4;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.process__headline em {
  font-style: italic;
  color: var(--accent);
}
.process__header p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: #888880;
  font-weight: 300;
}
.process__timeline {
  position: relative;
}
.process__timeline-line {
  position: absolute;
  top: 27px;
  left: 0;
  right: 0;
  height: 1px;
  background: #2e2e2c;
  z-index: 0;
}
.process__timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.process__timeline-line {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
  margin-top: 27px;
}
.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
  position: relative;
  z-index: 2;
}
.process__step:nth-child(even) {
  flex-direction: column-reverse;
}
.process__dot-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2a2a28;
  border: 2px solid #3e3e3a;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}
.process__step:hover .process__dot {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.35);
}
.process__step-num {
  font-family: var(--font-util);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #3e3e3a;
  margin-bottom: 10px;
  text-align: center;
  transition: color 0.3s ease;
}
.process__step:nth-child(even) .process__step-num {
  margin-bottom: 0;
  margin-top: 10px;
}
.process__step:hover .process__step-num {
  color: var(--accent);
}
.process__step-card {
  background: #222220;
  border: 0.5px solid #2e2e2c;
  border-radius: 10px;
  padding: 16px 14px;
  width: 100%;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}
.process__step:hover .process__step-card {
  border-color: rgba(176, 148, 104, 0.32);
  background: #262620;
}
.process__step-card h3 {
  font-family: var(--font-util);
  font-size: 13px;
  font-weight: 600;
  color: #d8d4cc;
  margin-bottom: 8px;
  line-height: 1.2;
}
.process__step-card p {
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.75;
  color: #666662;
  font-weight: 300;
}

/* ===== WHY CHOOSE US ===== */
.why {
  padding: clamp(100px, 12vw, 160px) 0;
  background: var(--white);
}
.why__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}
.why__header {
  max-width: 720px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.why__eyebrow {
  color: var(--accent);
  margin-bottom: 16px;
}
.why__headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 20px;
}
.why__headline em {
  font-style: italic;
  color: var(--accent);
}
.why__intro {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--body);
  font-weight: 300;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why__card {
  padding: 36px 28px;
  border: 1px solid rgba(27, 27, 27, 0.07);
  background: var(--bg);
  transition:
    border-color 0.3s,
    transform 0.4s var(--ease-luxury);
}
.why__card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.why__card-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(177, 148, 112, 0.22);
  line-height: 1;
  margin-bottom: 16px;
}
.why__card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}
.why__card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.78;
  color: var(--body);
  font-weight: 300;
}

/* ===== CITIES ===== */
.cities {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--primary);
}
.cities__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}
.cities__header {
  max-width: 640px;
  margin-bottom: 40px;
}
.cities__eyebrow {
  color: var(--accent);
  margin-bottom: 16px;
}
.cities__headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 16px;
}
.cities__headline em {
  font-style: italic;
  color: var(--accent);
}
.cities__intro {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--body);
  font-weight: 300;
}
.cities__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.city-tag {
  font-family: var(--font-util);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid rgba(27, 27, 27, 0.1);
  background: var(--bg);
  color: var(--dark);
  transition: all 0.3s var(--ease-smooth);
}
.city-tag:hover,
.city-tag--primary {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.city-tag--primary {
  background: var(--accent);
  border-color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }
  .btn--nav {
    display: none;
  }
  .nav__hamburger {
    display: flex;
    margin-left: auto;
  }
  .nav__logo-img {
    width: 120px;
  }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about__img-frame {
    max-width: 480px;
  }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-row__desc {
    display: none;
  }
  .service-row__tags {
    width: 120px;
    font-size: 10px;
    padding-right: 16px;
  }
  .service-row__img-wrap img {
    width: 160px;
  }
  .service-row.is-active .service-row__img-wrap {
    width: 160px;
  }
  .process__timeline {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .process__timeline-line {
    display: none;
  }
  .process__step,
  .process__step:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }
  .process__step-num {
    margin: 6px 0 !important;
  }
}

@media (max-width: 768px) {
  .nav__logo-img {
    width: 100px;
  }
  .hero__scroll-indicator {
    display: none;
  }
  .contact__form-row {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .why__grid {
    grid-template-columns: 1fr;
  }
  .trust-bar__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-row__tags {
    display: none;
  }
  .service-row__img-wrap img {
    width: 110px;
  }
  .service-row.is-active .service-row__img-wrap {
    width: 110px;
  }
  .service-row.is-active .service-row__inner {
    height: 120px;
  }
  .service-row.is-stacked .service-row__inner {
    height: 44px;
  }
  .service-row__inner {
    height: 68px;
  }
  .blog__grid {
    grid-template-columns: 1fr;
  }
  .page-hero__title {
    font-size: var(--heading-sm);
  }
  .article__title {
    font-size: var(--heading-sm);
  }
}

@media (max-width: 600px) {
  .process__timeline {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 40px;
  }
  .process__timeline::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #2e2e2c;
    z-index: 0;
  }
  .process__step,
  .process__step:nth-child(even) {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 0.5px solid #262624;
  }
  .process__dot-wrap {
    position: absolute;
    left: -40px;
    width: 28px;
    height: 28px;
  }
  .process__step-num {
    margin: 0 0 6px 0 !important;
  }
  .process__step-card {
    flex: 1;
  }
  .process__step-card h3 {
    font-size: 14px;
  }
  .process__step-card p {
    font-size: 12px;
  }
  .testimonial {
    padding: 28px 22px;
  }
}

@media (max-width: 480px) {
  .nav__logo-img {
    width: 85px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .about__img-accent {
    right: 0;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .whatsapp-fab {
    bottom: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .hero__headline {
    font-size: clamp(44px, 12vw, 56px);
  }
  .portfolio__filters {
    gap: 8px;
  }
  .portfolio__filter {
    padding: 8px 14px;
    font-size: 11px;
  }
  .contact__form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 320px) {
  .btn {
    padding: 12px 20px;
    font-size: 11px;
  }
  .hero__content {
    padding-left: 16px;
    padding-right: 16px;
  }
  .city-tag {
    padding: 10px 14px;
    font-size: 10px;
  }
}

@media (min-width: 1920px) {
  .nav__inner,
  .about__inner,
  .portfolio__header,
  .portfolio__filters,
  .portfolio__grid,
  .services__inner,
  .before-after__inner,
  .testimonials__inner,
  .contact__inner,
  .footer__inner,
  .process__inner {
    max-width: 1800px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reels-track {
    transition: none;
  }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--accent-dark),
    var(--accent),
    var(--accent-light)
  );
  z-index: 10001;
  transition: width 0.05s linear;
  pointer-events: none;
  transform-origin: left;
}

/* Glow effect on the progress bar tip */
.scroll-progress::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px 2px rgba(177, 148, 112, 0.7);
  opacity: 0;
  transition: opacity 0.3s;
}
.scroll-progress.active::after {
  opacity: 1;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 92px; /* sits above the WhatsApp FAB */
  right: 20px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.4s var(--ease-luxury),
    visibility 0.4s var(--ease-luxury),
    transform 0.4s var(--ease-luxury),
    background 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(27, 27, 27, 0.25);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(177, 148, 112, 0.4);
  transform: translateY(-3px);
}
.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s var(--ease-luxury);
}
.back-to-top:hover svg {
  transform: translateY(-2px);
}

/* Scroll percentage label inside button */
.back-to-top__pct {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-util);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--dark);
  padding: 2px 6px;
  border-radius: 10px;
  border: 1px solid rgba(177, 148, 112, 0.3);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.back-to-top.visible .back-to-top__pct {
  opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .back-to-top {
    bottom: 84px;
    right: 16px;
    width: 42px;
    height: 42px;
  }
  .scroll-progress {
    height: 2px;
  }
}
