/* ─── Google Fonts ───────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }

/* ─── Variables — paleta cálida inspirada en madera y sol ───────────────────── */
:root {
  --cream:      #faf6f0;
  --cream-dark: #f0e8d8;
  --bark:       #3d2b1a;
  --bark-mid:   #6b4226;
  --bark-light: #a0622a;
  --sun:        #e8a020;
  --sun-light:  #f5c842;
  --forest:     #3a5c2e;
  --forest-mid: #5a8a40;
  --sage:       #8aad6e;
  --stone:      #8c7b6a;
  --stone-light:#c4b09a;
  --white:      #ffffff;
  --text:       #2a1e14;
  --text-m:     #6b5a4a;
  --text-l:     #9c8a78;
  --border:     #e2d5c3;
  --bg:         #faf6f0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --shadow-sm:  0 2px 8px rgba(61,43,26,0.08);
  --shadow:     0 6px 20px rgba(61,43,26,0.10);
  --shadow-lg:  0 16px 48px rgba(61,43,26,0.14);
  --shadow-xl:  0 32px 80px rgba(61,43,26,0.18);
}

body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.65; font-size: 16px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 100px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; border: 2px solid transparent; cursor: pointer; transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1); letter-spacing: 0.01em; white-space: nowrap; }
.btn-primary  { background: var(--bark); color: var(--cream); border-color: var(--bark); }
.btn-primary:hover  { background: var(--bark-mid); border-color: var(--bark-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61,43,26,0.3); }
.btn-secondary { background: transparent; color: var(--bark); border-color: var(--bark); }
.btn-secondary:hover { background: var(--bark); color: var(--cream); transform: translateY(-2px); }
.btn-outline { background: rgba(61,43,26,0.08); color: var(--bark); border-color: rgba(61,43,26,0.35); }
.btn-outline:hover { background: rgba(61,43,26,0.15); border-color: var(--bark); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--bark); border-color: var(--white); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-danger { background: #c0392b; color: #fff; border-color: #c0392b; }
.btn-danger:hover { background: #a93226; }
.btn-success { background: var(--forest); color: #fff; border-color: var(--forest); }
.btn-success:hover { background: var(--forest-mid); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 6px 14px; font-size: 0.78rem; border-radius: 100px; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ─── Header ─────────────────────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250,246,240,0.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); transition: box-shadow 0.3s; }
.site-header.scrolled { box-shadow: var(--shadow-lg); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 52px; height: 52px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--bark); line-height: 1.1; }
.logo-loc  { font-size: 0.7rem; color: var(--stone); font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; color: var(--text-m); font-weight: 500; border-radius: 100px; transition: all 0.2s; font-size: 0.9rem; }
.nav-link:hover { background: var(--cream-dark); color: var(--bark); }
.nav-cta { margin-left: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--bark); border-radius: 2px; transition: 0.3s; }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 12px 20px 18px; border-top: 1px solid var(--border); background: var(--cream); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 11px 14px; border-radius: var(--radius); font-weight: 500; color: var(--text-m); }
.mobile-nav a:hover { background: var(--cream-dark); }
.mobile-cta { background: var(--bark) !important; color: var(--cream) !important; text-align: center; border-radius: 100px !important; margin-top: 6px; }

/* ─── Flash ──────────────────────────────────────────────────────────────────── */
.flash-container { padding: 12px 28px; }
.flash { padding: 13px 18px; border-radius: var(--radius); margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; border-left: 4px solid; }
.flash-success { background: #edf7ed; color: #1a5e1a; border-color: var(--forest); }
.flash-error   { background: #fdecea; color: #7f1d1d; border-color: #c0392b; }
.flash-info    { background: #fef8e7; color: #5a3e00; border-color: var(--sun); }

/* ─── Hero ───────────────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; background: linear-gradient(150deg, #f5ede0 0%, #ede0cc 40%, #e8d5b8 100%); min-height: 88vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb1 { position: absolute; top: -120px; right: -80px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(160,98,42,0.08) 0%, transparent 70%); }
.hero-orb2 { position: absolute; bottom: -100px; left: -60px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(58,92,46,0.10) 0%, transparent 70%); }
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 80px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(107,66,38,0.10); color: var(--bark-mid); border: 1px solid rgba(107,66,38,0.2); padding: 7px 16px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; margin-bottom: 24px; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-text h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 800; line-height: 1.1; color: var(--bark); margin-bottom: 20px; }
.hero-text h1 em { color: var(--bark-light); font-style: normal; }
.hero-text > p { font-size: 1.05rem; color: var(--text-m); line-height: 1.75; margin-bottom: 28px; max-width: 480px; }
.hero-price { display: inline-flex; align-items: baseline; gap: 6px; background: rgba(61,43,26,0.07); border: 1px solid rgba(61,43,26,0.15); padding: 10px 20px; border-radius: 100px; margin-bottom: 32px; }
.price-amount { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--bark); }
.price-unit   { font-size: 0.9rem; color: var(--text-m); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-img-wrap { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid rgba(61,43,26,0.1); }
.hero-img { width: 100%; height: 480px; object-fit: cover; display: block; }
.hero-logo-overlay { position: absolute; bottom: 20px; left: 20px; background: rgba(250,246,240,0.92); backdrop-filter: blur(8px); border-radius: var(--radius-lg); padding: 12px 16px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg); }
.hero-logo-overlay img { width: 44px; height: 44px; object-fit: contain; }
.hero-logo-text strong { display: block; font-family: var(--font-display); font-size: 0.88rem; color: var(--bark); line-height: 1.2; }
.hero-logo-text span { font-size: 0.7rem; color: var(--stone); }
.hero-img-badge { position: absolute; top: 18px; right: 18px; background: var(--bark); color: var(--cream); border-radius: 100px; padding: 8px 16px; font-size: 0.82rem; font-weight: 700; box-shadow: 0 4px 12px rgba(61,43,26,0.25); }

/* ─── Stats bar ──────────────────────────────────────────────────────────────── */
.stats-bar { background: var(--bark); padding: 24px 0; }
.stats-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--sun); line-height: 1; }
.stat span   { font-size: 0.74rem; color: rgba(250,246,240,0.55); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 3px; display: block; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* ─── Sections ───────────────────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.bg-soft { background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bark-light); margin-bottom: 12px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 800; color: var(--bark); margin-bottom: 14px; line-height: 1.15; }
.section-header p { font-size: 1.05rem; color: var(--text-m); max-width: 520px; margin: 0 auto; }

/* ─── Service cards ──────────────────────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; transition: all 0.35s cubic-bezier(0.34,1.2,0.64,1); position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--sun), var(--bark-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-icon { width: 76px; height: 76px; border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-size: 2rem; }
.card-icon.blue    { background: #e8f0fe; }
.card-icon.green   { background: #e8f5e8; }
.card-icon.purple  { background: #f3e8ff; }
.card-icon.emerald { background: #e8f7f0; }
.card-icon.orange  { background: #fff0e0; }
.card-icon.teal    { background: #e0f7f4; }
.card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--bark); margin-bottom: 10px; }
.card p { color: var(--text-m); font-size: 0.9rem; line-height: 1.65; margin-bottom: 18px; }
.badge { display: inline-block; padding: 5px 14px; border-radius: 100px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.03em; }
.badge.blue    { background: #e8f0fe; color: #1a56db; }
.badge.green   { background: #e8f5e8; color: var(--forest); }
.badge.purple  { background: #f3e8ff; color: #7e22ce; }
.badge.emerald { background: #e8f7f0; color: var(--forest-mid); }
.badge.orange  { background: #fff0e0; color: var(--bark-light); }
.badge.teal    { background: #e0f7f4; color: #0f766e; }

/* ─── Location ───────────────────────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.loc-text h3 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--bark); margin-bottom: 28px; line-height: 1.2; }
.loc-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.loc-feat { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: var(--radius); border: 1px solid; transition: transform 0.2s; }
.loc-feat:hover { transform: translateX(4px); }
.loc-feat.blue   { background: #e8f0fe; border-color: #c3d7fd; }
.loc-feat.green  { background: #e8f5e8; border-color: #a8d9a8; }
.loc-feat.purple { background: #f3e8ff; border-color: #d4b5fa; }
.loc-feat.orange { background: #fff0e0; border-color: #ffc98a; }
.loc-feat-icon { font-size: 1.2rem; flex-shrink: 0; }
.loc-feat span { font-weight: 500; font-size: 0.9rem; color: var(--text); }
.loc-desc { color: var(--text-m); line-height: 1.75; font-size: 0.95rem; }
.loc-img-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.loc-img { width: 100%; height: 420px; object-fit: cover; }

/* ─── CTA ────────────────────────────────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--bark) 0%, #2a1e14 100%); position: relative; overflow: hidden; padding: 96px 0; }
.cta-section::before { content: ''; position: absolute; top: -200px; left: 50%; width: 800px; height: 800px; border-radius: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 65%); pointer-events: none; }
.cta-inner { text-align: center; position: relative; }
.cta-logo { display: flex; align-items: center; justify-content: center; margin-bottom: 32px; }
.cta-logo img { width: 80px; height: 80px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: var(--cream); margin-bottom: 16px; }
.cta-inner p  { color: rgba(250,246,240,0.65); font-size: 1.05rem; margin-bottom: 24px; max-width: 520px; margin-inline: auto; }
.cta-price { color: rgba(250,246,240,0.6); font-size: 0.9rem; margin-bottom: 32px; margin-top: -10px; }
.cta-price strong { color: var(--sun); font-size: 1.5rem; font-family: var(--font-display); }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer { background: #1a1209; color: rgba(250,246,240,0.5); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 44px; height: 44px; object-fit: contain; }
.footer-logo-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--cream); }
.footer-desc { font-size: 0.88rem; line-height: 1.8; max-width: 260px; }
.footer-grid h4 { color: var(--cream); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.footer-grid p, .footer-grid a { font-size: 0.88rem; margin-bottom: 9px; display: block; }
.footer-grid a:hover { color: var(--sun); }
.admin-link { margin-top: 16px; color: #2a2015; font-size: 0.78rem; }
.footer-bottom { border-top: 1px solid #2a2015; padding: 20px 28px; text-align: center; font-size: 0.82rem; }

/* ─── Page header ────────────────────────────────────────────────────────────── */
.page-header { background: linear-gradient(135deg, var(--bark) 0%, #2a1e14 100%); color: var(--cream); padding: 48px 0; margin-bottom: 48px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%); pointer-events: none; }
.page-header h1 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; margin: 8px 0 4px; }
.page-header p  { color: rgba(250,246,240,0.6); }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: rgba(250,246,240,0.55); font-size: 0.88rem; margin-bottom: 14px; transition: color 0.2s; }
.back-link:hover { color: var(--sun); }

/* ─── Reservation layout ─────────────────────────────────────────────────────── */
.reservation-layout { display: grid; grid-template-columns: 1fr 380px; gap: 36px; padding-bottom: 72px; }
.reservation-summary .sticky { position: sticky; top: 94px; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.form-card-header { padding: 16px 24px; }
.form-card-header h2 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--white); margin: 0; }
.form-card-header.blue   { background: linear-gradient(135deg, #1a56db, #1e40af); }
.form-card-header.green  { background: linear-gradient(135deg, var(--forest), #145214); }
.form-card-header.purple { background: linear-gradient(135deg, #7e22ce, #581c87); }
.form-card-header.teal   { background: linear-gradient(135deg, #0f766e, #0d5e57); }
.form-card-body { padding: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 7px; font-weight: 600; font-size: 0.85rem; color: var(--text); letter-spacing: 0.01em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.95rem; font-family: var(--font-body); transition: border-color 0.2s, box-shadow 0.2s; color: var(--text); background: var(--cream); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--bark-mid); box-shadow: 0 0 0 3px rgba(107,66,38,0.12); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mt-16 { margin-top: 16px; }
.field-hint { font-size: 0.78rem; color: var(--text-l); margin-top: 5px; }

/* ─── Calendar ───────────────────────────────────────────────────────────────── */
.calendars-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 16px; }
.cal-block h4 { font-size: 0.76rem; font-weight: 700; color: var(--stone); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.08em; }
.calendar { font-size: 0.82rem; background: var(--cream); border-radius: var(--radius); padding: 12px; border: 1px solid var(--border); }
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.cal-head button { background: none; border: none; cursor: pointer; padding: 5px 9px; border-radius: 8px; font-size: 0.95rem; color: var(--bark); transition: background 0.15s; }
.cal-head button:hover { background: var(--cream-dark); }
.cal-head span { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--bark); }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-dow { text-align: center; font-weight: 700; color: var(--stone); padding: 5px 0; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.04em; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 8px; cursor: pointer; font-size: 0.8rem; transition: all 0.15s; border: none; background: none; font-family: var(--font-body); color: var(--text); }
.cal-day:hover:not(:disabled):not(.occupied) { background: var(--cream-dark); color: var(--bark); }
.cal-day.other-month { color: var(--stone-light); }
.cal-day.occupied { background: #fdecea; color: #c0392b; cursor: not-allowed; }
.cal-day.selected { background: var(--bark); color: var(--cream); font-weight: 700; }
.cal-day.in-range { background: var(--cream-dark); color: var(--bark); }
.cal-day.today { font-weight: 700; outline: 2px solid var(--sun); outline-offset: -2px; }
.cal-day:disabled { color: var(--stone-light); cursor: not-allowed; }
.date-summary { background: var(--cream-dark); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; margin-top: 12px; display: flex; gap: 24px; flex-wrap: wrap; }
.ds-item { display: flex; gap: 6px; font-size: 0.88rem; }
.ds-item span { color: var(--text-m); }
.cal-legend { display: flex; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
.leg-item { display: flex; align-items: center; gap: 6px; font-size: 0.76rem; color: var(--text-m); }
.leg-dot { width: 12px; height: 12px; border-radius: 4px; }
.leg-dot.blue { background: var(--bark); }
.leg-dot.red  { background: #fdecea; border: 1px solid #c0392b; }
.leg-dot.gray { background: var(--cream-dark); border: 1px solid var(--border); }

/* ─── Transfer info ──────────────────────────────────────────────────────────── */
.transfer-info { background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.transfer-info h4 { color: var(--bark); font-family: var(--font-display); font-size: 1rem; margin-bottom: 8px; }
.transfer-info p { color: var(--text-m); font-size: 0.9rem; margin-bottom: 18px; line-height: 1.65; }
.transfer-steps { display: flex; flex-direction: column; gap: 10px; }
.ts-item { display: flex; align-items: center; gap: 12px; }
.ts-num { min-width: 28px; height: 28px; border-radius: 50%; background: var(--bark); color: var(--cream); font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.ts-item span { font-size: 0.88rem; color: var(--text-m); }

/* ─── Summary ────────────────────────────────────────────────────────────────── */
.sum-house { padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.sum-house h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--bark); margin-bottom: 4px; }
.sum-house p  { font-size: 0.85rem; color: var(--text-m); }
.sum-section { padding: 12px 0; border-bottom: 1px solid var(--border); }
.sum-row { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 4px 0; }
.sum-row span { color: var(--text-m); }
.sum-total-row { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 700; padding-top: 12px; }
.sum-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--forest); }
.highlight { color: var(--forest); font-weight: 700; }
.sum-features { padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.sf-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-m); }
.sf-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.sf-dot.green   { background: var(--forest); }
.sf-dot.blue    { background: #1a56db; }
.sf-dot.orange  { background: var(--bark-light); }
.sf-dot.emerald { background: var(--forest-mid); }
.form-error { background: #fdecea; color: #c0392b; border-radius: var(--radius); padding: 11px 16px; font-size: 0.88rem; margin-top: 12px; border-left: 3px solid #c0392b; }
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Confirmación ───────────────────────────────────────────────────────────── */
.confirm-wrap { max-width: 700px; margin: 56px auto; padding-bottom: 72px; }
.confirm-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.confirm-header { background: linear-gradient(135deg, var(--forest) 0%, #145214 100%); color: #fff; text-align: center; padding: 48px 32px; }
.confirm-check { font-size: 3.5rem; margin-bottom: 12px; }
.confirm-header h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.confirm-header p  { opacity: 0.8; }
.confirm-body { padding: 36px; }
.confirm-number { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px 24px; text-align: center; margin-bottom: 28px; }
.confirm-number span { display: block; font-size: 0.76rem; color: var(--text-m); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.08em; }
.confirm-number strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--bark); }
.confirm-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.cd-item { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; }
.cd-item span { display: block; font-size: 0.74rem; color: var(--text-m); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.06em; }
.cd-item strong { font-size: 1rem; color: var(--text); }
.green-text { color: var(--forest) !important; }
.confirm-steps { margin-bottom: 28px; }
.confirm-steps h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; color: var(--bark); }
.cs-item { display: flex; gap: 16px; padding: 16px 18px; border-radius: var(--radius-lg); margin-bottom: 10px; border: 1px solid; }
.cs-item.blue   { background: #e8f0fe; border-color: #c3d7fd; }
.cs-item.green  { background: #e8f5e8; border-color: #a8d9a8; }
.cs-item.purple { background: #f3e8ff; border-color: #d4b5fa; }
.cs-icon { font-size: 1.5rem; }
.cs-item h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 3px; color: var(--bark); }
.cs-item p  { font-size: 0.83rem; color: var(--text-m); }
.confirm-contact { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px 22px; margin-bottom: 28px; }
.confirm-contact h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; color: var(--bark); }
.confirm-contact p  { font-size: 0.88rem; color: var(--text-m); margin-bottom: 7px; }
.confirm-actions { display: flex; gap: 12px; }

/* ─── Galería ────────────────────────────────────────────────────────────────── */
.galeria-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.galeria-item { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #000; position: relative; cursor: pointer; transition: transform 0.3s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.3s; }
.galeria-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.galeria-media { width: 100%; height: 230px; object-fit: cover; display: block; transition: transform 0.4s; }
.galeria-item:hover .galeria-media { transform: scale(1.05); }
.galeria-video .galeria-media { height: 230px; background: #000; }
.galeria-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(26,18,9,0.75)); color: var(--cream); padding: 32px 16px 14px; font-size: 0.85rem; font-weight: 500; }
.galeria-placeholder { text-align: center; padding: 72px 28px; background: var(--cream-dark); border-radius: var(--radius-xl); border: 2px dashed var(--border); color: var(--text-m); font-size: 1rem; line-height: 2; }
.galeria-placeholder a { color: var(--bark-light); font-weight: 600; }

/* ─── Lightbox ───────────────────────────────────────────────────────────────── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(26,18,9,0.95); align-items: center; justify-content: center; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 92vh; object-fit: contain; border-radius: var(--radius-lg); }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: rgba(250,246,240,0.12); border: none; color: var(--cream); font-size: 1.4rem; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox-close:hover { background: rgba(250,246,240,0.25); }

/* ─── Utilities ──────────────────────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) { .reservation-layout { grid-template-columns: 1fr; } .reservation-summary .sticky { position: static; } }
@media (max-width: 768px) {
  .main-nav { display: none; } .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
  .hero-text h1 { font-size: 2.2rem; } .hero-img { height: 300px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .calendars-wrap { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; }
  .confirm-details { grid-template-columns: 1fr; }
  .stats-inner { gap: 24px; } .stat-divider { display: none; }
  .section { padding: 64px 0; } .cta-section { padding: 64px 0; }
  .hero-orb1, .hero-orb2 { display: none; }
}
@media (max-width: 480px) { .hero-btns { flex-direction: column; } .confirm-actions { flex-direction: column; } .hero-logo-overlay { display: none; } }
