:root {
  --color-bg: #faf5ec;
  --color-bg-alt: #f2e7d6;
  --color-surface: #fffdf9;
  --color-border: #e8dac2;
  --color-text: #2f2319;
  --color-text-muted: #7d6a58;
  --color-primary: #c1502e;
  --color-primary-dark: #9c3f22;
  --color-secondary: #6f8f5f;
  --color-secondary-dark: #55703f;
  --color-gold: #d99a35;
  --color-accent-soft: rgba(193, 80, 46, 0.12);
  --color-secondary-soft: rgba(111, 143, 95, 0.14);
  --color-gold-soft: rgba(217, 154, 53, 0.16);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 30px rgba(58, 38, 20, 0.09);
  --shadow-strong: 0 20px 50px rgba(58, 38, 20, 0.18);
  --container-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Exo 2", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(var(--container-width), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(58, 38, 20, 0.08);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.logo {
  width: min(100%, 380px);
  height: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
}

.nav a {
  position: relative;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--color-primary);
  transition: right 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--color-primary);
}

.nav a:hover::after,
.nav a.active::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: var(--shadow-soft);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  transform: translateY(-2px);
  background: var(--color-primary-dark);
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle-bar::before {
  position: absolute;
  top: -6px;
}

.nav-toggle-bar::after {
  position: absolute;
  top: 6px;
}

.nav-open .nav-toggle-bar {
  background: transparent;
}

.nav-open .nav-toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .nav-toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  padding-bottom: 56px;
}

.hero-media {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(60, 35, 18, 0.28) 0%, rgba(35, 20, 12, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 120px 0 88px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f0c98a;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.12;
  color: #ffffff;
}

.hero-description {
  margin: 0 0 28px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 56ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-info-bar {
  position: relative;
  z-index: 3;
  margin-top: -56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-strong);
}

.info-card span:not(.info-title) {
  color: var(--color-text-muted);
}

.info-title {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sections */

.section {
  padding: 72px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 700px;
  scroll-margin-top: 88px;
}

.alt-section {
  background: var(--color-bg-alt);
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading.center {
  text-align: center;
}

.section-label {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.82rem;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-text);
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
}

.about-text h2 {
  margin-bottom: 18px;
}

.about-text p {
  color: var(--color-text-muted);
  margin: 0 0 16px;
}

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

/* Services */

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

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:nth-child(3n+2) {
  border-top-color: var(--color-secondary);
}

.service-card:nth-child(3n+3) {
  border-top-color: var(--color-gold);
}

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

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  background: var(--color-accent-soft);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.95rem;
}

.service-card:nth-child(3n+2) .service-index {
  background: var(--color-secondary-soft);
  color: var(--color-secondary-dark);
}

.service-card:nth-child(3n+3) .service-index {
  background: var(--color-gold-soft);
  color: var(--color-primary-dark);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 1.15rem;
}

.service-card p {
  margin: 0;
  color: var(--color-text-muted);
}

/* Brands */

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.brand-tile {
  aspect-ratio: 3 / 2;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.brand-tile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Gallery */

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  cursor: zoom-in;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(25, 16, 9, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: min(1100px, 100%);
  max-height: 85vh;
  width: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

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

/* Scroll reveal */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Contacts */

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.map-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
}

.contact-list li {
  margin-bottom: 10px;
  color: var(--color-text-muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-actions .btn-secondary {
  background: var(--color-bg-alt);
  color: var(--color-text);
  border-color: var(--color-border);
}

.contact-actions .btn-secondary:hover {
  background: #e8dac2;
}

.map-card {
  padding: 0;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* Footer */

.site-footer {
  background: #241a12;
  color: #e4d5c1;
  padding: 48px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
}

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

.footer-logo {
  width: 150px;
  background: #ffffff;
  border-radius: 10px;
  padding: 8px 10px;
}

.footer-brand p {
  margin: 0;
  color: #bfa88c;
  font-size: 0.92rem;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a,
.footer-contact p {
  margin: 0;
  color: #e4d5c1;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--color-gold);
}

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

.footer-bottom a {
  color: #bfa88c;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* Responsive */

@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-strong);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-open .nav {
    max-height: 400px;
  }

  .nav a {
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
  }

  .nav a::after {
    display: none;
  }

  .about-grid,
  .contact-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-info-bar {
    grid-template-columns: 1fr;
    margin-top: -32px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero-media {
    min-height: 64vh;
  }

  .hero-content {
    padding: 88px 0 64px;
  }

  .section {
    padding: 48px 0;
  }

  .btn {
    width: 100%;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .contact-actions {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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