:root {
  --bg: #f5f0ea;
  --panel: #f7f4f2;
  --surface: #ffffff;
  --surface-strong: #171a1a;
  --accent: #a86c3d;
  --accent-soft: #d6b08f;
  --text: #1b1d1d;
  --muted: #5d5e5d;
  --line: rgba(23, 26, 26, 0.12);
  --shadow: 0 22px 55px rgba(17, 20, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button {
  font: inherit;
}

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

.section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 15px;
}

.eyebrow.accent {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 19, 19, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: #fff;
  box-shadow: 0 16px 28px rgba(168, 108, 61, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.42)),
    url("imgs/Attachments-OLP%20images%20/image1.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 12, 12, 0.7), rgba(10, 12, 12, 0.28) 55%, rgba(10, 12, 12, 0.12));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 620px);
  padding: 68px 0;
}

.hero-copy {
  color: #fff;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

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

.hero-stats {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-stats li {
  display: grid;
  gap: 4px;
  min-width: 110px;
}

.hero-stats strong {
  font-size: 1.2rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-section {
  background: var(--surface);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: end;
}

.two-column h2,
.section-heading h2,
.footer-wrap h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.two-column p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.gallery-section {
  background: linear-gradient(180deg, rgba(130, 96, 70, 0.04), rgba(130, 96, 70, 0.01));
}

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

.section-heading.narrow {
  max-width: 760px;
}

.slideshow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.slideshow-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.slideshow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.slideshow-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.nav-buttons {
  display: inline-flex;
  gap: 10px;
}

.slideshow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.slideshow-btn:hover,
.slideshow-btn:focus-visible {
  background: var(--surface-strong);
  color: #fff;
  border-color: var(--surface-strong);
}

.slide-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  background: #e7e0db;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.process-section {
  background: var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.process-card {
  padding: 28px 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8f3f1);
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(168, 108, 61, 0.12);
  color: var(--accent);
  font-weight: 800;
}

.process-card h3 {
  margin: 18px 0 10px;
  font-size: 1.4rem;
}

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

.site-footer {
  background: #121515;
  color: #fff;
  padding: 32px 0 54px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-wrap > div {
  width: 100%;
}

.social-media-block {
  margin-top: 18px;
}

.social-media-image {
  max-width: 220px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .slideshow-grid,
  .process-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .button {
    width: 100%;
  }

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

  .main-nav {
    gap: 14px;
    font-size: 0.8rem;
    flex-wrap: wrap;
  }

  .slideshow-card {
    padding: 16px;
  }

  .slideshow-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
