/* ---------------------------------------------
   Design tokens — light, modern, tech-loft
--------------------------------------------- */
:root {
  --bg: #FAF9F6;
  --bg-raised: #F1EFE8;
  --surface: #FFFFFF;
  --surface-2: #F1F0EA;
  --line: #E4E2DA;
  --line-soft: #EAE8E1;

  --text: #16181D;
  --text-muted: #5A5B62;
  --text-faint: #8C8D93;

  --accent: #1A1B1E;
  --accent-strong: #000000;
  --gold: #C99A3D;

  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --good: #2E9E5B;
  --warn: #D6473A;

  --radius-lg: 18px;
  --radius: 12px;
  --radius-sm: 8px;

  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

/* Every icon on the site is a Material Symbols Rounded ligature (flat/filled
   variant loaded in index.html) — no hand-drawn SVGs, one consistent set.
   Brand marks (WhatsApp, Airbnb/Booking/Google logos, the site's own favicon
   on the map) are the deliberate exception: those identify a real platform
   and can't be swapped for a generic icon without misrepresenting it. */
.material-symbols-rounded {
  font-family: 'Material Symbols Rounded'; font-weight: normal; font-style: normal;
  line-height: 1; letter-spacing: normal; text-transform: none; white-space: nowrap;
  direction: ltr; display: inline-block; -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.08; margin: 0 0 0.5em; text-wrap: balance; color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 0.7em; }
p { margin: 0 0 1em; color: var(--text-muted); max-width: 62ch; }
a { color: var(--accent-strong); }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: 760px; }

.section { padding: 96px 0; }
.section.alt { background: var(--bg-raised); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

/* Scroll-reveal: sections fade/slide in once as they enter the viewport
   (see initScrollReveal() in main.js). */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.kicker {
  color: var(--accent-strong); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 0.74rem; margin-bottom: 14px; display: inline-block;
}

/* ---------------------------------------------
   Header
--------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(250, 249, 246, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; gap: 16px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 42px; width: auto; display: block; }

.main-nav { display: flex; gap: 26px; }
.main-nav a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; font-weight: 600; transition: color 0.15s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius-sm);
  padding: 8px 12px; font-weight: 700; font-size: 0.78rem; cursor: pointer; color: var(--text);
  letter-spacing: 0.03em;
}
.lang-toggle:hover { border-color: var(--accent); color: var(--accent-strong); }

/* The language toggle stays a round, initials-only button. The header
   WhatsApp button keeps the normal pill-with-text style used site-wide,
   just matched to the same 42px height as the toggle beside it. */
.header-actions .lang-toggle {
  width: 42px; height: 42px; padding: 0; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.header-actions .btn-small { height: 42px; padding: 0 18px; }

@media (max-width: 500px) {
  .header-actions .btn-small { width: 42px; padding: 0; justify-content: center; }
  .header-actions .btn-small span {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
  }
}

.nav-toggle {
  display: none; position: relative; width: 42px; height: 42px; padding: 0; border: none; border-radius: 50%;
  background: var(--accent-strong); color: #fff; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; transition: background 0.15s ease;
}
.nav-toggle:hover { background: var(--accent); }
.nav-toggle-icon {
  position: absolute; top: 50%; left: 50%; font-size: 22px;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-toggle .icon-close { opacity: 0; transform: translate(-50%, -50%) rotate(-90deg); }
.nav-toggle.open .icon-menu { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.nav-toggle.open .icon-close { opacity: 1; transform: translate(-50%, -50%) rotate(0deg); }

@media (max-width: 840px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line-soft); padding: 8px 0;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  }
  .main-nav.open {
    opacity: 1; visibility: visible; transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
  }
  .main-nav a { padding: 14px 24px; }
}

/* ---------------------------------------------
   Buttons
--------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: 0.92rem; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}
.btn .icon { width: 18px; height: 18px; font-size: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 0 0 0 rgba(0,0,0,0); }
.btn-primary:hover { background: var(--accent-strong); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 8px 24px rgba(37,211,102,0.28); }
.btn-outline { background: var(--surface); color: var(--text); border-color: var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-strong); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.hero-ctas .btn-outline:hover { transform: translateY(-4px); box-shadow: none; border-color: var(--line); color: var(--text); }

/* ---------------------------------------------
   Hero — photo stays dark-toned for legible overlay text
--------------------------------------------- */
.hero { position: relative; padding: 0; overflow: hidden; min-height: 93vh; display: flex; align-items: flex-end; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0; transition: opacity 1.8s ease;
}
.hero-slide.active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,24,15,0.05) 0%, rgba(30,24,15,0.22) 45%, rgba(30,24,15,0.9) 92%);
}
.hero-content { position: relative; z-index: 1; padding: 64px 24px 56px; width: 100%; }
.hero-content h1 { color: #FFFFFF; }
.hero-weather {
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px; opacity: 0.7;
  color: #FFFFFF; font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em;
}
.hero-weather .weather-icon { font-size: 1.3rem; color: #FFFFFF; }
.hero-sub { font-size: 1.12rem; color: #E4E3E0; max-width: 46ch; }

.fact-row { list-style: none; display: flex; gap: 10px; padding: 0; margin: 26px 0 32px; flex-wrap: wrap; }
.fact-row li {
  display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.86rem; color: #F3F2EE;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 14px; border-radius: 999px; backdrop-filter: blur(6px);
}
.fact-row .icon { font-size: 17px; color: #D7D7D9; }
.hero-ctas { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 18px; }
.direct-note { font-size: 0.84rem; color: #C7C6C2; margin: 0; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUpDim {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 0.7; transform: translateY(0); }
}
.hero-content > * { animation: heroFadeUp 0.7s ease both; }
.hero-content > .hero-weather { animation-name: heroFadeUpDim; }
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.18s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.42s; }
.hero-content > *:nth-child(5) { animation-delay: 0.54s; }
@media (prefers-reduced-motion: reduce) {
  .hero-content > * { animation: none; }
}

@media (max-width: 700px) {
  .hero { min-height: 93vh; }
}
@media (max-width: 620px) {
  .hero-ctas { flex-wrap: nowrap; gap: 20px; }
  .direct-note { max-width: 165px; }
}

/* ---------------------------------------------
   About
--------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/5; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pull { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--text); letter-spacing: -0.01em; margin-bottom: 20px; text-wrap: balance; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; aspect-ratio: 16/10; }
}

/* ---------------------------------------------
   Gallery — fixed-ratio grid, no reflow/column quirks
--------------------------------------------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 12px;
}
.gallery-grid figure {
  margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  cursor: pointer; position: relative; background: var(--surface-2);
}
.gallery-grid figure.wide { grid-column: span 2; }
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.35s ease;
}
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figure::after {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: rgba(0,0,0,0.12); transition: opacity 0.2s ease; pointer-events: none;
}
.gallery-grid figure:hover::after { opacity: 1; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 620px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 42vw; gap: 8px; }
  .gallery-grid figure.mobile-last { order: 99; }
}

/* ---------------------------------------------
   Lightbox
--------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center;
  background: rgba(10, 10, 13, 0.94); opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
  padding: 60px 20px;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 100%; }
.lightbox-img {
  display: block; max-width: 88vw; max-height: 76vh; width: auto; height: auto;
  object-fit: contain; border-radius: var(--radius); box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.lightbox-caption { color: #D9D8D6; font-size: 0.85rem; text-align: center; max-width: 60ch; margin: 0; }
.lightbox-btn {
  position: fixed; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; border-radius: 999px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.lightbox-btn:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { top: 20px; right: 20px; width: 44px; height: 44px; font-size: 1.4rem; line-height: 1; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 1.1rem; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
@media (max-width: 620px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
  .lightbox-close { width: 38px; height: 38px; }
}

/* ---------------------------------------------
   Amenities
--------------------------------------------- */
.amenities-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.amenities-grid li {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px; background: var(--surface);
  padding: 24px 20px; font-weight: 600; font-size: 0.92rem; position: relative; z-index: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.amenities-grid li:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.08); z-index: 1; }
.amenities-grid .amenity-icon { font-size: 26px; color: var(--text); user-select: none; }
@media (max-width: 780px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------------------------------------------
   Location
--------------------------------------------- */
.distance-list {
  list-style: none; margin: 0 0 28px; padding: 0; display: grid;
  grid-template-columns: repeat(2, 1fr); gap: 0 32px; border-top: 1px solid var(--line);
}
.distance-list li {
  display: flex; justify-content: space-between; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--line); font-size: 0.92rem;
}
.distance-list li b { font-weight: 700; color: var(--text); white-space: nowrap; }
@media (max-width: 620px) { .distance-list { grid-template-columns: 1fr; } }

#location.section { padding-bottom: 0; }
#reviews.section { padding-bottom: 0; }

.map-embed {
  width: 100%; height: clamp(280px, 34vw, 480px); margin-top: 32px;
  background: var(--surface-2); font-family: var(--font-body);
  /* isolate: contains Leaflet's internal pane z-indexes (up to 700+) so they
     never outrank the sticky header's z-index when the map scrolls near it */
  isolation: isolate;
}
.map-embed .leaflet-control-attribution { font-size: 0.68rem; background: rgba(250,249,246,0.85); }
.map-embed .leaflet-control-zoom a { color: var(--text); }
.map-embed .leaflet-popup-content { font-family: var(--font-body); font-size: 0.85rem; color: var(--text); margin: 10px 14px; }
.map-embed .leaflet-popup-content a { color: var(--accent-strong); font-weight: 600; }
.map-pin img {
  display: block; width: 34px; height: 34px; border-radius: 50%;
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 1px rgba(22,24,29,0.15), 0 4px 10px rgba(22,24,29,0.35);
}
/* Runs once when the map scrolls into view (see initMap() in main.js).
   Animates the img, not the Leaflet-positioned wrapper it sits in, so it
   never fights the inline transform Leaflet uses to place the marker. */
.map-pin.pin-intro img { animation: pinIntro 0.7s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes pinIntro {
  0% { transform: translateY(-22px) scale(0.4); opacity: 0; }
  55% { transform: translateY(5px) scale(1.15); opacity: 1; }
  75% { transform: translateY(-3px) scale(0.95); }
  100% { transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .map-pin.pin-intro img { animation: none; }
}

/* ---------------------------------------------
   Reviews
--------------------------------------------- */
.review-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.rating-badge {
  flex: 1 1 200px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px; display: flex; flex-direction: column; gap: 7px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rating-badge:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.08); }
.rating-badge-platform {
  display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.9rem; color: var(--text);
}
.rating-badge-platform .google-g,
.rating-badge-platform .rating-badge-icon { width: 18px; height: 18px; flex-shrink: 0; border-radius: 5px; }
.rating-badge-score {
  font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--text); line-height: 1;
}
.rating-badge-score small { font-size: 0.95rem; font-weight: 600; color: var(--text-faint); margin-left: 2px; }
.rating-badge-stars { display: flex; gap: 2px; color: #F5A623; }
.rating-badge-stars .material-symbols-rounded { font-size: 15px; }
.rating-badge-caption { font-size: 0.82rem; color: var(--text-faint); }

.review-marquee {
  width: 100%; overflow: hidden; padding: 10px 0 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.review-track {
  display: flex; align-items: flex-start; gap: 16px; width: max-content;
  animation: reviewMarquee 70s linear infinite;
}
.review-marquee:hover .review-track { animation-play-state: paused; }
.review-card {
  flex: 0 0 auto; width: min(380px, 82vw);
  margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.08); }
.review-card p { font-size: 0.9rem; color: var(--text); margin: 0; max-width: none; }
.review-card footer { font-size: 0.82rem; font-weight: 700; color: var(--text-faint); }

@keyframes reviewMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .review-track { animation: none; }
  .review-marquee { overflow-x: auto; }
}

/* ---------------------------------------------
   Contact
--------------------------------------------- */
.contact-methods { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-circle { width: 52px; height: 52px; padding: 0; justify-content: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }
.form-row { margin-bottom: 16px; display: flex; flex-direction: column; gap: 7px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row.two-col > div { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.contact-form label { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); }
.contact-form input, .contact-form textarea {
  width: 100%; max-width: 100%; min-width: 0; font-family: inherit; font-size: 1rem; padding: 12px 14px; color: var(--text);
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface-2);
}
.contact-form input { height: 48px; }
.contact-form input[type="date"] { -webkit-appearance: none; appearance: none; }
.contact-form textarea { resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-faint); }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.form-status { font-size: 0.85rem; margin-top: 14px; min-height: 1.2em; font-weight: 600; }
.form-status.ok { color: var(--good); }
.form-status.err { color: var(--warn); }
@media (max-width: 480px) {
  .contact-form { padding: 22px; }
  .form-row.two-col { grid-template-columns: 1fr; }
}
.whatsapp-label-short { display: none; }
@media (max-width: 620px) {
  .whatsapp-label-full { display: none; }
  .whatsapp-label-short { display: inline; }
}

.quick-facts {
  list-style: none; margin: 32px 0 0; padding: 0; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.quick-facts li {
  background: var(--surface); padding: 14px 16px; display: flex; flex-direction: column; gap: 4px;
  position: relative; z-index: 0; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.quick-facts li:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.08); z-index: 1; }
.quick-facts b { font-size: 0.78rem; font-weight: 700; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.04em; }
.quick-facts span { font-size: 0.88rem; font-weight: 600; color: var(--text); }
@media (max-width: 620px) { .quick-facts { grid-template-columns: repeat(2, 1fr); } }

/* ---------------------------------------------
   Footer
--------------------------------------------- */
.site-footer { padding: 40px 0; text-align: center; font-size: 0.82rem; color: var(--text-faint); border-top: 1px solid var(--line-soft); }
.site-footer p { margin: 4px auto; max-width: 640px; color: inherit; }
