:root {
  --header-bg: #fcefd6;
  --header-fg: #1a1a1a;
  --footer-bg: #0d0e12;
  --footer-fg: #f5f5f5;
  --accent: #b8852e;
  --text-dark: #1a1a1a;
  --text-muted: #555;
  --header-h: 64px;
  --max-content: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: #fff;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 3vw, 2rem);
  height: var(--header-h);
  background: var(--header-bg);
  color: var(--header-fg);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}
.logo img {
  height: 44px;
  width: auto;
}
.brand {
  font-family: 'Oswald', 'Arial Narrow', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
}

.site-header nav a {
  color: var(--header-fg);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.site-header nav a:hover,
.site-header nav a.active { border-bottom-color: var(--accent); }

.slide {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.slide-content {
  width: 100%;
  max-width: var(--max-content);
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'PT Sans Narrow', 'Arial Narrow', sans-serif;
  font-weight: 400;
}

.slide-products {
  min-height: 0;
  background: #fff;
  padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1rem, 4vw, 3rem);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
}
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
.product-card:hover { transform: translateY(-3px); }
.product-card:hover h2 { color: var(--accent); }
.product-card img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
}
.product-card h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.2;
}
@media (max-width: 700px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-slide {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  min-height: 70vh;
  align-items: center;
  background: #fff;
  color: var(--text-dark);
}
.product-slide .slide-image img {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  object-fit: contain;
}
.product-slide h1,
.product-slide h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.product-slide h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin: 1.25rem 0 0.5rem;
}
.product-slide ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.product-slide li { margin-bottom: 0.4rem; }

@media (max-width: 768px) {
  .product-slide {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .product-slide .slide-image img { max-height: 50vh; }
}

.slide-headline {
  min-height: 0;
  height: clamp(280px, 35vw, 720px);
  padding: 0;
  background-color: #2a2a2e;
  background-size: cover;
  background-position: center;
  color: #fff;
  justify-content: flex-end;
}
.headline-text {
  width: 33.33%;
  height: 100%;
  padding: clamp(1rem, 2.5vw, 2rem);
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.55) 35%);
  display: flex;
  align-items: center;
}
.headline-text h2 {
  font-size: clamp(1.05rem, 1.9vw, 1.85rem);
  line-height: 1.25;
}
@media (max-width: 700px) {
  .slide-headline {
    height: auto;
    min-height: 280px;
    align-items: flex-end;
  }
  .headline-text {
    width: 100%;
    height: auto;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 4rem 1.25rem 1.5rem;
  }
}

.slide-placeholder { color: #fff; text-align: center; }
.slide-a { background: linear-gradient(135deg, #1a3a52, #2c5f7a); }
.slide-b { background: linear-gradient(135deg, #4a2c5f, #7a3a82); }
.slide-placeholder h2 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  margin-bottom: 1rem;
}
.slide-placeholder p { font-size: clamp(1rem, 2vw, 1.25rem); opacity: 0.85; }

.slide-mission {
  color: #fff;
  text-align: center;
  min-height: 60vh;
  background-color: #000;
  background-size: contain;
}
.slide-mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.slide-mission .slide-content { max-width: 800px; }
.slide-mission h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.slide-mission p { font-size: clamp(1.05rem, 2vw, 1.35rem); }

.slide-team { background: #f7f7f8; }
.slide-team .slide-content { text-align: center; }
.slide-team h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2.5rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
.team-member { text-align: center; }
.team-photo {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #d8d8df, #b6b6c0);
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}
.team-member figcaption {
  font-weight: 600;
  font-size: 0.95rem;
}
.team-member figcaption span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.slide-contact .slide-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.slide-contact h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}
.contact-list { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-list a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}
.contact-list a:hover { text-decoration: underline; }
.slide-contact address {
  font-style: normal;
  line-height: 1.8;
  color: var(--text-muted);
}

.site-footer {
  padding: 1.75rem 1.5rem;
  background: var(--footer-bg);
  color: var(--footer-fg);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.9;
}

@media (max-width: 480px) {
  :root { --header-h: 56px; }
  .logo img { height: 36px; }
  .brand { font-size: 1rem; letter-spacing: 0.04em; }
  .site-header nav a { font-size: 0.875rem; }
  .site-header nav { gap: 0.9rem; }
  .site-header { padding: 0 0.85rem; }
}

@media (max-width: 360px) {
  .brand { display: none; }
}
