* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #2e2e2e;
  background: #f7f4ee;
  line-height: 1.6;
}

p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  max-width: 750px;
}

h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

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

a {
  text-decoration: none;
}

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

/* HEADER */
.site-header {
  background: #efe7d8;
  border-bottom: 1px solid #d8cdb9;
  padding: 24px 0;
  padding-bottom: 30px;
}

/* LOGO */
.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.header-logo img {
  width: 200px;
}

/* TITLE */
.site-title.centered {
  text-align: center;
  margin: 10px auto 30px;
  max-width: 900px;
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  color: #2c2c2c;
}

/* NAV ROW */
.nav-row {
  position: relative;
}

/* NAV */
.site-nav.centered {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-nav a,
.dropdown span {
  color: #6b6b6b;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  opacity: 0.85;
  position: relative;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* hover */
.site-nav a:hover,
.dropdown span:hover {
  color: #2c2c2c;
}

/* active link */
.site-nav a.active {
  color: #2c2c2c;
}

/* underline */
.site-nav a.active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  opacity: 0.7;
  background: #2c2c2c;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  padding: 12px 16px;
  top: 100%;
  left: 0;

  min-width: 220px;        /* más ancho */
  white-space: nowrap;     /* 👈 clave: evita saltos de línea */
}

.dropdown-content a {
  display: block;
  padding: 6px 0;
  color: #6b4e2e;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* BUTTON */
.contact-btn {
  position: absolute;
  right: 0;
  top: -12px;

  background: #b08a4a;
  color: white;
  padding: 12px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.5px;

  transition: all 0.25s ease;
  border-radius: 4px;
}

.contact-btn:hover {
  background: #96743b;
}

/* CONTENT */
.page-hero {
  background: #efe7d8;
  padding: 48px 0 32px;
  border-bottom: 1px solid #d8cdb9;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.page-section {
  padding: 56px 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.info-card {
  background: #fffdf9;
  border: 1px solid #ded4c4;
  padding: 22px;
}

/* FOOTER */
.site-footer {
  background: #ebe4d6;
  border-top: 1px solid #d3c8b5;
  padding: 56px 0 20px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-column h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #2c2c2c;
  margin: 0 0 20px;
}

.footer-column p,
.footer-column li {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0 0 8px;
  color: #4a4a4a;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column a {
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #8b6a35;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid #d8cdb9;
}

.footer-bottom p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #6a6a6a;
  text-align: center;
}

.contact-item {
  margin-bottom: 16px;
}

.contact-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 4px;
  color: #2c2c2c;
}

.contact-line {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  color: #5a5a5a;
}

.contact-line span {
  margin: 0 6px;
  color: #999;
}

.contact-line a {
  color: #5a5a5a;
}

.contact-line a:hover {
  color: #8b6a35;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-split-wrapper {
  background: #efe7d8;
  padding: 70px;
  margin-top: 80px;
}

.hero-quote blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

.hero {
  padding: 40px 0;
  text-align: center;
}

.hero h2 {
  font-family: 'Poppins';
  font-weight: 500;
  margin-bottom: 24px;
}

.lead {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
}

.principles-section {
  padding: 110px 0 90px;
}

.principles-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0 0 38px;
  color: #111;
}

.principles-intro {
  max-width: 1100px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.95;
  color: #222;
  margin: 0 0 90px;
}

.principles-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(420px, 1fr);
  column-gap: 90px;
  row-gap: 95px;
  align-items: start;
}

.principle-name {
  font-family: 'Poppins', sans-serif;
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1.08;
  color: #111;
}

.principle-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.95;
  color: #222;
  max-width: 560px;
}

.principle-text ul {
  margin: 0;
  padding-left: 20px;
}

.principle-text li {
  margin-bottom: 10px;
}