
:root {
  --bg: #f5f1eb;
  --surface: rgba(255,255,255,.88);
  --surface-strong: #fff;
  --text: #1f2a2a;
  --muted: #687170;
  --accent: #b59062;
  --accent-dark: #8d6e48;
  --line: rgba(31,42,42,.10);
  --shadow: 0 20px 50px rgba(53,48,41,.10);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 760px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(233,220,201,.8), transparent 34%),
    linear-gradient(180deg, #faf8f4 0%, var(--bg) 100%);
  color: var(--text);
}

button, a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; }

.page-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  background: rgba(255,255,255,.42);
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(19,28,27,.05) 5%, rgba(19,28,27,.68) 100%),
    var(--hero-image, linear-gradient(135deg, #d8c4a5, #8ba5a1));
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,18,18,.18), transparent 60%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 72px 0 54px;
  color: white;
}

.hero__eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .82;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(42px, 9vw, 76px);
  line-height: .98;
  letter-spacing: -.03em;
}

.hero__address {
  margin: 20px 0 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
  opacity: .9;
}

.content {
  width: min(100% - 32px, var(--container));
  margin: -22px auto 0;
  position: relative;
  z-index: 2;
  padding-bottom: 52px;
}

.intro {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 34px 28px;
  text-align: center;
}

.intro__kicker {
  margin: 0 0 8px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
}

.intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(31px, 6vw, 46px);
}

.intro p {
  margin: 14px auto 0;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.guide-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.guide-card {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(53,48,41,.06);
  padding: 20px;
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  gap: 16px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  color: var(--text);
}

.guide-card:hover,
.guide-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(53,48,41,.10);
  border-color: rgba(181,144,98,.36);
  outline: none;
}

.guide-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #f4eadc;
  color: var(--accent-dark);
}

.guide-card__icon svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guide-card__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.guide-card__subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.guide-card__arrow {
  font-size: 30px;
  color: var(--accent);
  line-height: 1;
}

.contact-card {
  margin-top: 18px;
  background: linear-gradient(135deg, #efe4d4, #f8f4ee);
  border: 1px solid rgba(181,144,98,.22);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.contact-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.contact-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-card strong { color: var(--text); }

.whatsapp-btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.whatsapp-btn:hover,
.whatsapp-btn:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-2px);
  outline: none;
}

.footer {
  text-align: center;
  color: var(--muted);
  padding: 26px 16px 44px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 20px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: end center;
  background: rgba(17,24,24,.48);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
  padding: 18px;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__panel {
  width: min(100%, 760px);
  max-height: min(84vh, 760px);
  overflow: auto;
  background: #fffdfa;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(12,18,18,.28);
  transform: translateY(24px);
  transition: transform .25s ease;
}

.modal.is-open .modal__panel { transform: translateY(0); }

.modal__header {
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(255,253,250,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.modal__header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.modal__close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f2ece4;
  cursor: pointer;
  font-size: 24px;
  color: var(--text);
}

.modal__body {
  padding: 24px;
  color: #46504f;
  line-height: 1.75;
}

.modal__body h3 {
  color: var(--text);
  margin: 24px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.modal__body h3:first-child { margin-top: 0; }

.modal__body ul { padding-left: 20px; }

.start-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px 18px;
}

.start-card {
  width: min(100%, 760px);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 42px 28px;
}

.start-card h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 8vw, 68px);
  font-weight: 500;
}

.start-card p {
  color: var(--muted);
  line-height: 1.7;
}

.villa-links {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.villa-link {
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.villa-link:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(53,48,41,.09); }

.villa-link strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.villa-link span {
  display: block;
  color: var(--muted);
  margin-top: 5px;
}

@media (max-width: 640px) {
  .hero { min-height: 450px; }
  .hero__content { width: min(100% - 32px, var(--container)); padding-bottom: 42px; }
  .content { width: min(100% - 20px, var(--container)); }
  .intro { padding: 28px 20px; }
  .guide-card {
    grid-template-columns: 46px 1fr 45px;
    padding: 17px 16px;
    gap: 13px;
  }
  .guide-card__icon { width: 46px; height: 46px; border-radius: 14px; }
  .guide-card__title { font-size: 19px; }
  .guide-card__subtitle { font-size: 12px; }
  .contact-card { grid-template-columns: 1fr; }
  .whatsapp-btn { width: 100%; }
  .modal { padding: 8px; }
  .modal__panel { border-radius: 24px 24px 16px 16px; }
}

.guide-card {
  text-decoration: none;
}

.guide-card__arrow {
  font-size: 0;
}

.guide-card__arrow::before {
  content: "PDF →";
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--accent-dark);
  white-space: nowrap;
}

.guide-card__title{
  display: flex;
  flex-direction: column;
}