:root {
  --gold: #C79C4D;          /* matched to the logo gold */
  --gold-dark: #A67F35;
  --gold-light: #E0C084;
  --charcoal: #1F1F1F;
  --charcoal-soft: #333333;
  --off-white: #F7F4ED;
  --off-white-2: #EFEADC;
  --white: #FFFFFF;
  --gray-600: #5A5A5A;
  --gray-400: #9A9A9A;
  --gray-200: #E8E3D6;

  --serif: 'Lora', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Tight type scale — 3 display steps + body + one small/label size */
  --fs-display: clamp(2.1rem, 4.6vw, 3rem);   /* h1 */
  --fs-head:    clamp(1.55rem, 3vw, 2rem);    /* h2 */
  --fs-title:   1.2rem;                        /* h3 / card titles */
  --fs-body:    1.0625rem;                     /* paragraphs, list items */
  --fs-small:   0.72rem;                       /* eyebrows, labels, captions */

  --container: 1200px;
  --radius: 14px;           /* default box rounding */
  --radius-lg: 22px;        /* cards, forms, media */
  --radius-pill: 999px;     /* buttons, chips */
  --shadow-sm: 0 2px 8px rgba(31, 31, 31, 0.06);
  --shadow-md: 0 10px 30px rgba(31, 31, 31, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--charcoal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--charcoal);
  text-wrap: balance;
  font-optical-sizing: auto;
}

.hero-sub, .lead, .section-header p { text-wrap: pretty; }

h1 { font-size: var(--fs-display); }
h2 { font-size: var(--fs-head); margin-bottom: .8rem; }
h3 { font-size: var(--fs-title); margin-bottom: .5rem; }
h4 { font-size: var(--fs-title); margin-bottom: .4rem; }

p { margin-bottom: 1rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
}

.lead { font-size: 1.15rem; color: var(--gray-600); max-width: 720px; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2.5px;
  color: var(--charcoal);
}
.logo-tag {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-top: 3px;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu a.nav-cta {
  background: var(--charcoal);
  color: var(--gold);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: background .2s ease;
}
.nav-menu a.nav-cta:hover { background: var(--gold); color: var(--charcoal); }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: transform .3s ease;
}

/* HERO */
.hero {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(181, 148, 86, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 1.4rem;
  font-weight: 700;
}
.hero h1 .gold-accent { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 680px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: all .25s ease;
  text-align: center;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--gold);
  border: 1px solid var(--charcoal);
}
.btn-primary:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

.btn-whatsapp {
  background: #25D366;
  color: white;
  border: 1px solid #25D366;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-whatsapp:hover { background: #1ebe59; color: white; }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--gold); }

/* TRUST BAR */
.trust-bar {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 28px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.trust-item {
  flex: 1 1 160px;
  min-width: 140px;
  padding: 0 10px;
}

.trust-num {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 4px;
}

.trust-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white-2);
  opacity: 0.9;
}

/* SECTIONS */
.section { padding: 90px 0; }
.section-light { background: var(--off-white); }
.section-dark { background: var(--charcoal); color: var(--off-white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--off-white); }
.section-dark .eyebrow { color: var(--gold); }
.section-dark p { color: var(--off-white-2); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

/* PRODUCT GRID */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.card-icon {
  width: 54px;
  height: 54px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.card h3 { color: var(--charcoal); margin-bottom: 12px; }
.card ul { list-style: none; padding: 0; margin-top: 12px; }
.card li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-600);
}
.card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

/* LOGO WALL — styled "trusted by" strip (typographic, no third-party marks) */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.logo-plate {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 150px;
  padding: 32px 20px;
  transition: background .25s ease;
}
.logo-plate .mark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray-400);
  line-height: 1.1;
  transition: color .25s ease, transform .25s ease;
}
.logo-plate .sub {
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 600;
}
.logo-plate:hover { background: var(--off-white); }
.logo-plate:hover .mark { color: var(--gold); transform: translateY(-2px); }
.logo-plate.is-cta { background: var(--off-white); }
.logo-plate.is-cta .mark { color: var(--gold); }
@media (max-width: 720px) {
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .logo-plate .mark { font-size: 1.25rem; }
  .logo-plate { min-height: 128px; }
}

/* SPLIT CONTENT (image + text sections) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--charcoal), #3a3a3a);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.3rem;
  text-align: center;
  padding: 40px;
  border-bottom: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(181,148,86,0.2), transparent 60%);
}
.split-image > * { position: relative; z-index: 1; }

/* BADGES */
.badge-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal);
}
.badge::before { content: '★'; color: var(--gold); }

/* STATS BIG */
.stats-big {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 60px 0;
}
.stat-big { text-align: center; }
.stat-big .num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-big .lab {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-600);
  font-weight: 600;
}

/* CTA STRIP */
.cta-strip {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 70px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--off-white); margin-bottom: 1rem; }
.cta-strip p { color: var(--off-white-2); max-width: 620px; margin: 0 auto 30px; }

/* FORM */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-group label .req { color: var(--gold); }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--off-white);
  transition: border-color .2s ease, background .2s ease;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

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

.form-note {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 16px;
  padding: 16px;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}

/* INFO LIST (contact page) */
.info-list { list-style: none; padding: 0; }
.info-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.info-list li:last-child { border-bottom: none; }
.info-list .info-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.info-list .info-val { font-size: 15px; color: var(--charcoal); }
.info-list .info-val a { color: var(--charcoal); border-bottom: 1px solid var(--gold); }

/* FOOTER */
.site-footer {
  background: var(--charcoal);
  color: var(--off-white-2);
  padding: 70px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-grid h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-grid p, .footer-grid li { font-size: 14px; color: var(--off-white-2); }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--off-white-2); }
.footer-grid a:hover { color: var(--gold); }

.footer-logo .logo-name { color: var(--off-white); }
.footer-logo .logo-tag { color: var(--gold); }

.footer-brand p { max-width: 320px; margin-bottom: 16px; }

.footer-bottom {
  border-top: 1px solid #3a3a3a;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--gray-400);
}

/* WHATSAPP FLOATING BUTTON */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform .3s ease;
}
.wa-float:hover { transform: scale(1.08); color: white; }
.wa-float svg { width: 32px; height: 32px; fill: white; }
.wa-float::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: pulse 2.5s ease-out infinite;
}
@keyframes pulse {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.35); }
}

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--off-white);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { margin: 0 auto; }

/* THANK YOU */
.thank-you {
  padding: 120px 0;
  text-align: center;
}
.thank-you h1 { margin-bottom: 1.2rem; }
.thank-you .check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: var(--white);
  font-size: 2.5rem;
  font-family: var(--serif);
}

/* UTILS */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-big { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open { display: flex; }
  .burger { display: block; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .stats-big { grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0; }
  .stat-big .num { font-size: 2.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 30px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 60px 0; }
  .hero { padding: 70px 0 50px; }
  .logo-name { font-size: 14px; }
  .logo-tag { font-size: 8px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 28px; height: 28px; }
}
