/* ============================================
   Mang Larry's Isawan - Shared Styles
   Colors: Red #d42b2b, Brown #3d2314, Cream #fdf5e6
   Fonts: Rubik (headings) + Roboto (body)
   ============================================ */

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

:root {
  --red: #d42b2b;
  --red-dark: #b01f1f;
  --brown: #3d2314;
  --brown-light: #5a3a28;
  --cream: #fdf5e6;
  --cream-dark: #f5e6c8;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray: #666666;
  --gray-light: #f0f0f0;
  --shadow: 0 2px 12px rgba(61, 35, 20, 0.12);
  --shadow-lg: 0 8px 32px rgba(61, 35, 20, 0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--brown);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

a:hover {
  color: var(--red-dark);
}

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

ul, ol {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Utility --- */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: var(--brown);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn-outline:hover {
  background-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 1rem 0;
  background-color: var(--cream-dark);
  border-bottom: 1px solid rgba(61, 35, 20, 0.08);
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumbs li {
  font-size: 0.875rem;
  color: var(--gray);
}

.breadcrumbs li + li::before {
  content: '/';
  margin-right: 0.5rem;
  color: var(--gray);
}

.breadcrumbs a {
  color: var(--brown);
}

.breadcrumbs a:hover {
  color: var(--red);
}

.breadcrumbs .current {
  color: var(--red);
  font-weight: 500;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(253, 245, 230, 0.95);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background-color: rgba(253, 245, 230, 0.98);
  border-bottom: 1px solid rgba(61, 35, 20, 0.1);
  box-shadow: 0 2px 20px rgba(61, 35, 20, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--brown);
}

.nav-brand:hover {
  color: var(--brown);
}

.nav-brand img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-brand .brand-text span {
  color: var(--red);
}

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

.nav-links a {
  padding: 0.5rem 1rem;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--brown);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--red);
  background-color: rgba(212, 43, 43, 0.05);
}

.nav-links a.active {
  color: var(--red);
  background-color: rgba(212, 43, 43, 0.08);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background-color: var(--red);
  border-radius: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  border: none;
  background: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--brown);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.25rem;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1.05rem;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 43, 43, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content h1 span {
  color: var(--red);
}

.hero-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 2rem;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .hero {
    padding: 8rem 0 4rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

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

  .hero-image {
    display: none;
  }
}

/* ============================================
   HIGHLIGHTS / FEATURE CARDS
   ============================================ */
.highlights {
  padding: 5rem 0;
  background-color: var(--white);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.highlight-card {
  padding: 2.5rem 2rem;
  background-color: var(--cream);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--brown);
}

.highlight-card p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* ============================================
   ABOUT PREVIEW (index) & ABOUT PAGE
   ============================================ */
.about-preview {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: var(--cream-dark);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.95rem;
  border: 2px dashed rgba(61, 35, 20, 0.15);
  text-align: center;
  padding: 1rem;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-text h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.about-text h2 span {
  color: var(--red);
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--gray);
}

.about-text .btn {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* About page specifics */
.about-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
  color: var(--white);
  text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.timeline {
  padding: 4rem 0;
}

.timeline-list {
  max-width: 700px;
  margin: 3rem auto 0;
  position: relative;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--red);
  border-radius: 2px;
}

.timeline-item {
  padding-left: 56px;
  padding-bottom: 2.5rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 4px;
  width: 20px;
  height: 20px;
  background-color: var(--red);
  border-radius: 50%;
  border: 3px solid var(--cream);
}

.timeline-item h3 {
  font-size: 1.1rem;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.timeline-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(61, 35, 20, 0.06);
}

.value-card .value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 0.5rem;
  color: var(--brown);
}

.value-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ============================================
   MENU PAGE
   ============================================ */
.menu-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
  color: var(--white);
  text-align: center;
}

.menu-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.menu-hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.menu-section {
  padding: 4rem 0;
}

.menu-category {
  margin-bottom: 3rem;
}

.menu-category h2 {
  font-size: 1.75rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--red);
  display: inline-block;
}

.menu-category > p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(61, 35, 20, 0.06);
  transition: box-shadow var(--transition);
}

.menu-item:hover {
  box-shadow: var(--shadow);
}

.menu-item-info h3 {
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.menu-item-info p {
  font-size: 0.85rem;
  color: var(--gray);
}

.menu-item-price {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--red);
  white-space: nowrap;
  margin-left: 1rem;
}

.menu-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background-color: rgba(212, 43, 43, 0.05);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--gray);
  font-size: 0.9rem;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
  color: var(--white);
  text-align: center;
}

.gallery-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.gallery-hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-section {
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  background-color: var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
  text-align: center;
  transition: transform var(--transition);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color var(--transition);
}

.lightbox-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   BRANCHES PAGE
   ============================================ */
.branches-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
  color: var(--white);
  text-align: center;
}

.branches-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.branches-hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.branches-section {
  padding: 4rem 0;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.branch-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(61, 35, 20, 0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}

.branch-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.branch-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
  border: none;
  overflow: hidden;
}

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

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

.branch-card-body h3 {
  font-size: 1.25rem;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.branch-detail {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.branch-detail .detail-icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  color: var(--red);
}

.branch-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.branch-status.open {
  background-color: rgba(34, 139, 34, 0.1);
  color: #228b22;
}

.branch-status.closed {
  background-color: rgba(212, 43, 43, 0.1);
  color: var(--red);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
  color: var(--white);
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.contact-section {
  padding: 4rem 0;
}

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

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-item .info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: rgba(212, 43, 43, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.25rem;
}

.contact-info-item h3 {
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.9rem;
  color: var(--gray);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 48px;
  height: 48px;
  background-color: var(--brown);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition);
}

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

/* Contact form */
.contact-form {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 35, 20, 0.06);
}

.contact-form h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--brown);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--brown);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(61, 35, 20, 0.15);
  border-radius: var(--radius);
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: var(--brown);
  background-color: var(--cream);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
}

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

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta-section .btn {
  background-color: var(--white);
  color: var(--red);
}

.cta-section .btn:hover {
  background-color: var(--cream);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--brown);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand h3 span {
  color: var(--red);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

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

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

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

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

.footer-social a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background-color: var(--red);
}

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

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

  .section-title {
    font-size: 2rem;
  }
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}
