:root {
  --gold: #b8892e;
  --gold-dark: #8a6a1f;
  --gold-darker: #6b5017;
  --cream: #fdfaf3;
  --cream-alt: #f6efdf;
  --ink: #2a2420;
  --ink-soft: #5c534a;
  --border: #e8dfc9;
  --radius: 10px;
  --max-width: 1160px;
  --shadow: 0 8px 24px rgba(42, 36, 32, 0.08);
  --texture-light:
    repeating-linear-gradient(45deg, rgba(184, 137, 46, 0.06) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(-45deg, rgba(184, 137, 46, 0.06) 0 1px, transparent 1px 9px);
  --texture-dark:
    repeating-linear-gradient(45deg, rgba(232, 223, 201, 0.05) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(-45deg, rgba(232, 223, 201, 0.05) 0 1px, transparent 1px 9px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--texture-light), var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--gold-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 0.6em;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-darker));
  color: #fff;
  box-shadow: 0 6px 16px rgba(138, 106, 31, 0.35);
}
.btn-primary:hover { box-shadow: 0 8px 20px rgba(138, 106, 31, 0.45); }

.btn-ghost {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 243, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name strong { font-family: 'Playfair Display', serif; font-size: 1.02rem; }
.brand-name small { color: var(--ink-soft); font-size: 0.72rem; letter-spacing: 0.06em; }

.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--gold-dark); text-decoration: none; }

.header-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* Hero */
.hero {
  padding: 120px 0 100px;
  background:
    linear-gradient(100deg, rgba(24, 19, 14, 0.92) 0%, rgba(24, 19, 14, 0.82) 42%, rgba(24, 19, 14, 0.6) 72%, rgba(24, 19, 14, 0.4) 100%),
    url('images/hero-bg.jpg') center 30% / cover no-repeat;
  color: #f5efe2;
}
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: #fff; }
.hero-inner { max-width: 780px; }
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.15;
}
.hero-lede { font-size: 1.08rem; max-width: 620px; color: #d9d0c0; }
.hero .btn-ghost { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.hero .btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Sections */
.section { padding: 76px 0; }
.section-alt { background: var(--texture-light), var(--cream-alt); }
.section h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); max-width: 640px; }

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.feature-card p { margin: 0; font-size: 0.94rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.product-card:hover { transform: translateY(-3px); }
.product-icon { font-size: 1.8rem; margin-bottom: 10px; }
.product-card h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.product-card p { margin: 0; font-size: 0.92rem; }

.product-photo {
  height: 180px;
  margin: -26px -26px 16px;
  background: linear-gradient(160deg, var(--cream-alt), #fff);
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-photo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.product-photo--cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalogue-cta {
  margin-top: 36px;
  text-align: center;
}
.catalogue-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.catalogue-cta .material-symbols-outlined { font-size: 20px; }
.catalogue-note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 14px;
}
.gallery-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.infra-grid { max-width: 760px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.dispatch-card {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dispatch-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-darker));
  color: #fff;
}
.dispatch-header .material-symbols-outlined { font-size: 28px; }
.dispatch-header strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}
.dispatch-header span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
}

.dispatch-list {
  list-style: none;
  margin: 0;
  padding: 4px 24px;
}
.dispatch-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.dispatch-list li:last-child { border-bottom: none; }
.dispatch-list .material-symbols-outlined { color: var(--gold-dark); margin-top: 2px; }
.dispatch-list strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 2px;
}
.dispatch-list span, .dispatch-list a { font-size: 0.92rem; }

.dispatch-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 24px 20px;
  padding: 10px 14px;
  background: var(--cream-alt);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3a9d4f;
  box-shadow: 0 0 0 3px rgba(58, 157, 79, 0.2);
  flex-shrink: 0;
}

.dispatch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 24px 24px;
}
.dispatch-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  padding: 10px 18px;
}
.dispatch-actions .material-symbols-outlined { font-size: 18px; }

.map-embed {
  position: relative;
  display: block;
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-embed iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
  pointer-events: none;
}
.map-embed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 36, 32, 0);
  transition: background 0.15s ease;
}
.map-embed:hover::after { background: rgba(42, 36, 32, 0.08); }
.map-cta {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(42, 36, 32, 0.2);
}
.map-cta .material-symbols-outlined { color: var(--gold-dark); font-size: 20px; }

.contact-form,
.quote-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label,
.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
}
.contact-form input,
.contact-form textarea,
.quote-form input,
.quote-form textarea,
.quote-form select {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
}
.quote-form select { appearance: auto; }
.contact-form input:focus,
.contact-form textarea:focus,
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form button,
.quote-form button { align-self: flex-start; }
.form-note { font-size: 0.82rem; margin: 0; }

.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.quote-form-row {
  display: flex;
  gap: 16px;
}
@media (max-width: 860px) {
  .quote-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .quote-form-row { flex-direction: column; }
}

/* Footer */
.site-footer {
  background: var(--texture-dark), var(--ink);
  color: #d8d0c2;
  padding: 22px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-right a { color: #e8dfc9; text-decoration: underline; }
.footer-right a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 860px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
  }
  .main-nav.nav-open { display: flex; }
  .main-nav a { padding: 10px 0; border-bottom: 1px solid var(--border); }
  .main-nav a:last-child { border-bottom: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .feature-grid, .product-grid, .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 64px 0 48px; }
  .section { padding: 56px 0; }
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  text-decoration: none;
}
@media (max-width: 560px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* Cookie consent banner */
.cookie-banner[hidden] { display: none; }
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: var(--ink);
  color: #e8dfc9;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2);
}
.cookie-banner p {
  margin: 0;
  font-size: 0.88rem;
  color: #e8dfc9;
  max-width: 640px;
}
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner-actions .btn {
  padding: 9px 18px;
  font-size: 0.85rem;
}
.cookie-banner-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
body.has-cookie-banner .whatsapp-float {
  bottom: 96px;
}
@media (max-width: 560px) {
  .cookie-banner { padding: 14px 16px; justify-content: center; text-align: center; }
  body.has-cookie-banner .whatsapp-float { bottom: 140px; }
}

/* Trust bar */
.trust-bar {
  background: var(--texture-dark), var(--ink);
  color: #e8dfc9;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 18px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-item .material-symbols-outlined {
  color: var(--gold);
  font-size: 20px;
}
@media (max-width: 860px) {
  .trust-bar-inner { justify-content: center; }
}

/* Process timeline */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.process-step {
  position: relative;
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-darker));
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.02rem; margin-bottom: 0.4em; }
.process-step p { margin: 0; font-size: 0.9rem; }
.process-grid .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px;
  right: -24px;
  width: 24px;
  height: 2px;
  background: var(--border);
}

/* FAQ */
.faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 20px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  font-size: 0.98rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--gold-dark);
  margin-left: 12px;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p {
  margin: 0 0 18px;
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid .process-step:nth-child(2)::after { display: none; }
  .process-grid .process-step::after { display: none; }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Honeypot spam trap — hidden from real visitors, visible to bots that fill every field */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: 0;
}

/* Capability list (Infrastructure section) */
.capability-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  max-width: 640px;
}
.capability-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.capability-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
@media (max-width: 560px) {
  .capability-list { grid-template-columns: 1fr; }
}

/* Testimonials */
.testimonials-lede {
  max-width: 680px;
  font-size: 1.02rem;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.55;
  flex-grow: 1;
}
.testimonial-title {
  margin: 14px 0 2px;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--gold-dark);
}
.testimonial-author {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
@media (max-width: 860px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
