/* Prousty Hotel — styles. Plain CSS, no build step. */
:root {
  --brand: #7c2d12;        /* terracotta */
  --brand-600: #9a3412;
  --brand-50: #fdf4ef;
  --ink: #1c1917;
  --muted: #6b625b;
  --line: #e7e0d8;
  --bg: #fbf9f6;
  --card: #ffffff;
  --gold: #b08537;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(40, 20, 10, .08);
  --max: 1140px;
  --font: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font); line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 .5em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
a { color: var(--brand-600); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: 20px; }
.muted { color: var(--muted); }
.center { text-align: center; }
.narrow { max-width: 760px; }
.section { padding: clamp(2.5rem, 6vw, 5rem) 20px; }
.eyebrow { letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; color: var(--gold); font-weight: 600; }
.lede { font-size: 1.2rem; color: #44403c; }
.note { color: var(--muted); font-size: .9rem; margin-top: 1.5rem; }

/* Skip link */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 8px; top: 8px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251,249,246,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; padding-block: 12px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark { width: 38px; height: 38px; border-radius: 10px; background: var(--brand); color: #fff; display: grid; place-items: center; font-family: var(--font); font-size: 1.3rem; }
.brand-text { display: flex; flex-direction: column; font-family: var(--font); font-size: 1.15rem; line-height: 1.1; }
.brand-text small { font-family: var(--sans); font-weight: 400; font-size: .68rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.nav { display: flex; gap: 1.1rem; margin-left: auto; flex-wrap: wrap; }
.nav a { color: #44403c; font-size: .95rem; font-weight: 500; }
.nav a[aria-current="page"] { color: var(--brand); }
.nav-cta { margin-left: .5rem; }
@media (max-width: 860px) { .nav { display: none; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .65rem 1.2rem; border-radius: 999px; font-weight: 600; font-size: .95rem; cursor: pointer; border: 1.5px solid transparent; transition: transform .08s ease, background .15s ease; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-lg { padding: .85rem 1.6rem; font-size: 1.05rem; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-600); color: #fff; }
.btn-outline { border-color: var(--brand); color: var(--brand); background: transparent; }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.28); color: #fff; }

/* Hero */
.hero { background-size: cover; background-position: center; color: #fff; }
.hero-inner { padding: clamp(4rem, 12vw, 8rem) 20px; max-width: 760px; }
.hero h1 { color: #fff; }
.hero .lede { color: #f5f5f4; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* Sections / grids */
.section-head { margin-bottom: 2rem; display: flex; align-items: end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.section-head p { margin: .3rem 0 0; max-width: 60ch; }
.link-more { font-weight: 600; white-space: nowrap; }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.feature-icon { font-size: 1.8rem; }
.feature h3 { margin: .5rem 0 .3rem; }

/* Cards */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.room-card { display: flex; flex-direction: column; }
.room-card-img img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .6rem; }
.card-body h3 { margin: 0; }
.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.chips li { background: var(--brand-50); color: var(--brand-600); border-radius: 999px; padding: .2rem .7rem; font-size: .78rem; font-weight: 600; }
.price-from { margin: .2rem 0; }
.price-from strong { font-size: 1.25rem; color: var(--ink); }
.card-actions { display: flex; gap: .6rem; margin-top: auto; }

/* Band CTA */
.band { background: linear-gradient(135deg, var(--brand), var(--brand-600)); color: #fff; }
.band h2 { color: #fff; }
.band .lede { color: #fde7da; }

/* Breadcrumb */
.breadcrumb { padding-top: 1rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0; font-size: .85rem; color: var(--muted); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: .5rem; color: var(--line); }

/* Room detail */
.room-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 860px) { .room-detail { grid-template-columns: 1fr; } }
.room-detail-media img { border-radius: var(--radius); width: 100%; object-fit: cover; }
.spec { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.5rem; margin: 1.2rem 0; }
.spec div { border-bottom: 1px solid var(--line); padding-bottom: .4rem; }
.spec dt { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.spec dd { margin: 0; font-weight: 600; }

/* Lists */
.ticks { list-style: none; padding: 0; margin: 1rem 0; }
.ticks li { padding-left: 1.6rem; position: relative; margin-bottom: .5rem; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.ticks.cols { columns: 2; }
@media (max-width: 560px) { .ticks.cols { columns: 1; } }
.plain { list-style: none; padding: 0; margin: 0; }
.plain li { margin-bottom: .4rem; }

/* Amenities */
.amenity-grid { margin-top: 1rem; }
.amenity { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; display: flex; align-items: center; gap: .6rem; font-weight: 500; }
.amenity-icon { font-size: 1.4rem; }

/* Policies */
.policy-list div { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.policy-list dt { font-family: var(--font); font-size: 1.15rem; margin-bottom: .25rem; }
.policy-list dd { margin: 0; color: #44403c; }

/* FAQ */
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); margin-bottom: .75rem; padding: 0 1.2rem; }
.faq summary { cursor: pointer; font-weight: 600; padding: 1rem 0; font-family: var(--font); font-size: 1.1rem; }
.faq summary::-webkit-details-marker { color: var(--brand); }
.faq-a { padding-bottom: 1rem; color: #44403c; }

/* Booking form */
.book-form { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow); align-items: end; }
@media (max-width: 860px) { .book-form { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .book-form { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .3rem; }
.field label { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; }
.field input, .field select { padding: .6rem .7rem; border: 1.5px solid var(--line); border-radius: 10px; font-size: 1rem; background: #fff; }
.field input:focus, .field select:focus { outline: none; border-color: var(--brand); }
.field-submit .btn { width: 100%; }

/* Booking results */
.results-meta { margin: 1.5rem 0 1rem; }
.results { display: flex; flex-direction: column; gap: 1rem; }
.result-card { display: flex; justify-content: space-between; gap: 1.5rem; padding: 1.25rem; flex-wrap: wrap; }
.result-main h3 { margin: 0 0 .3rem; }
.result-main { flex: 1 1 320px; }
.avail { color: var(--brand-600); font-weight: 600; margin: .5rem 0 0; }
.result-cta { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; justify-content: center; }
.result-total { margin: 0; text-align: right; }
.result-total strong { display: block; font-size: 1.6rem; }
.pernight summary { cursor: pointer; color: var(--brand-600); font-size: .9rem; }
.alert { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; padding: 1rem 1.2rem; border-radius: var(--radius); margin-top: 1.5rem; }

/* AI / developer advert block */
.ai-advert { background: var(--brand-50); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ai-advert code { display: inline-block; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: .35rem .6rem; font-size: .85rem; word-break: break-all; color: var(--brand-600); }
.ai-advert p { max-width: 70ch; }

/* Footer */
.site-footer { background: var(--ink); color: #d6d3d1; margin-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding: 3rem 20px 2rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h3 { color: #fff; }
.site-footer h4 { color: #fff; margin: 0 0 .6rem; font-family: var(--sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer a { color: #e7e5e4; }
.site-footer address { font-style: normal; line-height: 1.8; }
.footer-bottom { border-top: 1px solid #3f3a36; padding: 1.2rem 20px; font-size: .85rem; }
.footer-bottom p { margin: .2rem 0; }
