@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300;1,9..40,400&display=swap');

/* ═══ VARIABLES ═══ */
:root {
  --background: 40 20% 98%;
  --foreground: 40 10% 12%;
  --card: 40 15% 95%;
  --card-foreground: 40 10% 12%;
  --primary: 75 30% 18%;
  --primary-foreground: 40 15% 95%;
  --secondary: 72 20% 38%;
  --secondary-foreground: 40 20% 98%;
  --muted: 40 10% 92%;
  --muted-foreground: 40 5% 50%;
  --accent: 45 50% 48%;
  --accent-foreground: 40 10% 12%;
  --destructive: 0 72% 55%;
  --border: 40 8% 90%;
  --radius: 0.75rem;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, hsl(var(--accent) / 0.06), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, hsl(var(--secondary) / 0.04), transparent);
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

::selection { background: hsl(var(--accent) / 0.2); }

/* ═══ LAYOUT ═══ */
.section-container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .section-container { padding: 0 2.5rem; } }

.section-gap { padding: 6rem 0; }
@media (min-width: 768px) { .section-gap { padding: 9rem 0; } }

/* ═══ TYPOGRAPHY ═══ */
.label-sm {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}

.heading-xl {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .heading-xl { font-size: 3rem; } }
@media (min-width: 1024px) { .heading-xl { font-size: 3.75rem; } }

.heading-lg {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .heading-lg { font-size: 2.25rem; } }

.body-md {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}

.body-sm {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

/* ═══ BUTTONS ═══ */
.btn-primary {
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  transition: opacity 0.3s;
}
.btn-primary:hover { opacity: 0.9; }

.btn-outline {
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid hsl(var(--foreground) / 0.2);
  color: hsl(var(--foreground));
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
}

/* ═══ NAVBAR ═══ */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.top-bar {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  overflow: hidden;
  transition: max-height 0.7s cubic-bezier(0.16,1,0.3,1), opacity 0.7s;
  max-height: 2.5rem;
  opacity: 1;
}
.top-bar.hidden { max-height: 0; opacity: 0; }

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 2.25rem;
  gap: 1.5rem;
}
.top-bar a {
  font-size: 11px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.top-bar a:hover { opacity: 1; }
.top-bar .hours { font-size: 11px; opacity: 0.6; }
@media (max-width: 639px) { .top-bar .hours { display: none; } }

.main-nav {
  transition: all 0.5s;
}
.main-nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid hsl(var(--border) / 0.3);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo img {
  height: 3.5rem;
  width: auto;
  transition: all 0.3s;
}
.nav-logo:hover img { transform: scale(1.05); }

.nav-links { display: none; align-items: center; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  transition: all 0.3s;
}
.nav-links.transparent a { color: rgba(255,255,255,0.7); }
.nav-links.transparent a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-links.scrolled a { color: hsl(var(--foreground) / 0.6); }
.nav-links.scrolled a:hover { color: hsl(var(--foreground)); background: hsl(var(--muted) / 0.6); }

.nav-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 1.25rem;
  margin-left: 1rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}
.nav-cta.transparent {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.nav-cta.transparent:hover { background: rgba(255,255,255,0.25); }
.nav-cta.scrolled {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.nav-cta.scrolled:hover { opacity: 0.9; }

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  transition: background 0.3s;
}
@media (min-width: 768px) { .mobile-toggle { display: none; } }
.mobile-toggle:hover { background: rgba(255,255,255,0.1); }
.mobile-toggle.scrolled:hover { background: hsl(var(--muted) / 0.6); }
.mobile-toggle svg { width: 20px; height: 20px; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 6.25rem;
  background: hsl(var(--background));
  z-index: 40;
  padding: 2rem 1.5rem;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }

.mobile-menu a.mobile-link {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  padding: 1rem 0;
  display: block;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  transition: padding-left 0.3s;
}
.mobile-menu a.mobile-link:hover { padding-left: 0.5rem; }

.mobile-menu .mobile-cta {
  margin-top: auto;
  text-align: center;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 8s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1) translateX(0); }
  100% { transform: scale(1.12) translateX(-30px); }
}

.hero-overlay-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(75 30% 8% / 0.8), hsl(75 30% 8% / 0.4), transparent);
}
.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(75 30% 8%), transparent, transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 4rem;
}

.hero-text { max-width: 40rem; }
.hero-text .label-sm { color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }
.hero-text h1 { color: #fff; margin-bottom: 1.5rem; }
.hero-text h1 em { font-weight: 400; }
.hero-text .subtitle {
  color: rgba(255,255,255,0.7);
  max-width: 24rem;
  margin-bottom: 2rem;
}

.hero-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  transition: all 0.3s;
}
.hero-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg { color: rgba(255,255,255,0.4); width: 18px; height: 18px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ═══ STATS BAR ═══ */
.stats-bar {
  position: relative;
  z-index: 20;
  margin-top: -1.5rem;
  padding-bottom: 2rem;
}

.stats-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  border-radius: 1rem;
  box-shadow: 0 20px 60px -15px rgba(0,0,0,0.05);
  border: 1px solid hsl(var(--border) / 0.4);
  padding: 2.5rem 2rem;
}
@media (min-width: 768px) { .stats-card { padding: 2.5rem 3.5rem; } }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .stat-item:not(:last-child) { border-right: 1px solid hsl(var(--border) / 0.5); }
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: hsl(var(--primary));
}
@media (min-width: 768px) { .stat-value { font-size: 3rem; } }

.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

/* ═══ AREAS ═══ */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }

.area-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border) / 0.6);
  background: hsl(var(--card) / 0.5);
  padding: 2rem;
  transition: all 0.5s;
  cursor: default;
}
.area-card:hover {
  border-color: hsl(var(--secondary) / 0.3);
  background: hsl(var(--card));
}

.area-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--secondary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.5s;
}
.area-card:hover .area-icon { background: hsl(var(--secondary) / 0.2); }
.area-icon svg {
  width: 22px;
  height: 22px;
  stroke: hsl(var(--secondary));
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.5s;
}
.area-card:hover .area-icon svg { stroke: hsl(var(--accent)); }

.area-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.area-card:hover h3 { color: hsl(var(--secondary)); }

.area-card .area-line {
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: transparent;
  transition: background 0.5s;
}
.area-card:hover .area-line { background: hsl(var(--secondary) / 0.3); }

/* ═══ ABOUT ═══ */
.about-section { background: hsl(var(--card) / 0.6); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-image-wrapper { position: relative; }
.about-image {
  aspect-ratio: 3/4;
  max-width: 28rem;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px -15px hsl(var(--primary) / 0.25);
}
@media (min-width: 1024px) { .about-image { margin: 0; } }
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
@media (min-width: 1024px) { .about-badge { right: auto; left: -1rem; } }
.about-badge .name { font-family: var(--font-display); font-size: 14px; font-weight: 500; }
.about-badge .title { font-family: var(--font-body); font-size: 11px; opacity: 0.8; }

.about-content h2 { color: hsl(var(--foreground)); margin-bottom: 1.5rem; }
.about-content h2 em { font-weight: 400; }

.about-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: hsl(var(--foreground) / 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}
@media (min-width: 768px) { .about-quote { font-size: 1.5rem; } }

.about-text { color: hsl(var(--muted-foreground)); }
.about-text p + p { margin-top: 1rem; }

/* ═══ BLOG ═══ */
.blog-section { background: hsl(var(--card) / 0.6); }

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .blog-featured { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }

.blog-featured .featured-image {
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.blog-featured .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.blog-featured:hover .featured-image img { transform: scale(1.04); }

.blog-featured .featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}
.blog-featured .featured-content .label-sm { color: hsl(var(--accent)); margin-bottom: 0.75rem; }
.blog-featured .featured-content h3 {
  font-size: 1.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  transition: color 0.3s;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .blog-featured .featured-content h3 { font-size: 2.25rem; } }
.blog-featured:hover .featured-content h3 { color: hsl(var(--secondary)); }
.blog-featured .featured-meta { font-size: 14px; color: hsl(var(--muted-foreground)); }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  transition: transform 0.3s ease-out;
}
.blog-card:hover { transform: translateY(-4px); }

.blog-card .card-image {
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 16/10;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.blog-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.blog-card:hover .card-image img { transform: scale(1.04); }

.blog-card .label-sm { color: hsl(var(--accent)); margin-bottom: 0.5rem; }
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  line-height: 1.3;
  transition: color 0.3s;
}
@media (min-width: 768px) { .blog-card h3 { font-size: 1.25rem; } }
.blog-card:hover h3 { color: hsl(var(--secondary)); }

.blog-card .excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.blog-card .card-meta { font-size: 11px; color: hsl(var(--muted-foreground) / 0.6); }

.blog-all-btn { margin-top: 2rem; text-align: center; }
@media (min-width: 768px) { .blog-all-btn { display: none; } }
.blog-header .btn-outline { display: none; }
@media (min-width: 768px) { .blog-header .btn-outline { display: inline-flex; } }

/* ═══ CONTACT ═══ */
.contact-section {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }

.contact-info .label-sm { color: hsl(var(--primary-foreground) / 0.4); margin-bottom: 0.75rem; }
.contact-info .heading-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .contact-info .heading-row { flex-direction: row; align-items: flex-end; gap: 2rem; }
}
.contact-info h2 {
  font-size: 2.25rem;
  font-weight: 500;
  color: hsl(var(--primary-foreground));
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .contact-info h2 { font-size: 3rem; } }
.contact-info .heading-desc {
  color: hsl(var(--primary-foreground) / 0.6);
  max-width: 24rem;
}
@media (min-width: 768px) { .contact-info .heading-desc { padding-bottom: 0.25rem; } }
.contact-details { color: hsl(var(--primary-foreground) / 0.4); font-size: 14px; }
.contact-details p + p { margin-top: 0.5rem; }
.contact-details .email-line { margin-top: 0.75rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.contact-input {
  width: 100%;
  background: hsl(var(--muted) / 0.5);
  border-radius: 0.5rem;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 14px;
  color: hsl(var(--foreground));
  border: none;
  outline: none;
  transition: box-shadow 0.3s;
}
.contact-input::placeholder { color: hsl(var(--muted-foreground) / 0.5); }
.contact-input:focus { box-shadow: 0 0 0 2px hsl(var(--accent) / 0.3); }

textarea.contact-input { resize: none; min-height: 130px; }

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  transition: opacity 0.3s;
  align-self: flex-start;
}
.contact-submit:hover { opacity: 0.9; }
.contact-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-error { color: hsl(var(--destructive)); font-size: 11px; margin-top: 0.25rem; }
.form-success { color: hsl(120 40% 50%); font-size: 13px; margin-top: 0.5rem; }

/* ═══ FOOTER ═══ */
.site-footer { background-color: hsl(var(--primary)); color: hsl(var(--primary-foreground)); border-top: none; }
.footer-inner { padding: 4rem 0; }
@media (min-width: 768px) { .footer-inner { padding: 5rem 0; } }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 5fr 3fr 3fr; } }

.footer-brand .footer-logo-invert { height: 4rem; margin-bottom: 1.5rem; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand .desc { color: hsl(var(--primary-foreground) / 0.5); max-width: 24rem; line-height: 1.6; }

.footer-nav .label-sm { margin-bottom: 1.25rem; color: hsl(var(--primary-foreground) / 0.4); }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav a { font-size: 14px; color: hsl(var(--primary-foreground) / 0.6); transition: color 0.3s; }
.footer-nav a:hover { color: hsl(var(--primary-foreground)); }

.footer-contact .label-sm { margin-bottom: 1.25rem; color: hsl(var(--primary-foreground) / 0.4); }
.footer-email { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 14px; color: hsl(var(--primary-foreground) / 0.6); transition: color 0.3s; }
.footer-email:hover { color: hsl(var(--primary-foreground)); }
.footer-email svg { opacity: 0.6; }

.footer-social { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
.social-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  border: 1px solid hsl(var(--primary-foreground) / 0.15);
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--primary-foreground) / 0.4);
  transition: all 0.3s;
}
.social-icon:hover { color: hsl(var(--primary-foreground)); border-color: hsl(var(--primary-foreground) / 0.4); }

.footer-bottom {
  border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom p { font-size: 11px; color: hsl(var(--primary-foreground) / 0.3); }

/* ═══ BLOG PAGE ═══ */
.blog-page-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) { .blog-page-layout { flex-direction: row; gap: 4rem; } }

.blog-sidebar {
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .blog-sidebar { width: 220px; position: sticky; top: 7rem; align-self: flex-start; }
}

.search-wrapper { position: relative; margin-bottom: 2rem; }
.search-wrapper svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--muted-foreground) / 0.5);
  width: 15px;
  height: 15px;
}
.search-input {
  width: 100%;
  background: hsl(var(--muted) / 0.5);
  border-radius: 0.5rem;
  padding: 0.625rem 2rem 0.625rem 2.25rem;
  font-size: 14px;
  color: hsl(var(--foreground));
  border: none;
  outline: none;
  transition: box-shadow 0.3s;
}
.search-input::placeholder { color: hsl(var(--muted-foreground) / 0.5); }
.search-input:focus { box-shadow: 0 0 0 2px hsl(var(--accent) / 0.3); }

.category-filters { display: flex; flex-wrap: wrap; gap: 0.25rem; }
@media (min-width: 1024px) { .category-filters { flex-direction: column; } }

.category-btn {
  text-align: left;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 0.375rem 0.5rem;
  border-radius: 0.375rem;
  color: hsl(var(--muted-foreground));
  transition: all 0.3s;
}
.category-btn:hover { color: hsl(var(--foreground)); }
.category-btn.active {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
  font-weight: 500;
}

.blog-main { flex: 1; min-width: 0; }

.blog-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 2rem;
}
@media (min-width: 768px) { .blog-page-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; } }

.empty-state { text-align: center; padding: 5rem 0; color: hsl(var(--muted-foreground)); }

/* ═══ BLOG POST PAGE ═══ */
.post-cover {
  padding-top: 5rem;
}
@media (min-width: 768px) { .post-cover { padding-top: 6rem; } }

.post-cover-image {
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 21/9;
}
@media (min-width: 768px) { .post-cover-image { aspect-ratio: 21/8; } }
.post-cover-image img { width: 100%; height: 100%; object-fit: cover; }

.post-article { max-width: 48rem; margin: 0 auto; padding: 3rem 0 4rem; }
@media (min-width: 768px) { .post-article { padding: 4rem 0; } }

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 14px;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  transition: color 0.3s;
}
.post-back:hover { color: hsl(var(--foreground)); }
.post-back svg { width: 14px; height: 14px; }

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.post-meta .label-sm { color: hsl(var(--accent)); }
.post-meta span { font-size: 11px; color: hsl(var(--muted-foreground)); }

.post-title { color: hsl(var(--foreground)); margin-bottom: 2.5rem; text-wrap: balance; }

.post-body { margin-bottom: 4rem; }
.post-body p { margin-bottom: 1.25rem; }
.post-body p:first-child { color: hsl(var(--foreground)); font-size: 16px; }
.post-body p:not(:first-child) { color: hsl(var(--muted-foreground)); }

.share-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  margin-bottom: 2.5rem;
}
.share-bar .share-icons { display: flex; gap: 0.5rem; margin-left: auto; }
.share-btn {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  transition: all 0.3s;
}
.share-btn:hover { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
.share-btn svg { width: 16px; height: 16px; }

.post-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) { .post-nav { grid-template-columns: 1fr 1fr; } }

.post-nav-link {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: hsl(var(--card));
  transition: background 0.3s;
}
.post-nav-link:hover { background: hsl(var(--muted)); }
.post-nav-link.next { align-items: flex-end; text-align: right; }
.post-nav-link .nav-label { margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.25rem; }
.post-nav-link .nav-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  transition: color 0.3s;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-nav-link:hover .nav-title { color: hsl(var(--secondary)); }

.post-cta { text-align: center; }
.post-cta p { color: hsl(var(--muted-foreground)); margin-bottom: 1rem; }

/* ═══ ANIMATIONS ═══ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ AMBIENT ORBS ═══ */
.ambient-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.ambient-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.ambient-orbs .orb-1 {
  top: -30%;
  right: -15%;
  width: 60vw;
  height: 60vw;
  background: hsl(var(--accent) / 0.04);
  filter: blur(120px);
}
.ambient-orbs .orb-2 {
  top: 40%;
  left: -20%;
  width: 50vw;
  height: 50vw;
  background: hsl(var(--secondary) / 0.03);
}
.ambient-orbs .orb-3 {
  bottom: -20%;
  right: 10%;
  width: 40vw;
  height: 40vw;
  background: hsl(var(--primary) / 0.03);
}

/* ═══ WHATSAPP FLOAT ═══ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  box-shadow: 0 10px 30px -5px hsl(var(--accent) / 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px -5px hsl(var(--accent) / 0.7);
}
.whatsapp-float svg { position: relative; z-index: 1; }
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background-color: hsl(var(--accent));
  opacity: 0.2;
  animation: whatsapp-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes whatsapp-ping {
  0% { transform: scale(1); opacity: 0.35; }
  75%, 100% { transform: scale(1.6); opacity: 0; }
}
