/* ═══════════════════════════════════════════════════════════════
   ALET UYS ATTORNEYS — Premium Editorial Edition 2026
   Black · White · Pastel Pink · Calligraphy × Sans-Serif
   ═══════════════════════════════════════════════════════════════ */

@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=Great+Vibes&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --cream: #F5F0EB;
  --pink-light: #F0E0DB;
  --pink: #E8D5D0;
  --pink-deep: #D4A59A;
  --pink-muted: #C9A89A;
  --black: #1A1A1A;
  --charcoal: #3D3D3D;
  --grey: #7A7A7A;
  --grey-light: #B0B0B0;
  --grey-pale: #E8E8E8;
  --border: #EDE8E3;
  --border-light: #F0EDE8;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-script: 'Great Vibes', cursive;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
  --space-3xl: 10rem;
  --container: 1280px;
  --container-narrow: 900px;
  --container-wide: 1440px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;
  --shadow-sm: 0 2px 16px rgba(26,26,26,0.04);
  --shadow-md: 0 8px 40px rgba(26,26,26,0.06);
  --shadow-lg: 0 24px 80px rgba(26,26,26,0.08);
  --shadow-pink: 0 16px 48px rgba(212,165,154,0.15);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition: all 0.5s var(--ease-out-expo);
}

*, *::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);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
fieldset { border: none; padding: 0; margin: 0; }
legend { padding: 0; }
:focus-visible { outline: 2px solid var(--pink-deep); outline-offset: 3px; }
::selection { background: var(--pink); color: var(--black); }

/* ═══════════════════════════════════════════════════════════════
   SCROLL ANIMATION SYSTEM
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}
.reveal-scale.active { opacity: 1; transform: scale(1); }
.stagger-parent .stagger-child {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.stagger-parent.active .stagger-child:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-parent.active .stagger-child:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-parent.active .stagger-child:nth-child(3) { transition-delay: 0.30s; opacity: 1; transform: translateY(0); }
.stagger-parent.active .stagger-child:nth-child(4) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.stagger-parent.active .stagger-child:nth-child(5) { transition-delay: 0.60s; opacity: 1; transform: translateY(0); }
.stagger-parent.active .stagger-child:nth-child(6) { transition-delay: 0.75s; opacity: 1; transform: translateY(0); }
.line-reveal {
  width: 0;
  height: 1px;
  background: var(--pink-deep);
  transition: width 1.6s var(--ease-out-expo);
  margin: 1.5rem auto;
}
.line-reveal.active { width: 80px; }
.line-reveal-left {
  width: 0;
  height: 1px;
  background: var(--pink-deep);
  transition: width 1.6s var(--ease-out-expo);
  margin: 1.5rem 0;
}
.line-reveal-left.active { width: 80px; }
.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.hero__title.active .word:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.hero__title.active .word:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.hero__title.active .word:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.hero__title.active .word:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.hero__title.active .word:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.hero__title.active .word:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.hero__title.active .word:nth-child(7) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }
.hero__title.active .word:nth-child(8) { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }
.hero__subtitle {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out-expo) 0.5s, transform 1s var(--ease-out-expo) 0.5s;
}
.hero__subtitle.active { opacity: 1; transform: translateY(0); }
.hero__cta {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out-expo) 0.7s, transform 1s var(--ease-out-expo) 0.7s;
}
.hero__cta.active { opacity: 1; transform: translateY(0); }
.hero__label {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out-expo) 0s, transform 0.8s var(--ease-out-expo) 0s;
}
.hero__label.active { opacity: 1; transform: translateY(0); }
.quote-block {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 1.4s var(--ease-out-expo), transform 1.4s var(--ease-out-expo);
}
.quote-block.active { opacity: 1; transform: translateY(0) scale(1); }
.counter { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
.font-script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
}
.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }
.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--grey);
  font-weight: 300;
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-black { color: var(--black); }
.text-grey { color: var(--grey); }
.text-pink { color: var(--pink-deep); }
.label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--pink-deep);
  margin-bottom: 1.25rem;
  display: block;
}
.label--dark { color: var(--black); }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}
.section--white { background: var(--white); }
.section--off-white { background: var(--off-white); }
.section--cream { background: var(--cream); }
.section--pink { background: var(--pink-light); }
.section--black { background: var(--black); color: var(--white); }
.section--black h1, .section--black h2, .section--black h3,
.section--black h4, .section--black p { color: var(--white); }
.section--black .label { color: var(--pink); }
.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}
.section__header--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}
.section__title { margin-bottom: 1.25rem; }
.section__subtitle {
  color: var(--grey);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: transform 0.6s var(--ease-out-expo), background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.header--scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header--hidden { transform: translateY(-100%); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo__mark {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--pink-deep);
  transition: width 0.6s var(--ease-out-expo);
}
.nav__link:hover,
.nav__link--active { color: var(--black); }
.nav__link:hover::after,
.nav__link--active::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 0.75rem; }
.nav__cta-mobile { display: none; }
.nav__toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--black);
  padding: 4px;
  z-index: 1001;
}

/* ═══════════════════════════════════════════════════════════════
   HERO — Editorial Layout
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 45%, var(--off-white) 100%);
  overflow: hidden;
  padding-top: 90px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__content {
  max-width: 580px;
  padding: var(--space-xl) 0;
}
.hero__label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--pink-deep);
  margin-bottom: 1.5rem;
  display: block;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero__title .script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--pink-deep);
  display: inline;
  letter-spacing: 0;
}
.hero__subtitle {
  color: var(--grey);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 480px;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero__image-main {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 96px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__image-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.hero__glow {
  position: absolute;
  top: -15%;
  right: -15%;
  width: 75%;
  height: 75%;
  background: radial-gradient(circle, rgba(212,165,154,0.35) 0%, rgba(212,165,154,0) 70%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.hero__deco-frame {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 88%;
  height: 92%;
  border: 1px solid var(--pink-deep);
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 96px;
  z-index: 1;
  opacity: 0.5;
}
.hero__deco-line {
  position: absolute;
  bottom: 60px;
  left: -60px;
  width: 120px;
  height: 1px;
  background: var(--pink-deep);
  z-index: 3;
}
.hero__deco-circle {
  position: absolute;
  top: 40px;
  left: -40px;
  width: 80px;
  height: 80px;
  border: 1px solid var(--pink-deep);
  border-radius: 50%;
  z-index: 3;
  opacity: 0.4;
}
.hero__signature {
  position: absolute;
  bottom: -22px;
  left: 32px;
  z-index: 3;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__signature span {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--pink-deep);
  line-height: 1;
}
.page-hero {
  min-height: auto;
  padding: 160px 0 80px;
  background: var(--off-white);
}
.page-hero .hero__title {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--primary:hover {
  background: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26,26,26,0.15);
}
.btn--accent {
  background: var(--pink-deep);
  color: var(--white);
  border-color: var(--pink-deep);
}
.btn--accent:hover {
  background: var(--pink-muted);
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink);
}
.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-3px);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
}
.btn--whatsapp {
  background: var(--pink-deep);
  color: white;
  border-color: var(--pink-deep);
}
.btn--whatsapp:hover {
  background: var(--pink-muted);
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink);
}
.btn--small {
  padding: 0.75rem 1.5rem;
  font-size: 0.65rem;
}

/* ═══════════════════════════════════════════════════════════════
   STATS / COUNTERS
   ═══════════════════════════════════════════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: var(--space-xl) 0;
}
.stat-item {
  text-align: center;
  padding: var(--space-md);
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--border);
}
.stat-item__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item__label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   PILLARS — Cards with Icons
   ═══════════════════════════════════════════════════════════════ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pillar-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pink-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  transition: var(--transition);
}
.pillar-card:hover .pillar-card__icon {
  background: var(--black);
  color: var(--white);
  transform: rotate(-5deg);
}
.pillar-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.pillar-card__text {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   EDITORIAL TEXT BLOCK (replaces image grid)
   ═══════════════════════════════════════════════════════════════ */
.editorial-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.editorial-text--left {
  text-align: left;
  margin-left: 0;
}
.editorial-text h2 {
  margin-bottom: 1.5rem;
}
.editorial-text p {
  margin-bottom: 1rem;
  color: var(--grey);
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES — Text Cards (no images)
   ═══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pink-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__number {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--pink-deep);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}
.service-card:hover .service-card__number { opacity: 1; }
.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.service-card__text {
  color: var(--grey);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.service-card__link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.4s var(--ease-out-expo);
  position: relative;
}
.service-card__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--pink-deep);
  transition: width 0.4s var(--ease-out-expo);
}
.service-card:hover .service-card__link { gap: 0.875rem; }
.service-card:hover .service-card__link::after { width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   CASE HIGHLIGHTS — Landmark Matters Grid
   ═══════════════════════════════════════════════════════════════ */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pink-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}
.case-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: transparent;
}
.case-card:hover::before { transform: scaleX(1); }
.case-card__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 0.9rem;
}
.case-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  color: var(--black);
}
.case-card__title em {
  font-style: italic;
  color: var(--black);
}
.case-card__text {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   HIGHLIGHTS LIST
   ═══════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.highlights-list { margin-top: 2rem; }
.highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}
.highlight:last-child { border-bottom: none; }
.highlight__icon {
  width: 24px;
  height: 24px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}
.highlight__text {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.5;
}
.highlight__text em {
  color: var(--black);
  font-style: italic;
  font-family: var(--font-serif);
}

/* ═══════════════════════════════════════════════════════════════
   NEWS CARDS — Text Only (no images)
   ═══════════════════════════════════════════════════════════════ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--pink-deep);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--ease-out-expo);
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.news-card:hover::before { transform: scaleY(1); }
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.news-card__date {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pink-deep);
}
.news-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  background: var(--cream);
  border-radius: var(--radius-full);
  color: var(--grey);
}
.news-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--black);
}
.news-card__excerpt {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.news-card__link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.4s var(--ease-out-expo);
  position: relative;
  margin-top: auto;
}
.news-card__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--pink-deep);
  transition: width 0.4s var(--ease-out-expo);
}
.news-card:hover .news-card__link { gap: 0.875rem; }
.news-card:hover .news-card__link::after { width: 100%; }

/* Featured news card */
.news-card--featured {
  grid-column: 1 / -1;
  display: block;
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem;
  text-align: center;
}
.news-card--featured .news-card__meta {
  justify-content: center;
}
.news-card--featured .news-card__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
}
.news-card--featured .news-card__excerpt {
  font-size: 1.05rem;
}
.news-card--featured .news-card__link {
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   QUOTE BLOCK
   ═══════════════════════════════════════════════════════════════ */
.quote-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  position: relative;
}
.quote-block::before {
  content: '"';
  font-family: var(--font-script);
  font-size: 8rem;
  color: var(--pink-deep);
  opacity: 0.3;
  line-height: 0;
  display: block;
  margin-bottom: 2rem;
}
.quote-block p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.quote-block cite {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pink-deep);
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.process-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pink-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}
.process-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}
.process-card:hover::before { transform: scaleX(1); }
.process-card__number {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--pink-deep);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}
.process-card:hover .process-card__number { opacity: 1; }
.process-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.process-card__text {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE LIST (AUA Inc page)
   ═══════════════════════════════════════════════════════════════ */
.service-list {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  align-items: start;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.service-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}
.service-row__icon {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border: 1.5px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--black);
  transition: var(--transition);
}
.service-row:hover .service-row__icon {
  background: var(--black);
  color: var(--white);
}
.service-row__content h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.service-row__content p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   AREAS GRID
   ═══════════════════════════════════════════════════════════════ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.area-card {
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.area-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.area-card__icon {
  width: 64px;
  height: 64px;
  background: var(--off-white);
  border: 1.5px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--black);
  transition: var(--transition);
}
.area-card:hover .area-card__icon {
  background: var(--black);
  color: var(--white);
  transform: scale(1.05);
}
.area-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.area-card p {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SELLING POINTS
   ═══════════════════════════════════════════════════════════════ */
.selling-points {
  display: grid;
  gap: 1.25rem;
  max-width: 800px;
}
.selling-point {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.selling-point:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(10px);
}
.selling-point__icon {
  width: 36px;
  height: 36px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.selling-point__text {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.6;
}
.selling-point__text strong {
  color: var(--black);
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   CRITERIA LIST
   ═══════════════════════════════════════════════════════════════ */
.criteria-list {
  display: grid;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}
.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.criteria-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}
.criteria-item__number {
  width: 36px;
  height: 36px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.criteria-item__text {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.6;
}
.criteria-item__text strong {
  color: var(--black);
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   LOGOS BAR
   ═══════════════════════════════════════════════════════════════ */
.logos-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}
.logo-item {
  height: 100px;
  width: 210px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  padding: 1rem 1.5rem;
  transition: var(--transition);
}
.logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.4s var(--ease-out-expo);
}
.logo-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--pink-deep);
  transform: translateY(-3px);
}
.logo-item:hover img {
  filter: grayscale(0) opacity(1);
}

/* ═══════════════════════════════════════════════════════════════
   ALERT / NOTICE
   ═══════════════════════════════════════════════════════════════ */
.alert {
  background: var(--pink-light);
  border-left: 3px solid var(--pink-deep);
  padding: 2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2.5rem;
}
.alert__title {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.alert p {
  margin-bottom: 0;
  color: var(--grey);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   BADGE
   ═══════════════════════════════════════════════════════════════ */
.badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--pink-deep);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ═══════════════════════════════════════════════════════════════
   PARTNERSHIP BLOCK
   ═══════════════════════════════════════════════════════════════ */
.partnership {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.partnership__logo {
  width: 120px;
  height: 120px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.7rem;
  text-align: center;
  flex-shrink: 0;
  padding: 0.75rem;
}
.partnership__content h3 {
  font-family: var(--font-serif);
  margin-bottom: 0.75rem;
  font-weight: 500;
  font-size: 1.3rem;
}
.partnership__content p {
  color: var(--grey);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   TEXT BLOCK
   ═══════════════════════════════════════════════════════════════ */
.text-block {
  max-width: 720px;
  margin: 0 auto;
}
.text-block p {
  margin-bottom: 1.5rem;
  color: var(--grey);
  line-height: 1.9;
  font-size: 1.05rem;
}
.text-block p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: var(--space-3xl) 0;
}
.cta-section__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   VISIT US / MAP
   ═══════════════════════════════════════════════════════════════ */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.visit-detail {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
  font-size: 0.95rem;
}
.visit-detail a { color: var(--charcoal); }
.visit-detail a:hover { color: var(--pink-deep); }
.visit-detail__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--pink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.visit-map {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.visit-map iframe { display: block; filter: saturate(0.85) contrast(1.02); }

/* ═══════════════════════════════════════════════════════════════
   BRAND WATERMARKS — big faded logo / oversized header text
   ═══════════════════════════════════════════════════════════════ */
.watermark-section {
  position: relative;
  overflow: hidden;
}
.watermark-logo {
  position: absolute;
  width: 640px;
  height: auto;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(1);
}
.watermark-logo--right {
  right: -120px;
  top: 50%;
  transform: translateY(-50%) rotate(6deg);
}
.watermark-logo--left {
  left: -140px;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
}
.watermark-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(6rem, 16vw, 13rem);
  color: var(--pink-deep);
  opacity: 0.08;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: 0.02em;
}
.watermark-text--vertical {
  writing-mode: vertical-rl;
  top: 50%;
  left: auto;
  right: 2%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 4.5rem);
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--pink-deep);
  opacity: 0.1;
}
.watermark-section > .container {
  position: relative;
  z-index: 1;
}

/* Botanical line-art corner accents */
.botanical-accent {
  position: absolute;
  pointer-events: none;
  opacity: 0.35;
  color: var(--pink-deep);
  z-index: 1;
  animation: botanical-sway 16s ease-in-out infinite;
  transform-origin: center;
}
.botanical-accent--tl { top: 20px; left: -10px; transform: rotate(-8deg); }
.botanical-accent--br { bottom: 20px; right: -10px; transform: rotate(178deg); }
.botanical-accent--slow { animation-duration: 22s; animation-delay: -6s; }

@keyframes botanical-sway {
  0%, 100% { transform: rotate(var(--sway-rot, -8deg)) translateY(0); }
  50% { transform: rotate(calc(var(--sway-rot, -8deg) + 2deg)) translateY(-10px); }
}

/* ═══════════════════════════════════════════════════════════════
   AMBIENT FILL — soft breathing glow orbs for open, quiet sections
   ═══════════════════════════════════════════════════════════════ */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
  background: radial-gradient(circle, rgba(212,165,154,0.28) 0%, rgba(212,165,154,0) 72%);
  animation: ambient-breathe 12s ease-in-out infinite;
}
.ambient-glow--dark {
  background: radial-gradient(circle, rgba(212,165,154,0.14) 0%, rgba(212,165,154,0) 72%);
}
@keyframes ambient-breathe {
  0%, 100% { transform: scale(1) translateY(0); opacity: 0.7; }
  50% { transform: scale(1.15) translateY(-16px); opacity: 1; }
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  z-index: 1001;
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: var(--pink-deep);
  transition: width 0.1s linear;
}

@media (prefers-reduced-motion: reduce) {
  .botanical-accent, .ambient-glow { animation: none !important; }
  .scroll-progress__bar { transition: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials-intro {
  text-align: center;
  margin-bottom: 1.5rem;
}
.testimonials-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.4rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.testimonials-rating .stars { display: flex; gap: 2px; color: #E0A84C; }
.testimonials-rating span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.3px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.testimonial-card .stars { display: flex; gap: 2px; color: #E0A84C; }
.testimonial-card__quote-icon { color: var(--pink); opacity: 0.7; flex-shrink: 0; }
.testimonial-card__text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--pink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
}
.testimonial-card__meta {
  font-size: 0.75rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.testimonial-card__meta svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   LEGAL COPY (privacy policy / POPIA notice)
   ═══════════════════════════════════════════════════════════════ */
.legal-copy {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.8;
}
.legal-copy > p:first-child {
  color: var(--grey);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}
.legal-copy h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black);
  margin: 2.5rem 0 1rem;
}
.legal-copy h2:first-of-type { margin-top: 0; }
.legal-copy p { margin-bottom: 1.25rem; }
.legal-copy ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}
.legal-copy li {
  margin-bottom: 0.6rem;
  padding-left: 0.5rem;
}
.legal-copy a { color: var(--pink-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal-copy a:hover { color: var(--black); }

/* ═══════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════ */
.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form {
  max-width: 800px;
  margin: 0 auto;
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.form__group { margin-bottom: 0; }
.form__group--full { grid-column: 1 / -1; }
.form__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.form__label .required { color: var(--pink-deep); }
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 1rem 1.125rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 4px rgba(212, 165, 154, 0.1);
}
.form__input--error {
  border-color: var(--pink-deep);
  background: rgba(212, 165, 154, 0.03);
}
.form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237A7A7A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form__textarea {
  resize: vertical;
  min-height: 120px;
}
.form__checkbox-group,
.form__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.form__checkbox,
.form__radio {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--grey);
  padding: 0.25rem 0;
  font-weight: 400;
}
.form__checkbox input,
.form__radio input {
  width: 18px;
  height: 18px;
  accent-color: var(--pink-deep);
  cursor: pointer;
  flex-shrink: 0;
}
.form__toggle {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.toggle {
  position: relative;
  width: 52px;
  height: 28px;
  background: var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.toggle--active { background: var(--pink-deep); }
.toggle__knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.toggle--active .toggle__knob { left: 27px; }
.form__note {
  font-size: 0.8rem;
  color: var(--grey-light);
  margin-top: 0.5rem;
}
.file-input-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}
.file-input-wrapper input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.file-input-wrapper__label {
  display: block;
  padding: 1.5rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  color: var(--grey-light);
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--white);
}
.file-input-wrapper:hover .file-input-wrapper__label,
.file-input-wrapper:focus-within .file-input-wrapper__label {
  border-color: var(--pink-deep);
  background: var(--cream);
  color: var(--black);
}
.form__submit { margin-top: 2.5rem; }
.form-section {
  background: var(--white);
  padding: var(--space-3xl) 0;
}
.form-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

/* ═══════════════════════════════════════════════════════════════
   NEWS UPDATED BADGE
   ═══════════════════════════════════════════════════════════════ */
.news-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--pink-light);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pink-deep);
}
.news-updated::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--pink-deep);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}


/* ═══════════════════════════════════════════════════════════════
   IMAGE CARDS — photo on the left, full width/height, text on the
   right. object-fit: contain guarantees the whole photo always
   shows, never cropped, regardless of card proportions.
   ═══════════════════════════════════════════════════════════════ */
.service-card--img {
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.card-image {
  flex: 0 0 40%;
  min-height: 360px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--cream);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform 1.2s var(--ease-out-expo);
}
.card-image:hover img {
  transform: scale(1.05);
}

/* News card with image */
.news-card--img {
  padding: 0;
  overflow: hidden;
}
.news-card--img .news-card__body {
  padding: 2rem;
}

/* Editorial image */
.editorial-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}
.editorial-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,30,26,0.28) 0%, rgba(212,165,154,0.08) 40%, transparent 60%);
}


/* News card with image */
.news-card--img {
  padding: 0;
  overflow: hidden;
}
.news-card--img .news-card__body {
  padding: 1.75rem;
}
.news-card--img .news-card__title {
  font-size: 1.15rem;
}

/* Service card with image: right-hand content column */
.service-card--img .service-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
  min-width: 0;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 5rem 0 2.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}
.footer__brand .logo {
  margin-bottom: 1.25rem;
  display: inline-flex;
}
.footer__brand .logo__mark {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer__brand p {
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: -0.25rem;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--pink-deep);
  border-color: var(--pink-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__social svg { width: 17px; height: 17px; }
.footer__title {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.footer__links li { margin-bottom: 0.75rem; }
.footer__links a {
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
  font-size: 0.9rem;
  position: relative;
}
.footer__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--pink);
  transition: width 0.4s var(--ease-out-expo);
}
.footer__links a:hover { color: var(--pink); }
.footer__links a:hover::after { width: 100%; }
.footer__contact p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer__bottom a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__bottom a:hover { color: var(--pink); }

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--pink-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 24px rgba(212,165,154,0.35);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(212,165,154,0.5);
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(212,165,154,0.35); }
  50% { box-shadow: 0 6px 36px rgba(212,165,154,0.55); }
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.6s var(--ease-out-expo), opacity 0.5s ease;
  pointer-events: none;
}
.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner__text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--charcoal);
  flex: 1;
}
.cookie-banner__text a {
  color: var(--pink-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  padding: 1.25rem;
}
.modal-overlay--visible {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.5s var(--ease-out-expo);
}
.modal-overlay--visible .modal {
  transform: scale(1) translateY(0);
}
.modal__icon {
  width: 60px;
  height: 60px;
  background: var(--pink-deep);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}
.modal__icon--error { background: var(--pink-deep); }
.modal__title {
  font-family: var(--font-serif);
  margin-bottom: 0.75rem;
  font-weight: 500;
  font-size: 1.5rem;
}
.modal__text {
  color: var(--grey);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   SKIP LINK
   ═══════════════════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--black);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  font-size: 0.85rem;
  transition: top 0.3s ease;
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .stagger-parent .stagger-child,
  .hero__title .word, .quote-block, .line-reveal, .line-reveal-left,
  .hero__subtitle, .hero__cta, .hero__label {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero__grid { gap: 2.5rem; }
  .news-card--featured { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .partnership { grid-template-columns: 1fr; text-align: center; }
  .partnership__logo { margin: 0 auto; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .watermark-logo { width: 440px; }
}

@media (max-width: 768px) {
  .editorial-image { min-height: 300px; }
  .editorial-image img { min-height: 300px; }
  .card-image { height: 200px; }
  .news-card--img .news-card__body { padding: 1.5rem; }
  .service-card--img { flex-direction: column; }
  .service-card--img .card-image { flex-basis: auto; min-height: 280px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .service-card--img .service-card__content { padding: 1.5rem; }
  .visit-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .visit-map { height: 300px; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .case-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .watermark-logo { width: 280px; opacity: 0.04; }
  .botanical-accent { display: none; }
  .nav__menu {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--off-white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 2rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav__menu--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__link {
    padding: 1rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
  }
  .nav__link::after { display: none; }
  .nav__cta { display: none; }
  .nav__cta-mobile {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    flex-direction: column;
  }
  .nav__toggle { display: block; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__image-wrap { max-width: 400px; margin: 0 auto; }
  .hero__deco-frame { right: -12px; top: -12px; }
  .hero__signature { width: 60px; height: 60px; left: 16px; bottom: -16px; }
  .hero__signature span { font-size: 1.3rem; }
  .hero__deco-line { display: none; }
  .hero__deco-circle { display: none; }
  .page-hero { padding: 120px 0 60px; }
  .pillars { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .service-row__icon { margin-bottom: 0.5rem; }
  .areas-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .modal { padding: 2.5rem 1.5rem; }
  .section { padding: var(--space-xl) 0; }
  .cta-section__buttons { flex-direction: column; align-items: center; }
  .cta-section__buttons .btn { width: 100%; max-width: 300px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card--featured { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .stats-bar { grid-template-columns: 1fr; }
  .logo__mark { height: 48px; }
}