:root {
  --bg: #ead0a0;
  --bg-soft: #f3e0ba;
  --surface: rgba(255, 248, 233, 0.88);
  --surface-strong: #f7ebd0;
  --text: #3d2b16;
  --muted: #786248;
  --brand: #a77b30;
  --brand-deep: #6f4d1f;
  --accent: #111111;
  --border: rgba(111, 77, 31, 0.18);
  --shadow: 0 24px 60px rgba(76, 48, 16, 0.15);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --container: min(1160px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top right, rgba(167, 123, 48, 0.12), transparent 30%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  line-height: 1.7;
}
.floating-actions {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 12px;
}
.floating-btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: var(--shadow);
}
.floating-btn svg,
.social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.floating-btn.whatsapp { background: #1fa855; }
.floating-btn.call { background: var(--brand-deep); }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 100px 0; position: relative; }
.section-head { margin-bottom: 32px; }
.section-head h2, .hero-copy h1 { margin: 0 0 12px; line-height: 1.2; }
.section-head p, .hero-text { margin: 0; color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brand); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(243, 224, 186, 0.76);
  border-bottom: 1px solid rgba(111, 77, 31, 0.08);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-logo {
  width: 230px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { font-weight: 700; color: var(--brand-deep); transition: color 0.25s ease; }
.site-nav a:hover, .site-nav a.is-active, .site-nav a[aria-current="page"] { color: var(--accent); }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand-deep);
  margin: 5px 0;
}
.hero-grid, .about-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.hero-copy h1 { font-size: clamp(2.2rem, 4.5vw, 4.4rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-deep)); box-shadow: var(--shadow); }
.btn-secondary { border-color: rgba(111, 77, 31, 0.24); background: rgba(255, 255, 255, 0.42); }
.hero-highlights, .feature-list { list-style: none; padding: 0; margin: 0; }
.hero-highlights { display: grid; gap: 10px; }
.hero-highlights li, .feature-list li { position: relative; padding-right: 20px; }
.hero-highlights li::before, .feature-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
.card-frame, .info-card, .product-block, .showcase-card, .map-card, .contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.card-frame, .showcase-card, .map-card { overflow: hidden; }
.card-frame img { aspect-ratio: 1 / 1; object-fit: cover; }
.card-frame.large img { aspect-ratio: 4 / 3; }
.about-points, .product-layout, .product-gallery, .image-grid, .contact-cards { display: grid; gap: 18px; }
.about-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-card, .product-block { padding: 24px; }
.info-index { display: inline-flex; margin-bottom: 10px; color: var(--brand); font-size: 0.9rem; font-weight: 800; }
.info-card h3, .product-block h3 { margin: 0 0 10px; }
.stats-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 18px; }
.stats-strip div {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 243, 0.78);
  border: 1px solid var(--border);
  text-align: center;
}
.stats-strip strong { display: block; font-size: 1.2rem; color: var(--brand-deep); }
.product-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 18px; }
.feature-list-columns { columns: 2; column-gap: 28px; }
.feature-list li { break-inside: avoid; margin-bottom: 10px; }
.product-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.seo-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.seo-product-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 233, 0.86);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.seo-product-card:hover,
.seo-product-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--brand);
  background: var(--surface-strong);
}
.seo-product-card span { color: var(--brand); font-weight: 800; font-size: 0.82rem; }
.seo-product-card h3 { margin: 12px 0 8px; line-height: 1.4; }
.seo-product-card p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.showcase-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.showcase-card figcaption { padding: 14px 18px 18px; font-weight: 700; }
.image-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
.showcase-card.wide { grid-row: span 2; }
.showcase-card.wide img { aspect-ratio: 4 / 5; }
.contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 22px; }
.contact-card { display: block; padding: 18px 20px; }
.contact-card span { display: block; color: var(--muted); font-size: 0.88rem; }
.contact-card strong { display: block; margin-top: 4px; line-height: 1.4; }
.contact-side { display: grid; gap: 18px; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 248, 233, 0.9);
  box-shadow: var(--shadow);
  font-weight: 700;
}
.contact-image img { aspect-ratio: 1 / 1; }
.map-card { min-height: 320px; }
.map-card iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
.site-footer { padding: 28px 0 38px; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(111, 77, 31, 0.16);
  color: var(--muted);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.is-reveal { opacity: 0; transform: translateY(20px); }
.is-reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }

.inner-hero {
  padding: 76px 0 54px;
  border-bottom: 1px solid var(--border);
}
.inner-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 34px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}
.breadcrumbs a:hover { color: var(--brand-deep); }
.breadcrumbs span::before { content: "/"; margin-left: 8px; color: rgba(111, 77, 31, 0.45); }
.inner-hero h1 {
  max-width: 850px;
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.25;
}
.inner-hero p { max-width: 760px; margin: 0; color: var(--muted); font-size: 1.05rem; }
.inner-hero-media {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.inner-hero-media img { aspect-ratio: 4 / 3; object-fit: cover; }
.page-section { padding: 72px 0; }
.page-section.alt { background: rgba(255, 248, 233, 0.35); border-block: 1px solid var(--border); }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: start;
}
.prose h2 { margin-top: 0; font-size: clamp(1.55rem, 3vw, 2.35rem); }
.prose h3 { margin-top: 28px; }
.prose p { color: var(--muted); }
.prose ul { padding-right: 22px; }
.prose li { margin-bottom: 8px; }
.side-panel {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--brand-deep);
  color: #fff;
  box-shadow: var(--shadow);
}
.side-panel h2, .side-panel h3 { margin-top: 0; }
.side-panel p { color: rgba(255, 255, 255, 0.78); }
.side-panel .btn { width: 100%; background: #fff; color: var(--brand-deep); }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.benefit-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}
.benefit-card h3 { margin: 0 0 8px; }
.benefit-card p { margin: 0; color: var(--muted); }
.product-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product-index-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 15px 35px rgba(76, 48, 16, 0.09);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.product-index-card:hover { transform: translateY(-4px); border-color: var(--brand); }
.product-index-card small { color: var(--brand); font-weight: 800; }
.product-index-card h2, .product-index-card h3 { margin: 14px 0 10px; }
.product-index-card p { margin: 0 0 18px; color: var(--muted); }
.product-index-card strong { margin-top: auto; color: var(--brand-deep); }
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list p { margin-bottom: 0; color: var(--muted); }
.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--brand-deep), #3d2b16);
  color: #fff;
  box-shadow: var(--shadow);
}
.contact-cta h2 { margin: 0 0 6px; }
.contact-cta p { margin: 0; color: rgba(255, 255, 255, 0.75); }
.contact-cta .hero-actions { margin: 0; flex: 0 0 auto; }
.contact-cta .btn-primary { background: #fff; color: var(--brand-deep); }
.page-contact-list { display: grid; gap: 14px; }
.page-contact-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.page-contact-item span { color: var(--muted); }
.page-contact-item strong { text-align: left; direction: ltr; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(26, 160, 215, 0.65);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero-grid, .about-grid, .contact-grid, .product-layout, .product-gallery, .image-grid, .contact-cards, .about-points { grid-template-columns: 1fr; }
  .feature-list-columns { columns: 1; }
  .stats-strip { grid-template-columns: 1fr; }
  .showcase-card.wide { grid-row: auto; }
  .seo-product-grid, .product-index-grid, .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .inner-hero-grid, .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .header-inner { min-height: 76px; }
  .nav-toggle { display: inline-block; }
  .brand-logo { width: 180px; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 248, 233, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 18px; border-bottom: 1px solid rgba(111, 77, 31, 0.08); }
  .site-nav a:last-child { border-bottom: 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
  .floating-actions {
    left: 12px;
    bottom: 12px;
  }
  .floating-btn {
    width: 52px;
    height: 52px;
  }
  .seo-product-grid, .product-index-grid, .benefit-grid { grid-template-columns: 1fr; }
  .inner-hero { padding: 52px 0 42px; }
  .inner-hero h1 { font-size: 2rem; }
  .page-section { padding: 54px 0; }
  .contact-cta { flex-direction: column; align-items: flex-start; padding: 26px; }
  .contact-cta .hero-actions, .contact-cta .btn { width: 100%; }
  .page-contact-item { flex-direction: column; gap: 4px; }
  .page-contact-item strong { text-align: right; }
}
