:root {
  --navy: #0d3f73;
  --navy-strong: #0a325b;
  --blue: #4b86cf;
  --blue-soft: #dbeaf8;
  --blue-pale: #eff6fd;
  --cream: #fbf7ef;
  --paper: #fffdfa;
  --ink: #2d2a27;
  --muted: #6f6a62;
  --sage: #677454;
  --line: #e8ded0;
  --shadow: 0 18px 46px rgba(40, 54, 75, 0.10);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-title {
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  font-style: italic;
  font-weight: 700;
}
.brand-subtitle {
  margin-top: 6px;
  color: var(--blue);
  font-size: .95rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a {
  text-decoration: none;
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 700;
  transition: background .18s ease, color .18s ease;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--blue-pale);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
}
.menu-toggle span + span { margin-top: 6px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font: 700 .78rem/1.1 Arial, sans-serif;
  letter-spacing: .2em;
}

.hero {
  background: linear-gradient(180deg, #fffdfa 0%, #f8f1e6 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 42px;
  align-items: center;
  padding: 44px 0 52px;
}
.hero-copy h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: .95;
  letter-spacing: -.04em;
}
.lead {
  margin: 0 0 28px;
  max-width: 580px;
  font-size: 1.18rem;
  line-height: 1.65;
  color: #3b3834;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease;
}
.btn.primary {
  color: white;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(13, 63, 115, .18);
}
.btn.primary:hover { transform: translateY(-2px); }
.btn.secondary {
  color: var(--navy);
  background: white;
  border: 1px solid #c5d5e8;
}

.mini-note-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.mini-note {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid #d9e6f4;
  color: var(--navy);
  font-size: .95rem;
}
.hero-art-card {
  padding: 24px;
  border-radius: 32px;
  background: rgba(255,255,255,.66);
  box-shadow: var(--shadow);
  border: 1px solid rgba(232, 222, 208, .8);
}
.hero-art-card img {
  width: 100%;
  border-radius: 20px;
  mix-blend-mode: multiply;
}

.quick-access,
.preview-section {
  padding: 76px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 34px;
}
.split-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 28px;
  text-align: left;
}
.section-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.access-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  text-decoration: none;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform .18s ease, border-color .18s ease;
}
.access-card:hover {
  transform: translateY(-4px);
  border-color: #cbd8e7;
}
.access-recetas {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5fd 100%);
}
.access-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: white;
  border: 1px solid #d7e4f1;
  font-size: 1.8rem;
}
.access-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.5rem;
}
.access-card p {
  margin: 0;
  color: #45413d;
  line-height: 1.55;
}
.access-card span {
  color: var(--blue);
  font-weight: 700;
}

.highlight-band {
  padding: 0 0 24px;
}
.highlight-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}
.highlight-card {
  background: linear-gradient(180deg, #fcfaf6 0%, #f3f8fd 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow);
}
.big-card h2,
.small-card h3 {
  color: var(--navy);
  margin: 0 0 12px;
}
.big-card h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); }
.small-card h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.highlight-card p {
  margin: 0;
  line-height: 1.65;
  color: #4a4640;
}
.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.preview-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
}
.preview-photo {
  position: relative;
  min-height: 310px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.preview-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.recipes-card::before {
  background-image: radial-gradient(circle at 20% 20%, #86aee0 0, transparent 32%), linear-gradient(135deg, #f1f8ff, #fcf7ef);
}
.labores-card::before {
  background-image: radial-gradient(circle at 70% 18%, #a5c2ea 0, transparent 30%), linear-gradient(135deg, #f7fbff, #f6efe6);
}
.recuerdos-card::before {
  background-image: radial-gradient(circle at 78% 24%, #d6e7fa 0, transparent 30%), linear-gradient(135deg, #fffaf2, #f3f7fd);
}
.preview-photo > * { position: relative; z-index: 1; }
.tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid #d8e4f1;
  color: var(--navy);
  font: 700 .75rem/1 Arial, sans-serif;
  letter-spacing: .12em;
}
.preview-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.6rem;
}
.preview-card p {
  margin: 0;
  color: #46423e;
  line-height: 1.6;
}

.quote-band {
  margin-top: 8px;
  background: #edf5fd;
  border-top: 1px solid #dbe9f7;
  border-bottom: 1px solid #dbe9f7;
}
.quote-wrap {
  padding: 32px 0;
  text-align: center;
}
.quote-main {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.25rem, 2.7vw, 2.1rem);
  font-style: italic;
}
.quote-sub {
  margin: 0;
  color: var(--blue);
}

.site-footer {
  background: white;
  border-top: 1px solid var(--line);
}
.footer-grid {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-brand strong {
  color: var(--navy);
  font-size: 1.15rem;
}
.footer-brand span,
.footer-note p {
  color: var(--muted);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.footer-links a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}
.footer-links a:hover { text-decoration: underline; }
.footer-note p { margin: 0; }

.construction-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #fffdfa, #edf5fd);
}
.construction-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.construction-card {
  width: min(720px, 100%);
  text-align: center;
  padding: clamp(36px, 6vw, 72px);
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.mini-brand {
  color: var(--navy);
  text-decoration: none;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
}
.construction-icon {
  font-size: 4rem;
  margin: 26px 0 16px;
}
.construction-card h1 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.7rem);
}
.construction-card p:not(.eyebrow) {
  margin: 0 auto 28px;
  max-width: 540px;
  line-height: 1.65;
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-head,
  .highlight-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .split-head { text-align: center; }
  .section-intro { max-width: 720px; margin: 0 auto; }
  .access-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-grid { grid-template-columns: 1fr; }
  .footer-grid { padding: 26px 0; }
}

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }
  .hero-copy {
    text-align: center;
  }
  .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .mini-note-grid {
    justify-content: center;
  }
  .hero-art-card {
    order: -1;
  }
}

@media (max-width: 600px) {
  .wrap { width: min(100% - 24px, 1180px); }
  .header-inner { min-height: 76px; gap: 12px; }
  .main-nav { top: 76px; }
  .brand-subtitle { font-size: .8rem; }
  .hero-grid,
  .quick-access,
  .preview-section { padding-top: 28px; padding-bottom: 44px; }
  .hero-copy h1 { font-size: 3rem; }
  .lead { font-size: 1.03rem; }
  .access-grid { grid-template-columns: 1fr; }
  .access-card,
  .preview-photo,
  .highlight-card { min-height: auto; }
  .site-footer { text-align: center; }
  .footer-links { justify-content: center; }
}
