/* Global Styles */
:root {
  --primary: #2d1810;
  --accent: #c4913b;
  --text: #1a1a2e;
  --text-light: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Force all inline SVG icons to sane sizes */
svg {
  flex-shrink: 0;
}

svg:not([width]) {
  width: 24px;
  height: 24px;
}

/* Ensure sections don't break layout */
section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Consistent container widths */
section > div,
section > .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-child {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-child.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Nav scroll state */
.nav-scrolled {
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 20px rgba(0,0,0,0.06) !important;
  border-bottom-color: transparent !important;
}

/* Mobile nav body lock */
body.nav-mobile-open {
  overflow: hidden;
}

/* Selection color */
::selection {
  background: color-mix(in srgb, var(--accent) 25%, transparent);
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

:root {
    --primary: #2d1810;
    --accent: #c4913b;
    --text: #1a1a1a;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f9f6f2;
    --radius: 8px;
  }

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

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

  #navigation_1 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
  }

  #navigation_1.nav-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    position: relative;
  }

  /* Logo */
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 10;
  }

  .nav-logo-img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
  }

  .nav-logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    white-space: nowrap;
    display: none;
  }

  .nav-logo-img:not([src]),
  .nav-logo-img[src=""] {
    display: none;
  }

  .nav-logo-img:not([src]) ~ .nav-logo-text,
  .nav-logo-img[src=""] ~ .nav-logo-text {
    display: block;
  }

  /* Desktop nav */
  .nav-menu {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
  }

  .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
    position: relative;
    padding-bottom: 2px;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.3s ease;
  }

  .nav-link:hover {
    opacity: 1;
    color: var(--primary);
  }

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

  /* CTA Button */
  .nav-cta {
    display: none;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(196, 145, 59, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(196, 145, 59, 0.35);
    background: #d4a24a;
  }

  /* Hamburger */
  .nav-toggle-input {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    cursor: pointer;
    color: var(--primary);
    transition: background 0.2s ease;
    z-index: 10;
    flex-shrink: 0;
  }

  .nav-hamburger:hover {
    background: rgba(45, 24, 16, 0.06);
  }

  .nav-hamburger-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-icon-menu,
  .nav-icon-close {
    position: absolute;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-icon-close {
    opacity: 0;
    transform: rotate(-45deg) scale(0.8);
  }

  .nav-toggle-input:checked ~ .nav-inner .nav-icon-menu,
  .nav-toggle-input:checked + .nav-inner .nav-icon-menu {
    opacity: 0;
    transform: rotate(45deg) scale(0.8);
  }

  .nav-toggle-input:checked ~ .nav-inner .nav-icon-close,
  .nav-toggle-input:checked + .nav-inner .nav-icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }

  /* Mobile Drawer */
  .nav-mobile-drawer {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-top 0.3s ease;
    border-top: 1px solid transparent;
  }

  .nav-toggle-input:checked ~ .nav-mobile-drawer {
    max-height: 400px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-mobile-links {
    list-style: none;
    padding: 16px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .nav-mobile-link {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0.75;
    transition: opacity 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  }

  .nav-mobile-link:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 6px;
  }

  .nav-mobile-cta {
    display: inline-block;
    margin-top: 12px;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    text-align: center;
    box-shadow: 0 2px 8px rgba(196, 145, 59, 0.25);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
  }

  .nav-mobile-cta:hover {
    background: #d4a24a;
    box-shadow: 0 4px 16px rgba(196, 145, 59, 0.35);
  }

  /* Checkbox hack - ensure sibling structure works */
  #nav-toggle:checked ~ .nav-inner .nav-icon-menu {
    opacity: 0;
    transform: rotate(45deg) scale(0.8);
  }

  #nav-toggle:checked ~ .nav-inner .nav-icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }

  #nav-toggle:checked ~ .nav-mobile-drawer {
    max-height: 400px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  /* Tablet and up */
  @media (min-width: 768px) {
    .nav-logo-text {
      display: block;
    }

    .nav-inner {
      padding: 18px 0;
    }
  }

  /* Desktop */
  @media (min-width: 1024px) {
    .nav-menu {
      display: block;
    }

    .nav-cta {
      display: inline-block;
    }

    .nav-hamburger {
      display: none;
    }

    .nav-mobile-drawer {
      display: none;
    }

    .nav-logo-text {
      font-size: 20px;
    }
  }

  /* Scrolled state via JS */
  #navigation_1.nav-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  }

:root {
    --primary: #2d1810;
    --accent: #c4913b;
    --text: #1a1a1a;
    --text-light: #6b6b6b;
    --bg: #ffffff;
    --bg-alt: #faf8f5;
    --radius: 12px;
  }

  #about_1 {
    background: var(--bg-alt);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
  }

  #about_1::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.04;
    pointer-events: none;
  }

  #about_1::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.04;
    pointer-events: none;
  }

  #about_1 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

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

  .about-image-wrap {
    position: relative;
  }

  .about-image-wrap img {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    position: relative;
    z-index: 2;
    display: block;
    box-shadow:
      0 2px 6px rgba(0, 0, 0, 0.06),
      0 12px 40px rgba(45, 24, 16, 0.12);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }

  .about-image-wrap:hover img {
    transform: translateY(-4px);
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.08),
      0 20px 56px rgba(45, 24, 16, 0.16);
  }

  .about-image-accent {
    position: absolute;
    top: 20px;
    left: -20px;
    right: 20px;
    bottom: -20px;
    background: var(--accent);
    opacity: 0.1;
    border-radius: var(--radius);
    z-index: 1;
  }

  .about-image-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    z-index: 3;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(45, 24, 16, 0.25);
  }

  .about-image-badge svg {
    color: var(--accent);
    flex-shrink: 0;
  }

  .about-text {
    display: flex;
    flex-direction: column;
  }

  .about-accent-line {
    width: 48px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 20px;
    border-radius: 2px;
  }

  .about-text h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 20px;
    color: var(--primary);
  }

  .about-body {
    margin-bottom: 32px;
  }

  .about-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a5a5a;
    margin: 0 0 16px;
  }

  .about-body p:last-child {
    margin-bottom: 0;
  }

  .about-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(196, 145, 59, 0.3), transparent);
    margin-bottom: 28px;
  }

  .about-stats {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }

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

  .about-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .about-stat-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 500;
    line-height: 1.4;
  }

  .about-stat-separator {
    width: 1px;
    height: 40px;
    background: rgba(196, 145, 59, 0.2);
    flex-shrink: 0;
  }

  /* Animate on scroll */
  .animate-on-scroll .animate-child {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .animate-on-scroll.is-visible .animate-child:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
  }

  .animate-on-scroll.is-visible .animate-child:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
  }

  @media (min-width: 768px) {
    #about_1 {
      padding: 80px 0;
    }

    .about-text h2 {
      font-size: 32px;
    }

    .about-stat-value {
      font-size: 30px;
    }

    .about-stats {
      gap: 24px;
    }

    .about-image-badge {
      right: -16px;
    }
  }

  @media (min-width: 1024px) {
    #about_1 {
      padding: 100px 0;
    }

    .about-grid {
      grid-template-columns: 1fr 1fr;
      gap: 64px;
    }

    .about-text h2 {
      font-size: 36px;
    }

    .about-stat-value {
      font-size: 32px;
    }

    .about-stats {
      gap: 32px;
    }

    .about-image-badge {
      right: 20px;
    }
  }

:root {
    --primary: #2d1810;
    --accent: #c4913b;
    --text: #1a1a1a;
    --text-light: #555;
    --bg: #ffffff;
    --bg-alt: #f7f5f2;
    --radius: 8px;
  }

  .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
  }

  #services_grid_1 {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
  }

  #services_grid_1::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.04;
    pointer-events: none;
  }

  #services_grid_1::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.04;
    pointer-events: none;
  }

  .services-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .services-header h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text);
    margin: 0;
  }

  .services-header-accent {
    width: 48px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto 0;
    border-radius: 2px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-card {
    background: #ffffff;
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    box-shadow:
      0 1px 3px rgba(0, 0, 0, 0.04),
      0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .services-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 4px 8px rgba(0, 0, 0, 0.05),
      0 12px 40px rgba(0, 0, 0, 0.10);
  }

  .services-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .services-card:hover img {
    transform: scale(1.03);
  }

  .services-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .services-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(196, 145, 59, 0.25);
  }

  .services-card-body h3 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--text);
    margin: 0 0 10px 0;
  }

  .services-card-body p {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
    flex: 1;
  }

  .animate-child {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .animate-on-scroll.is-visible .animate-child:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
  }

  .animate-on-scroll.is-visible .animate-child:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
  }

  .animate-on-scroll.is-visible .animate-child:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
  }

  .animate-on-scroll.is-visible .animate-child:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
  }

  @media (min-width: 768px) {
    #services_grid_1 {
      padding: 80px 0;
    }

    .services-header {
      margin-bottom: 56px;
    }

    .services-header h2 {
      font-size: 32px;
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }
  }

  @media (min-width: 1024px) {
    #services_grid_1 {
      padding: 100px 0;
    }

    .services-header h2 {
      font-size: 36px;
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }
  }

  @media (min-width: 1200px) {
    .services-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

#gallery_1 {
    padding: 60px 0;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
  }

  .gallery-bg-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
  }

  .gallery-bg-shape--1 {
    top: -160px;
    right: -120px;
    opacity: 0.035;
  }

  .gallery-bg-shape--2 {
    bottom: -100px;
    left: -80px;
    opacity: 0.04;
  }

  #gallery_1 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

  .gallery-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .gallery-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }

  .gallery-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
  }

  .gallery-header-accent {
    width: 48px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto 0;
    border-radius: 2px;
  }

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

  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius) + 4px);
    cursor: pointer;
    box-shadow:
      0 1px 3px rgba(0, 0, 0, 0.05),
      0 6px 24px rgba(0, 0, 0, 0.07);
    transition:
      box-shadow 0.3s ease,
      transform 0.3s ease;
  }

  .gallery-item:hover {
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.08),
      0 16px 48px rgba(0, 0, 0, 0.14);
    transform: translateY(-2px);
  }

  .gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

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

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.6) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }

  .gallery-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .gallery-overlay p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.01em;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }

  .animate-child {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.55s ease,
      transform 0.55s ease;
  }

  .animate-on-scroll.is-visible .animate-child {
    opacity: 1;
    transform: translateY(0);
  }

  .animate-on-scroll.is-visible .animate-child:nth-child(1) { transition-delay: 0.05s; }
  .animate-on-scroll.is-visible .animate-child:nth-child(2) { transition-delay: 0.12s; }
  .animate-on-scroll.is-visible .animate-child:nth-child(3) { transition-delay: 0.19s; }
  .animate-on-scroll.is-visible .animate-child:nth-child(4) { transition-delay: 0.26s; }
  .animate-on-scroll.is-visible .animate-child:nth-child(5) { transition-delay: 0.33s; }
  .animate-on-scroll.is-visible .animate-child:nth-child(6) { transition-delay: 0.40s; }

  @media (min-width: 600px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .gallery-item--wide {
      grid-column: span 2;
    }

    .gallery-item--wide img {
      aspect-ratio: 16 / 7;
    }
  }

  @media (min-width: 768px) {
    #gallery_1 {
      padding: 80px 0;
    }

    .gallery-header {
      margin-bottom: 56px;
    }

    .gallery-header h2 {
      font-size: 32px;
    }

    .gallery-grid {
      gap: 20px;
    }

    .gallery-overlay p {
      font-size: 15px;
    }
  }

  @media (min-width: 1024px) {
    #gallery_1 {
      padding: 100px 0;
    }

    .gallery-header h2 {
      font-size: 36px;
    }

    .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .gallery-item--wide {
      grid-column: span 2;
    }

    .gallery-item--wide img {
      aspect-ratio: 16 / 9;
    }
  }

#footer_1 {
    background: var(--primary);
    color: var(--text-light, #fff);
    padding: 72px 0 28px;
    position: relative;
    overflow: hidden;
  }

  #footer_1::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
  }

  #footer_1::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.025);
    pointer-events: none;
  }

  #footer_1 .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }

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

  @media (min-width: 1024px) {
    .footer-grid {
      grid-template-columns: 2fr 1fr 1fr;
    }
  }

  .footer-logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.2;
  }

  .footer-logo::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
    margin-top: 14px;
  }

  .footer-description {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.75;
    max-width: 300px;
    margin: 0;
    color: #fff;
  }

  .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
  }

  .footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
  }

  .footer-social-link:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
  }

  .footer-col-heading {
    font-size: 11px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.55;
    color: #fff;
  }

  .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-nav-list li {
    padding: 0;
  }

  .footer-nav-link {
    display: block;
    padding: 6px 0;
    opacity: 0.7;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s ease, padding-left 0.25s ease;
    line-height: 1.5;
  }

  .footer-nav-link:hover {
    opacity: 1;
    padding-left: 6px;
  }

  .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    opacity: 0.7;
    color: #fff;
    line-height: 1.55;
  }

  .footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.75;
    color: #fff;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 12.5px;
    opacity: 0.45;
    color: #fff;
    margin: 0;
    letter-spacing: 0.02em;
  }