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

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f3f4f6;
  color: #111827;
}

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

body {
  min-height: 100vh;
}

.site-frame {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

/* Shell */
.header-shell {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 32px);
}

/* Nav */
.nav-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 26px;
  border-bottom: 1px solid #e5e7eb;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #111827, #d1d5db);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-weight: 800;
  font-size: 16px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy span:first-child {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-copy span:last-child {
  font-size: 11px;
  color: #6b7280;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  gap: 14px;
  font-size: 14px;
}

.nav-links a {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #4b5563;
  transition: all 0.15s ease-out;
}

.nav-links a:hover {
  background: #f3f4f6;
  border-color: #e5e7eb;
}

.nav-links a.is-active {
  background: #111827;
  color: #f9fafb;
  border-color: #111827;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
}

.btn-primary {
  border-radius: 999px;
  padding: 7px 16px;
  border: none;
  background: #dc2626;
  color: #f9fafb;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(220,38,38,0.35);
}
.btn-primary .icon {
  font-size: 14px;
}

/* Layout main */
main {
  flex: 1;
}

.main-shell {
  padding: 18px 26px 24px;
}

/* Hero */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 26px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(30px, 4vw, 40px);
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.hero-title span.accent {
  color: #dc2626;
}

.hero-subtitle {
  margin: 0 0 14px;
  font-size: 15px;
  color: #4b5563;
  max-width: 34rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.hero-pill {
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px dashed #d1d5db;
  font-size: 12px;
  color: #6b7280;
}

.hero-meta {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: #4b5563;
  margin-top: 6px;
}

.hero-meta span::before {
  content: "●";
  font-size: 10px;
  color: #16a34a;
  margin-right: 6px;
}

/* Hero media */
.hero-media {
  position: relative;
}

.hero-panel {
  border-radius: 18px;
  background: #111827;
  color: #f9fafb;
  padding: 14px 14px 12px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.55);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(229,231,235,0.4);
  margin-bottom: 10px;
}

.hero-tag-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-image-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(229,231,235,0.35);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  animation: float-slow 7s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-label {
  margin-top: 8px;
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e5e7eb;
}

.hero-label span:last-child {
  font-size: 11px;
  color: #9ca3af;
}

/* Sections */
section {
  margin-bottom: 22px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  border-top: 1px dashed #e5e7eb;
  padding-top: 14px;
}

.section-header h2 {
  margin: 0 0 4px;
  font-size: 18px;
}

.section-header p {
  margin: 0;
  font-size: 13px;
  color: #4b5563;
  max-width: 32rem;
}

.section-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #6b7280;
}

/* Grids + cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.card-box {
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 12px 14px 14px;
}

.card-box h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.card-box p {
  margin: 0;
  font-size: 13px;
  color: #4b5563;
}

.card-meta {
  margin-top: 8px;
  font-size: 11px;
  color: #6b7280;
}

/* Product list style */
.product-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-price {
  font-weight: 700;
  font-size: 15px;
  color: #059669;
}

.product-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

/* Small gallery images */
.thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.thumb {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #111827;
}

.thumb img {
  width: 100%;
  display: block;
  height: auto;
  transform-origin: center;
  transition: transform 0.35s ease-out;
}

.thumb:hover img {
  transform: scale(1.04);
}

/* Brand bar */
.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-chip {
  min-width: 90px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #111827;
  color: #e5e7eb;
  font-size: 12px;
  text-align: center;
}

/* Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 18px;
}

.form-shell {
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 14px 14px 16px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-group {
  flex: 1;
  margin-bottom: 8px;
}

label {
  display: block;
  font-size: 12px;
  margin-bottom: 3px;
  color: #4b5563;
}

input, textarea, select {
  width: 100%;
  font: inherit;
  font-size: 13px;
  padding: 7px 9px;
  border-radius: 9px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37,99,235,0.25);
  background: #ffffff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.helper {
  font-size: 11px;
  color: #6b7280;
  margin-top: 2px;
}

/* Legal text */
.legal-block h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.legal-block p,
.legal-block li {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
}

.legal-block ul {
  margin: 6px 0 6px 18px;
  padding: 0;
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 10px 26px 14px;
  border-top: 1px solid #e5e7eb;
  font-size: 12px;
  color: #6b7280;
  background: #f9fafb;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #111827;
  color: #e5e7eb;
  padding: 10px 16px;
  font-size: 12px;
  display: none;
  z-index: 40;
  border-top: 2px solid #dc2626;
}

.cookie-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.cookie-text {
  max-width: 620px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cookie-btn {
  border-radius: 999px;
  border: 1px solid #6b7280;
  background: transparent;
  color: #e5e7eb;
  font-size: 11px;
  padding: 5px 10px;
  cursor: pointer;
}

.cookie-btn.primary {
  background: #dc2626;
  border-color: #dc2626;
  color: #f9fafb;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-media {
    order: -1;
  }
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }
  .main-shell {
    padding-inline: 16px;
  }
  .hero-grid {
    gap: 18px;
  }
  .grid-3,
  .grid-2,
  .thumb-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
