/* ============================================
   COLOR SUITE — Premium Hair Salon
   Design System & Styles
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Outfit:wght@200;300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --ivory:        #FAF7F2;
  --cream:        #F5F0E8;
  --champagne:    #E8DFD0;
  --warm-beige:   #D4C5B0;
  --nude:         #C4B49A;
  --soft-gold:    #C9A96E;
  --gold:         #B8932F;
  --dark-gold:    #9A7B28;
  --espresso:     #3D2E1E;
  --charcoal:     #2C2218;
  --warm-gray:    #7A6E62;
  --light-gray:   #B5ADA4;
  --white:        #FFFFFF;

  /* Functional */
  --bg-primary:   var(--ivory);
  --bg-section:   var(--cream);
  --text-primary: var(--charcoal);
  --text-body:    var(--warm-gray);
  --text-accent:  var(--soft-gold);
  --border:       rgba(201, 169, 110, 0.2);
  --shadow-sm:    0 2px 12px rgba(61, 46, 30, 0.05);
  --shadow-md:    0 8px 32px rgba(61, 46, 30, 0.08);
  --shadow-lg:    0 16px 48px rgba(61, 46, 30, 0.12);
  --shadow-glow:  0 4px 24px rgba(201, 169, 110, 0.15);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py:   6rem;
  --section-px:   1.25rem;
  --container:    1200px;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);

  /* Border Radius */
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --radius-round: 50%;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container,
section,
main,
footer {
  max-width: 100%;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 70px; /* Offset for sticky desktop header */
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease);
}

ul, ol {
  list-style: none;
}

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

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--section-px);
  padding-right: var(--section-px);
  box-sizing: border-box;
}

/* ---------- Section Label / Eyebrow ---------- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--soft-gold);
}

/* ---------- Section Heading ---------- */
.section-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-text {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 640px;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--soft-gold), var(--gold));
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--soft-gold);
  border: 1.5px solid var(--soft-gold);
}
.btn-secondary:hover {
  background: var(--soft-gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--soft-gold);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn svg,
.btn .btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===========================================
   1. TOP BAR
   =========================================== */
.top-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  padding: 0.5rem 0;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.top-bar a:hover {
  color: var(--soft-gold);
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar__item svg {
  width: 13px;
  height: 13px;
  opacity: 0.6;
}

/* ===========================================
   2. HEADER / NAVBAR
   =========================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
  overflow: visible !important; /* Prevent mobile menu clipping */
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  overflow: visible !important; /* Prevent mobile menu clipping */
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
}

.logo__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: 0.02em;
}

.logo__tagline {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft-gold);
  font-weight: 400;
  margin-top: 2px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
  color: var(--text-body);
  transition: all 0.3s var(--ease);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
  background: rgba(201, 169, 110, 0.08);
}

.nav__cta {
  font-size: 0.78rem;
  padding: 0.7rem 1.5rem;
}

.nav__info {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
@media (max-width: 968px) {
  section[id] {
    scroll-margin-top: 62px; /* Offset for sticky mobile header */
  }

  .top-bar {
    padding: 0.35rem 0;
  }

  .header .container {
    height: 62px;
  }

  .logo__name {
    font-size: 1.4rem;
  }

  .logo__tagline {
    font-size: 0.48rem;
    letter-spacing: 0.08em;
    margin-top: 2px;
  }

  .hamburger {
    display: flex;
    padding: 6px;
  }

  .nav,
  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 2rem;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scroll inertia on iOS */
    transform: translateX(100%);
    transition: transform 0.4s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    z-index: 1050;
  }

  .nav.open,
  .mobile-menu.open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
  }

  .nav__link {
    font-size: 1.1rem;
    padding: 1rem;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-md);
  }

  .nav__cta {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    padding: 1rem 2rem;
  }

  .nav__info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.25rem;
    font-size: 0.75rem;
    color: var(--text-body);
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    width: 100%;
    justify-content: center;
  }

  .nav__info svg {
    width: 15px;
    height: 15px;
    color: var(--soft-gold);
    flex-shrink: 0;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1040;
    backdrop-filter: blur(4px);
  }

  .nav-overlay.active {
    display: block;
  }
}

/* ===========================================
   3. HERO SECTION
   =========================================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 50%, rgba(201,169,110,0.08) 100%);
}

.hero__bg-accent {
  position: absolute;
  top: -20%;
  right: 0;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero__bg-accent {
    display: none;
  }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__eyebrow::before {
  content: '◇';
  font-size: 0.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--soft-gold);
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-body);
  font-weight: 400;
}

.hero__trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--soft-gold);
  flex-shrink: 0;
}

/* Hero Image */
.hero__image-wrapper {
  position: relative;
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.hero__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}

.hero__image-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: calc(var(--radius-xl) + 8px);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero__image-frame {
    inset: 0;
    border: none;
  }
}

.hero__image-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__image-badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--soft-gold), var(--gold));
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.hero__image-badge-icon svg {
  width: 20px;
  height: 20px;
}

.hero__image-badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
}

.hero__image-badge-text span {
  display: block;
  font-size: 0.65rem;
  color: var(--text-body);
  font-weight: 300;
}

/* Hero responsive */
@media (max-width: 968px) {
  .hero {
    min-height: auto;
    padding-top: 0.5rem;
    padding-bottom: 2rem;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    padding-top: 0 !important;
  }

  .hero__content {
    max-width: 100%;
    order: 1;
  }

  .hero__image-wrapper {
    order: 0;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero__image {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__image-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.5rem;
  }
}

@media (max-width: 768px) {
  .hero,
  .hero-content,
  .hero-grid,
  .hero-visual,
  .hero__content,
  .hero__image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero .container {
    display: flex;
    flex-direction: column;
    padding-top: 0 !important;
  }

  .hero img,
  .hero__image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

  .hero__image-badge {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 1rem;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__trust {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* ===========================================
   4. CHI SIAMO / ABOUT
   =========================================== */
.about {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__content {
  max-width: 520px;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.about__value {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}

.about__value:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.about__value-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(201,169,110,0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-gold);
}

.about__value-icon svg {
  width: 20px;
  height: 20px;
}

.about__value h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.about__value p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}

.about__image-decoration {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 40%;
  height: 40%;
  border: 2px solid var(--soft-gold);
  border-radius: var(--radius-xl);
  opacity: 0.2;
  pointer-events: none;
}

@media (max-width: 768px) {
  .about .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .about__image {
    max-width: 400px;
    margin: 0 auto;
  }

  .about__values {
    text-align: left;
  }
}

/* ===========================================
   5. FONDATRICE
   =========================================== */
.founder {
  padding: var(--section-py) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.founder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}

.founder .container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: center;
}

.founder__image {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

.founder__content {
  max-width: 520px;
}

.founder__quote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--soft-gold);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .founder .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .founder__image {
    max-width: 320px;
    margin: 0 auto;
  }

  .founder__quote {
    text-align: left;
  }
}

/* ===========================================
   6. SERVIZI
   =========================================== */
.services {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.services__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--soft-gold), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,169,110,0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(201,169,110,0.12), rgba(201,169,110,0.04));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-gold);
  transition: all 0.4s var(--ease);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--soft-gold), var(--gold));
  color: var(--white);
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.service-card__text {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
}

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

@media (max-width: 580px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================================
   7. RISULTATI / GALLERY
   =========================================== */
.gallery {
  padding: var(--section-py) 0;
  background: var(--cream);
  overflow: hidden;
}

.gallery__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.gallery__item:nth-child(3) {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery__item:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(44, 34, 24, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .gallery__item:nth-child(3) {
    grid-row: span 1;
    aspect-ratio: 3/4;
  }

  .gallery__item:nth-child(6) {
    grid-column: span 1;
    aspect-ratio: 3/4;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 64px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-out);
}

.lightbox.active .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-round);
  color: var(--white);
  font-size: 1.5rem;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-round);
  color: var(--white);
  font-size: 1.25rem;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
}

.lightbox__nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

/* ===========================================
   8. TEAM
   =========================================== */
.team {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.team .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.team__content {
  max-width: 520px;
}

.team__image-wrapper {
  position: relative;
}

.team__image {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.team__tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--soft-gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-sm);
}

.team__tag svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .team .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .team__image {
    max-width: 400px;
    margin: 0 auto;
  }

  .team__content {
    max-width: 100%;
    order: 1;
  }

  .team__image-wrapper {
    order: 0;
  }
}

/* ===========================================
   9. PHILOSOPHY
   =========================================== */
.philosophy {
  padding: var(--section-py) 0;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.philosophy__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 1;
}

.philosophy__header .section-heading {
  color: var(--white);
}

.philosophy__header .section-text {
  color: rgba(255,255,255,0.65);
}

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.philosophy__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(12px);
}

.philosophy__card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
}

.philosophy__card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(201,169,110,0.2), rgba(201,169,110,0.05));
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-gold);
}

.philosophy__card-icon svg {
  width: 28px;
  height: 28px;
}

.philosophy__card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.philosophy__card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .philosophy__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================================
   9b. PRODUCTS
   =========================================== */
.products {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.products__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.products__intro {
  max-width: 480px;
  margin: 0 auto 3.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.products__intro img {
  width: 100%;
  height: auto;
  display: block;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__content {
  padding: 1.75rem 1.5rem;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.product-card__text {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Products Maintenance Banner */
.products__maintenance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(201,169,110,0.08) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.products__maintenance-image {
  overflow: hidden;
  height: 100%;
}

.products__maintenance-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.products__maintenance-content {
  padding: 3rem 3rem 3rem 0;
}

.products__maintenance-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.products__maintenance-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (max-width: 968px) {
  .products__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .products__maintenance-content {
    padding: 2rem;
    text-align: center;
  }

  .products__maintenance-content .btn {
    margin: 0 auto;
  }
}

/* ===========================================
   10. CTA SECTION
   =========================================== */
.cta-section {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 50%, rgba(201,169,110,0.06) 100%);
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 100%;
}

.cta-section__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-section__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  border-radius: var(--radius-xl);
}

.cta-section__text {
  max-width: 520px;
}

.cta-section .section-heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.cta-section .section-text {
  margin-bottom: 2.5rem;
}

.cta-section__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-section__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-section__visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .cta-section__text {
    max-width: 100%;
  }

  .cta-section__actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-section__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ===========================================
   11. CONTACTS
   =========================================== */
.contacts {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.contacts__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(201,169,110,0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-gold);
}

.contact-item__icon svg {
  width: 22px;
  height: 22px;
}

.contact-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--soft-gold);
  margin-bottom: 0.25rem;
}

.contact-item__value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 400;
}

.contact-item__value a {
  color: var(--text-primary);
}
.contact-item__value a:hover {
  color: var(--soft-gold);
}

.contacts__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 380px;
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
}

.contacts__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-body);
  transition: all 0.3s var(--ease);
}

.social-btn:hover {
  background: var(--soft-gold);
  color: var(--white);
  border-color: var(--soft-gold);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .contacts__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contacts__map {
    min-height: 280px;
  }

  .contacts__map iframe {
    min-height: 280px;
  }
}

/* ===========================================
   12. FOOTER
   =========================================== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer__tagline {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 1.25rem;
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}

.footer__links a:hover {
  color: var(--soft-gold);
  padding-left: 4px;
}

.footer__social-links {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}

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

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand {
    grid-column: span 1;
    max-width: 100%;
  }

  .footer__social-links {
    justify-content: center;
  }
}

/* ===========================================
   STICKY WHATSAPP BUTTON
   =========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: all 0.3s var(--ease);
  animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5); }
}

/* ===========================================
   MOBILE BOTTOM BAR
   =========================================== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0.5rem 1rem calc(0.5rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

.mobile-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mobile-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}

.mobile-bar__btn--call {
  background: var(--cream);
  color: var(--text-primary);
}

.mobile-bar__btn--whatsapp {
  background: #25D366;
  color: var(--white);
}

.mobile-bar__btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .about__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .about__image-decoration {
    right: 0;
    bottom: 0;
  }

  .mobile-bar {
    display: block;
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    box-sizing: border-box;
  }

  .whatsapp-float {
    bottom: 5.5rem;
    display: none;
  }

  body {
    padding-bottom: 80px;
  }

  /* Responsive Buttons */
  .btn,
  .cta-button,
  .whatsapp-btn,
  .hero-buttons a,
  .hero__actions .btn,
  .mobile-bar__btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    box-sizing: border-box;
  }

  .hero-buttons,
  .hero__actions {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
  }
}

/* ===========================================
   SCROLL ANIMATIONS
   =========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .fade-in-left,
  .fade-in-right {
    transform: translateY(24px);
  }
  .fade-in-left.visible,
  .fade-in-right.visible {
    transform: translateY(0);
  }
}

/* Staggered children */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0ms; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 80ms; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 160ms; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 240ms; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 320ms; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 400ms; }

/* ===========================================
   RESPONSIVE TOPBAR
   =========================================== */
@media (max-width: 968px) {
  .top-bar .container {
    justify-content: center;
  }

  .top-bar__left {
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .top-bar__right {
    display: none !important;
  }

  .top-bar__item--address {
    display: inline-flex !important;
    font-size: 0.68rem;
  }
}

/* ===========================================
   UTILITY
   =========================================== */
.text-center { text-align: center; }
.text-gold { color: var(--soft-gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Prevent body scroll when mobile menu is open */
body.no-scroll {
  overflow: hidden;
}

/* Selection highlight */
::selection {
  background: rgba(201,169,110,0.2);
  color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--ivory);
}

::-webkit-scrollbar-thumb {
  background: var(--champagne);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--warm-beige);
}
