/*
Theme Name: Secretos de Sierra
Theme URI: https://secretosdesierra.es
Author: Secretos de Sierra
Description: Custom theme for Secretos de Sierra - six holiday rental properties in the Altiplano de Granada, Andalucia.
Version: 1.0.0
Text Domain: secretos-de-sierra
*/

  @font-face {
    font-family: 'Zilla Slab';
    font-weight: 500;
    font-style: normal;
    src: url('assets/fonts/zillaslab-500.woff2') format('woff2');
    font-display: swap;
  }
  @font-face {
    font-family: 'Zilla Slab';
    font-weight: 700;
    font-style: normal;
    src: url('assets/fonts/zillaslab-700.woff2') format('woff2');
    font-display: swap;
  }
  @font-face {
    font-family: 'Archivo';
    font-weight: 100 900;
    font-style: normal;
    src: url('assets/fonts/archivo-var.woff2') format('woff2');
    font-display: swap;
  }

  :root {
    --ink: #16141c;
    --ink-soft: #4a4438;
    --paper: #ece7db;
    --paper-raised: #f8f5ec;
    --rust: #a8451f;
    --rust-deep: #832f12;
    --teal: #1e7a72;
    --teal-deep: #145850;
    --gold: #c98f2e;
    --sage: #6e7350;
    --line: rgba(22, 20, 28, 0.14);
    --line-soft: rgba(22, 20, 28, 0.08);
    --shadow: 0 18px 40px -22px rgba(22, 20, 28, 0.45);
    --on-ink: #ece5d4;
    --on-ink-soft: #b7ae9a;
    color-scheme: light;
  }

  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --ink: #ece5d4;
      --ink-soft: #b7ae9a;
      --paper: #131019;
      --paper-raised: #1c1824;
      --rust: #d97a49;
      --rust-deep: #f0996a;
      --teal: #49b3a8;
      --teal-deep: #6fcabf;
      --gold: #e3b45c;
      --sage: #a2a781;
      --line: rgba(236, 229, 212, 0.16);
      --line-soft: rgba(236, 229, 212, 0.09);
      --shadow: 0 18px 44px -20px rgba(0, 0, 0, 0.65);
      --on-ink: #ece5d4;
      --on-ink-soft: #b7ae9a;
      color-scheme: dark;
    }
  }

  :root[data-theme="dark"] {
    --ink: #ece5d4;
    --ink-soft: #b7ae9a;
    --paper: #131019;
    --paper-raised: #1c1824;
    --rust: #d97a49;
    --rust-deep: #f0996a;
    --teal: #49b3a8;
    --teal-deep: #6fcabf;
    --gold: #e3b45c;
    --sage: #a2a781;
    --line: rgba(236, 229, 212, 0.16);
    --line-soft: rgba(236, 229, 212, 0.09);
    --shadow: 0 18px 44px -20px rgba(0, 0, 0, 0.65);
    --on-ink: #ece5d4;
    --on-ink-soft: #b7ae9a;
    color-scheme: dark;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  }

  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Archivo', ui-sans-serif, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; }
  h1, h2, h3, h4 {
    font-family: 'Zilla Slab', ui-serif, Georgia, serif;
    font-weight: 700;
    margin: 0;
    text-wrap: balance;
    letter-spacing: -0.01em;
  }
  p { margin: 0; }
  .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: clamp(20px, 5vw, 56px);
    padding-right: clamp(20px, 5vw, 56px);
  }
  .eyebrow {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rust);
  }
  :root[data-theme="dark"] .eyebrow,
  @media (prefers-color-scheme: dark) { }

  .btn {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 26px;
    border-radius: 3px;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  }
  .btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
  .btn-primary { background: var(--rust); color: #fdf8ee; }
  .btn-primary:hover { background: var(--rust-deep); transform: translateY(-1px); }
  .btn-ghost-light { border-color: rgba(253, 248, 238, 0.55); color: #fdf8ee; }
  .btn-ghost-light:hover { border-color: #fdf8ee; background: rgba(253, 248, 238, 0.1); }
  .btn-outline { border-color: var(--ink); color: var(--ink); }
  .btn-outline:hover { background: var(--ink); color: var(--paper); }

  /* ---------- strata divider ---------- */
  .strata {
    height: 10px;
    width: 100%;
    background: repeating-linear-gradient(
      90deg,
      var(--rust) 0 14%,
      var(--gold) 14% 30%,
      var(--sage) 30% 46%,
      var(--teal) 46% 62%,
      var(--rust-deep) 62% 78%,
      var(--gold) 78% 100%
    );
    background-size: 340px 100%;
    opacity: 0.9;
  }

  /* ---------- nav ---------- */
  .site-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: color-mix(in srgb, var(--paper) 88%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .site-nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .brand img { height: 40px; width: 40px; object-fit: contain; }
  .brand-word {
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
    font-size: 1.18rem;
    letter-spacing: 0.01em;
    line-height: 1.05;
  }
  .brand-word small {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 0.92rem;
    font-weight: 500;
  }
  .nav-links a { text-decoration: none; opacity: 0.82; transition: opacity 0.15s ease; }
  .nav-links a:hover { opacity: 1; }
  .nav-cta { display: flex; align-items: center; gap: 14px; }
  .nav-toggle { display: none; }
  .lang-switch {
    appearance: none; -webkit-appearance: none; -moz-appearance: none;
    font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.8rem;
    color: var(--ink); background: var(--paper-raised);
    border: 1px solid var(--line); border-radius: 3px;
    padding: 8px 26px 8px 12px; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%234a4438' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 10px center;
  }
  .lang-switch:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
  body { visibility: hidden; }
  body.lang-ready { visibility: visible; }

  @media (max-width: 880px) {
    .nav-links { display: none; }
    .nav-cta .btn span.full { display: none; }
  }

  /* ---------- hero ---------- */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    color: #fdf8ee;
    overflow: hidden;
  }
  .hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 62%;
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(15, 13, 20, 0.15) 0%, rgba(15, 13, 20, 0.35) 45%, rgba(15, 13, 20, 0.88) 100%);
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(48px, 7vw, 88px);
    padding-top: 160px;
    width: 100%;
  }
  .hero-eyebrow {
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #e9c17e;
    margin-bottom: 22px;
    display: block;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.03;
    max-width: 15ch;
    color: #fdf8ee;
  }
  .hero-sub {
    margin-top: 24px;
    max-width: 46ch;
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    color: rgba(253, 248, 238, 0.86);
    line-height: 1.65;
  }
  .hero-ctas {
    margin-top: 38px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .hero-scroll {
    position: absolute;
    bottom: 26px;
    right: clamp(20px, 5vw, 56px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(253, 248, 238, 0.75);
  }
  .hero-scroll .line { width: 34px; height: 1px; background: rgba(253, 248, 238, 0.55); }

  /* ---------- trust strip ---------- */
  .trust-strip {
    background: var(--paper-raised);
    border-bottom: 1px solid var(--line);
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 30px 0;
  }
  .trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9rem;
  }
  .trust-item .mark {
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--teal);
    line-height: 1;
    margin-top: 2px;
  }
  .trust-item b { display: block; font-weight: 700; margin-bottom: 2px; }
  .trust-item span.d { color: var(--ink-soft); }
  @media (max-width: 780px) {
    .trust-grid { grid-template-columns: 1fr; gap: 18px; }
  }

  /* ---------- section shells ---------- */
  section { position: relative; }
  .sec {
    padding: clamp(64px, 9vw, 120px) 0;
  }
  .sec-head {
    max-width: 640px;
    margin-bottom: clamp(40px, 6vw, 64px);
  }
  .sec-head h2 {
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    line-height: 1.08;
    margin-top: 14px;
  }
  .sec-head p {
    margin-top: 18px;
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 58ch;
    line-height: 1.7;
  }

  /* ---------- properties ---------- */
  .prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  @media (max-width: 980px) { .prop-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 680px) { .prop-grid { grid-template-columns: 1fr; } }

  .prop-card {
    background: var(--paper-raised);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  }
  .prop-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }
  .prop-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
  }
  .prop-card:hover .prop-photo img { transform: scale(1.06); }
  .prop-strata { height: 5px; }
  .prop-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
  .prop-loc {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
  }
  .prop-body h3 { font-size: 1.5rem; line-height: 1.15; }
  .prop-tag { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.6; }
  .prop-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--line-soft);
  }
  .fact {
    font-size: 0.76rem;
    font-weight: 600;
    padding: 5px 10px;
    border: 1px solid var(--line);
    border-radius: 2px;
    color: var(--ink-soft);
  }
  .prop-link {
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--rust);
    text-decoration: none;
  }
  .prop-link svg { transition: transform 0.18s ease; }
  .prop-link:hover svg { transform: translateX(4px); }

  /* baza cluster */
  .baza-wide {
    grid-column: 1 / -1;
    background: var(--paper-raised);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.05fr 1.4fr;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  }
  .baza-lead { position: relative; }
  .baza-lead img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
  .baza-lead-copy {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(15,13,20,0.82) 0%, rgba(15,13,20,0.1) 60%);
    color: #fdf8ee;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 26px;
  }
  .baza-lead-copy .prop-loc { color: #e9c17e; }
  .baza-lead-copy h3 { color: #fdf8ee; font-size: 1.5rem; margin-top: 6px; }
  .baza-lead-copy p { color: rgba(253,248,238,0.82); font-size: 0.92rem; margin-top: 10px; line-height: 1.6; }
  .baza-units {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
  }
  .baza-unit {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 16px;
    padding: 18px 24px;
    align-items: center;
  }
  .baza-unit + .baza-unit { border-top: 1px solid var(--line-soft); }
  .baza-unit .thumb { aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; }
  .baza-unit .thumb img { width: 100%; height: 100%; object-fit: cover; }
  .baza-unit h4 { font-size: 1.05rem; }
  .baza-unit .unit-desc { font-size: 0.84rem; color: var(--ink-soft); margin-top: 4px; line-height: 1.5; }
  .baza-unit .unit-facts { margin-top: 8px; display: flex; gap: 8px; flex-wrap: wrap; }
  .baza-unit .fact { font-size: 0.68rem; padding: 3px 8px; }

  @media (max-width: 900px) {
    .baza-wide { grid-template-columns: 1fr; }
    .baza-lead img { min-height: 200px; }
  }
  @media (max-width: 560px) {
    .baza-unit { grid-template-columns: 90px 1fr; padding: 16px; }
  }

  /* ---------- book direct ---------- */
  .book-direct {
    background: var(--ink);
    color: var(--on-ink);
  }
  .bd-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .book-direct h2 { color: var(--on-ink); font-size: clamp(2rem, 3.4vw, 2.7rem); }
  .book-direct .eyebrow { color: var(--gold); }
  .book-direct .lede { margin-top: 18px; color: var(--on-ink-soft); font-size: 1.05rem; max-width: 46ch; line-height: 1.7; }
  .bd-benefits { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
  .bd-benefit { display: flex; gap: 16px; }
  .bd-benefit .num {
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
    border: 1px solid rgba(236,229,212,0.28);
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .bd-benefit b { display: block; font-size: 1rem; margin-bottom: 3px; }
  .bd-benefit span { color: var(--on-ink-soft); font-size: 0.92rem; line-height: 1.55; }
  .bd-panel {
    background: var(--paper-raised);
    color: var(--ink);
    padding: 34px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  :root[data-theme="dark"] .bd-panel, .bd-panel { }
  .bd-panel .rate { font-family: 'Zilla Slab', serif; font-weight: 700; font-size: 2.6rem; color: var(--rust); line-height: 1; }
  .bd-panel .rate-label { font-size: 0.82rem; color: var(--ink-soft); margin-top: 8px; }
  .bd-badges { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
  .bd-badge { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; font-weight: 600; }
  .bd-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
  .bd-panel .btn { margin-top: 24px; width: 100%; justify-content: center; }

  @media (max-width: 880px) {
    .bd-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ---------- explore ---------- */
  .explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .explore-item {
    background: var(--paper-raised);
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 260px;
  }
  .explore-item .glyph {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--rust);
    color: var(--rust);
    border-radius: 50%;
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
  }
  .explore-item h3 { font-size: 1.18rem; margin-top: 4px; }
  .explore-item p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; flex: 1; }
  .explore-item a { font-size: 0.82rem; font-weight: 700; color: var(--teal); text-decoration: none; }
  .explore-item a:hover { text-decoration: underline; }

  /* ---------- stargazing ---------- */
  .stars-sec {
    background: var(--ink);
    color: var(--on-ink);
    position: relative;
    overflow: hidden;
  }
  .starfield {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(1px 1px at 8% 22%, #fff, transparent 60%),
      radial-gradient(1.4px 1.4px at 18% 68%, #fff, transparent 60%),
      radial-gradient(1px 1px at 26% 12%, #fff, transparent 60%),
      radial-gradient(1.6px 1.6px at 34% 44%, #fff, transparent 60%),
      radial-gradient(1px 1px at 42% 78%, #fff, transparent 60%),
      radial-gradient(1.2px 1.2px at 52% 30%, #fff, transparent 60%),
      radial-gradient(1px 1px at 61% 58%, #fff, transparent 60%),
      radial-gradient(1.6px 1.6px at 69% 15%, #fff, transparent 60%),
      radial-gradient(1px 1px at 77% 82%, #fff, transparent 60%),
      radial-gradient(1.3px 1.3px at 85% 40%, #fff, transparent 60%),
      radial-gradient(1px 1px at 93% 66%, #fff, transparent 60%),
      radial-gradient(1.4px 1.4px at 12% 90%, #fff, transparent 60%),
      radial-gradient(1px 1px at 47% 92%, #fff, transparent 60%),
      radial-gradient(1.2px 1.2px at 89% 12%, #fff, transparent 60%);
    opacity: 0.55;
  }
  .stars-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .stars-sec h2 { color: var(--on-ink); font-size: clamp(2rem, 3.6vw, 2.9rem); }
  .stars-sec .eyebrow { color: var(--gold); }
  .stars-sec p.lede { margin-top: 18px; color: var(--on-ink-soft); font-size: 1.05rem; line-height: 1.75; max-width: 50ch; }
  .stars-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; }
  .stars-stat b { display: block; font-family: 'Zilla Slab', serif; font-size: 1.8rem; color: var(--gold); }
  .stars-stat span { font-size: 0.82rem; color: var(--on-ink-soft); }
  .stars-photo { position: relative; aspect-ratio: 4/3.2; overflow: hidden; border: 1px solid rgba(236,229,212,0.18); }
  .stars-photo img { width: 100%; height: 100%; object-fit: cover; }
  @media (max-width: 880px) { .stars-inner { grid-template-columns: 1fr; gap: 36px; } .stars-photo { order: -1; } }
  .retreat-types { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(236,229,212,0.16); border: 1px solid rgba(236,229,212,0.16); margin-top: 56px; }
  .retreat-type { background: rgba(255,255,255,0.03); padding: 24px 22px; display: flex; flex-direction: column; gap: 8px; }
  .retreat-type b { font-family: 'Zilla Slab', serif; font-size: 1.05rem; color: var(--on-ink); }
  .retreat-type span { font-size: 0.85rem; color: var(--on-ink-soft); line-height: 1.55; }
  .retreat-footer { position: relative; z-index: 2; margin-top: 36px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
  .retreat-closing { font-family: 'Zilla Slab', serif; font-style: italic; font-size: 1.1rem; color: var(--on-ink-soft); margin: 0; }
  @media (max-width: 880px) { .retreat-types { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .retreat-types { grid-template-columns: 1fr; } }

  /* ---------- reviews ---------- */
  .review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .review-card {
    background: var(--paper-raised);
    border: 1px solid var(--line);
    padding: 28px 26px;
  }
  .review-card .quote-mark { font-family: 'Zilla Slab', serif; font-size: 2.4rem; color: var(--rust); line-height: 1; opacity: 0.55; }
  .review-card p.q { margin-top: 8px; font-size: 0.98rem; line-height: 1.6; font-family: 'Zilla Slab', serif; }
  .review-card .who { margin-top: 16px; font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); }
  @media (max-width: 880px) { .review-grid { grid-template-columns: 1fr; } }

  .hashtag-bar {
    margin-top: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .hashtag-bar b { font-family: 'Zilla Slab', serif; font-size: 1.15rem; color: var(--teal); }
  .hashtag-bar span { color: var(--ink-soft); font-size: 0.9rem; }

  /* ---------- about ---------- */
  .about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
  }
  .about-frame {
    aspect-ratio: 4/4.6;
    background: var(--paper-raised);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .about-frame .placeholder-mark {
    text-align: center;
    color: var(--ink-soft);
    padding: 30px;
  }
  .about-frame .placeholder-mark .ring {
    width: 76px; height: 76px; margin: 0 auto 16px;
    border: 1.5px solid var(--rust);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--rust);
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
    font-size: 1.6rem;
  }
  .about-frame .placeholder-mark small { display: block; margin-top: 10px; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
  .about-copy p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; margin-top: 16px; }
  .about-copy p:first-of-type { margin-top: 20px; }
  @media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }

  /* ---------- footer ---------- */
  footer {
    background: var(--ink);
    color: var(--on-ink);
    padding: 72px 0 30px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 46px;
    border-bottom: 1px solid rgba(236,229,212,0.16);
  }
  .foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
  .foot-brand img { height: 34px; width: 34px; }
  .foot-brand span { font-family: 'Zilla Slab', serif; font-weight: 700; font-size: 1.05rem; }
  .foot-col h5 { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-ink-soft); font-weight: 700; margin-bottom: 14px; }
  .foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .foot-col a { text-decoration: none; font-size: 0.9rem; color: var(--on-ink); opacity: 0.88; }
  .foot-col a:hover { opacity: 1; text-decoration: underline; }
  .foot-desc { max-width: 32ch; font-size: 0.9rem; color: var(--on-ink-soft); line-height: 1.6; }
  .foot-bottom {
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--on-ink-soft);
  }
  @media (max-width: 880px) {
    .foot-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .foot-grid { grid-template-columns: 1fr; }
  }

  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

  /* ---------- booking widget mock ---------- */
  .widget-shell {
    background: var(--paper-raised);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1.3fr;
  }
  .widget-copy { padding: 40px; display: flex; flex-direction: column; gap: 16px; justify-content: center; }
  .widget-copy .eyebrow { color: var(--teal); }
  .widget-copy h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
  .widget-copy p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.65; }
  .widget-note {
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--ink-soft);
    padding: 12px 14px;
    border-left: 2px solid var(--gold);
    background: color-mix(in srgb, var(--gold) 10%, transparent);
    line-height: 1.55;
  }
  .widget-note code { font-family: ui-monospace, Menlo, monospace; font-size: 0.76rem; }
  .widget-mock { padding: 34px; border-left: 1px solid var(--line); display: flex; flex-direction: column; }
  .widget-mock-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
  .widget-mock-head b { font-family: 'Zilla Slab', serif; font-size: 1.05rem; }
  .widget-mock-head span { font-size: 0.76rem; color: var(--ink-soft); }
  .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
  .cal-dow { font-size: 0.62rem; text-align: center; color: var(--ink-soft); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding-bottom: 4px; }
  .cal-cell {
    appearance: none; -webkit-appearance: none; margin: 0; font-family: 'Archivo', sans-serif;
    aspect-ratio: 1;
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.68rem;
    font-variant-numeric: tabular-nums;
    background: var(--paper);
    border: 1px solid var(--line-soft);
    color: var(--ink-soft);
  }
  .cal-cell.blank { border-color: transparent; background: transparent; }
  .cal-cell.avail { background: color-mix(in srgb, var(--teal) 16%, var(--paper)); color: var(--teal-deep); border-color: color-mix(in srgb, var(--teal) 40%, transparent); font-weight: 700; cursor: pointer; transition: background 0.12s ease, transform 0.12s ease; }
  .cal-cell.avail:hover { background: color-mix(in srgb, var(--teal) 32%, var(--paper)); transform: translateY(-1px); }
  .cal-cell.avail:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
  .cal-cell.booked { background: color-mix(in srgb, var(--rust) 12%, var(--paper)); color: var(--ink-soft); text-decoration: line-through; opacity: 0.6; cursor: not-allowed; }
  .cal-cell.selected { background: var(--rust); color: #fdf8ee; border-color: var(--rust); }
  .cal-cell.suggested { background: var(--gold); color: #2a1d05; border-color: var(--gold); }
  .cal-legend { display: flex; gap: 16px; margin-top: 16px; font-size: 0.74rem; color: var(--ink-soft); flex-wrap: wrap; }
  .cal-legend .sw { display: inline-flex; align-items: center; gap: 6px; }
  .cal-legend .sw i { width: 9px; height: 9px; border-radius: 2px; display: inline-block; }
  .cal-legend .sw.a i { background: var(--teal); }
  .cal-legend .sw.b i { background: var(--rust); opacity: 0.55; }
  .cal-legend .sw.s i { background: var(--rust); }
  .cal-legend .sw.g i { background: var(--gold); }
  .widget-mock .btn { margin-top: 20px; }

  /* ---------- per-property booking calendar (in detail panels) ---------- */
  .cal-card { margin-top: 18px; padding: 24px; background: var(--paper); border: 1px solid var(--line); }
  .cal-card-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; gap: 10px; flex-wrap: wrap; }
  .cal-card-head b { font-family: 'Zilla Slab', serif; font-size: 1.02rem; }
  .cal-hint { font-size: 0.78rem; color: var(--ink-soft); }
  .cal-actions { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
  .cal-actions .btn { padding: 10px 20px; font-size: 0.85rem; }
  .cal-result { margin-top: 16px; padding: 16px 18px; border-radius: 2px; font-size: 0.88rem; line-height: 1.6; }
  .cal-result[hidden] { display: none; }
  .cal-result.ok { background: color-mix(in srgb, var(--teal) 12%, var(--paper-raised)); border: 1px solid color-mix(in srgb, var(--teal) 45%, transparent); }
  .cal-result.no { background: color-mix(in srgb, var(--gold) 16%, var(--paper-raised)); border: 1px solid color-mix(in srgb, var(--gold) 50%, transparent); }
  .cal-result .headline { display: block; font-family: 'Zilla Slab', serif; font-size: 1.05rem; margin-bottom: 6px; color: var(--ink); }
  .cal-result .price-line { margin-top: 8px; font-weight: 700; color: var(--ink); }
  .cal-result .fine { margin-top: 8px; font-size: 0.74rem; color: var(--ink-soft); }
  .cal-result .btn { margin-top: 14px; }
  @media (max-width: 880px) {
    .widget-shell { grid-template-columns: 1fr; }
    .widget-mock { border-left: none; border-top: 1px solid var(--line); }
  }

  .avail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .avail-pick {
    display: flex; flex-direction: column; gap: 4px;
    padding: 20px 22px; background: var(--paper-raised); border: 1px solid var(--line);
    text-decoration: none; color: var(--ink);
    transition: border-color 0.15s ease, transform 0.15s ease;
  }
  .avail-pick:hover { border-color: var(--teal); transform: translateY(-2px); }
  .avail-pick span { font-family: 'Zilla Slab', serif; font-weight: 700; font-size: 1.05rem; }
  .avail-pick small { font-size: 0.76rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }
  @media (max-width: 780px) { .avail-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .avail-grid { grid-template-columns: 1fr; } }

  .placeholder-link { opacity: 0.55; cursor: default; user-select: none; }

  /* ---------- detail overlay panels (property + guide deep-dives) ---------- */
  .detail-panel {
    display: none;
  }
  .detail-panel:target {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--paper);
    overflow-y: auto;
    animation: panelIn 0.28s ease;
  }
  @keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
  @media (prefers-reduced-motion: reduce) { .detail-panel:target { animation: none; } }

  .detail-topbar {
    position: sticky;
    top: 0;
    z-index: 5;
    background: color-mix(in srgb, var(--paper) 90%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    padding: 20px clamp(20px, 5vw, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .detail-back {
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
  }
  .detail-back svg { transition: transform 0.15s ease; }
  .detail-back:hover svg { transform: translateX(-3px); }

  .detail-gallery {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 8px;
    max-width: 1120px;
    margin: 28px auto 0;
    padding: 0 clamp(20px, 5vw, 56px);
  }
  .detail-gallery img { width: 100%; height: 100%; object-fit: cover; }
  .detail-gallery .g-main { aspect-ratio: 5 / 4; overflow: hidden; }
  .detail-gallery .g-side { display: grid; grid-template-rows: 1fr 1fr; gap: 8px; }
  .detail-gallery .g-side div { aspect-ratio: 5 / 3.7; overflow: hidden; }
  .detail-gallery.two-col { grid-template-columns: 1fr 1fr; }
  .detail-gallery.two-col .g-main { aspect-ratio: 5 / 3.6; }
  @media (max-width: 700px) {
    .detail-gallery { grid-template-columns: 1fr; }
    .detail-gallery .g-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
    .detail-gallery.two-col { grid-template-columns: 1fr; }
  }

  /* ---------- room-by-room gallery ---------- */
  .room-gallery { max-width: 1120px; margin: 28px auto 0; padding: 0 clamp(20px, 5vw, 56px); }
  .room-hero { width: 100%; aspect-ratio: 16 / 7.5; overflow: hidden; margin-bottom: 8px; }
  .room-hero img { width: 100%; height: 100%; object-fit: cover; }
  .room-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .room-grid figure { margin: 0; position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
  .room-grid img { width: 100%; height: 100%; object-fit: cover; }
  .room-grid figcaption {
    position: absolute; left: 7px; bottom: 7px;
    background: rgba(15, 13, 20, 0.72); color: #fdf8ee;
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
    padding: 4px 7px; border-radius: 2px;
  }
  @media (max-width: 700px) { .room-grid { grid-template-columns: repeat(2, 1fr); } }

  /* ---------- video card (links out to YouTube) ---------- */
  .video-card {
    display: block;
    position: relative;
    margin-top: 18px;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--line);
  }
  .video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
  .video-card:hover img { transform: scale(1.03); }
  .video-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(15,13,20,0.65) 0%, rgba(15,13,20,0.05) 55%);
  }
  .video-card .play-ring {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 62px; height: 62px; border-radius: 50%;
    background: rgba(253, 248, 238, 0.94);
    display: flex; align-items: center; justify-content: center;
    z-index: 2; transition: transform 0.18s ease;
  }
  .video-card:hover .play-ring { transform: translate(-50%, -50%) scale(1.08); }
  .video-card .play-ring svg { margin-left: 3px; }
  .video-card .video-label {
    position: absolute; left: 18px; bottom: 14px; z-index: 2;
    color: #fdf8ee;
  }
  .video-card .video-label b { display: block; font-family: 'Zilla Slab', serif; font-size: 1.02rem; }
  .video-card .video-label span { font-size: 0.76rem; opacity: 0.85; }

  .detail-body { max-width: 760px; margin: 0 auto; padding: 44px clamp(20px, 5vw, 56px) 110px; }
  .detail-body h1 { font-size: clamp(2rem, 4.2vw, 2.7rem); margin-top: 10px; }
  .detail-lede { font-size: 1.08rem; color: var(--ink-soft); margin-top: 20px; line-height: 1.75; }
  .detail-facts-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
  .detail-section-title {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--teal); margin-top: 44px; margin-bottom: 16px;
  }
  .detail-amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; list-style: none; padding: 0; margin: 0; }
  .detail-amenities li { padding-left: 20px; position: relative; font-size: 0.94rem; color: var(--ink-soft); }
  .detail-amenities li::before {
    content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px;
    background: var(--teal); border-radius: 50%;
  }
  .detail-ctas {
    margin-top: 46px; padding-top: 30px; border-top: 1px solid var(--line);
    display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  }
  .detail-ctas .wa-cta { background: #25d366; color: #08341f; border-color: transparent; }
  .detail-ctas .wa-cta:hover { background: #1ebd5a; }

  /* ---------- article / guide panels ---------- */
  .article-body { max-width: 700px; margin: 0 auto; padding: 44px clamp(20px, 5vw, 56px) 110px; }
  .article-body h1 { font-size: clamp(1.9rem, 4vw, 2.5rem); margin-top: 10px; }
  .article-sub { font-size: 1.08rem; color: var(--ink-soft); font-style: italic; margin-top: 14px; line-height: 1.6; }
  .article-cover { max-width: 1120px; margin: 28px auto 0; padding: 0 clamp(20px, 5vw, 56px); }
  .article-cover img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
  .article-body p { margin-top: 16px; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; }
  .article-body p:first-of-type { margin-top: 28px; }
  .article-body h3 {
    font-size: 1.28rem; margin-top: 38px; margin-bottom: 4px; font-family: 'Zilla Slab', serif; color: var(--ink);
  }
  .article-body ul { margin-top: 12px; padding-left: 20px; color: var(--ink-soft); display: flex; flex-direction: column; gap: 8px; }
  .article-body li { font-size: 0.98rem; line-height: 1.6; }
  .article-body strong { color: var(--ink); }
  .poi-list { list-style: none; margin: 12px 0 0; padding: 0; border-top: 1px solid var(--line); }
  .poi-list li { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .poi-list .poi-name { font-size: 0.94rem; color: var(--ink); }
  .poi-list .poi-name small { display: block; font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; }
  .poi-list a { font-size: 0.8rem; font-weight: 700; color: var(--teal); text-decoration: none; white-space: nowrap; }
  .poi-list a:hover { text-decoration: underline; }

  .article-lead-figures {
    display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
    max-width: 700px; margin: 32px auto 0; padding: 0 clamp(20px, 5vw, 56px);
  }
  .article-lead-figures figure { margin: 0; text-align: center; }
  .article-lead-figures img { border-radius: 2px; display: block; }
  .article-lead-figures figcaption { margin-top: 8px; font-size: 0.74rem; color: var(--ink-soft); max-width: 200px; }
  .article-lead-figures .dama img { width: 190px; }
  .article-lead-figures .town img { width: 260px; height: 190px; object-fit: cover; }

  /* ---------- whatsapp widget ---------- */
  .wa-fab {
    position: fixed; right: 20px; bottom: 20px; z-index: 150;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.45);
    transition: transform 0.18s ease;
  }
  .wa-fab:hover { transform: scale(1.06); }
  .wa-fab:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
  .wa-panel {
    position: fixed; right: 20px; bottom: 90px; z-index: 150;
    width: min(350px, calc(100vw - 40px));
    max-height: min(66vh, 560px);
    background: var(--paper-raised);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    overflow: hidden;
  }
  .wa-panel.open { display: flex; }
  .wa-head { background: #075e54; color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
  .wa-head .wa-avatar {
    width: 36px; height: 36px; border-radius: 50%; background: #128c7e;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .wa-head b { display: block; font-size: 0.92rem; }
  .wa-head span { font-size: 0.72rem; opacity: 0.82; }
  .wa-head .wa-close { margin-left: auto; background: none; border: none; color: #fff; opacity: 0.8; cursor: pointer; font-size: 1.1rem; line-height: 1; padding: 4px; }
  .wa-head .wa-close:hover { opacity: 1; }
  .wa-body {
    padding: 16px; overflow-y: auto; flex: 1;
    display: flex; flex-direction: column; gap: 10px;
    background: color-mix(in srgb, var(--teal) 7%, var(--paper));
  }
  .wa-bubble {
    background: var(--paper-raised); border: 1px solid var(--line);
    border-radius: 10px; border-top-left-radius: 2px;
    padding: 10px 13px; font-size: 0.86rem; line-height: 1.55;
    max-width: 90%; align-self: flex-start;
  }
  .wa-bubble.user {
    background: color-mix(in srgb, var(--teal) 22%, var(--paper-raised));
    border-color: transparent; align-self: flex-end;
    border-radius: 10px; border-top-right-radius: 2px;
  }
  .wa-quickreplies, .wa-picker { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 12px; background: color-mix(in srgb, var(--teal) 7%, var(--paper)); }
  .wa-quickreplies[hidden], .wa-picker[hidden] { display: none; }
  .wa-switch { padding: 0 16px 8px; background: color-mix(in srgb, var(--teal) 7%, var(--paper)); }
  .wa-switch[hidden] { display: none; }
  .wa-switch button {
    appearance: none; background: none; border: none; padding: 0; cursor: pointer;
    font-family: 'Archivo', sans-serif; font-size: 0.7rem; font-weight: 700; color: var(--ink-soft);
    text-decoration: underline; text-underline-offset: 2px;
  }
  .wa-chip {
    font-family: 'Archivo', sans-serif; font-size: 0.76rem; font-weight: 600;
    padding: 7px 12px; border: 1px solid var(--teal); color: var(--teal-deep);
    background: var(--paper-raised); border-radius: 16px; cursor: pointer;
    transition: background 0.15s ease;
  }
  .wa-chip:hover:not(:disabled) { background: color-mix(in srgb, var(--teal) 16%, transparent); }
  .wa-chip:disabled { opacity: 0.4; cursor: default; }
  .wa-chip.wa-chip-property { border-color: var(--rust); color: var(--rust-deep); }
  .wa-chip.wa-chip-property:hover { background: color-mix(in srgb, var(--rust) 14%, transparent); }
  .wa-footer { padding: 12px 16px; border-top: 1px solid var(--line); background: var(--paper-raised); }
  .wa-footer .btn { width: 100%; justify-content: center; background: #25d366; color: #08341f; }
  .wa-footer .btn:hover { background: #1ebd5a; }
  .wa-note { font-size: 0.68rem; color: var(--ink-soft); text-align: center; margin-top: 8px; }
  @media (max-width: 480px) {
    .wa-panel { right: 12px; left: 12px; width: auto; bottom: 84px; }
    .wa-fab { right: 16px; bottom: 16px; }
  }

  /* ---------- standalone-page override for property/guide templates ----------
     The panels above were designed as same-page :target overlays. On real
     WordPress single-property.php / single.php pages they render as normal,
     always-visible page content instead. */
  body.single-property .detail-panel,
  body.single .detail-panel {
    display: block;
    position: static;
    z-index: auto;
    background: transparent;
    overflow-y: visible;
    animation: none;
  }

  /* ---------- blog / guides listing (archive.php, page-blog.php) ---------- */
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
  .blog-card { display: flex; flex-direction: column; background: var(--paper-raised); border: 1px solid var(--line); text-decoration: none; color: inherit; transition: transform 0.15s ease, border-color 0.15s ease; }
  .blog-card:hover { transform: translateY(-2px); border-color: var(--teal); }
  .blog-card .blog-photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper); }
  .blog-card .blog-photo img { width: 100%; height: 100%; object-fit: cover; }
  .blog-card .blog-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
  .blog-card h3 { font-size: 1.1rem; }
  .blog-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; flex: 1; }
  @media (max-width: 880px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

  /* ---------- generic page fallback ---------- */
  .page-body { max-width: 760px; margin: 0 auto; padding: 80px clamp(20px, 5vw, 56px) 110px; }
  .page-body h1 { font-size: clamp(2rem, 4vw, 2.6rem); }
  .page-body .article-body { max-width: none; padding: 0; margin-top: 24px; }
