@font-face {
  font-family: 'Gefika';
  src: url('./assets/fonts/Gefika.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f7f3ed;
  --surface: #fff;
  --surface-alt: #f2ede5;
  --dark: #1d1a17;
  --dark-soft: #2c2520;
  --text: #1d1a17;
  --muted: #6a625a;
  --primary: #6b4f3a;
  --primary-dark: #4a3829;
  --accent: #c39b65;
  --border: rgba(29, 26, 23, 0.12);
  --border-dark: rgba(255, 255, 255, 0.1);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Gefika', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

button, a { font: inherit; }

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

/* ── Layout ── */

.container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 180ms ease, opacity 180ms ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); opacity: 0.9; }

.btn-primary { background: var(--dark); color: #fff; }

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}

.btn-action { background: var(--accent); color: #fff; }

.btn-light { background: #fff; color: var(--dark); }

/* ── Eyebrow ── */

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.eyebrow--light { color: rgba(255,255,255,0.6); }

/* ── HEADER (full-width) ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(29, 26, 23, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand span { font-size: 1.05rem; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  transition: color 180ms;
}

.main-nav a:hover { color: #fff; }

/* ── HERO (full-width band) ── */

.section-hero {
  background: var(--dark);
  color: #fff;
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-grid .eyebrow { color: var(--accent); }

.section-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.05;
  margin: 0.75rem 0 1.25rem;
  color: #fff;
}

.section-hero p { color: rgba(255,255,255,0.75); max-width: 520px; }

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

.hero-highlights {
  display: grid;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  height: 480px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── SECTION headings ── */

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.section-heading p { color: var(--muted); max-width: 600px; margin: 0 auto; }

/* ── PRODUCTS (full-width dark band) ── */

.section-shop {
  background: var(--dark);
  padding: 5rem 0;
}

.section-shop .section-heading h2 { color: #fff; }
.section-shop .section-heading .eyebrow { color: var(--accent); }
.section-shop .section-heading p { color: rgba(255,255,255,0.6); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--dark-soft);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}

.badge {
  display: inline-flex;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(195, 155, 101, 0.2);
  color: var(--accent);
  font-size: 0.82rem;
  width: fit-content;
  letter-spacing: 0.05em;
}

.badge-alt { background: rgba(195, 155, 101, 0.1); }

.card-body h3 { color: #fff; font-size: 1.2rem; }

.card-body p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

.product-features {
  list-style: none;
  display: grid;
  gap: 0.35rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
}

.card-footer {
  margin-top: auto;
  padding-top: 0.5rem;
}

.card-footer .btn-action {
  width: 100%;
  justify-content: center;
}

/* ── ABOUT (warm light band) ── */

.section-about {
  background: var(--surface-alt);
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  gap: 3rem;
}

.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1rem; }

.about-copy p { color: var(--muted); margin-bottom: 0.75rem; }

.about-copy blockquote {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
  border-left: 4px solid var(--accent);
  color: var(--muted);
  font-style: italic;
}

.about-cards { display: grid; gap: 1rem; }

.impact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.impact-card strong {
  display: block;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.impact-card span { color: var(--muted); font-size: 0.9rem; }

.process-section {
  margin-top: 3rem;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.process-header {
  max-width: 680px;
  margin: 0 auto 2rem;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.process-grid article {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.process-grid span {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ── SERVICE (white band) ── */

.section-service {
  background: var(--surface);
  padding: 5rem 0;
}

.service-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.service-pillar {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: grid;
  gap: 0.9rem;
}

.pillar-icon {
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(107, 79, 58, 0.12);
  color: var(--primary);
}

.service-pillar h3 { font-size: 1.05rem; }

.service-pillar p { color: var(--muted); font-size: 0.95rem; }

.service-philosophy { margin: 2.5rem 0; }

.service-quote {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.service-quote p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255,255,255,0.9);
}

.service-gallery-section { margin-top: 2.5rem; }

.service-gallery-title { text-align: center; margin-bottom: 1.5rem; }

.service-gallery { display: grid; gap: 1rem; }

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

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-alt);
}

.gallery-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 320ms ease;
}

.gallery-item:hover img { transform: scale(1.03); }

.gallery-item figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.service-cta {
  margin-top: 2.5rem;
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.service-cta p { font-size: 1.05rem; color: var(--muted); }

/* ── BLOG (warm band) ── */

.section-blog {
  background: var(--surface-alt);
  padding: 5rem 0;
}

.section-blog .blog-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.blog-body { padding: 2.5rem; }

.blog-body h3 { font-size: 1.4rem; margin-bottom: 1rem; }

.blog-body p { color: var(--muted); }

.blog-body ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

/* ── CONTACT (white band) ── */

.section-contact {
  background: var(--surface);
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info { display: grid; gap: 1.2rem; }

.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

.contact-info > p { color: var(--muted); }

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.contact-list a { color: var(--primary); }

.b2b-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface-alt);
  border-left: 4px solid var(--accent);
}

.b2b-card h3 { margin-bottom: 0.5rem; }

.b2b-card p { color: var(--muted); font-size: 0.95rem; }

.contact-form {
  display: grid;
  gap: 1rem;
  background: var(--surface-alt);
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid var(--accent);
  border-color: transparent;
}

.form-feedback { color: var(--primary); min-height: 1.2rem; font-size: 0.9rem; }

/* ── FOOTER (full-width dark band) ── */

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-inner p { font-size: 0.9rem; }

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 180ms;
}

.footer-links a:hover { color: #fff; }

/* ── WhatsApp float ── */

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 30;
  background: #25d366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 180ms ease;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* ── Cart toast ── */

.cart-toast {
  position: fixed;
  left: 50%;
  bottom: 6rem;
  transform: translateX(-50%);
  background: rgba(29, 26, 23, 0.92);
  color: #fff;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-0.5rem);
}

/* ── Responsive ── */

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .section-blog .blog-card {
    grid-template-columns: 1fr;
  }

  .hero-media { height: 340px; }

  .cards-grid { grid-template-columns: 1fr 1fr; }

  .service-pillars { grid-template-columns: 1fr; }

  .process-grid { grid-template-columns: 1fr 1fr; }

  .service-gallery--duo { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; gap: 0.75rem; }

  .cards-grid { grid-template-columns: 1fr; }

  .process-grid { grid-template-columns: 1fr; }

  .service-gallery--duo { grid-template-columns: 1fr; }

  .hero-grid { gap: 2rem; }

  .section-hero,
  .section-shop,
  .section-about,
  .section-service,
  .section-blog,
  .section-contact { padding: 3.5rem 0; }
}
