:root {
  --bg: #f6f1e7;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #1f2d27;
  --muted: #5f6f66;
  --primary: #224336;
  --primary-2: #345c4b;
  --accent: #c8a86b;
  --warning-bg: #fff2e1;
  --warning-border: #e4b163;
  --warning-text: #603913;
  --shadow: 0 18px 45px rgba(34, 67, 54, 0.12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200,168,107,0.14), transparent 26%),
    linear-gradient(180deg, #fbf7f0 0%, #f4eee3 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.warning-bar {
  background: var(--warning-bg);
  border-bottom: 1px solid var(--warning-border);
  color: var(--warning-text);
}

.warning-inner {
  display: flex;
  gap: .6rem;
  align-items: center;
  justify-content: center;
  padding: .85rem 0;
  font-size: .95rem;
  line-height: 1.5;
  text-align: center;
}

.warning-inner a {
  font-weight: 700;
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(246, 241, 231, 0.78);
  border-bottom: 1px solid rgba(34, 67, 54, 0.08);
}

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

.brand img,
.footer-logo {
  width: 140px;
  height: auto;
}

.menu {
  display: flex;
  gap: 1.3rem;
  align-items: center;
}

.menu a {
  font-weight: 500;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--primary-2); }
.btn-secondary {
  border: 1px solid rgba(34, 67, 54, .18);
  background: rgba(255,255,255,.65);
}
.btn-light {
  background: #fff;
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(25, 46, 38, 0.85), rgba(25, 46, 38, 0.35)),
    url('https://terraecohotel.co/img/fondo.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 5%, rgba(0,0,0,0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 760px;
  padding: 6rem 0;
}

.eyebrow,
.section-tag {
  display: inline-block;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: .9rem;
  margin-bottom: 1rem;
}

.section-tag {
  background: rgba(34,67,54,0.08);
  border-color: rgba(34,67,54,0.12);
  color: var(--primary);
}

.hero h1,
.section h2,
.card h3 {
  font-family: 'Cormorant Garamond', serif;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: .95;
  margin: 0 0 1rem;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.92);
  max-width: 670px;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.section {
  padding: 5.5rem 0;
}

.grid-two {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: stretch;
}

.section h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin: .35rem 0 1rem;
  line-height: 1;
}

.section p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(34,67,54,0.09);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.serene-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card h3 {
  font-size: 2rem;
  margin: 0 0 .8rem;
}

.phone-link {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  margin: .7rem 0;
}

.small-text {
  font-size: .95rem;
}

.centered {
  text-align: center;
  margin-bottom: 2rem;
}

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

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: .5rem;
}

.social-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.social-card {
  padding: 1.4rem;
  border-radius: 20px;
  background: var(--surface-strong);
  border: 1px solid rgba(34,67,54,0.08);
  box-shadow: var(--shadow);
}

.social-name {
  display: block;
  font-weight: 700;
  margin-bottom: .35rem;
}

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

.cta-section {
  padding-top: 1rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), #395d4f);
  color: #fff;
  border-radius: 28px;
  padding: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.cta-box .section-tag {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.16);
  color: #fff;
}

.cta-box p,
.cta-box h2 {
  color: #fff;
  margin-top: 0;
}

.site-footer {
  padding: 2.5rem 0 3rem;
}

.footer-inner {
  text-align: center;
  color: var(--muted);
}

.footer-inner img { margin: 0 auto 1rem; }
.footer-inner p { margin: .35rem 0; }

@media (max-width: 920px) {
  .grid-two,
  .social-wrap,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu {
    flex-wrap: wrap;
  }

  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .warning-inner {
    flex-direction: column;
    align-items: center;
    font-size: .9rem;
  }

  .site-header {
    position: static;
  }

  .brand img,
  .footer-logo {
    width: 118px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 4.5rem 0;
  }

  .btn {
    width: 100%;
  }

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