/* 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: #f9f6f3;
    --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: 18px 0;
    position: relative;
  }

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

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

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

  .nav-toggle-input {
    display: none;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
  }

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

  .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: 1.5px;
    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%;
  }

  .nav-cta {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    text-decoration: none;
    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: #d4a24e;
  }

  .nav-hamburger {
    display: none;
    cursor: pointer;
    color: var(--primary);
    z-index: 1001;
    padding: 4px;
    flex-shrink: 0;
  }

  .nav-hamburger-icon {
    display: block;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-icon-close {
    display: none;
  }

  @media (max-width: 767px) {
    .nav-logo-text {
      font-size: 15px;
    }

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

    .nav-menu {
      position: absolute;
      top: calc(100% + 1px);
      left: -24px;
      right: -24px;
      width: calc(100% + 48px);
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
      padding: 12px 24px 20px;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    }

    .nav-toggle-input:checked ~ .nav-menu {
      max-height: 400px;
      opacity: 1;
      pointer-events: all;
    }

    .nav-toggle-input:checked ~ .nav-hamburger .nav-icon-open {
      display: none;
    }

    .nav-toggle-input:checked ~ .nav-hamburger .nav-icon-close {
      display: block;
    }

    .nav-links {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      width: 100%;
    }

    .nav-links li {
      width: 100%;
    }

    .nav-link {
      display: block;
      padding: 14px 0;
      font-size: 16px;
      font-weight: 500;
      opacity: 0.8;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

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

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

    .nav-cta {
      display: block;
      text-align: center;
      margin-top: 16px;
      padding: 13px 24px;
      font-size: 15px;
    }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .nav-links {
      gap: 20px;
    }

    .nav-link {
      font-size: 14px;
    }

    .nav-menu {
      gap: 24px;
    }
  }

  @media (min-width: 1024px) {
    .nav-logo-text {
      font-size: 20px;
    }
  }

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

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

  .hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.04);
    transition: transform 8s ease-out;
  }

  .hero-section:hover .hero-bg {
    transform: scale(1);
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      160deg,
      rgba(10, 5, 3, 0.55) 0%,
      rgba(45, 24, 16, 0.72) 60%,
      rgba(10, 5, 3, 0.82) 100%
    );
    z-index: 2;
  }

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

  .hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-accent-line {
    width: 48px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin-bottom: 28px;
    position: relative;
  }

  .hero-accent-line::before {
    content: '';
    position: absolute;
    left: 56px;
    top: 0;
    width: 8px;
    height: 3px;
    background: var(--accent);
    opacity: 0.5;
    border-radius: 2px;
  }

  .hero-accent-line::after {
    content: '';
    position: absolute;
    left: 72px;
    top: 0;
    width: 4px;
    height: 3px;
    background: var(--accent);
    opacity: 0.25;
    border-radius: 2px;
  }

  .hero-content h1 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
    color: #ffffff;
    max-width: 820px;
  }

  .hero-content p {
    font-size: 17px;
    font-weight: 300;
    opacity: 0.88;
    max-width: 540px;
    margin: 0 auto 42px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.92);
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: white;
    padding: 16px 38px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.22),
      0 0 0 0 rgba(196, 145, 59, 0);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
  }

  .hero-cta:hover {
    transform: translateY(-3px);
    background: #d4a04a;
    box-shadow:
      0 8px 32px rgba(196, 145, 59, 0.42),
      0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .hero-cta:hover::before {
    opacity: 1;
  }

  .hero-decorative {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.06;
    z-index: -1;
  }

  .hero-deco-circle {
    animation: hero-rotate 40s linear infinite;
  }

  @keyframes hero-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.65);
    animation: hero-bounce 2.2s ease-in-out infinite;
    cursor: pointer;
  }

  .hero-scroll-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
  }

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

  @media (min-width: 768px) {
    .hero-section {
      min-height: 80vh;
    }

    .hero-content h1 {
      font-size: 48px;
    }

    .hero-content p {
      font-size: 19px;
    }

    .hero-cta {
      font-size: 17px;
      padding: 16px 42px;
    }
  }

  @media (min-width: 1024px) {
    .hero-section {
      min-height: 90vh;
    }

    .hero-content {
      padding: 100px 20px;
    }

    .hero-content h1 {
      font-size: 62px;
      max-width: 900px;
    }

    .hero-content p {
      font-size: 20px;
      max-width: 580px;
    }

    .hero-cta {
      padding: 18px 48px;
      font-size: 17px;
    }
  }

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

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

  #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: 1160px;
    margin: 0 auto;
    padding: 0 24px;
  }

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

  /* IMAGE SIDE */
  .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 8px rgba(0, 0, 0, 0.06),
      0 16px 48px rgba(0, 0, 0, 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 24px 60px rgba(0, 0, 0, 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;
    transition: opacity 0.3s ease;
  }

  .about-image-wrap:hover .about-image-accent {
    opacity: 0.16;
  }

  .about-image-dots {
    position: absolute;
    bottom: -28px;
    right: -28px;
    z-index: 0;
    pointer-events: none;
  }

  /* TEXT SIDE */
  .about-text {
    display: flex;
    flex-direction: column;
  }

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

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

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

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

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

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

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

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

  .about-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 80px;
  }

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

  .about-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.4;
    display: block;
  }

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

  /* ANIMATION */
  .animate-on-scroll .animate-child {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s 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: 0s; }
  .animate-on-scroll.is-visible .animate-child:nth-child(2) { transition-delay: 0.15s; }
  .animate-on-scroll.is-visible .about-stats .animate-child:nth-child(1) { transition-delay: 0.25s; }
  .animate-on-scroll.is-visible .about-stats .animate-child:nth-child(2) { transition-delay: 0.35s; }
  .animate-on-scroll.is-visible .about-stats .animate-child:nth-child(3) { transition-delay: 0.45s; }

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

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

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

    .about-stats {
      gap: 24px;
    }
  }

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

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

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

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

    .about-stats {
      gap: 32px;
    }

    .about-stat-label {
      font-size: 12px;
    }

    .about-image-dots {
      bottom: -32px;
      right: -32px;
    }
  }

  /* Intersection Observer trigger */
  @media (prefers-reduced-motion: no-preference) {
    .animate-on-scroll.is-visible .animate-child {
      opacity: 1;
      transform: translateY(0);
    }
  }

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

  #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_grid_1 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

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

  .services-header h2 {
    font-size: 28px;
    font-weight: 800;
    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-image-wrap {
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }

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

  .services-card:hover .services-card-image-wrap img {
    transform: scale(1.04);
  }

  .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;
    flex-shrink: 0;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(196, 145, 59, 0.25);
  }

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

  .services-card-body p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    flex: 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.13s; }
  .animate-on-scroll.is-visible .animate-child:nth-child(3) { transition-delay: 0.21s; }
  .animate-on-scroll.is-visible .animate-child:nth-child(4) { transition-delay: 0.29s; }

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

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

    .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 {
      margin-bottom: 56px;
    }

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

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

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

  #gallery_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;
  }

  #gallery_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;
  }

  #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: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
  }

  .gallery-label::before,
  .gallery-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 14px;
    height: 1px;
    background: var(--accent);
    opacity: 0.6;
  }

  .gallery-label::before {
    left: 0;
  }

  .gallery-label::after {
    right: 0;
  }

  .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 2px 8px rgba(0, 0, 0, 0.08),
      0 16px 40px 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.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

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

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.18) 40%,
      rgba(0, 0, 0, 0.62) 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;
    align-items: center;
    gap: 10px;
    transform: translateY(6px);
    transition: transform 0.35s ease;
  }

  .gallery-item:hover .gallery-overlay-inner {
    transform: translateY(0);
  }

  .gallery-overlay-inner svg {
    color: rgba(255, 255, 255, 0.75);
    flex-shrink: 0;
    transition: color 0.3s ease;
  }

  .gallery-item:hover .gallery-overlay-inner svg {
    color: rgba(255, 255, 255, 1);
  }

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

  .gallery-item.animate-child {
    opacity: 0;
    transform: translateY(20px);
    animation: galleryFadeUp 0.5s ease forwards;
  }

  .gallery-item.animate-child:nth-child(1) { animation-delay: 0.05s; }
  .gallery-item.animate-child:nth-child(2) { animation-delay: 0.12s; }
  .gallery-item.animate-child:nth-child(3) { animation-delay: 0.19s; }
  .gallery-item.animate-child:nth-child(4) { animation-delay: 0.26s; }
  .gallery-item.animate-child:nth-child(5) { animation-delay: 0.33s; }
  .gallery-item.animate-child:nth-child(6) { animation-delay: 0.40s; }

  @keyframes galleryFadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

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

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

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

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

    .gallery-grid {
      gap: 20px;
    }
  }

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

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

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

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

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

:root {
    --primary: #2d1810;
    --accent: #c4913b;
    --text: #1a1a1a;
    --text-light: #666666;
    --bg: #ffffff;
    --bg-alt: #f8f5f2;
    --radius: 10px;
  }

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

  #contact_1::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.03;
    pointer-events: none;
  }

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

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

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .contact-info h2[data-field="headline"] {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .contact-info p[data-field="text"] {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 32px 0;
  }

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

  .contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 10px 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .contact-detail-item:last-child {
    border-bottom: none;
  }

  .contact-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .contact-detail-item:hover .contact-icon-wrap {
    background: color-mix(in srgb, var(--accent) 20%, transparent);
    transform: scale(1.05);
  }

  .contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .contact-detail-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .contact-detail-text a,
  .contact-detail-text span {
    font-size: 15px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.2s ease;
  }

  .contact-detail-text a:hover {
    color: var(--accent);
  }

  .contact-decorative-dots {
    margin-top: 32px;
    opacity: 0.9;
  }

  .contact-form-wrap {
    background: #ffffff;
    border-radius: calc(var(--radius) + 4px);
    padding: 32px 24px;
    box-shadow:
      0 1px 3px rgba(0,0,0,0.04),
      0 6px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
  }

  .contact-form-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .contact-form-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
  }

  .contact-form-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .contact-form-subtitle::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4caf50;
    flex-shrink: 0;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .contact-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
  }

  .contact-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
  }

  .contact-input,
  .contact-textarea {
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: var(--radius);
    padding: 14px 18px;
    width: 100%;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: #fdfcfb;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-sizing: border-box;
    appearance: none;
  }

  .contact-input::placeholder,
  .contact-textarea::placeholder {
    color: #b0a89e;
  }

  .contact-input:hover,
  .contact-textarea:hover {
    border-color: rgba(0,0,0,0.22);
    background: #ffffff;
  }

  .contact-input:focus,
  .contact-textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 10%, transparent);
    background: #ffffff;
  }

  .contact-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
  }

  .contact-submit {
    width: 100%;
    background: var(--accent);
    color: #ffffff;
    padding: 15px 32px;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    margin-top: 4px;
    box-shadow: 0 2px 8px color-mix(in srgb, var(--accent) 30%, transparent);
  }

  .contact-submit:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent) 40%, transparent);
  }

  .contact-submit:active {
    transform: translateY(0);
    filter: brightness(0.97);
  }

  .contact-form-note {
    font-size: 12px;
    color: #999;
    margin: 14px 0 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.5;
  }

  .contact-form-note svg {
    flex-shrink: 0;
    color: #aaa;
  }

  .contact-map {
    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.08);
    border: 1px solid rgba(0,0,0,0.06);
  }

  .contact-map iframe {
    display: block;
  }

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

    .contact-form-wrap {
      padding: 40px;
    }
  }

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

    .contact-grid {
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }

    .contact-info h2[data-field="headline"] {
      font-size: 36px;
    }

    .contact-detail-item {
      margin: 12px 0;
    }
  }

:root {
    --primary: #2d1810;
    --accent: #c8956c;
    --text: #1a1a1a;
    --text-light: #ffffff;
    --bg: #ffffff;
    --bg-alt: #f8f6f3;
    --radius: 10px;
  }

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

  #footer_1::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(200, 149, 108, 0.04);
    pointer-events: none;
  }

  #footer_1::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(200, 149, 108, 0.03);
    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;
  }

  /* Logo */
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-light);
    margin-bottom: 18px;
    text-decoration: none;
  }

  .footer-logo svg {
    color: var(--accent);
    flex-shrink: 0;
  }

  /* Description */
  .footer-description {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.75;
    max-width: 300px;
    margin: 0 0 24px 0;
  }

  /* Social */
  .footer-social {
    display: flex;
    gap: 10px;
  }

  .footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
  }

  .footer-social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(200, 149, 108, 0.08);
  }

  /* Column headings */
  .footer-col-heading {
    font-size: 11px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    color: var(--text-light);
    position: relative;
    padding-bottom: 12px;
  }

  .footer-col-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.8;
  }

  /* Nav links */
  .footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

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

  .footer-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    opacity: 0.65;
    font-size: 14px;
    color: var(--text-light);
    text-decoration: none;
    transition: opacity 0.3s ease, gap 0.3s ease;
    line-height: 1.4;
  }

  .footer-nav-link:hover {
    opacity: 1;
    gap: 12px;
  }

  .footer-link-arrow {
    display: flex;
    align-items: center;
    color: var(--accent);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
  }

  .footer-nav-link:hover .footer-link-arrow {
    opacity: 1;
  }

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

  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.5;
    color: var(--text-light);
  }

  .footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--accent);
    opacity: 0.85;
  }

  /* Bottom bar */
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .footer-bottom p {
    margin: 0;
    font-size: 13px;
    opacity: 0.45;
    color: var(--text-light);
    line-height: 1.5;
  }

  .footer-bottom-tagline {
    font-size: 12px !important;
    opacity: 0.3 !important;
    letter-spacing: 0.03em;
  }

  /* Tablet */
  @media (min-width: 640px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }

    .footer-about {
      grid-column: 1 / -1;
    }
  }

  /* Desktop */
  @media (min-width: 1024px) {
    #footer_1 {
      padding: 80px 0 32px;
    }

    .footer-grid {
      grid-template-columns: 2fr 1fr 1fr;
      gap: 56px;
      margin-bottom: 56px;
    }

    .footer-about {
      grid-column: auto;
    }

    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }

    .footer-bottom-tagline {
      text-align: right;
    }
  }