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

:root {
  --green-deep: #1a3a2a;
  --green-mid: #2b5a40;
  --gold: #c9a84c;
  --gold-light: #e0c37a;
  --cream: #f8f4ed;
  --cream-dark: #ede8df;
  --text-dark: #1a2420;
  --text-mid: #3d4a43;
  --text-light: #7a8a80;
  --white: #ffffff;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'Jost', sans-serif;
  --px: clamp(18px, 5vw, 80px);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--ff-sans);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden
}

/* ── UTILS ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--px)
}

.label {
  font-size: .67rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px
}

.gold-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px
}

.section-title em {
  font-style: italic;
  color: var(--green-mid)
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.read-link {
  font-size: .69rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-mid);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s
}

.read-link:hover {
  color: var(--gold)
}

.tag {
  font-size: .64rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1px solid var(--cream-dark);
  padding: 4px 10px;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color .2s, color .2s
}

.tag:hover {
  border-color: var(--gold);
  color: var(--gold)
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .22s, color .22s, transform .18s;
  white-space: nowrap
}

.btn svg {
  flex-shrink: 0
}

.btn-gold {
  background: var(--gold);
  color: var(--green-deep)
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px)
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--white);
  font-weight: 400
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .08)
}

.btn-green {
  background: #25D366;
  color: var(--white)
}

.btn-green:hover {
  background: #1ebe5c;
  transform: translateY(-2px)
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--white);
  font-weight: 400
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .08)
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  height: 68px;
  background: rgba(26, 58, 42, .97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, .2);
  transition: box-shadow .3s
}

header.scrolled {
  box-shadow: 0 4px 28px rgba(0, 0, 0, .35)
}

.header-inner {
  height: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0
}

.logo img {
  height: 65px;
  width: auto;
  object-fit: contain
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.logo-name {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .08em;
  text-transform: uppercase
}

.logo-sub {
  font-size: .54rem;
  font-weight: 300;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px
}

.desk-nav {
  display: flex;
  align-items: center;
  gap: 30px
}

.desk-nav a {
  font-size: .73rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .2s, border-color .2s
}

.desk-nav a:hover,
.desk-nav a.active {
  color: var(--white);
  border-color: var(--gold)
}

.desk-nav .nav-btn {
  padding: 8px 18px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 2px;
  font-size: .69rem !important;
  border-bottom: 1px solid var(--gold) !important;
  transition: background .22s, color .22s !important
}

.desk-nav .nav-btn:hover {
  background: var(--gold);
  color: var(--green-deep) !important
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0
}

.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .28s, opacity .28s
}

.ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.ham.open span:nth-child(2) {
  opacity: 0
}

.ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mob-nav {
  display: none;
  flex-direction: column;
  background: var(--green-deep);
  border-bottom: 1px solid rgba(201, 168, 76, .2)
}

.mob-nav.open {
  display: flex
}

.mob-nav a {
  padding: 15px var(--px);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: color .2s
}

.mob-nav a:hover {
  color: var(--gold)
}

.mob-cta {
  padding: 16px var(--px);
  border-bottom: none !important
}

.mob-cta .btn {
  width: 100%
}

/* ── PAGE HERO (páginas internas) ── */
.page-hero {
  background: var(--green-deep);
  padding-top: 68px;
  background-image: linear-gradient(rgba(201, 168, 76, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, .05) 1px, transparent 1px);
  background-size: 60px 60px
}

.page-hero-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 64px 56px
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  flex-wrap: wrap
}

.breadcrumb a {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--gold)
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, .22);
  font-size: .7rem
}

.breadcrumb .cur {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold)
}

.page-hero h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light)
}

.page-hero p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  max-width: 600px;
  line-height: 1.85
}

/* ── FOOTER ── */
footer {
  background: #111d16;
  padding-block: 56px 26px;
  border-top: 1px solid rgba(201, 168, 76, .14)
}

.footer-grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 24px
}

.footer-brand p {
  font-size: .79rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, .44);
  margin-top: 12px
}

.footer-social {
  display: flex;
  gap: 9px;
  margin-top: 18px
}

.social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: border-color .22s, color .22s
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.social-btn svg {
  width: 14px;
  height: 14px
}

.footer-col h5 {
  font-size: .63rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500
}

.footer-col ul {
  list-style: none
}

.footer-col li {
  margin-bottom: 8px
}

.footer-col a {
  font-size: .79rem;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .22s
}

.footer-col a:hover {
  color: var(--white)
}

.f-contact {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-bottom: 10px
}

.f-contact svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px
}

.f-contact span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6
}

.footer-bottom {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px
}

.footer-bottom p,
.footer-bottom span {
  font-size: .69rem;
  color: rgba(255, 255, 255, .27)
}

/* ── RESPONSIVE BASE ── */
@media(max-width:640px) {
  .desk-nav {
    display: none
  }

  .ham {
    display: flex
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column
  }
}

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px
  }
}