:root {
  --bg: #f3f0ea;
  --surface: #fffdf9;
  --surface-alt: #f8f3eb;
  --ink: #1d1f21;
  --muted: #5c6470;
  --line: #ddd2c2;
  --brand: #0b6e4f;
  --brand-deep: #084c3f;
  --accent: #d88c1d;
  --accent-soft: #f0d9b1;
  --shadow: 0 18px 45px rgba(19, 24, 30, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1160px, calc(100% - 2rem));
  --header-height: 86px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 140, 29, 0.12), transparent 26%),
    radial-gradient(circle at 85% 15%, rgba(11, 110, 79, 0.08), transparent 22%),
    linear-gradient(180deg, #f8f6f1 0%, #f3f0ea 100%);
}

::selection {
  background: rgba(11, 110, 79, 0.18);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(216, 140, 29, 0.35);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container,
.section-inner,
.products-page,
.retail-container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section + .section {
  border-top: 1px solid rgba(221, 210, 194, 0.42);
}

.section-header {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-header--wide {
  max-width: 860px;
}

.section-header > img {
  width: auto;
  max-width: min(180px, 100%);
  max-height: 68px;
  margin: 0.85rem 0 0.4rem;
  object-fit: contain;
}

.products-page .section-header {
  padding: 1.35rem 1.45rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(221, 210, 194, 0.9);
  box-shadow: 0 14px 30px rgba(19, 24, 30, 0.08);
}

.products-page .section-header h2 {
  margin-top: 0.15rem;
}

.products-page .section-header p {
  margin-top: 0.55rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(11, 110, 79, 0.1);
  color: var(--brand-deep);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

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

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

ul {
  padding-left: 1.1rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 240, 0.82);
  border-bottom: 1px solid rgba(221, 210, 194, 0.8);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 252, 246, 0.95);
  box-shadow: 0 10px 30px rgba(23, 33, 40, 0.08);
}

.header-inner {
  width: var(--container);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo,
.brand-name {
  color: var(--ink);
  font-weight: 800;
  font-size: 1.1rem;
}

.brand-name span,
.logo span {
  color: var(--brand);
}

.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(11, 110, 79, 0.16);
  background: rgba(255, 253, 249, 0.96);
  border-radius: 14px;
  width: 44px;
  height: 44px;
  padding: 0;
  box-shadow: 0 8px 20px rgba(19, 24, 30, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 2.5px 0;
  border-radius: 999px;
  background: #24323a;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(11, 110, 79, 0.3);
  background: #fff;
  box-shadow: 0 12px 24px rgba(19, 24, 30, 0.12);
}

.menu-toggle[aria-expanded="true"] {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 14px 26px rgba(11, 110, 79, 0.22);
}

.menu-toggle[aria-expanded="true"] span {
  background: #fff;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

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

.site-nav a {
  padding: 0.7rem 1rem;
  color: var(--ink);
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(11, 110, 79, 0.1);
  color: var(--brand-deep);
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--brand);
  color: #fff !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--brand-deep) !important;
  color: #fff !important;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.75;
}

.hero::before {
  width: 360px;
  height: 360px;
  right: -100px;
  top: 1.5rem;
  background: rgba(11, 110, 79, 0.16);
}

.hero::after {
  width: 300px;
  height: 300px;
  left: -90px;
  bottom: -60px;
  background: rgba(216, 140, 29, 0.12);
}

.hero-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy p {
  max-width: 620px;
  font-size: 1.08rem;
  margin-top: 1rem;
}

.hero-copy h1 {
  max-width: 11ch;
}

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

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-point {
  padding: 1rem 1rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(221, 210, 194, 0.95);
  box-shadow: 0 12px 28px rgba(19, 24, 30, 0.08);
}

.hero-point strong {
  display: block;
  color: var(--brand-deep);
  margin-bottom: 0.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 25px rgba(11, 110, 79, 0.2);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--brand-deep);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border: 1px solid rgba(221, 210, 194, 0.95);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: #fff;
}

.hero-panel {
  position: relative;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(221, 210, 194, 0.8);
  box-shadow: var(--shadow);
  transform: translateY(-24px);
}

.hero-panel img {
  width: 100%;
  min-height: 420px;
  max-height: 520px;
  object-fit: cover;
  border-radius: 22px;
}

.hero-panel-caption {
  position: absolute;
  left: 2.2rem;
  right: 2.2rem;
  bottom: 2.1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(180deg, rgba(6, 13, 19, 0.16), rgba(6, 13, 19, 0.72));
}

.stats-grid,
.features,
.product-grid,
.retail-grid,
.insight-grid,
.contact-cards,
.brand-logos {
  display: grid;
  gap: 1.25rem;
}

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

.stat-card,
.feature,
.card,
.product-card,
.retail-card,
.contact-card,
.info-card {
  border: 1px solid rgba(221, 210, 194, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.stat-card,
.feature,
.contact-card,
.info-card {
  padding: 1.35rem;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--brand-deep);
}

.stat-card span {
  color: var(--muted);
}

.about-main,
.contact-layout,
.retail-intro,
.brand-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.about-img img,
.brand-story img,
.retail-intro img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

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

.info-card h3 {
  margin-bottom: 0.65rem;
}

.brands,
.why-us,
.products,
.contact-section,
.products-page,
.about-main,
.retail-container {
  position: relative;
}

.brands {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
}

.brand-logos {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  align-items: stretch;
}

.brand-logos a,
.brand-logos div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(221, 210, 194, 0.95);
  box-shadow: 0 10px 22px rgba(19, 24, 30, 0.08);
}

.brand-logos img {
  max-width: 120px;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.brand-logos a:hover img,
.brand-logos div:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

.features,
.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.35rem;
}

.feature-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 14px;
  background: rgba(11, 110, 79, 0.12);
  color: var(--brand-deep);
  font-weight: 800;
}

.products {
  padding-bottom: 5.5rem;
}

.card,
.product-card,
.retail-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.card {
  padding: 1.55rem;
  gap: 0.9rem;
}

.card h3,
.product-card h3,
.retail-card h3,
.info-card h3,
.contact-card h3 {
  color: #162126;
}

.card p,
.product-card p,
.retail-card p {
  margin-top: 0.4rem;
}

.card .btn {
  margin-top: auto;
  width: fit-content;
}


.card:hover,
.product-card:hover,
.retail-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 22px 45px rgba(19, 24, 30, 0.14);
}

.about-hero,
.page-hero {
  padding: 4.5rem 0 2rem;
}

.page-hero .section-inner,
.about-hero .section-inner {
  width: var(--container);
  margin: 0 auto;
}

.product-hero-card,
.retail-hero-card {
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(11, 110, 79, 0.92), rgba(8, 76, 63, 0.96));
  color: #fff;
  box-shadow: var(--shadow);
}

.product-hero-card p,
.retail-hero-card p,
.product-hero-card li,
.retail-hero-card li {
  color: rgba(255, 255, 255, 0.88);
}

.product-meta,
.retail-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.92rem;
}

.search-box {
  position: relative;
  width: min(320px, 100%);
}

.search-box input {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1;
  pointer-events: none;
}

.products-page {
  padding: 2rem 0 5rem;
}

.catalog-highlight {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.catalog-highlight article {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.catalog-highlight strong {
  display: block;
  color: #fff;
  margin-bottom: 0.2rem;
}

.catalog-highlight span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.products-page .product-grid,
.retail-page .retail-grid {
  margin-top: 2rem;
}

.brand-section + .brand-section {
  margin-top: 2.5rem;
}

.brand-section-header {
  padding: 1.15rem 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(221, 210, 194, 0.92);
  box-shadow: 0 12px 28px rgba(19, 24, 30, 0.07);
}

.brand-section-header h3 {
  margin-top: 0.3rem;
}

.brand-section-header p {
  margin-top: 0.45rem;
}

.product-card {
  padding: 1rem;
  gap: 0.85rem;
}

.product-card img,
.retail-card img,
.product-slider {
  width: 100%;
  border-radius: 18px;
}

.product-card > img,
.product-slider {
  min-height: 240px;
  background: linear-gradient(135deg, #ece4d7, #f9f6ef);
}

.product-card > img {
  height: 260px;
  object-fit: contain;
  background: #fff;
}

.product-slider img {
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.product-slider {
  position: relative;
  overflow: hidden;
}

.product-slider img {
  display: none;
  width: 100%;
  height: 280px;
}

.product-slider img.active {
  display: block;
}

.product-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 23, 30, 0.6);
  color: #fff;
}

.product-slider .prev {
  left: 0.75rem;
}

.product-slider .next {
  right: 0.75rem;
}

.brand {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.92rem;
}

.short-desc,
.retail-short {
  color: var(--muted);
}

.product-details,
.retail-details {
  display: none;
  margin-top: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(221, 210, 194, 0.95);
}

.product-card.active .product-details,
.retail-card.active .retail-details {
  display: block;
}

.view-btn,
.retail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 0;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-align: center;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card .view-btn {
  margin-top: auto;
  width: 100%;
}

.product-card .btn-group {
  margin-top: auto;
  width: 100%;
}

.product-card .btn-group .view-btn,
.product-card .btn-group .retail-btn {
  flex: 1 1 220px;
}

.view-btn:hover,
.retail-btn:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(11, 110, 79, 0.18);
}

.btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.5rem;
}

.retail-btn.whatsapp {
  background: #126d47;
}

.retail-btn.whatsapp:hover {
  background: #0d5839;
}

body.modal-open {
  overflow: hidden;
}

.details-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
}

.details-modal.open {
  display: block;
}

.details-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 29, 0.58);
  backdrop-filter: blur(6px);
}

.details-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid rgba(221, 210, 194, 0.95);
  box-shadow: 0 28px 60px rgba(19, 24, 30, 0.24);
}

.details-modal__scroll {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  max-height: calc(100vh - 2rem);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(11, 110, 79, 0.45) rgba(221, 210, 194, 0.38);
}

.details-modal__scroll,
.details-modal__media {
  min-height: 0;
}

.details-modal__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: linear-gradient(180deg, #f6efe2 0%, #efe6d7 100%);
  min-height: 100%;
}

.details-modal__image {
  width: auto;
  max-width: 100%;
  height: auto;
  min-height: 320px;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 22px;
  background: #fff;
}

.details-modal__content {
  padding: 1.5rem 1.5rem 1.75rem;
  min-height: 0;
}

.details-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 76, 63, 0.1);
  color: var(--brand-deep);
  font-size: 1.8rem;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.details-modal__close:hover {
  background: rgba(8, 76, 63, 0.18);
  transform: scale(1.04);
}

.details-modal__eyebrow {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.details-modal__title {
  margin-top: 0;
  max-width: 90%;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.details-modal__summary {
  margin-top: 0.75rem;
  max-width: 56ch;
  font-size: 1.02rem;
}

.details-modal__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.details-modal__actions .retail-btn {
  min-width: 240px;
}

.details-modal__body {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(221, 210, 194, 0.95);
}

.details-modal__body p,
.details-modal__body li {
  color: var(--muted);
}

.details-modal__body strong {
  color: #223138;
}

.details-modal__body ul {
  padding-left: 1.25rem;
}

.details-modal__body li + li {
  margin-top: 0.5rem;
}

.details-modal__body p + p,
.details-modal__body p + ul,
.details-modal__body ul + p,
.details-modal__body ul + ul {
  margin-top: 0.85rem;
}

.retail-card {
  padding: 1rem;
  gap: 0.85rem;
}

.retail-card::after,
.product-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.retail-card:hover::after,
.product-card:hover::after {
  opacity: 1;
}

.retail-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.contact-section {
  padding: 5rem 0;
}

.contact-layout {
  align-items: stretch;
}

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

.contact-card {
  padding: 1.35rem;
  min-width: 0;
}

.contact-card h3 {
  margin-bottom: 0.35rem;
}

.contact-card p,
.contact-card a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card p {
  min-width: 0;
}

.contact-card p > a {
  display: inline-block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(221, 210, 194, 0.95);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.search-box input:focus {
  outline: 2px solid rgba(216, 140, 29, 0.22);
  border-color: var(--accent);
}

.form-status {
  min-height: 1.3rem;
  color: var(--brand-deep);
  font-size: 0.95rem;
}

.footer {
  padding: 1.35rem 0 2.5rem;
}

footer {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(221, 210, 194, 0.95);
  color: var(--muted);
}

footer a {
  color: var(--brand-deep);
  font-weight: 600;
}

.cta-band {
  width: var(--container);
  margin: 0 auto 2rem;
  padding: 1.5rem;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(11, 110, 79, 0.98), rgba(8, 76, 63, 0.95));
  color: #fff;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 680px;
}

.cta-band .btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

#noResults {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--muted);
}

.placeholder-img {
  object-fit: contain !important;
  padding: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-main,
  .contact-layout,
  .retail-intro,
  .brand-story,
  .insight-grid,
  .catalog-highlight {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .contact-cards,
  .hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 78px;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  h3 {
    font-size: 1.08rem;
    line-height: 1.3;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-inner {
    gap: 0.75rem;
  }

  .brand-lockup {
    min-width: 0;
    gap: 0.7rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  .brand-name {
    font-size: 0.98rem;
    line-height: 1.15;
  }

  .brand-subtitle {
    font-size: 0.74rem;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-height) + 0.65rem) 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.85rem;
    border-radius: 22px;
    background: rgba(255, 252, 246, 0.98);
    border: 1px solid rgba(221, 210, 194, 0.95);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    width: 100%;
    padding: 0.85rem 1rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-panel {
    transform: none;
  }

  .hero-panel img {
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }

  .stats-grid,
  .contact-cards,
  .hero-points {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .about-hero,
  .section {
    padding-top: 4rem;
  }

  .hero-copy h1,
  .retail-hero-card h1,
  .product-hero-card h1 {
    max-width: 18ch;
    font-size: clamp(1.6rem, 5.8vw, 2.1rem);
    line-height: 1.16;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .product-meta,
  .retail-toolbar {
    align-items: stretch;
  }

  .search-box {
    width: 100%;
  }

  .tag {
    justify-content: center;
    text-align: center;
  }

  .card,
  .product-card,
  .retail-card,
  .feature,
  .contact-card,
  .info-card {
    border-radius: 20px;
  }

  .retail-card h3,
  .product-card h3,
  .card h3,
  .info-card h3,
  .contact-card h3 {
    font-size: 1.02rem;
    line-height: 1.32;
  }

  .retail-card,
  .product-card,
  .card {
    padding: 0.95rem;
  }

  .about-img img,
  .brand-story img,
  .retail-intro img {
    min-height: 0;
    height: auto;
    object-fit: contain;
    object-position: center;
    background: #fff;
  }

  .product-slider img {
    height: 240px;
  }

  footer {
    flex-direction: column;
  }

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

  .details-modal__scroll {
    grid-template-columns: 1fr;
  }

  .details-modal__media {
    padding-bottom: 0;
    min-height: auto;
  }

  .details-modal__image {
    min-height: 240px;
    max-height: 42vh;
  }
}

@media (max-width: 560px) {
  .section-header > img {
    max-width: 140px;
    max-height: 54px;
  }

  :root {
    --container: min(100% - 1rem, 100%);
  }

  .site-header {
    backdrop-filter: blur(12px);
  }

  .brand-subtitle {
    display: none;
  }

  .hero-panel img {
    min-height: 300px;
  }

  .hero-panel-caption {
    position: static;
    margin-top: 1rem;
  }

  h1 {
    font-size: clamp(1.95rem, 8.8vw, 2.6rem);
    line-height: 1.14;
  }

  h2 {
    font-size: clamp(1.45rem, 6.7vw, 2rem);
    line-height: 1.2;
  }

  .hero-copy h1,
  .retail-hero-card h1,
  .product-hero-card h1 {
    font-size: clamp(1.18rem, 5vw, 1.45rem);
    line-height: 1.22;
    letter-spacing: -0.01em;
    text-wrap: balance;
    max-width: none;
  }

  .section-header h2 {
    font-size: clamp(1.4rem, 6.4vw, 1.9rem);
    text-wrap: balance;
  }

  .retail-hero-card h1,
  .product-hero-card h1 {
    max-width: 20ch;
  }

  .retail-hero-card .catalog-highlight,
  .product-hero-card .catalog-highlight {
    margin-top: 1rem;
    gap: 0.65rem;
  }

  .retail-hero-card .catalog-highlight article,
  .product-hero-card .catalog-highlight article {
    padding: 0.8rem 0.85rem;
  }

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

  .btn-group {
    align-items: stretch;
  }

  .btn,
  .view-btn,
  .retail-btn {
    width: 100%;
  }

  .product-card .btn-group .view-btn,
  .product-card .btn-group .retail-btn,
  .retail-card .btn-group .view-btn,
  .retail-card .btn-group .retail-btn {
    flex: 0 0 auto;
    min-height: 44px;
  }

  .retail-btn,
  .view-btn,
  .btn {
    justify-content: center;
    text-align: center;
  }

  .details-modal__dialog {
    width: min(100% - 1rem, 100%);
    max-height: calc(100vh - 1rem);
    margin: 0.5rem auto;
    border-radius: 22px;
  }

  .details-modal__scroll {
    max-height: calc(100vh - 1rem);
  }

  .details-modal__content,
  .details-modal__media {
    padding: 1rem;
  }

  .details-modal__actions {
    flex-direction: column;
  }

  .details-modal__actions .retail-btn {
    min-width: 0;
  }

  .details-modal__title {
    max-width: none;
    font-size: clamp(1.5rem, 7vw, 2.1rem);
    line-height: 1.12;
  }

  .details-modal__summary {
    font-size: 0.98rem;
  }

  .retail-card h3,
  .product-card h3,
  .card h3,
  .info-card h3,
  .contact-card h3 {
    font-size: 0.98rem;
  }

  .retail-card p,
  .product-card p,
  .card p {
    font-size: 0.95rem;
  }

  .product-hero-card,
  .retail-hero-card {
    padding: 1.4rem;
  }

  .catalog-highlight article,
  .hero-point,
  .stat-card,
  .feature,
  .contact-card,
  .info-card {
    padding: 1.05rem;
  }

  .product-slider img {
    height: 220px;
  }
}

/* Homepage mobile tuning: preserve desktop visual feel without hurting usability */
@media (max-width: 768px) {
  .home-page .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(1.95rem, 7.6vw, 2.9rem);
    line-height: 1.12;
  }

  .home-page .hero-copy p {
    font-size: 1rem;
  }

  .home-page .hero-points,
  .home-page .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .hero-panel img {
    min-height: 340px;
    max-height: 520px;
    object-fit: cover;
  }

  .home-page .hero-panel-caption {
    position: absolute;
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.2rem;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .home-page .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(1.8rem, 7.9vw, 2.35rem);
    line-height: 1.14;
    text-wrap: pretty;
  }

  .home-page .hero-actions {
    flex-direction: row;
    align-items: stretch;
    gap: 0.65rem;
    flex-wrap: wrap;
  }

  .home-page .hero-actions .btn {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 46px;
    padding: 0.78rem 0.9rem;
  }

  .home-page .hero-panel img {
    min-height: 300px;
  }

  .home-page .hero-panel-caption {
    position: absolute;
    margin-top: 0;
  }

  .home-page .hero-points,
  .home-page .stats-grid {
    grid-template-columns: 1fr;
  }
}
