@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap');

:root {
  --bg: #f4f0e8;
  --bg-soft: #ece6da;
  --text: #1e1d18;
  --muted: #5c564a;
  --line: rgba(30, 29, 24, 0.1);
  --olive: #2f3b2f;
  --olive-deep: #1d261e;
  --gold: #9a7750;
  --card: rgba(255, 255, 255, 0.72);
  --white: #fbfaf7;
  --shadow: 0 24px 60px rgba(26, 24, 18, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.72;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(92%, 1180px);
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 12, 10, 0.72) 0%, rgba(10, 12, 10, 0.38) 48%, rgba(10, 12, 10, 0.14) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.28) 100%),
    url("fotos/fondo8.png") center/cover no-repeat;
  display: flex;
  flex-direction: column;
}

.navbar {
  width: min(92%, 1180px);
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 700;
}

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

.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero-content {
  margin: auto auto 110px;
  max-width: 820px;
  padding-top: 50px;
}

.eyebrow,
.section-label {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.hero h1,
.section h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3.6rem, 8vw, 6.2rem);
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero-lead {
  font-size: 1.12rem;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--olive-deep);
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(5px);
}

.btn-dark {
  background: var(--olive-deep);
  color: var(--white);
}

.intro-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.3);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 22px 0;
}

.intro-grid p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.section {
  padding: 110px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-dark {
  background: var(--olive-deep);
  color: var(--white);
}

.section h2 {
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.95;
  margin-bottom: 24px;
}

.section p {
  font-size: 1.02rem;
  color: inherit;
}

.section-label {
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.64);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.narrow {
  max-width: 640px;
}

.section-text p + p,
.editorial-columns p + p,
.product-copy p + .feature-list {
  margin-top: 18px;
}

.framed-media {
  position: relative;
}

.framed-media::before {
  content: "";
  position: absolute;
  inset: -22px 24px 22px -24px;
  border: 1px solid rgba(154, 119, 80, 0.35);
  pointer-events: none;
}

.section-image,
.wide-image,
.card-image,
.product-image {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.section-image {
  min-height: 520px;
  box-shadow: var(--shadow);
}

.editorial-block {
  max-width: 980px;
}

.editorial-heading {
  max-width: 720px;
}

.wide-image {
  max-height: 560px;
  margin: 36px 0 32px;
  box-shadow: var(--shadow);
}

.editorial-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  color: var(--muted);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 48px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card,
.value-box {
  background: var(--card);
  border: 1px solid rgba(30, 29, 24, 0.08);
  border-radius: 26px;
  padding: 18px 18px 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.card-image {
  height: 230px;
  margin-bottom: 22px;
}

.process-number {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.process-card h3,
.value-box h3,
.feature-title {
  font-weight: 700;
}

.process-card h3,
.value-box h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.quote-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.quote-box {
  text-align: center;
  max-width: 900px;
}

.quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
}

blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.quote-caption {
  margin-top: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.product-copy {
  max-width: 640px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.feature-title {
  display: inline-block;
  margin-bottom: 6px;
  color: #d8c4a7;
}

.product-image.large {
  max-width: 440px;
  margin-left: auto;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.22);
}

.values-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.values-grid.premium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.cta-section {
  text-align: center;
}

.cta-box {
  max-width: 760px;
}

.cta-box p {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.footer {
  padding: 28px 0;
  background: #12130f;
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer a {
  text-decoration: none;
  font-size: 0.88rem;
}

@media (max-width: 1024px) {
  .section-split,
  .product-grid,
  .values-layout,
  .editorial-columns,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .product-image.large {
    margin: 10px auto 0;
  }

  .intro-grid,
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .navbar,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-content {
    margin-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .section {
    padding: 82px 0;
  }

  .intro-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .section-image {
    min-height: 340px;
  }

  .wide-image,
  .card-image {
    height: auto;
  }
}
