:root {
  --ink: #1f1a14;
  --sand: #f8f3ea;
  --linen: #efe4d4;
  --clay: #d8b88b;
  --ochre: #c8a45d;
  --forest: #2a2117;
  --sage: #6f675b;
  --steel: #5f5a52;
  --white: #ffffff;
  --shadow: 0 22px 45px rgba(25, 23, 19, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, rgba(200, 164, 93, 0.2), transparent 45%),
    radial-gradient(circle at 20% 10%, rgba(216, 184, 139, 0.22), transparent 55%),
    linear-gradient(135deg, #fbf7f0 0%, #efe4d4 45%, #f9f4ec 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(42, 33, 23, 0.08) 0%, transparent 55%),
    repeating-linear-gradient(90deg, rgba(31, 26, 20, 0.05) 0 1px, transparent 1px 80px);
  pointer-events: none;
  z-index: -1;
}

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

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

a:hover {
  color: var(--ochre);
}

.link-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  text-decoration: underline;
  text-decoration-color: rgba(31, 26, 20, 0.35);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.link-indicator::after {
  content: "\2192";
  font-size: 0.9em;
  color: var(--ochre);
  transition: transform 0.2s ease;
}

.link-indicator[data-link="external"]::after {
  content: "\2197";
}

.link-indicator:hover::after {
  transform: translateX(2px);
}

.link-indicator[data-link="external"]:hover::after {
  transform: translate(2px, -2px);
}

address {
  font-style: normal;
  line-height: 1.6;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  position: relative;
}

.hero {
  padding: 24px 8px 64px;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-mark {
  height: 52px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-weight: 700;
}

.logo-sub {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sage);
  margin-top: 6px;
}

.nav-links {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.nav-sub-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  opacity: 0.75;
}

.nav-sub-link:hover {
  opacity: 1;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--ochre);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.lang-current {
  font-weight: 600;
  color: var(--forest);
}

.lang-link {
  color: var(--forest);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin: 16px 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--sage);
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--steel);
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--ochre);
  color: var(--forest);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 14px 30px rgba(200, 164, 93, 0.35);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(200, 164, 93, 0.45);
}

.btn.ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid rgba(200, 164, 93, 0.55);
  box-shadow: none;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(200, 164, 93, 0.16);
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.panel-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-card.alt {
  background: linear-gradient(140deg, rgba(200, 164, 93, 0.25), rgba(249, 244, 236, 0.9));
}

.panel-title {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--sage);
  margin-bottom: 12px;
}

.panel-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-size: 0.95rem;
}

.section {
  padding: 72px 8px 0;
}

.section-head h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 12px 0 16px;
}

.section-head p {
  max-width: 620px;
  color: var(--steel);
  line-height: 1.7;
}

.cards {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 20px 45px rgba(25, 23, 19, 0.08);
  display: grid;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.card-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(200, 164, 93, 0.2);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}

.media-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.media-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(25, 23, 19, 0.08);
  display: grid;
  gap: 0;
}

.media-card-link {
  color: inherit;
  text-decoration: none;
  display: grid;
  height: 100%;
}

.media-card-link:focus-visible {
  outline: 2px solid var(--ochre);
  outline-offset: 4px;
  border-radius: 22px;
}

.media-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.65);
  padding: 10px 14px;
}

.media-card div {
  padding: 18px 20px 22px;
}

.media-card h3 {
  margin: 0 0 8px;
}

.price-section {
  margin-top: 32px;
  display: grid;
  gap: 24px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(25, 23, 19, 0.08);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 20px;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(31, 26, 20, 0.08);
  font-size: 0.95rem;
}

.price-table th {
  background: rgba(200, 164, 93, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-note {
  font-size: 0.9rem;
  color: var(--steel);
  margin-top: 10px;
}

.accordion {
  display: grid;
  gap: 16px;
}

.accordion details {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(25, 23, 19, 0.08);
  overflow: hidden;
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  color: var(--ink);
  background: rgba(200, 164, 93, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--forest);
}

.accordion details[open] summary::after {
  content: "–";
}

.accordion .table-wrap {
  padding: 0 20px 20px;
}

.catalog-header {
  margin-top: 18px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(25, 23, 19, 0.08);
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.category-links a {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(200, 164, 93, 0.2);
  font-size: 0.85rem;
  font-weight: 600;
}

.category-links a.active {
  background: var(--ochre);
  color: var(--ink);
}

.product-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.product-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(25, 23, 19, 0.08);
  display: grid;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.65);
  padding: 10px 14px;
}

.product-card-body {
  padding: 16px 18px 20px;
  display: grid;
  gap: 8px;
}

.product-meta {
  font-size: 0.9rem;
  color: var(--steel);
}

.product-price {
  font-weight: 600;
  color: var(--forest);
}

.product-link {
  font-weight: 600;
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: rgba(200, 164, 93, 0.6);
  text-underline-offset: 3px;
}

.product-detail {
  display: grid;
  gap: 24px;
}

.product-hero {
  display: grid;
  gap: 18px;
}

.product-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(200, 164, 93, 0.2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}

.gallery {
  display: grid;
  gap: 12px;
}

.gallery-main img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(25, 23, 19, 0.08);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 10px;
}

.gallery-thumbs img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(25, 23, 19, 0.08);
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(31, 26, 20, 0.08);
  font-size: 0.95rem;
}

.spec-table th {
  width: 40%;
  background: rgba(200, 164, 93, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: start;
}

.process {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.process h4 {
  margin: 8px 0 6px;
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.split-panel {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.badges span {
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(214, 180, 139, 0.2);
  font-size: 0.85rem;
  font-weight: 600;
}

.partner-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.partner-card {
  background: var(--forest);
  color: var(--white);
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(42, 33, 23, 0.3);
}

.partner-name {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  align-items: center;
}

.contact-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
}

.footer {
  margin-top: 80px;
  padding: 32px 8px 12px;
  display: grid;
  gap: 16px;
  border-top: 1px solid rgba(31, 26, 20, 0.1);
  color: var(--steel);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp 0.8s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.12s;
}

.reveal.delay-2 {
  animation-delay: 0.24s;
}

.reveal.delay-3 {
  animation-delay: 0.36s;
}

.reveal.delay-4 {
  animation-delay: 0.48s;
}

@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.legal-page .nav-links {
  font-size: 0.85rem;
}

.legal-hero {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.legal-hero h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  margin: 12px 0 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.legal-content {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 28px 32px;
  box-shadow: var(--shadow);
  line-height: 1.7;
  color: var(--steel);
}

.legal-content h2 {
  color: var(--ink);
  margin-top: 24px;
}

.legal-content ul {
  padding-left: 18px;
}

.legal-meta {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--sage);
  font-weight: 600;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .page {
    padding: 24px 18px 48px;
  }

  .hero {
    padding: 10px 4px 48px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .contact-card {
    padding: 20px;
  }

  .logo-mark {
    height: 44px;
  }
}
