/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: #0d0c0b;
  color: #f4f1ea;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: #E7D3AD; color: #0d0c0b; }

em { font-style: italic; color: #E7D3AD; }

/* ── LAYOUT ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

.container-wide {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 48px;
}

/* ── SHARED ── */
.label {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #D4B483;
  font-weight: 500;
}

/* ── NAV ── */
.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cfc9bf;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-link:hover { color: #E7D3AD; }

.nav-cta {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cda86a;
  text-decoration: none;
  font-weight: 400;
  border: 1px solid #6e5e3f;
  border-radius: 40px;
  padding: 11px 22px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-cta:hover { background: #cda86a; color: #0d0c0b; border-color: #cda86a; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #D4B483;
  color: #211c12;
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  padding: 18px 30px;
  border-radius: 40px;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-primary:hover { background: #e0c290; }
.btn-primary span { font-weight: 400; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #f4f1ea;
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  padding: 18px 30px;
  border-radius: 40px;
  border: 1px solid rgba(244, 241, 234, 0.28);
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: #f4f1ea; }

.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #D4B483;
  color: #211c12;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 40px;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-sm:hover { background: #e0c290; }
.btn-sm span { font-weight: 400; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(95% 55% at 50% -8%, rgba(232, 226, 214, 0.13), rgba(232, 226, 214, 0) 58%), #0d0c0b;
}

.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 24px 90px;
}

.hero-logo {
  height: 160px;
  width: auto;
  margin-bottom: 40px;
}

.hero-heading {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 740px;
}

.hero-subtext {
  margin-top: 26px;
  max-width: 470px;
  font-size: 16.5px;
  line-height: 1.65;
  color: #928c82;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 42px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── SERVICIOS INTRO ── */
.section-servicios {
  padding: 40px 48px 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: start;
}

.servicios-text .label { margin-bottom: 24px; }

.heading-servicios {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 440px;
}

.body-muted {
  font-size: 15.5px;
  line-height: 1.7;
  color: #8d877d;
  font-weight: 300;
}
.body-muted + .body-muted { margin-top: 22px; }
.servicios-text .body-muted:first-of-type { margin-top: 30px; }

.highlight { color: #d8d3c9; font-weight: 500; }

.quote-card {
  position: relative;
  border: 1px solid rgba(244, 241, 234, 0.09);
  border-radius: 8px;
  padding: 52px 48px;
  background: rgba(255, 255, 255, 0.012);
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-mark {
  position: absolute;
  top: 34px;
  right: 44px;
  font-family: 'Fraunces', serif;
  font-size: 88px;
  line-height: 1;
  color: rgba(201, 168, 106, 0.32);
}

.quote-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.45;
  color: #ece7dd;
  max-width: 380px;
}

.quote-caption {
  margin-top: 34px;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #D4B483;
  font-weight: 500;
}

/* ── FÓRMULA INTEGRAL ── */
.section-formula { padding: 0 48px 120px; }

.heading-formula {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-align: right;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.service-card {
  border: 1px solid rgba(244, 241, 234, 0.08);
  border-radius: 8px;
  padding: 34px 36px;
  background: rgba(255, 255, 255, 0.012);
}

.service-num {
  font-size: 12px;
  color: #D4B483;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-weight: 400;
}

.service-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #857f75;
  font-weight: 300;
}

/* ── QUIÉNES SOMOS ── */
.section-nosotros { padding: 0 48px 120px; }

.section-nosotros .label { margin-bottom: 22px; }

.heading-nosotros {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  max-width: 620px;
}

.nosotros-intro {
  margin-top: 24px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.7;
  color: #857f75;
  font-weight: 300;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 48px;
}

.team-figure { margin: 0; }

.team-photo {
  width: 100%;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.team-caption {
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 400;
  color: #ece7dd;
  margin-top: 22px;
}

/* ── NUESTRA VISIÓN ── */
.section-vision {
  padding: 30px 48px;
  text-align: center;
}

.section-vision .label { margin-bottom: 24px; }

.heading-vision {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(26px, 2.9vw, 38px);
  line-height: 1.22;
  max-width: 640px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 820px;
  margin: 64px auto 0;
}

.stat-value {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(38px, 4.5vw, 58px);
  color: #E7D3AD;
  line-height: 1;
}

.stat-label {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7c766c;
  font-weight: 500;
}

/* ── CONTACT FORM ── */
.section-contact { padding: 80px 48px 100px; }

.contact-card {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 14px;
  padding: 64px 72px;
  background: #282828;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-left {
  padding-top: 8px;
}

.heading-contact {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #f4f1ea;
  margin-bottom: 32px;
}

.contact-desc {
  font-size: 18px;
  line-height: 1.65;
  color: #f4f1ea;
  font-weight: 300;
  max-width: 280px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: #f4f1ea;
  font-weight: 400;
}

.required {
  color: #f4f1ea;
  margin-left: 1px;
}

.form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 241, 234, 0.22);
  padding: 10px 0;
  color: #f4f1ea;
  font-size: 14.5px;
  font-family: inherit;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input::placeholder {
  color: rgba(201, 169, 110, 0.35);
}

.form-input:focus {
  border-bottom-color: #c9a96e;
}

.btn-contact {
  align-self: flex-start;
  margin-top: 8px;
  background: #c9a96e;
  color: #1a1714;
  border: none;
  border-radius: 50px;
  padding: 18px 44px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
}

.btn-contact:hover {
  background: #d4b87a;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .contact-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 32px;
  }
  .contact-desc { max-width: 100%; }
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid rgba(244, 241, 234, 0.08);
  background: #0a0908;
}

.footer-inner { padding: 56px 48px 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: #ece7dd;
}

.footer-brand strong { font-weight: 700; }

.footer-desc {
  margin-top: 18px;
  max-width: 300px;
  font-size: 13px;
  line-height: 1.7;
  color: #7c766c;
  font-weight: 300;
}

.footer-col-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9b9488;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-link {
  font-size: 13.5px;
  color: #928c82;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-link:hover { color: #E7D3AD; }

.footer-location {
  font-size: 13.5px;
  color: #928c82;
  font-weight: 300;
}

.footer-legal {
  margin-top: 44px;
  max-width: 640px;
  font-size: 11px;
  line-height: 1.7;
  color: #4f4a43;
  font-weight: 300;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 241, 234, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 11.5px;
  color: #5c564e;
  font-weight: 300;
}
