/* ============================================
   Los Compadres USA — Brand Styles
   Color Palette: Burgundy (#7B1E3A) + Blush (#FADADD)
   Fonts: Outfit (body/UI) + Playfair Display (accents)
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --clr-burgundy: #7B1E3A;
  --clr-burgundy-deep: #5C1529;
  --clr-burgundy-light: #9E2A4B;
  --clr-blush: #FADADD;
  --clr-blush-light: #FFF0F2;
  --clr-blush-mid: #F5C6CC;
  --clr-cream: #FFF8F8;
  --clr-dark: #1A0A10;
  --clr-text: #2D1520;
  --clr-text-muted: #6B4A58;
  --clr-white: #FFFFFF;
  --clr-border: rgba(123, 30, 58, 0.12);

  --ff-body: 'Outfit', system-ui, sans-serif;
  --ff-accent: 'Playfair Display', Georgia, serif;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(123, 30, 58, 0.08);
  --shadow-md: 0 8px 30px rgba(123, 30, 58, 0.12);
  --shadow-lg: 0 20px 60px rgba(123, 30, 58, 0.15);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--clr-text);
  background-color: var(--clr-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ---- Background Shapes ---- */
.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.shape--1 {
  width: 600px;
  height: 600px;
  background: var(--clr-burgundy);
  top: -200px;
  right: -150px;
}

.shape--2 {
  width: 400px;
  height: 400px;
  background: var(--clr-blush);
  bottom: 20%;
  left: -100px;
}

.shape--3 {
  width: 250px;
  height: 250px;
  background: var(--clr-burgundy);
  top: 50%;
  right: 5%;
  opacity: 0.04;
}

.shape--4 {
  width: 180px;
  height: 180px;
  background: var(--clr-blush);
  bottom: 10%;
  right: 20%;
  border-radius: var(--radius-lg);
  transform: rotate(45deg);
  opacity: 0.08;
}

/* ---- Section Label ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-burgundy);
  margin-bottom: var(--space-md);
}

.section-label--light {
  color: var(--clr-blush);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--clr-burgundy);
  border-radius: 2px;
}

.section-label--light::before {
  background: var(--clr-blush);
}

/* ---- Section Heading ---- */
.section-heading {
  font-family: var(--ff-accent);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-dark);
  margin-bottom: var(--space-lg);
}

.section-heading--accent {
  color: var(--clr-burgundy);
}

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

.section-heading--accent-light {
  color: var(--clr-blush);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--clr-burgundy);
  color: var(--clr-white);
  border-color: var(--clr-burgundy);
}

.btn--primary:hover {
  background: var(--clr-burgundy-deep);
  border-color: var(--clr-burgundy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-burgundy);
  border-color: var(--clr-burgundy);
}

.btn--ghost:hover {
  background: var(--clr-burgundy);
  color: var(--clr-white);
  transform: translateY(-2px);
}

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

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 248, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--transition);
}

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* ---- Logo ---- */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--clr-dark);
}

.logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--clr-burgundy);
  color: var(--clr-white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo__mark--light {
  background: var(--clr-blush);
  color: var(--clr-burgundy);
}

.logo__text--accent {
  color: var(--clr-burgundy);
}

.logo--light {
  color: var(--clr-white);
}

.logo--light .logo__text--accent {
  color: var(--clr-blush);
}

/* ---- Nav ---- */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__list {
  display: flex;
  gap: var(--space-xs);
}

.nav__link {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--clr-burgundy);
  background: var(--clr-blush-light);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.6rem 1.25rem;
  background: var(--clr-burgundy);
  color: var(--clr-white);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}

.nav__cta:hover {
  background: var(--clr-burgundy-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ---- Mobile Nav Toggle ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav-toggle__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: calc(72px + var(--space-4xl)) 0 var(--space-4xl);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-burgundy);
  margin-bottom: var(--space-lg);
}

.hero__eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--clr-burgundy);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__headline {
  font-family: var(--ff-accent);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--clr-dark);
  margin-bottom: var(--space-xl);
}

.hero__headline--accent {
  color: var(--clr-burgundy);
  display: block;
}

.hero__body {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-2xl);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--clr-border);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stat-number {
  font-family: var(--ff-accent);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-burgundy);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}

/* Hero Image */
.hero__image-wrap {
  position: relative;
}

.hero__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  display: block;
}

.hero__image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--clr-burgundy);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.hero__image-badge {
  position: absolute;
  bottom: var(--space-xl);
  left: -20px;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--clr-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-burgundy);
}

/* Hero Geometric Shapes */
.hero__geo {
  position: absolute;
  z-index: 0;
}

.hero__geo--tl {
  top: 80px;
  left: 0;
  width: 120px;
  height: 120px;
  background: var(--clr-blush);
  border-radius: var(--radius-lg);
  transform: rotate(15deg);
  opacity: 0.5;
}

.hero__geo--br {
  bottom: 40px;
  right: calc(50% + 20px);
  width: 80px;
  height: 80px;
  background: var(--clr-burgundy);
  border-radius: 50%;
  opacity: 0.15;
}

/* ---- About ---- */
.about {
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 1;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about__image-stack {
  position: relative;
}

.about__image-main {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  display: block;
}

.about__image-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  border: 4px solid var(--clr-white);
  display: block;
}

.about__float-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: var(--clr-burgundy);
  color: var(--clr-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about__float-badge-year {
  font-family: var(--ff-accent);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.about__float-badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.85;
}

.about__content {
  padding: var(--space-xl) 0;
}

.about__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.pillar__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-blush-light);
  color: var(--clr-burgundy);
  border-radius: var(--radius-sm);
}

.pillar__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pillar__text strong {
  font-size: 1rem;
  color: var(--clr-dark);
}

.pillar__text span {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* ---- Offer ---- */
.offer {
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 1;
  background: var(--clr-blush-light);
  overflow: hidden;
}

.offer__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}

.offer__subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--clr-text-muted);
}

.offer__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.card {
  position: relative;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-burgundy);
}

.card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-burgundy), var(--clr-blush-mid));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card--feature {
  background: var(--clr-burgundy);
  border-color: var(--clr-burgundy);
}

.card--feature .card__accent {
  background: var(--clr-blush);
}

.card--feature .card__icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--clr-white);
}

.card--feature .card__title {
  color: var(--clr-white);
}

.card--feature .card__body {
  color: rgba(255, 255, 255, 0.8);
}

.card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-blush-light);
  color: var(--clr-burgundy);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  transition: all var(--transition);
}

.card:hover .card__icon {
  transform: scale(1.05);
}

.card__title {
  font-family: var(--ff-accent);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: var(--space-sm);
}

.card__body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--clr-text-muted);
}

.offer__geo {
  position: absolute;
  z-index: 0;
}

.offer__geo--1 {
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: var(--clr-burgundy);
  border-radius: 50%;
  opacity: 0.05;
}

.offer__geo--2 {
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: var(--clr-blush);
  border-radius: var(--radius-lg);
  transform: rotate(30deg);
  opacity: 0.3;
}

/* ---- Community ---- */
.community {
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 1;
  background: var(--clr-burgundy);
  overflow: hidden;
}

.community::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--clr-blush);
  border-radius: 50%;
  opacity: 0.07;
}

.community::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: var(--clr-white);
  border-radius: 50%;
  opacity: 0.04;
}

.community__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.community__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-2xl);
}

.community__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.community__list li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-white);
}

.community__list li svg {
  flex-shrink: 0;
  color: var(--clr-blush);
}

.community__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  display: block;
}

/* ---- Visit ---- */
.visit {
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 1;
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.visit__body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-2xl);
}

.visit__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.detail__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-blush-light);
  color: var(--clr-burgundy);
  border-radius: var(--radius-md);
}

.detail__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail__text strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  font-weight: 600;
}

.detail__text span,
.detail__text a {
  font-size: 1rem;
  color: var(--clr-dark);
  font-weight: 500;
  line-height: 1.5;
}

.detail__text a:hover {
  color: var(--clr-burgundy);
  text-decoration: underline;
}

/* ---- Form ---- */
.visit__form-wrap {
  position: sticky;
  top: 100px;
}

.visit__form-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}

.visit__form-title {
  font-family: var(--ff-accent);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: var(--space-xs);
}

.visit__form-subtitle {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.form__group {
  margin-bottom: var(--space-lg);
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: var(--space-sm);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--clr-dark);
  background: var(--clr-blush-light);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--clr-text-muted);
  opacity: 0.6;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--clr-burgundy);
  background: var(--clr-white);
  box-shadow: 0 0 0 3px rgba(123, 30, 58, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  padding: var(--space-2xl) var(--space-lg);
}

.form__success svg {
  color: var(--clr-burgundy);
}

.form__success-title {
  font-family: var(--ff-accent);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-dark);
}

.form__success-body {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ---- Footer ---- */
.footer {
  background: var(--clr-dark);
  color: var(--clr-white);
  padding: var(--space-4xl) 0 var(--space-xl);
  position: relative;
  z-index: 1;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-burgundy), var(--clr-blush-mid), var(--clr-burgundy));
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-md);
  max-width: 320px;
}

.footer__links-label,
.footer__contact-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-blush);
  margin-bottom: var(--space-lg);
}

.footer__links ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__links a:hover {
  color: var(--clr-blush);
  padding-left: var(--space-sm);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--clr-blush);
}

.footer__contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.6;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__grid,
  .about__grid,
  .community__inner,
  .visit__grid {
    gap: var(--space-2xl);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

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

@media (max-width: 768px) {
  :root {
    --space-4xl: 4rem;
    --space-3xl: 2.5rem;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--clr-white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 1000;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
  }

  .nav__link {
    display: block;
    padding: var(--space-md) var(--space-lg);
    font-size: 1.05rem;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .nav__cta {
    margin-top: var(--space-xl);
    justify-content: center;
    width: 100%;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 10, 16, 0.5);
    z-index: 999;
  }

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

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: calc(72px + var(--space-2xl));
    padding-bottom: var(--space-2xl);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero__headline {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero__image-wrap {
    order: -1;
  }

  .hero__image-accent {
    top: -10px;
    right: -10px;
  }

  .hero__image-badge {
    left: 10px;
    bottom: var(--space-md);
  }

  .hero__geo--tl {
    width: 80px;
    height: 80px;
  }

  .hero__geo--br {
    display: none;
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__image-float {
    right: 10px;
    bottom: -20px;
    width: 55%;
  }

  .about__float-badge {
    left: 10px;
    top: -10px;
  }

  /* Offer */
  .offer__cards {
    grid-template-columns: 1fr;
  }

  /* Community */
  .community__inner {
    grid-template-columns: 1fr;
  }

  .community__image {
    order: -1;
  }

  /* Visit */
  .visit__grid {
    grid-template-columns: 1fr;
  }

  .visit__form-wrap {
    sticky: unset;
    top: unset;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

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

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

  .hero__stats {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .hero__stat-divider {
    display: none;
  }

  .card {
    padding: var(--space-xl);
  }

  .visit__form-card {
    padding: var(--space-xl);
  }
}

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
