:root {
  --bg: #fdf7ef;
  --paper: #ffffff;

  --ink: #35281d;
  --muted: #746250;

  /* Dorados */
  --gold-light: #e7cb94;
  --gold: #bb9c5f;
  --gold-dark: #a88b51;
  --gold-deep: #8d6d34;

  /* Marrones */
  --brown: #7a5b33;
  --brown-dark: #4d3820;

  --line: rgba(122, 91, 51, .16);
  --shadow: 0 22px 60px rgba(77, 56, 32, .15);

  --radius: 28px;
  --container: 1500px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

a { color: inherit; }



.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--brown-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  z-index: 20;
}

.skip-link:focus { top: 16px; }

.site-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;

    background: linear-gradient(
        90deg,
        #9d7b39 0%,
        #b99752 45%,
        #d4b16b 100%
    );

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(122,91,51,.20);

    box-shadow:
        0 4px 24px rgba(77,56,32,.12),
        inset 0 -1px rgba(255,255,255,.18);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand{
    display:flex;
    align-items:center;
    text-decoration:none;
    flex-shrink:0;
}

.brand-logo{
    height:58px;
    width:auto;
    display:block;
    transition:transform .25s ease;
}

.brand:hover .brand-logo{
    transform:scale(1.03);
}

.brand strong,
.brand small { display: block; }

.brand strong { line-height: 1.1; }
.brand small { color: var(--muted); font-size: 0.78rem; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  font-size: 0.92rem;
}

.main-nav a {
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus { border-color: var(--gold); }

.menu-toggle{
    display:none;
    min-height:48px;
    padding:0 18px;

    background:rgba(255,255,255,.18);
    border:1px solid rgba(255,255,255,.45);

    color:#fff;
    font-weight:700;

    border-radius:999px;
    backdrop-filter:blur(10px);

    transition:.25s;
}

.menu-toggle:hover{
    background:rgba(255,255,255,.28);
}

.section { padding: 96px 0; }

.hero { padding-top:140px; }

.hero-grid,
.two-columns,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
}

.align-center { align-items: center; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.78rem;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  margin: 0;
}

h1 { font-size: clamp(2.65rem, 7vw, 5.3rem); max-width: 820px; }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.6rem); }
h3 { font-size: 1.45rem; }

.hero-text,
.section-title p,
.lead-block,
.order-card p,
.story p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-text { max-width: 680px; margin: 26px 0; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary { background: var(--brown); color: #fff; }
.btn-primary:hover { background: var(--brown-dark); }
.btn-secondary { border-color: var(--brown); color: var(--brown-dark); background: transparent; }
.btn-light { background: #fff; color: var(--brown-dark); }
.btn-dark { background: var(--brown-dark); color: #fff; }
.full { width: 100%; }

.trust-line {
  margin-top: 20px;
  color: var(--muted);
  font-weight: 600;
}

.hero-card {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ead8c6;
}

.hero-card img,
.image-stack img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
}

.hero-card-label strong,
.hero-card-label span { display: block; }
.hero-card-label span { color: var(--muted); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}

.feature-card,
.menu-note,
.category-card,
.map-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 38px rgba(62, 44, 37, 0.08);
}

.feature-card { padding: 28px; }
.feature-card span { color: var(--gold-dark); font-weight: 900; }
.feature-card p { color: var(--muted); margin-bottom: 0; }

.section-title {
  max-width: 820px;
  text-align: center;
  margin-bottom: 44px;
}

.menu-note p { color: var(--muted); }
code {
  background: #f5eadf;
  padding: 2px 7px;
  border-radius: 7px;
}

.price-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 28px;
    align-items: start;
}

.category-card{
    padding:34px;
    height:100%;
}
.category-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 8px;
}

.category-head p { margin: 8px 0 0; color: var(--muted); }

.price-item{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:start;
    column-gap:32px;
    padding:22px 0;
}

.price-item:last-child { border-bottom: 0; padding-bottom: 0; }
.price-item strong { font-size: 1.08rem; }
.price-item p { margin: 4px 0 0; color: var(--muted); }
.price{
    font-weight:900;
    font-size:1.15rem;
    color:var(--brown-dark);
    white-space:nowrap;
    text-align:right;
}

.orders {
  background: var(--brown);
  color: #fff;
}

.orders .eyebrow,
.orders p { color: rgba(255,255,255,0.82); }

.order-card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: center;
}

.contact-buttons { display: grid; gap: 12px; }

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 16px;
  align-items: end;
}

.image-stack img {
  border-radius: var(--radius);
  min-height: 420px;
}

.image-stack img:nth-child(2) { min-height: 300px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid img {
  min-height: 260px;
  border-radius: 24px;
}

.contact-list {
  margin: 24px 0;
  font-size: 1.08rem;
}

.contact-list p { margin: 8px 0; }

.map-card {
  overflow: hidden;
  min-height: 430px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  min-height: 58px;
  padding: 0 24px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brown-dark);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow);
}

@media (max-width: 920px) {
  html { font-size: 17px; }
  .menu-toggle { display: inline-flex; align-items: center; }
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 16px; }

  .hero-grid,
  .two-columns,
  .contact-grid,
  .menu-layout,
  .order-card {
    grid-template-columns: 1fr;
  }

  .hero-card { min-height: 420px; }
  .feature-grid { grid-template-columns: 1fr; }
  .menu-note { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .floating-call { display: inline-flex; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 68px 0; }
  .header-inner { min-height: 74px; }
  .brand small { display: none; }
  .brand-mark { width: 44px; height: 44px; }
  .hero { padding-top: 44px; }
  .hero-actions .btn,
  .contact-buttons .btn { width: 100%; }
  .hero-card { min-height: 340px; }
  .category-head,
  .price-item,
  .footer-inner {
    display: block;
  }
  .price { margin-top: 8px; display: block; }
  .image-stack { grid-template-columns: 1fr; }
  .image-stack img,
  .image-stack img:nth-child(2) { min-height: 260px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { min-height: 230px; }
}

/* ===========================
   HORARIOS
=========================== */

.hours-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
    gap:32px;
}

.hours-card{
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:40px;

    box-shadow:0 12px 38px rgba(62,44,37,.08);

    transition:.25s ease;
}

.hours-card:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 48px rgba(62,44,37,.12);
}

.hours-icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:22px;

    font-size:2rem;

    background:linear-gradient(
        135deg,
        #a88b51,
        #d4b16b
    );

    color:#fff;

    border-radius:50%;
}

.hours-card h3{
    margin-bottom:24px;
}

.hours-main{
    padding:22px;

    margin-bottom:26px;

    text-align:center;

    background:#f8f1e4;

    border-radius:18px;
}

.hours-main strong{
    display:block;
    font-size:1.35rem;
    color:var(--brown-dark);
}

.hours-main span{
    display:block;
    margin-top:10px;

    font-size:2rem;
    font-weight:800;

    color:var(--gold-dark);
}

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

.btn-pdf{
    display:inline-flex;
    align-items:center;
    gap:8px;

    margin:18px 0 24px;

    padding:10px 18px;

    border-radius:999px;

    background:#f8f1e4;
    border:1px solid rgba(168,139,81,.25);

    color:var(--gold-deep);

    text-decoration:none;
    font-weight:700;
    font-size:.95rem;

    transition:.25s;
}

.btn-pdf:hover{
    background:linear-gradient(
        135deg,
        #a88b51,
        #d4b16b
    );

    color:white;
    transform:translateY(-2px);
}

.pdf-buttons{
    margin-top:40px;

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;
}