/* ============================================
   GIULIANA PITTHAN ADVOCACIA
   Premium Legal Website — Design System
   Aesthetic: Van Gogh meets Milan Law Boutique
   ============================================ */

/* --- Custom Properties --- */
:root {
  --graphite: #1B1B1B;
  --graphite-deep: #131313;
  --graphite-light: #242424;
  --graphite-mid: #1E1E1E;
  --gold: #C9A46C;
  --gold-light: #D9BA8A;
  --gold-dark: #A8864F;
  --beige: #F5F1EA;
  --warm-gray: #DAD7D0;
  --warm-gray-dark: #9E9B95;
  --white: #FFFFFF;
  --gold-glass: rgba(201, 164, 108, 0.06);
  --gold-glass-hover: rgba(201, 164, 108, 0.12);
  --gold-border: rgba(201, 164, 108, 0.18);
  --gold-border-hover: rgba(201, 164, 108, 0.4);
  --overlay: rgba(19, 19, 19, 0.92);

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --section-py: clamp(80px, 10vw, 140px);
  --container: 1200px;
  --container-narrow: 900px;
  --gutter: clamp(20px, 4vw, 40px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.5s var(--ease);
  --radius: 16px;
  --radius-sm: 8px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--graphite);
  color: var(--beige);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; }

/* --- Canvas Grain Texture (Van Gogh feel) --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Section --- */
.section {
  padding: var(--section-py) 0;
  position: relative;
}
.section--alt {
  background: var(--graphite-deep);
}
.section--beige {
  background: var(--beige);
  color: var(--graphite);
}

/* --- Section Headers --- */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--beige);
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.section--beige .section-title { color: var(--graphite); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 600px;
  line-height: 1.8;
}
.section--beige .section-subtitle { color: var(--warm-gray-dark); }

/* --- Gold Decorative Line --- */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 2rem 0;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--gutter);
  transition: background 0.5s var(--ease-smooth), padding 0.4s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth);
}
.header--scrolled {
  background: rgba(19, 19, 19, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--gold-border);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.4s var(--ease-smooth);
}
.header--scrolled .header__inner {
  height: 64px;
}
.header__logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--beige);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.header__logo span {
  color: var(--gold);
}

/* Desktop Nav */
.header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .header__nav { display: flex; }
}
.header__nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--warm-gray);
  transition: color var(--transition);
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.header__nav a:hover { color: var(--beige); }
.header__nav a:hover::after { width: 100%; }

/* Header CTA */
.header__cta {
  display: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  border-radius: 100px;
  transition: all var(--transition);
}
@media (min-width: 1024px) {
  .header__cta { display: inline-flex; }
}
.header__cta:hover {
  background: var(--gold);
  color: var(--graphite);
  border-color: var(--gold);
}

/* Mobile Menu Toggle */
.header__toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}
@media (min-width: 1024px) {
  .header__toggle { display: none; }
}
.header__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--beige);
  transition: all 0.4s var(--ease);
  transform-origin: center;
}
.header__toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.header__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-smooth), visibility 0.5s;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 500;
  color: var(--beige);
  padding: 0.6em 0;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease), color 0.3s;
}
.mobile-menu.active a {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active a:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu__cta {
  margin-top: 2rem;
  font-family: var(--font-sans) !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  color: var(--gold) !important;
  transition: all var(--transition);
}
.mobile-menu__cta:hover {
  background: var(--gold);
  color: var(--graphite) !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg svg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.hero__content {
  max-width: 600px;
}
.hero__label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s var(--ease) 0.3s forwards;
}
.hero__label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--beige);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--ease) 0.5s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 520px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--ease) 0.7s forwards;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--ease) 0.9s forwards;
}
.hero__visual {
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__visual { display: flex; }
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  min-height: 320px;
}
.hero-carousel__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), visibility 0.7s;
  pointer-events: none;
}
.hero-carousel__slide--active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-carousel__slide .hero__label,
.hero-carousel__slide .hero__title,
.hero-carousel__slide .hero__subtitle,
.hero-carousel__slide .hero__actions {
  animation: none;
  opacity: 1;
  transform: none;
}
.hero-carousel__dots {
  display: flex;
  gap: 10px;
  margin-top: 2.5rem;
}
.hero-carousel__dot {
  width: 32px;
  height: 3px;
  background: var(--warm-gray-dark);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.5s var(--ease);
  padding: 0;
  opacity: 0.4;
}
.hero-carousel__dot--active {
  width: 48px;
  background: var(--gold);
  opacity: 1;
}
.hero-carousel__dot:hover {
  opacity: 0.8;
  background: var(--gold-light);
}
@media (max-width: 767px) {
  .hero-carousel {
    min-height: 280px;
  }
}

/* Hero Photo */
.hero__photo {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.hero__photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 260px 260px 20px 20px;
  border: 1px solid var(--gold-border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--gold-border);
}
.hero__photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05) brightness(1.02);
  transition: transform 6s var(--ease);
}
.hero__photo-frame:hover img {
  transform: scale(1.03);
}
.hero__photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 19, 19, 0.4) 0%, transparent 40%);
  pointer-events: none;
}
.hero__photo-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.2;
}
.hero__photo-accent--2 {
  top: auto;
  right: auto;
  bottom: -8px;
  left: -8px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 0.15;
}
.hero__photo-line {
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.3;
}

/* About Photo */
.about__photo-container {
  position: relative;
  max-width: 380px;
}
.about__photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--gold-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.about__photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 6s var(--ease);
}
.about__photo-frame:hover img {
  transform: scale(1.03);
}
.about__photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 19, 19, 0.3) 0%, transparent 50%);
  pointer-events: none;
}
.about__photo-accent {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  opacity: 0.15;
  z-index: -1;
}

/* Contact Photo */
.contact-photo {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}
.contact-photo__frame {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--gold-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.contact-photo__frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero SVG Animations */
.hero-svg-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 3s var(--ease) forwards;
}
.hero-svg-line--delay-1 { animation-delay: 0.3s; }
.hero-svg-line--delay-2 { animation-delay: 0.6s; }
.hero-svg-line--delay-3 { animation-delay: 0.9s; }
.hero-svg-line--delay-4 { animation-delay: 1.2s; }
.hero-svg-line--delay-5 { animation-delay: 1.5s; }

.hero-svg-dot {
  opacity: 0;
  animation: fadeIn 1s var(--ease) forwards;
}
.hero-svg-dot--delay-1 { animation-delay: 1.5s; }
.hero-svg-dot--delay-2 { animation-delay: 1.8s; }
.hero-svg-dot--delay-3 { animation-delay: 2.1s; }
.hero-svg-dot--delay-4 { animation-delay: 2.4s; }
.hero-svg-dot--delay-5 { animation-delay: 2.7s; }

/* Swirling ambient animation for hero BG */
.hero__swirl {
  animation: swirlRotate 60s linear infinite;
  transform-origin: center center;
}
.hero__swirl--reverse {
  animation: swirlRotateReverse 80s linear infinite;
}
.hero__pulse {
  animation: gentlePulse 6s ease-in-out infinite;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--warm-gray-dark);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 2s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 100px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--graphite);
  border: 1px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 164, 108, 0.25);
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s var(--ease);
}
.btn--primary:hover::after {
  left: 100%;
}
.btn--outline {
  border: 1px solid var(--gold-border);
  color: var(--gold);
}
.btn--outline:hover {
  border-color: var(--gold);
  background: var(--gold-glass-hover);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--graphite);
  border: 1px solid var(--white);
}
.btn--white:hover {
  background: var(--beige);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.btn--dark {
  background: var(--graphite);
  color: var(--beige);
  border: 1px solid var(--graphite);
}
.btn--dark:hover {
  background: var(--graphite-light);
  transform: translateY(-2px);
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================
   PRACTICE AREAS
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

.area-card {
  position: relative;
  background: var(--graphite-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.area-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-glass), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.area-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--gold-border);
}
.area-card:hover::before { opacity: 1; }
.area-card__icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.area-card__icon svg {
  width: 100%;
  height: 100%;
}
.area-card__title {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--beige);
}
.area-card__text {
  position: relative;
  z-index: 1;
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.area-card__link {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition), color var(--transition);
}
.area-card__link::after {
  content: '\2192';
  transition: transform var(--transition);
}
.area-card:hover .area-card__link {
  gap: 12px;
}
.area-card:hover .area-card__link::after {
  transform: translateX(4px);
}

/* Grid 6 cards: 3+3 */
@media (min-width: 1024px) {
  .areas-grid--6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   INTERNATIONAL SECTION
   ============================================ */
.international {
  position: relative;
}
.international__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .international__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.international__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}
.international__visual svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}
.international__content {}
.international__points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.international__point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.international__point-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-glass);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}
.international__point-icon svg {
  width: 18px;
  height: 18px;
}
.international__point h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.international__point p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ============================================
   ABOUT
   ============================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
@media (min-width: 1024px) {
  .about__grid--with-photo {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}
.about__quote {
  position: relative;
  padding: 2.5rem;
  background: var(--gold-glass);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}
.about__quote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0.1em;
  left: 0.4em;
  line-height: 1;
}
.about__quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--beige);
  position: relative;
  z-index: 1;
}
.about__quote cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.about__values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about__value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about__value-marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
}
.about__value h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.about__value p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  counter-reset: step;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.step {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
  counter-increment: step;
}
.step__number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}
.step__number::before {
  content: counter(step, decimal-leading-zero);
}
.step__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--beige);
}
.step__text {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.7;
}
/* Connector line between steps on desktop */
@media (min-width: 768px) {
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2.2rem;
    right: -0.75rem;
    width: calc(1.5rem);
    height: 1px;
    background: var(--gold-border);
  }
}

/* ============================================
   TECHNOLOGY
   ============================================ */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
}
.tech-item {
  padding: 2rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  transition: all var(--transition);
  background: var(--graphite-light);
}
.tech-item:hover {
  border-color: var(--gold-border-hover);
  background: var(--gold-glass);
  transform: translateY(-4px);
}
.tech-item__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.tech-item__icon svg { width: 100%; height: 100%; }
.tech-item__title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.tech-item__text {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: var(--section-py) 0;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--graphite-deep), var(--graphite-mid) 40%, var(--graphite-deep));
  z-index: 0;
}
.cta-section__bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 164, 108, 0.06) 0%, transparent 60%);
}
.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 700px;
  margin: 0 auto 1rem;
  color: var(--beige);
}
.cta-section__text {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--graphite-deep);
  border-top: 1px solid var(--gold-border);
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}
.footer__brand {}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--beige);
  margin-bottom: 1rem;
}
.footer__logo span { color: var(--gold); }
.footer__tagline {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 300px;
}
.footer__col-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__links a {
  font-size: 0.88rem;
  color: var(--warm-gray);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--beige); }
.footer__contact-item {
  font-size: 0.88rem;
  color: var(--warm-gray);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__contact-item a {
  transition: color 0.3s;
}
.footer__contact-item a:hover { color: var(--gold); }
.footer__contact-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}
.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.78rem;
  color: var(--warm-gray-dark);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.78rem;
  color: var(--warm-gray-dark);
  transition: color 0.3s;
}
.footer__legal a:hover { color: var(--beige); }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--graphite-light);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--gold);
  color: var(--graphite);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 164, 108, 0.3);
}
.scroll-top svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 767px) {
  .scroll-top {
    bottom: 1.25rem;
    left: 1.25rem;
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition);
  opacity: 0;
  transform: scale(0.8) translateY(20px);
}
.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}
.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2.5s ease-out infinite;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   AREA PAGE STYLES
   ============================================ */
.area-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.area-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--graphite-deep), var(--graphite) 60%);
}
.area-hero__bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(201, 164, 108, 0.04) 0%, transparent 70%);
}
.area-hero .container {
  position: relative;
  z-index: 1;
}
.area-hero__breadcrumb {
  font-size: 0.78rem;
  color: var(--warm-gray-dark);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-hero__breadcrumb a {
  color: var(--warm-gray-dark);
  transition: color 0.3s;
}
.area-hero__breadcrumb a:hover { color: var(--gold); }
.area-hero__breadcrumb .sep { color: var(--gold-border); }
.area-hero__icon {
  width: 72px;
  height: 72px;
  color: var(--gold);
  margin-bottom: 2rem;
}
.area-hero__icon svg { width: 100%; height: 100%; }
.area-hero__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.area-hero__subtitle {
  font-size: 1.1rem;
  color: var(--warm-gray);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* Area page content */
.area-content {
  padding: var(--section-py) 0;
}
.area-content__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .area-content__grid {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }
}
.area-content__main h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--beige);
}
.area-content__main h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
  color: var(--beige);
}
.area-content__main p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.area-content__main ul {
  margin-bottom: 1.5rem;
}
.area-content__main ul li {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.7;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.area-content__main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.area-content__sidebar {}
.area-sidebar-card {
  background: var(--graphite-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.area-sidebar-card__title {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.area-sidebar-card__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.area-sidebar-card__links a {
  font-size: 0.9rem;
  color: var(--warm-gray);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.3s, padding-left 0.3s;
}
.area-sidebar-card__links a:hover {
  color: var(--gold);
  padding-left: 8px;
}
.area-sidebar-card__links a.active {
  color: var(--gold);
  font-weight: 500;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-glass);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-item h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.contact-info-item p,
.contact-info-item a {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
}
.contact-info-item a:hover { color: var(--gold); }

/* ============================================
   ORGANIC SECTION DIVIDER (Van Gogh wave)
   ============================================ */
.section-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.section-wave svg {
  width: 100%;
  height: auto;
}
.section-wave--top {
  top: -1px;
  bottom: auto;
  transform: rotate(180deg);
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
@keyframes swirlRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes swirlRotateReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
@keyframes gentlePulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}
@keyframes scrollPulse {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
  100% { opacity: 1; transform: scaleY(1); }
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }
  .section-title {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }
  .steps {
    gap: 1rem;
  }
  .step {
    text-align: left;
    padding: 1.5rem;
    background: var(--graphite-light);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .step__number {
    font-size: 2rem;
    margin-bottom: 0;
    min-width: 40px;
  }
  .footer__inner {
    gap: 2rem;
  }
  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__content {
    max-width: 100%;
  }
}

/* Utility */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
