:root {
  --bg: #f8f3ee;
  --surface: #ffffff;
  --surface-soft: #fff7f1;
  --surface-dark: #181411;
  --text: #1f1a17;
  --muted: #6f6258;
  --line: rgba(117, 88, 60, 0.18);
  --accent: #c56028;
  --accent-strong: #a54817;
  --accent-soft: #f3d4c0;
  --shadow: 0 24px 70px rgba(48, 25, 10, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(197, 96, 40, 0.2), transparent 30%),
    linear-gradient(180deg, #fff4ec 0%, #f8f3ee 32%, #ffffff 100%);
}

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

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

button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 1rem auto 0;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(38, 21, 9, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.25rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #db7a42 100%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-copy strong {
  font-size: 0.95rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(197, 96, 40, 0.1);
}

.nav-toggle span {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-strong);
}

.section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 5.5rem 0 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 3rem;
  padding-top: 4.5rem;
}

.hero-copy h1,
.section-heading h2,
.section--split h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  max-width: 13ch;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead,
.stacked-copy p,
.section-heading p,
.section-copy,
.profile-card p,
.contact-card p,
.hero-badge strong,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 62ch;
  margin: 1.5rem 0 0;
  font-size: 1.05rem;
}

.hero-actions,
.document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

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

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

.button--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(197, 96, 40, 0.26);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1.7rem 0 0;
  list-style: none;
}

.hero-points li,
.pill,
.brand-chip {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 20px rgba(31, 19, 11, 0.04);
}

.hero-media {
  position: relative;
}

.hero-figure {
  overflow: hidden;
  margin: 0;
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-figure img {
  width: 100%;
}

.hero-badge {
  position: absolute;
  right: -1rem;
  bottom: 1.25rem;
  width: min(20rem, calc(100% - 1.5rem));
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 20px;
  background: rgba(24, 20, 17, 0.88);
  box-shadow: var(--shadow);
}

.hero-badge span,
.panel-label {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: #ffb88d;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-badge strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 2rem;
  align-items: start;
}

.section--tight {
  align-items: center;
}

.stacked-copy {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.profile-panel {
  display: grid;
  gap: 1rem;
}

.profile-card,
.contact-card,
.principle-card,
.product-card,
.gallery-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.profile-card strong,
.contact-card strong {
  display: block;
  font-size: 1.2rem;
}

.profile-card--accent,
.contact-card--accent {
  background: linear-gradient(160deg, #1d1713 0%, #2b221d 100%);
}

.profile-card--accent strong,
.profile-card--accent p,
.contact-card--accent strong,
.contact-card--accent p {
  color: #fff1e8;
}

.section-heading {
  max-width: 45rem;
}

.section-heading h2,
.section--split h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p {
  margin-top: 1rem;
}

.pill-grid,
.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.card-grid,
.product-grid,
.gallery-grid,
.contact-grid,
.grooving-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.presentation-slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.presentation-box {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.presentation-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36rem;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(197, 96, 40, 0.08), rgba(197, 96, 40, 0.02)),
    #fffaf6;
}

.presentation-stage img {
  max-height: 70vh;
  width: auto;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(31, 19, 11, 0.14);
}

.presentation-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem 1.4rem;
  border-top: 1px solid var(--line);
}

.presentation-footer strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.presentation-footer p {
  margin: 0;
  color: var(--muted);
}

.presentation-count {
  flex-shrink: 0;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

.slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--accent-strong);
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 16px 26px rgba(31, 19, 11, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  transform: translateY(-1px);
  background: #fff;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principle-card h3,
.product-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.principle-card p,
.product-card p,
.product-card li,
.grooving-item small,
.gallery-caption {
  color: var(--muted);
  line-height: 1.65;
}

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

.product-card {
  display: grid;
  gap: 1rem;
}

.product-tags,
.product-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-tags li {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 700;
}

.product-card ul li {
  width: 100%;
  padding-left: 1.2rem;
  position: relative;
}

.product-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.73rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
}

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

.grooving-item {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.grooving-item strong {
  display: block;
  margin-bottom: 0.3rem;
}

.brand-chip {
  color: var(--text);
  font-weight: 700;
}

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

.gallery-card {
  display: grid;
  gap: 0.8rem;
  padding: 0.85rem;
  text-align: left;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  border-radius: 14px;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-2px);
}

.gallery-caption strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 4rem 0 2rem;
}

.gallery-modal {
  width: min(92vw, 1200px);
  padding: 1.1rem;
  border: 0;
  border-radius: 28px;
  background: #140f0c;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.gallery-modal::backdrop {
  background: rgba(12, 9, 8, 0.75);
}

.gallery-modal img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
}

.modal-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.modal-toolbar p {
  margin: 0;
  color: #f2ddd1;
  text-align: center;
}

.modal-close,
.modal-nav {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff2e8;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  font-size: 1.8rem;
  line-height: 1;
}

.modal-nav {
  padding: 0.75rem 1rem;
}

@media (max-width: 1024px) {
  .hero,
  .section--split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .site-header {
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 252, 248, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .card-grid,
  .product-grid,
  .gallery-grid,
  .contact-grid,
  .grooving-grid {
    grid-template-columns: 1fr;
  }

  .presentation-slider {
    grid-template-columns: 1fr;
  }

  .presentation-stage {
    min-height: auto;
  }

  .presentation-stage img {
    width: 100%;
    max-height: none;
  }

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

  .slider-arrow {
    width: 100%;
    height: 3.2rem;
    font-size: 1.6rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-badge {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.9rem 1rem;
  }

  .brand-mark {
    min-width: 3.5rem;
    padding: 0.6rem 0.7rem;
    font-size: 1rem;
  }

  .brand-copy strong {
    font-size: 0.85rem;
  }

  .brand-copy small {
    font-size: 0.75rem;
  }

  .section {
    padding-top: 4.5rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .button {
    width: 100%;
  }

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