/* ============================================================
   CASEIRINHO — Premium Design System
   ============================================================ */
:root {
  --red: #c41e24;
  --red-dark: #9a161b;
  --red-glow: rgba(196, 30, 36, 0.35);
  --green: #0f3d32;
  --green-light: #1a5c4a;
  --green-glow: rgba(15, 61, 50, 0.4);
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --cream: #faf6ee;
  --cream-dark: #ede5d4;
  --brown: #7a4f35;
  --dark: #0d0d0d;
  --dark-soft: #1a1814;
  --dark-card: #141210;
  --gray: #6b6560;
  --gray-light: #a39e97;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 4px 24px rgba(13, 13, 13, 0.06);
  --shadow-md: 0 12px 48px rgba(13, 13, 13, 0.12);
  --shadow-lg: 0 24px 80px rgba(13, 13, 13, 0.18);
  --shadow-glow: 0 0 60px var(--red-glow);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 88px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  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");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition), transform var(--transition), opacity var(--transition); }
ul { list-style: none; }

.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

.section { padding: 7rem 0; position: relative; }
.section-dark { background: var(--dark-soft); color: var(--white); }
.section-cream { background: var(--cream); }

/* Typography */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.section-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.section-dark .section-eyebrow { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--red);
}

.section-dark .section-title em { color: var(--gold-light); }

.section-desc {
  font-size: 1.125rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 560px;
}

.section-dark .section-desc { color: rgba(255,255,255,0.65); }

.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin-inline: auto; }

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn:hover::after { transform: translateX(120%); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 32px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px var(--red-glow);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.35);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-whatsapp {
  background: #128c47;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(18, 140, 71, 0.35);
}

.btn-whatsapp:hover {
  background: #0f7340;
  transform: translateY(-3px);
}

.btn-sm { padding: 0.75rem 1.5rem; font-size: 0.8125rem; }

.btn-icon svg { width: 18px; height: 18px; }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition);
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.6), transparent);
  opacity: 1;
  transition: opacity var(--transition);
  pointer-events: none;
}

.header.scrolled::before { opacity: 0; }

.header.scrolled {
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(13,13,13,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 1;
}

.logo img {
  height: 56px;
  width: auto;
  background: transparent;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
  transition: transform var(--transition);
}

.logo:hover img { transform: scale(1.03); }

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding: 0.25rem 0;
}

.header.scrolled .nav-link { color: var(--dark); }

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--gold-light); }

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active { color: var(--red); }

.header.scrolled .nav-link::after { background: var(--red); }

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.header.scrolled .menu-toggle span { background: var(--dark); }

.menu-toggle.active span { background: var(--dark) !important; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Hero Premium */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(196,30,36,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(15,61,50,0.25) 0%, transparent 55%),
    linear-gradient(160deg, #0d0d0d 0%, #1a1814 40%, #0f3d32 100%);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1920&q=85") center/cover no-repeat;
  opacity: 0.22;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  min-height: 100vh;
  min-height: 100dvh;
}

.hero-content { color: var(--white); }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem 0.5rem 0.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  animation: fadeUp 1s ease 0.2s both;
}

.hero-label-dot {
  width: 8px; height: 8px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 12px #25d366;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease 0.35s both;
}

.hero-title span {
  display: block;
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.1875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease 0.5s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 1s ease 0.65s both;
}

.hero-metrics {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 1s ease 0.8s both;
}

.hero-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
}

.hero-metric span {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.375rem;
  display: block;
}

.hero-visual {
  position: relative;
  height: 580px;
  animation: fadeUp 1.2s ease 0.4s both;
}

.hero-collage {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-img:hover img { transform: scale(1.08); }

.hero-img-main {
  width: 72%;
  height: 75%;
  top: 5%;
  right: 0;
  z-index: 2;
}

.hero-img-secondary {
  width: 48%;
  height: 42%;
  bottom: 0;
  left: 0;
  z-index: 3;
  border: 4px solid var(--dark);
}

.hero-img-accent {
  width: 38%;
  height: 32%;
  top: 0;
  left: 8%;
  z-index: 1;
  opacity: 0.85;
}

.hero-logo-float {
  position: absolute;
  bottom: 12%;
  right: -5%;
  z-index: 4;
  background: rgba(250,246,238,0.97);
  backdrop-filter: blur(20px);
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.hero-logo-float img { width: 140px; margin: 0 auto 0.5rem; background: transparent; }
.hero-logo-float p { font-size: 0.8125rem; color: var(--gray); max-width: 160px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1.2s both;
}

.hero-desc-short { display: none; }

.hero-mobile-brand {
  display: none;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Marquee */
.marquee {
  background: var(--red);
  color: var(--white);
  padding: 1.125rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-style: italic;
  white-space: nowrap;
}

.marquee-item::after {
  content: "✦";
  color: var(--gold-light);
  font-style: normal;
  font-size: 0.875rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.pillar {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--cream-dark);
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar:last-child { border-right: none; }

.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.pillar:hover { background: var(--cream); }
.pillar:hover::before { transform: scaleX(1); }

.pillar-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}

.pillar:hover .pillar-num { color: var(--red); }

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
}

.pillar p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Editorial About */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.editorial-images {
  position: relative;
  height: 620px;
}

.editorial-img-main {
  position: absolute;
  width: 75%;
  height: 85%;
  top: 0;
  left: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.editorial-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-img-secondary {
  position: absolute;
  width: 55%;
  height: 45%;
  bottom: 0;
  right: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.editorial-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-badge {
  position: absolute;
  top: 10%;
  right: 5%;
  z-index: 3;
  width: 120px;
  height: 120px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  animation: float 5s ease-in-out infinite;
}

.editorial-badge strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
}

.editorial-badge span {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-content .section-desc { margin-bottom: 2rem; }

.editorial-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-style: italic;
  color: var(--green);
  line-height: 1.5;
}

/* Bento Menu */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1.25rem;
}

.bento-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-item:hover img { transform: scale(1.08); }

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--white);
  transition: background var(--transition);
}

.bento-item:hover .bento-overlay {
  background: linear-gradient(to top, rgba(196,30,36,0.9) 0%, rgba(13,13,13,0.3) 100%);
}

.bento-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.bento-item h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.bento-item p {
  font-size: 0.875rem;
  opacity: 0.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), opacity var(--transition);
}

.bento-item:hover p {
  max-height: 60px;
  opacity: 1;
}

.bento-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.bento-item:nth-child(2) { grid-column: span 4; }
.bento-item:nth-child(3) { grid-column: span 3; }
.bento-item:nth-child(4) { grid-column: span 4; }
.bento-item:nth-child(5) { grid-column: span 3; }

/* Gallery Strip */
.gallery-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.5rem 0;
  margin: 0 -1.5rem;
  padding-inline: 1.5rem;
}

.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 320px;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: inherit;
  pointer-events: none;
}

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

.testimonial {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: all var(--transition);
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--dark-soft);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--gray);
}

/* Units Premium */
.units-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.unit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.unit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.unit-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.unit-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.unit-card:hover .unit-card-image img { transform: scale(1.06); }

.unit-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.7), transparent 60%);
}

.unit-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.unit-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }

.unit-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.unit-info { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; flex: 1; }

.unit-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.5;
}

.unit-info-item svg { flex-shrink: 0; margin-top: 3px; color: var(--red); }

.unit-actions { display: flex; flex-wrap: wrap; gap: 0.625rem; }

/* CTA Split */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-split-image {
  position: relative;
  overflow: hidden;
}

.cta-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-split-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(13,13,13,0.3));
}

.cta-split-content {
  background: var(--dark-soft);
  color: var(--white);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-split-content .section-title { margin-bottom: 1rem; }
.cta-split-content .section-desc { margin-bottom: 2rem; color: rgba(255,255,255,0.65); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.section-cta-home {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  background: var(--cream);
}

/* Page Hero Internal */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 5rem) 0 5rem;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(196,30,36,0.15), transparent),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(15,61,50,0.2), transparent),
    var(--dark);
}

.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
}

.breadcrumb a:hover { color: var(--gold-light); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.page-hero p {
  font-size: 1.1875rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.7;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--cream-dark), var(--red), var(--cream-dark));
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2.5rem);
  position: relative;
  margin-bottom: 3.5rem;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2.5rem);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  background: var(--red);
  border: 3px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(196,30,36,0.15);
  top: 1rem;
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  max-width: 380px;
  transition: all var(--transition);
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.timeline-content p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Menu cards (internal pages) */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: all var(--transition);
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.menu-card-image { height: 240px; overflow: hidden; }

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.menu-card:hover .menu-card-image img { transform: scale(1.08); }

.menu-card-body { padding: 1.75rem; }

.menu-highlight {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.menu-card-body p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.65;
}

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

.contact-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.contact-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-icon svg { width: 32px; height: 32px; }

.contact-icon.whatsapp { background: rgba(18,140,71,0.12); color: #128c47; }
.contact-icon.instagram { background: rgba(196,30,36,0.08); color: var(--red); }
.contact-icon.facebook { background: rgba(15,61,50,0.1); color: var(--green); }

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.contact-card p {
  font-size: 0.9375rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

/* About preview (legacy compat) */
.about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--red); color: var(--white); padding: 1.25rem 1.75rem; border-radius: var(--radius-sm); font-family: var(--font-display); box-shadow: var(--shadow-md); }
.about-image-badge strong { display: block; font-size: 2.5rem; line-height: 1; }
.about-content .section-eyebrow, .about-content .section-title { text-align: left; }
.about-content p { color: var(--gray); margin-bottom: 1rem; line-height: 1.75; }

/* Features (legacy) */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius-lg); padding: 2.5rem; transition: all var(--transition); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
.feature-icon.red { background: rgba(196,30,36,0.08); }
.feature-icon.green { background: rgba(15,61,50,0.08); }
.feature-icon.brown { background: rgba(122,79,53,0.08); }
.feature-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.625rem; }
.feature-card p { color: var(--gray); font-size: 0.9375rem; line-height: 1.65; }

/* Footer Premium */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand img { height: 72px; margin-bottom: 1.5rem; background: transparent; filter: brightness(1.1); }
.footer-brand p { font-size: 0.9375rem; line-height: 1.75; margin-bottom: 2rem; max-width: 320px; }

.social-links { display: flex; gap: 0.75rem; }

.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-4px);
}

.social-link svg { width: 18px; height: 18px; fill: var(--white); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { font-size: 0.9375rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 64px;
  height: 64px;
  background: #128c47;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(18,140,71,0.45);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 48px rgba(18,140,71,0.55);
}

.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

.text-center { text-align: center; }
.mt-4 { margin-top: 2.5rem; }

/* Responsive — Tablet */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
    padding-bottom: 5rem;
  }

  .hero-content { text-align: center; }
  .hero-desc { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-label { margin-inline: auto; }

  .hero-visual {
    height: 460px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-img-secondary,
  .hero-img-accent {
    display: none;
  }

  .hero-img-main {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
  }

  .hero-logo-float {
    right: 50%;
    transform: translateX(50%);
    bottom: -2rem;
    animation: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    width: auto;
    min-width: 280px;
    padding: 1rem 1.25rem;
  }

  .hero-logo-float img {
    width: 72px;
    margin: 0;
  }

  .hero-logo-float p {
    text-align: left;
    max-width: none;
  }

  .hero-collage {
    height: 380px;
  }

  .hero-metrics { justify-content: center; }

  .editorial {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .editorial-images {
    height: 480px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .editorial-content { text-align: center; }
  .editorial-content .section-eyebrow { justify-content: center; }
  .editorial-content .section-desc { margin-inline: auto; }
  .editorial-quote { text-align: left; }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .bento-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
    height: 260px;
  }

  .bento-item:nth-child(1) {
    grid-column: span 2;
    height: 320px;
  }

  .cta-split { grid-template-columns: 1fr; }
  .cta-split-image { height: 280px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* Responsive — Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
    --radius-lg: 20px;
  }

  .header {
    padding-top: env(safe-area-inset-top, 0);
  }

  .header-inner {
    padding-inline: 0;
  }

  .container {
    width: min(100% - 2rem, var(--container));
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .section-desc {
    font-size: 1rem;
  }

  /* Header & Menu */
  .menu-toggle {
    display: flex;
    z-index: 1002;
  }

  .logo img {
    height: 44px;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: calc(var(--header-height) + 1rem) 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 1001;
    overflow-y: auto;
  }

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

  .nav-link {
    color: var(--dark) !important;
    font-size: 1.0625rem;
    padding: 1rem 0;
    width: min(100%, 320px);
    text-align: center;
    border-bottom: 1px solid var(--cream-dark);
  }

  .nav-link::after { display: none; }

  .nav-cta {
    margin-top: 1.5rem;
    width: min(100%, 320px);
  }

  .nav-cta .btn {
    width: 100%;
    min-height: 48px;
  }

  /* Hero — layout mobile dedicado */
  .hero {
    min-height: auto;
  }

  .hero-bg-image {
    opacity: 0.15;
  }

  .header:not(.scrolled) {
    background: rgba(13, 13, 13, 0.55);
    backdrop-filter: blur(12px);
  }

  .header:not(.scrolled)::before {
    opacity: 0;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: calc(var(--header-height) + 1.25rem) 0 2rem;
    min-height: auto;
  }

  .hero-content {
    display: contents;
  }

  .hero-label {
    order: 1;
    font-size: 0.6875rem;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem 0.4rem 0.4rem;
  }

  .hero-title {
    order: 2;
    font-size: clamp(2rem, 8.5vw, 2.75rem);
    margin-bottom: 1.25rem;
    text-align: center;
  }

  .hero-desc-full {
    display: none;
  }

  .hero-desc-short {
    display: block;
    order: 4;
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
    max-width: 100%;
  }

  .hero-visual {
    order: 3;
    height: auto;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1.25rem;
    animation: none;
  }

  .hero-collage {
    display: block;
    height: auto;
    position: relative;
  }

  .hero-img {
    position: static;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  }

  .hero-img-main {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
  }

  .hero-img-secondary,
  .hero-img-accent {
    display: none;
  }

  .hero-logo-float {
    position: static;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
    padding: 1rem 1.125rem;
    border-radius: var(--radius);
    background: rgba(250, 246, 238, 0.95);
    box-shadow: var(--shadow-md);
    animation: none;
    transform: none;
  }

  .hero-logo-float img {
    width: 64px;
    margin: 0;
    flex-shrink: 0;
  }

  .hero-logo-float p {
    font-size: 0.8125rem;
    color: var(--gray);
    max-width: none;
    text-align: left;
    line-height: 1.4;
  }

  .hero-actions {
    order: 5;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1.25rem;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
    font-size: 0.8125rem;
  }

  .hero-metrics {
    order: 6;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    border: none;
    border-top: none;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    overflow: hidden;
  }

  .hero-metric {
    text-align: center;
    padding: 1rem 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 0;
  }

  .hero-metric:last-child {
    border-right: none;
  }

  .hero-metric strong {
    font-size: 1.625rem;
    margin-bottom: 0.25rem;
  }

  .hero-metric span {
    font-size: 0.5625rem;
    letter-spacing: 0.04em;
    line-height: 1.35;
    display: block;
  }

  .hero-scroll {
    display: none;
  }

  /* Marquee */
  .marquee {
    padding: 0.875rem 0;
  }

  .marquee-item {
    font-size: 1.0625rem;
    padding: 0 1.25rem;
    gap: 1.25rem;
  }

  /* Pillars */
  .pillars-grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }

  .pillar {
    padding: 2rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
  }

  .pillar:last-child { border-bottom: none; }

  .pillar-num {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .pillar h3 {
    font-size: 1.5rem;
  }

  /* Editorial */
  .editorial {
    gap: 2.5rem;
  }

  .editorial-images {
    order: -1;
    height: 340px;
  }

  .editorial-images:not(:has(.editorial-img-secondary)) .editorial-img-main {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .editorial-badge {
    width: 96px;
    height: 96px;
  }

  .editorial-badge strong {
    font-size: 1.75rem;
  }

  .editorial-quote {
    font-size: 1.125rem;
    margin: 1.5rem 0;
  }

  .editorial-content .btn {
    width: 100%;
    max-width: 360px;
  }

  /* Bento — touch: always show text */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .bento-item:nth-child(n) {
    grid-column: span 1;
    height: 220px;
  }

  .bento-item:nth-child(1) {
    height: 280px;
  }

  .bento-overlay {
    padding: 1.25rem;
  }

  .bento-item h3 {
    font-size: 1.375rem;
  }

  .bento-item p {
    max-height: none;
    opacity: 0.85;
    font-size: 0.8125rem;
    line-height: 1.45;
  }

  /* Gallery */
  .gallery-strip {
    margin: 0 -1rem;
    padding-inline: 1rem;
    gap: 0.75rem;
  }

  .gallery-item {
    flex: 0 0 260px;
    height: 320px;
  }

  /* Testimonials */
  .testimonials-grid,
  .menu-grid,
  .features-grid,
  .units-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .testimonial {
    padding: 1.75rem;
  }

  .testimonial p {
    font-size: 1.0625rem;
  }

  /* Units */
  .unit-card-body {
    padding: 1.25rem;
  }

  .unit-card-body h3 {
    font-size: 1.25rem;
  }

  .unit-actions {
    flex-direction: column;
  }

  .unit-actions .btn {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  /* CTA Split */
  .cta-split {
    min-height: auto;
    border-radius: var(--radius);
  }

  .cta-split-image {
    height: 220px;
  }

  .cta-split-content {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .cta-split-content .section-eyebrow {
    justify-content: center;
  }

  .cta-split-content .section-desc {
    margin-inline: auto;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  /* Page Hero */
  .page-hero {
    padding: calc(var(--header-height) + 2.5rem) 0 2.5rem;
    text-align: center;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 9vw, 3.25rem);
  }

  .page-hero p {
    font-size: 1rem;
    margin-inline: auto;
  }

  .breadcrumb {
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  /* Timeline */
  .timeline::before { left: 1rem; }

  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 3rem;
    padding-right: 0;
    justify-content: flex-start;
    margin-bottom: 2rem;
  }

  .timeline-dot { left: 1rem; }

  .timeline-content {
    max-width: 100%;
    padding: 1.5rem;
  }

  .timeline-year {
    font-size: 1.625rem;
  }

  /* Menu cards */
  .menu-card-image {
    height: 200px;
  }

  .menu-card-body {
    padding: 1.25rem;
  }

  .menu-card-body h3 {
    font-size: 1.25rem;
  }

  /* Contact */
  .contact-card {
    padding: 2rem 1.5rem;
  }

  .contact-card .btn {
    width: 100%;
    min-height: 44px;
  }

  /* Buttons global */
  .btn {
    padding: 0.875rem 1.5rem;
  }

  .text-center .btn,
  .section-header.center + * .btn {
    max-width: 360px;
    width: 100%;
  }

  /* Footer */
  .footer {
    padding: 3.5rem 0 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Misc */
  .about-preview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: max(1.25rem, env(safe-area-inset-bottom, 1.25rem));
    right: max(1.25rem, env(safe-area-inset-right, 1.25rem));
  }

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

  /* Disable hover lift on touch devices */
  .unit-card:hover,
  .testimonial:hover,
  .menu-card:hover,
  .feature-card:hover,
  .contact-card:hover,
  .pillar:hover {
    transform: none;
  }
}

/* Responsive — Small phones */
@media (max-width: 480px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .section {
    padding: 3rem 0;
  }

  .hero-img-main {
    aspect-ratio: 16 / 11;
  }

  .hero-metric strong {
    font-size: 1.875rem;
  }

  .editorial-images {
    height: 300px;
  }

  .editorial-img-secondary {
    border-width: 4px;
  }

  .gallery-item {
    flex: 0 0 240px;
    height: 280px;
  }

  .bento-item:nth-child(n) {
    height: 200px;
  }

  .bento-item:nth-child(1) {
    height: 240px;
  }

  .pillar {
    padding: 1.75rem 1.25rem;
  }

  .unit-card-image {
    height: 180px;
  }

  .cta-split-image {
    height: 200px;
  }

  .cta-split-content {
    padding: 1.75rem 1.25rem;
  }

  .page-hero {
    padding: calc(var(--header-height) + 2rem) 0 2rem;
  }
}

/* Touch devices — show bento descriptions without hover */
@media (hover: none) and (pointer: coarse) {
  .bento-item p {
    max-height: none;
    opacity: 0.85;
  }
}
