:root {
  --gold: #c9a227;
  --gold-dark: #a8861c;
  --gold-light: #e6c869;
  --ink: #1c1712;
  --cream: #faf6ee;
  --cream-2: #f3ecdd;
  --muted: #7a6f5f;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.15; }

a { color: inherit; text-decoration: none; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.45);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  color: var(--gold-dark);
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.brand-name em { font-style: italic; color: var(--gold-dark); }

.nav { display: flex; gap: 1.6rem; }

.nav a { font-weight: 500; font-size: 0.95rem; position: relative; }

.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

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

.header-cta { padding: 0.6rem 1.4rem; font-size: 0.85rem; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem 0;
  width: min(1100px, 90%);
  margin: 0 auto;
}

.hero-text h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); margin-bottom: 1rem; }

.hero-text p { color: var(--muted); max-width: 34rem; margin-bottom: 1.8rem; }

.hero-media .hero-img {
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(28, 23, 18, 0.25);
}

/* Sections */
.section { padding: 4.5rem 0; }

.section-dark { background: var(--ink); color: var(--cream); }
.section-dark .eyebrow { color: var(--gold-light); }
.section-dark .muted { color: #b7ab98; }

.section-head { text-align: center; max-width: 40rem; margin: 0 auto 2.5rem; }

.section-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }

.section-head p { color: var(--muted); }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(28, 23, 18, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(28, 23, 18, 0.2);
}

.card img { aspect-ratio: 1 / 1; object-fit: cover; }

.card figcaption {
  padding: 1rem 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Nosotros */
.nosotros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.nosotros-media img { border-radius: 20px; }

.nosotros-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }

.nosotros-text p { color: #d8cfc0; margin-bottom: 1.5rem; }

.features {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.features li {
  padding-left: 1.6rem;
  position: relative;
  color: #e9e1d3;
}

.features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-size: 0.8rem;
  top: 0.15rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--cream-2);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 26px rgba(28, 23, 18, 0.08);
}

.contact-card h3 { font-size: 1.6rem; margin-bottom: 0.8rem; color: var(--gold-dark); }

.contact-card p { color: var(--muted); margin-bottom: 0.4rem; }

.contact-card a { color: var(--ink); font-weight: 500; }

.contact-card a:hover { color: var(--gold-dark); }

.muted { color: var(--muted); }

.socials { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }

.socials a {
  padding: 0.45rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-dark);
  transition: background 0.2s ease, color 0.2s ease;
}

.socials a:hover { background: var(--gold); color: var(--white); }

/* Footer */
.site-footer { background: var(--ink); color: var(--cream); padding: 2rem 0; }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer .brand-logo { color: var(--gold-light); }
.site-footer .brand-name em { color: var(--gold-light); }

/* Responsive */
@media (max-width: 820px) {
  .hero, .nosotros { grid-template-columns: 1fr; padding-top: 2rem; }
  .grid, .contact-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .header-cta { display: none; }
}

@media (max-width: 520px) {
  .grid, .contact-grid { grid-template-columns: 1fr; }
}