/* Restaurante Villa Toledo — redesign r1
   Seafront palette: deep sea ink, warm sand, terracotta, gold. */

:root {
  --ink: #0d2b3e;
  --ink-2: #12384f;
  --sand: #faf6ee;
  --sand-2: #f3ecdd;
  --terracotta: #d96c3f;
  --terracotta-dark: #b8552e;
  --gold: #c9a227;
  --text: #2b2b28;
  --muted: #6b6b64;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(13, 43, 62, 0.12);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--sand);
  line-height: 1.6;
  font-size: 17px;
}

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

a { color: var(--terracotta-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--terracotta); }

h1, h2, h3, .brand-name { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--ink); }

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 0; }
h3 { font-size: 1.25rem; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink); color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 10px; padding-bottom: 10px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.brand-mark { width: 44px; height: 44px; background: #fff; border-radius: 50%; padding: 6px; object-fit: contain; }
.brand-name { color: #fff; font-size: 1.25rem; display: block; line-height: 1.1; }
.brand-sub { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.75); display: block; }

.site-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.site-nav a {
  color: rgba(255,255,255,0.88); text-decoration: none; padding: 8px 12px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 500;
}
.site-nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.site-nav a.active { color: #fff; background: rgba(255,255,255,0.16); }
.site-nav .nav-cta { background: var(--terracotta); color: #fff; font-weight: 600; margin-left: 6px; }
.site-nav .nav-cta:hover { background: var(--terracotta-dark); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* Hero */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,43,62,0.55) 0%, rgba(13,43,62,0.35) 40%, rgba(13,43,62,0.72) 100%); }
.hero-content { position: relative; color: #fff; padding: 90px 22px; max-width: 1180px; }
.hero h1 { color: #fff; margin: 0.15em 0; font-size: clamp(2.6rem, 7vw, 4.6rem); }
.hero-eyebrow, .eyebrow { letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.8rem; font-weight: 600; color: var(--terracotta); margin: 0 0 8px; }
.hero .hero-eyebrow { color: #ffd9a0; }
.hero-tagline { font-family: var(--font-display); font-size: clamp(1.15rem, 2.6vw, 1.6rem); color: #ffe9c9; margin: 0 0 14px; }
.hero-sub { max-width: 640px; color: rgba(255,255,255,0.92); font-size: 1.02rem; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-phone { margin-top: 22px; font-weight: 600; }
.hero-phone a { color: #fff; font-size: 1.2rem; text-decoration: none; border-bottom: 2px solid var(--terracotta); }

/* Buttons */
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 999px; text-decoration: none;
  font-weight: 600; font-size: 0.98rem; border: 2px solid transparent; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover { background: var(--terracotta-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--terracotta-dark); border-color: var(--terracotta); }
.btn-outline:hover { background: var(--terracotta); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--sand-2); color: var(--ink); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.8); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); color: #fff; }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }

/* Sections */
.section { padding: 72px 0; }
.section.alt { background: var(--sand-2); }
.section .lead { font-size: 1.15rem; color: #444; max-width: 780px; }
.cta-line { margin-top: 30px; }

/* Zones */
.zone-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 34px; }
.zone-card, .spec-card, .post-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.zone-card img, .spec-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.zone-card h3, .spec-card h3 { margin: 16px 18px 6px; }
.zone-card p, .spec-card p { margin: 0 18px 20px; color: var(--muted); }

/* Specialities */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 34px; }

/* Split / map */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center; }
.split-reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.map-wrap iframe { border-radius: var(--radius); box-shadow: var(--shadow); }
.signature { font-family: var(--font-display); font-style: italic; color: var(--terracotta-dark); margin-top: 24px; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 30px; }
.review-card { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); margin: 0; }
.review-stars { color: var(--gold); letter-spacing: 3px; margin: 0 0 8px; }
.review-card footer { color: var(--muted); font-size: 0.9rem; margin-top: 10px; }
.review-source { font-size: 0.78rem; }

/* CTA band */
.cta-band { background: var(--ink); color: #fff; padding: 72px 0; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* Page hero */
.page-hero { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); color: #fff; padding: 74px 0 60px; }
.page-hero h1 { color: #fff; margin: 6px 0 12px; }
.page-hero p { color: rgba(255,255,255,0.88); max-width: 760px; }
.page-hero-short { padding: 56px 0 44px; }
.page-hero .eyebrow a { color: #ffd9a0; text-decoration: none; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 30px; }
.gallery-grid img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); width: 100%; }

/* Menu */
.lang-switch { background: #fff; border: 1px solid #e5dcc8; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; margin-bottom: 26px; flex-wrap: wrap; }
.lang-label { color: var(--muted); font-size: 0.9rem; margin-right: 6px; }
.lang-switch a { padding: 6px 12px; border-radius: 999px; text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.92rem; }
.lang-switch a:hover { background: var(--sand-2); }
.lang-switch a.active { background: var(--ink); color: #fff; }

.pdf-downloads { background: #fff; border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); margin-bottom: 40px; }
.pdf-intro { font-weight: 600; margin: 0 0 14px; }
.pdf-downloads .btn { margin: 0 8px 8px 0; }

.menu-section { margin-bottom: 44px; }
.menu-section-title {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--ink);
  border-bottom: 3px solid var(--gold); display: inline-block; padding-bottom: 6px; margin-bottom: 20px;
}
.menu-section-body { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 30px; align-items: start; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-item { padding: 13px 0; border-bottom: 1px dashed #d8cfba; }
.menu-item:last-child { border-bottom: 0; }
.menu-item-head { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.menu-name { font-weight: 600; color: var(--ink); }
.menu-price { font-weight: 700; color: var(--terracotta-dark); white-space: nowrap; }
.menu-desc { color: var(--muted); font-size: 0.92rem; margin: 4px 0 0; }
.menu-note { display: inline-block; background: var(--sand-2); color: var(--muted); font-size: 0.8rem; border-radius: 999px; padding: 2px 10px; margin-top: 6px; }
.menu-section-img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.menu-allergen { background: #fff3e4; border-left: 4px solid var(--terracotta); padding: 14px 18px; border-radius: 8px; margin-top: 30px; }
.menu-note-small { color: var(--muted); font-size: 0.85rem; }

/* Blog posts */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.post-card { padding: 26px; }
.post-card h2 { font-size: 1.3rem; margin: 0 0 8px; }
.post-date { color: var(--muted); font-size: 0.88rem; margin: 0 0 10px; }
.post { max-width: 780px; }
.post-img { border-radius: var(--radius); margin: 18px 0; box-shadow: var(--shadow); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0 0 24px; }
.contact-list li { padding: 7px 0; border-bottom: 1px dashed #d8cfba; }
.booking-frame { background: #fff; border-radius: var(--radius); padding: 10px; box-shadow: var(--shadow); }
.booking-frame iframe { border-radius: 10px; min-height: 640px; }

/* Legal / transparency */
.plain-list { padding-left: 20px; }
.meta-note { color: var(--muted); font-size: 0.85rem; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.82); padding: 60px 0 26px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 36px; }
.footer-title { color: #fff; font-size: 1.15rem; margin: 0 0 14px; }
.footer-col p { margin: 6px 0; }
.footer-col a { color: rgba(255,255,255,0.85); }
.footer-col a:hover { color: #fff; }
.footer-tag { color: #ffd9a0; }
.footer-social a { text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 0.9rem; }

/* Focus */
a:focus-visible, button:focus-visible, iframe:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split-reverse .split-media { order: 0; }
  .menu-section-body { grid-template-columns: 1fr; }
  .menu-section-img { max-width: 420px; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink); flex-direction: column; align-items: stretch; padding: 10px 18px 18px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .site-nav .nav-cta { margin-left: 0; text-align: center; }
  .hero { min-height: 66vh; }
  .section { padding: 52px 0; }
  .footer-bottom { flex-direction: column; }
}
