@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root{
  --bg:#ffffff;
  --panel:#ffffff;
  --panel2:#fff4e7;        /* crema */
  --text:#1a1a1a;
  --muted:#5f6368;
  --line: rgba(20,20,20,.12);

  --gold:#8C6620;          /* dark champagne — AA contrast with #fff (≈5.2:1) */
  --goldHover:#735319;     /* darker hover — AAA contrast with #fff (≈7.1:1) */
  --champagneSoft:#e9dcc9; /* champaña suave (fondos) */
  --champagneSoft2:#f3eadc;

  --shadow: 0 18px 45px rgba(0,0,0,.12);
  --radius: 18px;
  --radius2: 26px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.5;
  background:
    radial-gradient(1000px 600px at 12% -8%, rgba(176,141,87,.12), transparent 60%),
    radial-gradient(980px 560px at 92% 0%, rgba(233,220,201,.55), transparent 62%),
    radial-gradient(860px 520px at 10% 72%, rgba(243,234,220,.92), transparent 55%),
    linear-gradient(180deg, var(--bg), #ffffff 62%);
}

a{ color: inherit; text-decoration:none; }
.container{ width:min(1120px, calc(100% - 40px)); margin:0 auto; }
.muted{ color: var(--muted); }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 240px;
}
.brand__logo{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(176,141,87,.20);
  background: #fff;
}
.brand__name{ font-weight: 780; letter-spacing:.2px; }
.brand__tagline{ font-size: 13px; color: var(--muted); margin-top:2px; }

.nav{ display:flex; gap: 16px; }
.nav a{
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover{
  background: rgba(233,220,201,.55);
  color: var(--text);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.70);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 650;
  font-size: 14px;
  transition: transform .08s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.btn:hover{
  background: rgba(255,255,255,.94);
  border-color: rgba(176,141,87,.35);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.btn--primary{
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}
.btn--primary:hover{
  background: var(--goldHover);
  border-color: var(--goldHover);
}
.btn--ghost{ background: transparent; }
.btn--lg{ padding: 12px 16px; border-radius: 16px; }

/* Móvil: CTA más pequeño */
@media (max-width: 520px){
  .btn--lg{ padding: 10px 12px; border-radius: 14px; font-size: 14px; }
}

/* Hero */
.hero{ padding: 56px 0 26px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 24px;
  align-items: start;
}
.hero__copy h1{
  margin:0 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.6px;
}
.hero__copy p{ margin:0 0 18px; font-size: 16px; }
.hero__actions{ display:flex; gap: 12px; flex-wrap: wrap; margin: 16px 0 18px; }
.infoRow{ display:flex; gap: 10px; flex-wrap: wrap; }
.chip{
  font-size: 13px;
  color: var(--muted);
  padding: 8px 12px;
  border: 1px solid rgba(176,141,87,.22);
  border-radius: 999px;
  background: rgba(255,244,231,.78);
}

/* Pulido: Lo más pedido más fino y enfocado */
.hero__card{
  display: flex;
  justify-content: flex-end;
}
.hero__card .card{
  width: 100%;
  max-width: 420px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(176,141,87,.98), rgba(156,124,75,.92));
  border: 1px solid rgba(176,141,87,.28);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  color: #ffffff;
}
.card__title{
  font-size: 15px;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 800;
  color: #ffffff;
}
.card__list{ margin:0; padding-left: 18px; color: rgba(255,255,255,.90); }
.card__list li{ margin: 6px 0; line-height: 1.35; color: rgba(255,255,255,.90); }
.card__list li::marker{ color: rgba(255,255,255,.78); }

/* Sections */
.section{ padding: 44px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(233,220,201,.55), rgba(243,234,220,.62));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__header{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.section__header h2{ margin:0; font-size: 22px; letter-spacing: -.2px; }
.section__header p{ margin:0; max-width: 62ch; }

.grid2{ display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.serviceCard{
  border-radius: var(--radius2);
  border: 1px solid rgba(176,141,87,.18);
  background: rgba(255,255,255,.90);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.serviceCard__title{ font-weight: 800; margin-bottom: 10px; color: #2a2a2a; }
.serviceList{ margin:0; padding:0; list-style:none; display:grid; gap: 10px; }
.serviceItem{
  display:flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(176,141,87,.24);
}
.serviceItem:last-child{ border-bottom: none; padding-bottom: 0; }
.serviceItem__price{ color: #4f4f4f; font-weight: 750; }

/* Gallery (sin captions) */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.galleryItem{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(176,141,87,.16);
  background: rgba(255,255,255,.84);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.galleryItem img{
  width:100%;
  height: 210px;
  object-fit: cover;
  display:block;
}

/* Map */
.mapWrap{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(176,141,87,.16);
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow);
  position: relative;
  min-height: 360px;
}
.mapFrame{ width:100%; height: 420px; border:0; display:none; }
.mapPlaceholder{ padding: 18px 22px; color: var(--muted); }

/* Contact */
.contact__cards{
  display:grid;
  gap: 18px;
  margin-top: 18px;
}
.contact__cards--two{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contactCard{
  border-radius: var(--radius2);
  border: 1px solid rgba(176,141,87,.18);
  background: rgba(255,255,255,.90);
  padding: 20px;
  min-height: 140px;
  transition: transform .08s ease, border-color .12s ease, box-shadow .12s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.contactCard:hover{
  transform: translateY(-1px);
  border-color: rgba(176,141,87,.30);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}
.contactCard__kicker{ color: var(--muted); font-size: 13.5px; }
.contactCard__value{
  font-size: 18px;
  line-height: 1.15;
  margin-top: 8px;
  font-weight: 820;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contactCard__hint{ font-size: 13px; margin-top: 10px; }

/* Hours block (separado) */
.hoursBlock{
  border-radius: var(--radius2);
  border: 1px solid rgba(176,141,87,.18);
  background: rgba(255,255,255,.90);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  max-width: 620px;
}
.hoursBlock__inner{
  display: grid;
  gap: 6px;
  font-size: 14px;
}
.hoursBlock__inner .hoursRow{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(176,141,87,.24);
}
.hoursBlock__inner .hoursRow:last-child{ border-bottom:none; }
.hoursBlock__inner .hoursRow__days{ font-weight: 700; }
.hoursBlock__inner .hoursRow__hours{ color: rgba(26,26,26,.70); font-weight: 700; }

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(255,255,255,.70);
}
.footer__inner{ display:flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 920px){
  .hero__grid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav{ display:none; }
  .hero__card{ justify-content: flex-start; }
  .hero__card .card{ max-width: 520px; }
  .contact__cards--two{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px){
  .contact__cards--two{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .grid2{ grid-template-columns: 1fr; }
  .galleryItem img{ height: 190px; }
}
