/* ==========================================================================
   BARBEARIA 021 - BRAND IDENTITY & STYLESHEET
   Paleta: #000000 (Preto), #FFCFFF (Rosa Destaque), #8E7C1F (Dourado/Bronze),
           #7F8182 (Cinza), #BCC1C2 (Cinza Claro)
   Fontes: WINTER (Títulos/Destaque), Open Sauce (Corpo/Interface)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FONT DEFINITIONS & FALLBACKS
   -------------------------------------------------------------------------- */
/* Uses Google Fonts: Syne as WINTER (headings), DM Sans as Open Sauce (body) */
/* When you add font files to assets/fonts/, update the src below */
/* Local @font-face rules removed.
   Fonts are loaded from Google Fonts via the <link> in index.html.
   If you want to use local font files, add them to assets/fonts/ and restore @font-face. */

:root {
  /* Brand Palette */
  --color-black: #000000;
  --color-dark-bg: #070707;
  --color-card-bg: #0E0E0E;
  --color-card-hover: #161616;

  --color-gold: #8E7C1F;
  --color-gold-light: #B8A332;
  --color-gray: #7F8182;
  --color-light-gray: #BCC1C2;
  --color-white: #FFFFFF;

  /* Borders & Glows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(142, 124, 31, 0.35);
  --gold-glow: rgba(142, 124, 31, 0.2);
  --gold-glow: rgba(142, 124, 31, 0.2);

  /* Typography Stack: WINTER or Syne for headings, Open Sauce or DM Sans for body */
  --font-heading: 'WINTER', 'Syne', 'Cinzel', sans-serif;
  --font-body: 'Open Sauce', 'DM Sans', 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;

  /* Transitions & Spacing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.4s var(--ease-out-expo);
  --container-max: 1280px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-black);
  color: var(--color-light-gray);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background-color: var(--color-black);
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

/* Typography Utilities */
.font-winter {
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-gold {
  color: var(--color-gold);
}

.text-highlight-pink {
  color: var(--color-gold);
  text-shadow: 0 0 20px var(--gold-glow);
}

/* Noise Texture Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   3. PRELOADER
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  background-color: var(--color-black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-content {
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.preloader-badge {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.preloader-logo .word-barbearia {
  color: var(--color-white);
}

.preloader-logo .word-021 {
  color: var(--color-gold);
}

.preloader-progress-bar {
  width: 100%;
  height: 2px;
  background: var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.preloader-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold));
  transition: width 0.2s ease-out;
}

.preloader-subtext {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-gray);
}

/* --------------------------------------------------------------------------
   4. CUSTOM CURSOR
   -------------------------------------------------------------------------- */
.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 207, 255, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease-out, height 0.25s ease-out, border-color 0.25s, background-color 0.25s;
}

.cursor-ring.cursor-active {
  width: 64px;
  height: 64px;
  border-color: var(--color-gold);
  background-color: var(--gold-glow);
}

@media (pointer: coarse) {

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVBAR
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 0.85rem 0;
  background-color: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-right: 2rem;
  white-space: nowrap;
}

.logo-text {
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.logo-number {
  color: var(--color-gold);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-desktop .nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-light-gray);
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

/* BUTTON STYLES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.btn-header {
  border: 1px solid var(--border-gold);
  background: rgba(142, 124, 31, 0.08);
  color: var(--color-white);
}

.btn-header:hover {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: var(--color-black);
  box-shadow: 0 0 25px var(--gold-glow);
}

.btn-primary {
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-black);
  box-shadow: 0 0 30px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--border-gold);
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-2px);
}

/* BURGER MENU BUTTON */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: rgba(14, 14, 14, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  cursor: pointer;
  z-index: 10000;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.burger-menu:hover {
  border-color: var(--color-gold-light);
  background: var(--color-gold);
}

.burger-menu:hover .burger-line {
  background-color: var(--color-black);
}

.burger-line {
  width: 22px;
  height: 2px;
  background-color: var(--color-gold);
  border-radius: 2px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* MOBILE NAV OVERLAY */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.4s ease, opacity 0.4s ease;
}

.mobile-nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.mobile-nav-bg {
  position: absolute;
  inset: 0;
  background-color: rgba(7, 7, 7, 0.96);
  backdrop-filter: blur(20px);
}

.mobile-nav-container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.burger-close {
  font-size: 2.5rem;
  color: var(--color-white);
  line-height: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: auto 0;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-link span {
  font-size: 1rem;
  color: var(--color-gold);
}

.mobile-nav-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-socials {
  display: flex;
  gap: 1.5rem;
}

.mobile-socials a {
  font-size: 0.9rem;
  color: var(--color-gold);
}

.mobile-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--color-gray);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Full-screen background: centered, never cropped on the subject */
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.5) contrast(1.1);
  transform: scale(1.02);
  transition: transform 1.2s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.85) 100%),
    linear-gradient(180deg,
      rgba(7, 7, 7, 0.6) 0%,
      rgba(7, 7, 7, 0.3) 50%,
      rgba(7, 7, 7, 0.95) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  background: rgba(14, 14, 14, 0.85);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-gold);
  box-shadow: 0 0 10px var(--color-gold);
}

.badge-dot.dot-green {
  background-color: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-white);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.8rem;
  letter-spacing: 0.02em;
}

.title-line {
  display: block;
}

.title-021 {
  font-size: 1.25em;
  color: var(--color-white);
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--color-white) 30%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-light-gray);
  max-width: 580px;
  margin-bottom: 2.8rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

/* HERO RIGHT SIDE: Float info card */
.hero-float-card {
  background: rgba(14, 14, 14, 0.8);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2.2rem;
  border-radius: 6px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(142, 124, 31, 0.15);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.hero-float-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold-light);
}

.float-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.float-card-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #22c55e;
}

.float-card-number {
  font-size: 4.5rem;
  line-height: 0.9;
  color: var(--color-gold);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.float-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.float-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-white);
}

.float-card-sub {
  font-size: 0.82rem;
  color: var(--color-gray);
}

.float-card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.float-card-rating .stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.float-card-rating .rating-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-white);
}

.float-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--color-gold);
  color: var(--color-black);
  padding: 0.85rem 1.2rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 0.5rem;
}

.float-card-btn:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.75;
  z-index: 2;
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--color-gray);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  width: 100%;
  height: 50%;
  background: var(--color-gold);
  position: absolute;
  top: -50%;
  animation: scrollAnim 2s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% {
    top: -50%;
  }

  100% {
    top: 100%;
  }
}

/* --------------------------------------------------------------------------
   7. STATEMENT SECTION (MARQUE A PRESENÇA)
   -------------------------------------------------------------------------- */
.statement-section {
  padding: 8rem 0;
  background-color: var(--color-dark-bg);
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.statement-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.label-number {
  font-size: 1.1rem;
  color: var(--color-gold);
}

.label-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--color-gray);
}

.statement-title {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 4rem;
}

.statement-body.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.statement-lead {
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--color-white);
  font-weight: 500;
}

.statement-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-light-gray);
  margin-bottom: 2.5rem;
}

.statement-accent-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.8rem;
  border: 1px solid var(--border-gold);
  background: var(--color-card-bg);
}

.accent-number {
  font-size: 1.8rem;
  color: var(--color-gold);
}

.accent-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   7. SERVICES SECTION (PHOTO CARDS)
   -------------------------------------------------------------------------- */
.services-section {
  padding: 8rem 0;
  background-color: var(--color-dark-bg);
  border-bottom: 1px solid var(--border-subtle);
}

.services-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.services-header {
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.services-sub,
.gallery-sub {
  font-size: 1rem;
  color: var(--color-gray);
  max-width: 560px;
}

/* 3-column photo cards grid */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-photo-card {
  display: flex;
  flex-direction: column;
  background: var(--color-card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s var(--ease-out-expo),
    border-color 0.4s ease,
    box-shadow 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-photo-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 25px var(--gold-glow);
}

.featured-service {
  border-color: var(--color-gold);
}

.featured-service:hover {
  border-color: var(--color-gold-light);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px var(--gold-glow);
}

.service-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.7s var(--ease-out-expo);
}

.service-photo-card:hover .service-card-img {
  transform: scale(1.06);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 7, 7, 0.75) 100%);
}

.service-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card-num {
  font-size: 0.8rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
}

.service-card-badge {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--color-gray);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.service-card-badge.tag-pink {
  color: var(--color-gold);
  border-color: var(--border-gold);
}

.service-card-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.03em;
}

.service-card-desc {
  font-size: 0.88rem;
  color: var(--color-gray);
  line-height: 1.6;
  flex: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.service-card-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-gold);
  letter-spacing: 0.04em;
}

.service-card-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-white);
  background: rgba(142, 124, 31, 0.12);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 0.9rem;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease;
}

.service-photo-card:hover .service-card-cta {
  background: var(--color-gold);
  color: var(--color-black);
}

/* --------------------------------------------------------------------------
   8. ABOUT SECTION (SOBRE A BARBEARIA)
   -------------------------------------------------------------------------- */
.about-section {
  padding: 9rem 0;
  position: relative;
  background-color: var(--color-black);
  overflow: hidden;
}

.watermark-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(16rem, 35vw, 38rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.018);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.about-container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Asymmetric Images Layout */
.about-images-col {
  position: relative;
  min-height: 520px;
}

.about-img-frame {
  position: relative;
  overflow: hidden;
}

.primary-frame {
  width: 82%;
  height: 480px;
  border-radius: 2px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.secondary-frame {
  position: absolute;
  bottom: -25px;
  right: 0;
  width: 55%;
  height: 270px;
  border-radius: 2px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
}

.frame-border-gold {
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-gold);
  pointer-events: none;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.main-img {
  object-fit: cover;
  object-position: center 20%;
}

.sub-img {
  object-fit: cover;
  object-position: center center;
}

.about-img-frame:hover .about-img {
  transform: scale(1.05);
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--color-dark-bg);
  border: 1px solid var(--border-gold);
  padding: 1.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.badge-big {
  font-size: 2.2rem;
  color: var(--color-gold);
  line-height: 1;
}

.badge-small {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--color-light-gray);
  margin-top: 0.3rem;
}

/* About Content */
.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 2rem;
}

.about-text-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-white);
  font-style: italic;
  border-left: 2px solid var(--color-gold);
  padding-left: 1.4rem;
  margin-bottom: 1.8rem;
}

.about-text-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-light-gray);
  margin-bottom: 3rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.pillar-num {
  font-size: 1.8rem;
  color: var(--color-gold);
  line-height: 1;
}

.pillar-details h4 {
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 0.4rem;
}

.pillar-details p {
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-section {
  padding: 8rem 0;
  background-color: var(--color-dark-bg);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.services-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services-header {
  margin-bottom: 4rem;
}

.services-sub {
  font-size: 1.05rem;
  color: var(--color-gray);
  max-width: 540px;
  margin-top: 1rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.service-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--border-subtle);
  padding: 2.2rem 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.service-item:hover {
  background-color: var(--color-card-hover);
  border-color: var(--border-gold);
  transform: translateX(10px);
}

.service-item.featured-service {
  border-color: var(--border-gold);
  background: linear-gradient(90deg, rgba(255, 207, 255, 0.04) 0%, var(--color-card-bg) 100%);
}

.service-left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.service-num {
  font-size: 2.2rem;
  color: var(--color-gold);
  opacity: 0.8;
  transition: color 0.3s;
}

.service-item:hover .service-num {
  color: var(--color-gold);
}

.service-info {
  max-width: 620px;
}

.service-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--color-light-gray);
  line-height: 1.5;
}

.service-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.service-tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-subtle);
  color: var(--color-gray);
}

.service-tag.tag-pink {
  border-color: var(--border-gold);
  color: var(--color-gold);
}

.service-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.service-item:hover .service-arrow {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-black);
  transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   10. GALLERY SECTION (PORTFÓLIO EDITORIAL)
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 9rem 0;
  background-color: var(--color-black);
}

.gallery-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gallery-header {
  margin-bottom: 4rem;
}

.gallery-sub {
  font-size: 1.05rem;
  color: var(--color-gray);
  max-width: 600px;
  margin-top: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.gallery-item.grid-tall {
  grid-row: span 2;
}

.gallery-item.grid-wide {
  grid-column: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 7, 7, 0.9) 0%, rgba(7, 7, 7, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-cat {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  font-weight: 700;
  display: block;
  margin-bottom: 0.4rem;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-white);
}

.gallery-zoom-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: rgba(7, 7, 7, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   11. IMPACT BANNER SECTION
   -------------------------------------------------------------------------- */
.impact-section {
  position: relative;
  background-color: var(--color-black);
  padding: 7rem 0;
  overflow: hidden;
}

.impact-border-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.impact-border-line.top-line {
  top: 0;
}

.impact-border-line.bottom-line {
  bottom: 0;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 1.5rem 0;
  background-color: var(--color-dark-bg);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 5rem;
  user-select: none;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  white-space: nowrap;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  will-change: transform;
}

.marquee-star {
  margin: 0 1rem;
  color: var(--color-gold);
}

.impact-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.impact-title {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 1.05;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 2rem;
}

.impact-divider {
  width: 80px;
  height: 2px;
  background-color: var(--color-gold);
  margin: 0 auto 2rem auto;
}

.impact-sub {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--color-light-gray);
}

/* --------------------------------------------------------------------------
   12. EXPERIENCE / AMBIENTE SECTION
   -------------------------------------------------------------------------- */
.experience-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
  overflow: hidden;
}

.experience-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.experience-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.1);
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(7, 7, 7, 0.95) 0%,
      rgba(7, 7, 7, 0.7) 50%,
      rgba(7, 7, 7, 0.95) 100%);
}

.experience-container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.experience-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.experience-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}

.exp-card {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  position: relative;
  z-index: 3;
  background: rgba(14, 14, 14, 0.75);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.exp-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
}

.exp-icon {
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.exp-card h4 {
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 0.6rem;
}

.exp-card p {
  font-size: 0.9rem;
  color: var(--color-light-gray);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   13. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 9rem 0;
  background-color: var(--color-dark-bg);
  position: relative;
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}

.watermark-contact {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-size: clamp(14rem, 30vw, 32rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.015);
  pointer-events: none;
  user-select: none;
}

.contact-container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-header {
  margin-bottom: 4rem;
}

.contact-sub {
  font-size: 1.05rem;
  color: var(--color-gray);
  max-width: 560px;
  margin-top: 1rem;
}

/* Fix: ensure contact cards are visible (override animation inline styles if needed) */
.contact-card {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  display: flex;
  flex-direction: column;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.contact-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out-expo),
    border-color 0.4s ease,
    background-color 0.4s ease,
    box-shadow 0.4s ease;
  will-change: transform;
}

.contact-card:hover {
  background-color: var(--color-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px var(--gold-glow);
}

.card-whatsapp:hover {
  border-color: #25D366;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(37, 211, 102, 0.3);
}

.card-instagram:hover {
  border-color: #E1306C;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(225, 48, 108, 0.3);
}

.card-location:hover {
  border-color: var(--color-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px var(--gold-glow);
}

.card-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  margin-bottom: 1.8rem;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease, color 0.4s ease;
}

.contact-card:hover .card-icon-wrap {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: scale(1.15) rotate(6deg);
}

.contact-card-btn svg {
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-card:hover .contact-card-btn svg {
  transform: translateX(6px);
  color: var(--color-gold);
}

.contact-card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-card-title {
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 0.4rem;
}

.contact-card-detail {
  font-size: 1rem;
  color: var(--color-light-gray);
  margin-bottom: 2rem;
}

.contact-card-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-white);
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.2rem;
}

.contact-card:hover .contact-card-btn {
  color: var(--color-gold);
}

/* Hours Bar */
.hours-bar {
  background-color: var(--color-card-bg);
  border: 1px solid var(--border-gold);
  padding: 1.8rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 2px;
}

.hours-icon {
  color: var(--color-gold);
}

.hours-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hours-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-white);
  font-weight: 700;
}

.hours-detail {
  font-size: 0.95rem;
  color: var(--color-light-gray);
}

.hours-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--color-white);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   14. LIGHTBOX MODAL
   -------------------------------------------------------------------------- */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.image-modal.active {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
}

.modal-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
}

.modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 2.5rem;
  color: var(--color-white);
  line-height: 1;
}

.modal-caption {
  margin-top: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  text-align: center;
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--color-black);
  padding: 6rem 0 3rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
}

.footer-watermark {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(18rem, 40vw, 42rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.012);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-motto {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-gray);
  margin-top: 1.5rem;
  max-width: 400px;
}

.footer-title {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav a {
  font-size: 0.95rem;
  color: var(--color-light-gray);
}

.footer-nav a:hover {
  color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.social-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-gray);
}

.footer-tag {
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE BREAKPOINTS & MOBILE OVERFLOW FIXES
   -------------------------------------------------------------------------- */
html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.statement-title,
.hero-title,
.impact-title,
.about-text-lead,
.about-text-body,
.statement-lead,
.statement-text {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .logo {
    margin-right: 0 !important;
  }

  .nav-desktop,
  .btn-header {
    display: none !important;
  }

  .burger-menu {
    display: flex !important;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-float-card {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }

  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images-col {
    min-height: 420px;
  }

  .primary-frame {
    width: 85%;
    height: 380px;
  }

  .secondary-frame {
    width: 55%;
    height: 230px;
  }

  .contact-cards-grid,
  .experience-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  /* Prevent horizontal overflow completely */
  .about-section,
  .statement-section,
  .services-section,
  .gallery-section,
  .experience-section,
  .contact-section,
  .impact-section,
  .footer {
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .watermark-bg,
  .footer-watermark {
    display: none !important;
  }

  /* Header Mobile */
  .nav-desktop {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .btn-header {
    display: none;
  }

  .header-container {
    padding: 0 1rem;
  }

  /* Hero Mobile */
  .hero-section {
    padding-top: 5.5rem;
    padding-bottom: 3.5rem;
    min-height: auto;
  }

  .hero-container {
    padding: 0 1rem;
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(2.1rem, 7.5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }

  .hero-tag-badge {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .badge-text {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-float-card {
    padding: 1.4rem;
  }

  .float-card-number {
    font-size: 3.2rem;
  }

  .scroll-indicator {
    display: none;
  }

  /* Sections Spacing & Containers */
  .about-section,
  .services-section,
  .gallery-section,
  .experience-section,
  .contact-section,
  .impact-section {
    padding: 4rem 0;
  }

  .about-container,
  .services-container,
  .gallery-container,
  .experience-container,
  .contact-container,
  .statement-container {
    padding: 0 1rem;
    max-width: 100%;
    box-sizing: border-box;
  }

  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.4rem);
    line-height: 1.15;
    margin-bottom: 1.2rem;
  }

  /* About Section Layout Fix */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-images-col {
    min-height: 330px;
    width: 100%;
    position: relative;
  }

  .primary-frame {
    width: 84%;
    height: 345px;
  }

  .secondary-frame {
    width: 54%;
    height: 200px;
    right: 0;
    bottom: -15px;
  }

  .main-img {
    object-position: center 20%;
  }

  .sub-img {
    object-position: center center;
  }

  .about-experience-badge {
    top: 0;
    left: 0;
    padding: 0.8rem 1.2rem;
    z-index: 5;
  }

  .badge-big {
    font-size: 1.6rem;
  }

  .badge-small {
    font-size: 0.55rem;
  }

  .about-text-lead {
    font-size: 1.05rem;
    padding-left: 1rem;
    margin-bottom: 1.4rem;
  }

  .about-text-body {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .pillar-item {
    gap: 1rem;
  }

  .pillar-num {
    font-size: 1.4rem;
  }

  /* Service Cards Mobile */
  .service-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card-img-wrap {
    aspect-ratio: 4 / 3;
  }

  .service-card-img {
    object-position: center center;
  }

  .service-card-body {
    padding: 1.2rem;
  }

  .service-card-name {
    font-size: 1.15rem;
  }

  .service-card-price {
    font-size: 1.4rem;
  }

  /* Statement Section Mobile */
  .statement-body.grid-2col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .statement-lead {
    font-size: 1.15rem;
  }

  .statement-text {
    font-size: 0.95rem;
  }

  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 1rem;
  }

  .gallery-item.grid-tall,
  .gallery-item.grid-wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(0deg, rgba(7, 7, 7, 0.85) 0%, rgba(7, 7, 7, 0.1) 70%);
  }

  /* Experience / Pillars Mobile */
  .experience-features-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  /* Contact Section Mobile */
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hours-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem;
  }

  .hours-badge {
    align-self: flex-start;
  }

  /* Footer Mobile */
  .footer {
    padding: 3.5rem 0 2rem 0;
  }

  .footer-container {
    padding: 0 1rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .about-images-col {
    min-height: 280px;
  }

  .primary-frame {
    width: 88%;
    height: 250px;
  }

  .secondary-frame {
    width: 58%;
    height: 160px;
    bottom: -10px;
  }

  .btn {
    padding: 0.85rem 1.2rem;
    font-size: 0.8rem;
  }

  .marquee-track {
    font-size: 0.9rem;
    gap: 1.2rem;
  }

  .impact-title {
    font-size: 2rem;
  }
}

/* --------------------------------------------------------------------------
   17. ACCESSIBILITY / PREFERS 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;
  }

  .marquee-track {
    animation: none;
  }

  .preloader {
    display: none !important;
  }
}