:root {
    --bg: #ece5dd;
    --bg-soft: #f4efea;
    --card: rgba(255,255,255,0.92);
    --text: #402f22;
    --muted: #8c745f;
    --accent: #9b7b63;
    --accent-dark: #6f5645;
    --gold: #d6a53b;
    --line: #e4d8cd;
    --success: #2e7d32;
    --error: #b3261e;
    --blocked: #c96a45;
    --free: #78996d;
    --shadow: 0 18px 40px rgba(73, 50, 32, 0.08);
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.7), transparent 28%),
        linear-gradient(180deg, #e7dfd7 0%, var(--bg) 100%);
}
.site-shell { min-height: 100vh; }
.top-brand {
    display: flex;
    justify-content: center;
    padding: 26px 20px 8px;
}
.brand-logo, .admin-logo {
    width: min(100%, 520px);
    height: auto;
    display: block;
}
.admin-logo { width: min(100%, 360px); }
.admin-logo-wrap { display: flex; justify-content: center; margin-bottom: 14px; }
.admin-logo-wrap.left { justify-content: flex-start; }
.site { max-width: 1320px; margin: 0 auto; padding: 14px 24px 30px; }
.site.narrow { max-width: 620px; }
.hero {
    display: grid;m    gap: 28px;
    align-items: stretch;
    margin-bottom: 22px;
    width: 90%;
    margin: 0 auto;

}
.hero.compact { grid-template-columns: 1fr auto; align-items: center; }
.hero-copy, .hero-card, .card, .intro-card {
    background: var(--card);
    border: 1px solid rgba(212,197,184,0.9);
    border-radius: 26px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(4px);
    width:100%;
    margin: 0 auto;

}
.hero-copy { padding: 28px; }
.hero-card, .card, .intro-card { padding: 24px; }
.eyebrow {
    margin: 0 0 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
    font-size: 12px;
}
h1, h2, h3, h4 {
    font-weight: 400;
    letter-spacing: .06em;
}
h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--accent);
    margin: 0 0 12px;
}
h2 { margin-top: 0; color: var(--accent-dark); }
h4 { margin: 0 0 10px; font-size: 1rem; color: var(--accent-dark); }
.lede, .intro-card p, .room-calendar-head p, .metric span, .notice, .footer, input, select, textarea, button, table, .price-box, .booking-form label span, .month-head span {
    font-family: Arial, Helvetica, sans-serif;
}
.lede {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 60ch;
    line-height: 1.6;
}
.intro-card { margin-bottom: 22px; }
.intro-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.metric {
    display: flex; justify-content: space-between; gap: 20px;
    padding: 11px 0; border-bottom: 1px solid var(--line);
}
.metric:last-child { border-bottom: 0; }
.metric strong { color: var(--accent-dark); font-size: 1.18rem; }
.legend { display: flex; gap: 18px; padding-top: 16px; color: var(--muted); flex-wrap: wrap; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.dot.free { background: var(--free); }
.dot.blocked { background: var(--blocked); }

.layout {
display: grid;
 gap: 24px;
  align-items: start;
width: 90%;
    margin: 0 auto;
   }

.booking-form label { display: block; margin-bottom: 14px; }
.booking-form label span { display: block; margin-bottom: 8px; font-weight: 600; color: var(--accent-dark); }
.grid.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, select, textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d8cabd;
    border-radius: 16px;
    background: rgba(255,255,255,0.96);
    color: var(--text);
    font-size: 15px;
}
textarea { resize: vertical; min-height: 120px; }
.checkbox { display: grid !important; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; }
.checkbox input { margin-top: 3px; }
.honeypot { position: absolute; left: -10000px; opacity: 0; }
.btn-primary, .btn-secondary, .mini-btn {
    appearance: none;
    border: 0;
    border-radius: 16px;
    padding: 14px 20px;
    background: linear-gradient(180deg, #ac8b72 0%, var(--accent-dark) 100%);
    color: #fff;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(112, 85, 65, 0.2);
}
.btn-primary:hover, .btn-secondary:hover, .mini-btn:hover { filter: brightness(0.96); }
.mini-btn { padding: 8px 10px; font-size: 0.9rem; margin-right: 6px; }
.mini-btn.danger { background: linear-gradient(180deg, #bd6b53 0%, #9f4733 100%); }
.notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.92);
}
.notice.success { border-color: #b8ddba; color: var(--success); }
.notice.error { border-color: #efb0ab; color: var(--error); }
.price-box {
    background: linear-gradient(180deg, #fbf7f2 0%, #f6efe8 100%);
    border: 1px dashed #dccabc;
    border-radius: 18px;
    padding: 14px;
    margin-bottom: 16px;
    color: var(--muted);
    line-height: 1.6;
}
.calendar-stack { display: grid; gap: 22px; }
.room-calendar { border-top: 1px solid var(--line); padding-top: 20px; }
.room-calendar:first-child { border-top: 0; padding-top: 0; }
.room-calendar-head { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; flex-wrap: wrap; margin-bottom: 12px; }
.room-calendar-head p { margin: 0; color: var(--muted); }
.calendar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.month-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
    background: linear-gradient(180deg, #fffdfa 0%, #faf4ee 100%);
}
.month-head, .month-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.month-head span { font-size: .78rem; color: var(--muted); text-align: center; }
.day {
    aspect-ratio: 1;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .92rem;
    border: 1px solid var(--line);
}
.day.free { background: #eef6ea; color: #3c6844; }
.day.blocked { background: #fff0e8; color: #9d4b2f; }
.day.past { background: #f4efea; color: #a49487; }
.day.empty { border: 0; background: transparent; }
.footer { text-align: center; color: var(--muted); padding: 16px 12px 0; }
.footer a { color: var(--accent-dark); }
.table-wrap { overflow: auto; }
.booking-table { width: 100%; border-collapse: collapse; font-family: Arial, Helvetica, sans-serif; }
.booking-table th, .booking-table td { border-bottom: 1px solid var(--line); padding: 12px 10px; text-align: left; vertical-align: top; }
.booking-table th { color: var(--muted); font-size: .9rem; }
.status { display: inline-block; padding: 6px 10px; border-radius: 999px; font-size: .85rem; background: #eee; font-family: Arial, Helvetica, sans-serif; }
.status-confirmed { background: #e7f6ea; color: #216a34; }
.status-cancelled { background: #fbe9e7; color: #9b2c20; }
.status-pending { background: #fff7e0; color: #8a6a00; }
.inline-form { display: flex; flex-wrap: wrap; gap: 8px; }
.message-row td { background: #fcfaf7; color: var(--muted); }
@media (max-width: 1100px) {
    .hero, .layout, .calendar-grid, .grid.two { grid-template-columns: 1fr; }
    .brand-logo { width: min(100%, 430px); }
}<br>
.card .form-card { width: 100%; }