/* ============================================
   AZULINDO FOOD TRUCK — STYLESHEET
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --burgundy-900: #4a0e1a;
  --burgundy-800: #5c1a2a;
  --burgundy-700: #6b2137;
  --burgundy-600: #7d2d44;
  --burgundy-500: #8e3350;
  --burgundy-400: #a84462;
  --burgundy-300: #c4607e;
  --burgundy-200: #db8a9f;
  --burgundy-100: #edafc0;
  --burgundy-50:  #f7d6e2;

  --blush-50:  #fdf2f0;
  --blush-100: #fce8e3;
  --blush-200: #f9d4cc;
  --blush-300: #f3b4a8;
  --blush-400: #e98f7e;
  --blush-500: #dd6a54;
  --blush-600: #c94d35;
  --blush-700: #a83824;

  --cream: #fefaf6;
  --cream-dark: #fdf3eb;
  --warm-gray-50:  #faf8f6;
  --warm-gray-100: #f5f0ec;
  --warm-gray-200: #ebe4de;
  --warm-gray-300: #d4ccc4;
  --warm-gray-400: #a89e94;
  --warm-gray-500: #7a7068;
  --warm-gray-600: #5c534b;
  --warm-gray-700: #3d3730;
  --warm-gray-800: #2a2420;
  --warm-gray-900: #1a1512;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 3px rgba(92, 26, 42, 0.06), 0 1px 2px rgba(92, 26, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(92, 26, 42, 0.08), 0 2px 6px rgba(92, 26, 42, 0.05);
  --shadow-lg: 0 12px 40px rgba(92, 26, 42, 0.12), 0 4px 12px rgba(92, 26, 42, 0.06);
  --shadow-xl: 0 24px 60px rgba(92, 26, 42, 0.15), 0 8px 20px rgba(92, 26, 42, 0.08);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --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(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--warm-gray-800);
  background-color: var(--bg-cream, var(--cream));
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent {
  color: var(--burgundy-600);
}

/* ---------- Section Headers ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy-500);
  background: var(--burgundy-50);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--warm-gray-900);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--warm-gray-500);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--burgundy-700);
  color: #fff;
  box-shadow: 0 4px 16px rgba(92, 26, 42, 0.3);
}

.btn-primary:hover {
  background: var(--burgundy-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92, 26, 42, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy-600);
  border: 2px solid var(--burgundy-200);
}

.btn-outline:hover {
  background: var(--burgundy-50);
  border-color: var(--burgundy-400);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

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

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 250, 246, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(92, 26, 42, 0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(254, 250, 246, 0.96);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--burgundy-700);
}

.nav-logo-icon {
  font-size: 1.6rem;
}

.nav-logo-text {
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--warm-gray-600);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--burgundy-600);
  background: var(--burgundy-50);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  color: var(--warm-gray-700);
}

.nav-toggle:hover {
  background: var(--warm-gray-100);
}

.hamburger-close {
  display: none;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(254, 250, 246, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(92, 26, 42, 0.08);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 1rem;
  }

  .nav-toggle .hamburger {
    display: block;
  }

  .nav-toggle .hamburger-close {
    display: none;
  }

  .nav-toggle.active .hamburger {
    display: none;
  }

  .nav-toggle.active .hamburger-close {
    display: block;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--burgundy-800) 0%, var(--burgundy-700) 50%, var(--burgundy-600) 100%);
  overflow: hidden;
  padding: 120px 0 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(220, 106, 84, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(196, 96, 126, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blush-200);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--blush-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.hero-headline .text-accent {
  color: var(--blush-300);
}

.hero-headline em {
  font-style: italic;
  color: var(--blush-200);
}

.hero-subheadline {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hero Images */
.hero-image {
  position: relative;
  height: 620px;
}

.hero-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.hero-img-float {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 58%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--burgundy-700);
  box-shadow: var(--shadow-md);
}

.float-badge svg {
  color: #f59e0b;
}

.hero-img-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(ellipse, rgba(220, 106, 84, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-wave {
  margin-top: -1px;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-image {
    height: 450px;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 0 0;
    min-height: auto;
  }

  .hero-image {
    height: 350px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }
}

/* ---------- Menu Section ---------- */
.menu {
  background: var(--cream);
  padding: 100px 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.menu-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(92, 26, 42, 0.05);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.menu-card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--burgundy-600);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.menu-card-body {
  padding: 24px;
}

.menu-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--warm-gray-900);
  margin-bottom: 10px;
}

.menu-card-body p {
  font-size: 0.92rem;
  color: var(--warm-gray-500);
  line-height: 1.7;
  margin-bottom: 18px;
}

.menu-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--warm-gray-500);
  background: var(--blush-50);
  border: 1px solid var(--blush-200);
  border-radius: var(--radius-md);
  padding: 16px 24px;
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu {
    padding: 70px 0;
  }
}

/* ---------- About Section ---------- */
.about {
  background: var(--cream-dark);
  padding: 100px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 580px;
}

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

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

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--cream-dark);
}

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

.about-experience {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  background: var(--burgundy-700);
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about-experience .exp-number {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blush-300);
  margin-bottom: 4px;
}

.about-experience .exp-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  font-size: 1rem;
  color: var(--warm-gray-600);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-values {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--burgundy-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy-600);
}

.value-item strong {
  display: block;
  font-size: 1rem;
  color: var(--warm-gray-900);
  margin-bottom: 4px;
}

.value-item span {
  font-size: 0.88rem;
  color: var(--warm-gray-500);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    height: 420px;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-content .section-title {
    text-align: center;
  }

  .about-content .section-tag {
    display: block;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .about {
    padding: 70px 0;
  }

  .about-images {
    height: 340px;
  }
}

/* ---------- Gallery ---------- */
.gallery {
  background: var(--cream);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item--large {
  grid-column: 1 / 8;
  grid-row: 1 / 2;
  height: 360px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
  height: 220px;
}

.gallery-item--wide {
  grid-column: 1 / 13;
  grid-row: 2 / 3;
  height: 240px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--large {
    grid-column: 1 / -1;
    height: 260px;
  }

  .gallery-item--wide {
    grid-column: 1 / -1;
    height: 200px;
  }

  .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--large,
  .gallery-item--wide {
    grid-column: 1 / -1;
  }

  .gallery {
    padding: 70px 0;
  }
}

/* ---------- Catering ---------- */
.catering {
  background: linear-gradient(135deg, var(--burgundy-800) 0%, var(--burgundy-700) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.catering::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(220, 106, 84, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.catering .container {
  position: relative;
  z-index: 2;
}

.catering-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.catering-content .section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--blush-200);
}

.catering-content .section-title {
  color: #fff;
  text-align: left;
}

.catering-content .section-title .text-accent {
  color: var(--blush-300);
}

.catering-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  margin-bottom: 32px;
}

.catering-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.catering-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.catering-features li svg {
  color: var(--blush-400);
  flex-shrink: 0;
}

.catering-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 580px;
}

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

.catering-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(74, 14, 26, 0.95) 0%, rgba(74, 14, 26, 0.7) 70%, transparent 100%);
  padding: 40px 28px 28px;
}

.catering-quote svg {
  color: var(--blush-300);
  margin-bottom: 12px;
}

.catering-quote p {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 10px;
}

.catering-quote span {
  font-size: 0.82rem;
  color: var(--blush-300);
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .catering-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .catering-content .section-title,
  .catering-content .section-tag {
    text-align: center;
    display: block;
  }

  .catering-text {
    text-align: center;
  }

  .catering-image {
    height: 400px;
    max-width: 550px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .catering {
    padding: 70px 0;
  }

  .catering-image {
    height: 300px;
  }
}

/* ---------- Contact ---------- */
.contact {
  background: var(--cream);
  padding: 100px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(92, 26, 42, 0.05);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--burgundy-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy-600);
}

.contact-card strong {
  display: block;
  font-size: 1rem;
  color: var(--warm-gray-900);
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--warm-gray-500);
  line-height: 1.7;
}

.contact-card a {
  color: var(--burgundy-600);
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--burgundy-400);
  text-decoration: underline;
}

.contact-form-wrapper {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(92, 26, 42, 0.05);
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-gray-900);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm-gray-700);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--warm-gray-800);
  background: var(--warm-gray-50);
  border: 2px solid var(--warm-gray-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy-400);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(142, 51, 80, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--burgundy-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--burgundy-600);
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--warm-gray-900);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--warm-gray-500);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 70px 0;
  }

  .contact-form-wrapper {
    padding: 24px;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--warm-gray-900);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--blush-300);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--blush-300);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
