/* =============================================================
   BULL'S HEAD HOTEL — Youlgrave, Derbyshire Peak District
   Re-craft 2026. Warm stone / amber / charcoal pub palette.
   Mobile-first. System fonts. Zero JS, zero CDN.
   ============================================================= */

/* ---------- RESET --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, picture, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- DESIGN TOKENS ------------------------------------- */
:root {
  /* Palette — Peak District pub: warm stone, deep amber, charcoal, cream */
  --stone:        #f4ede1;   /* warm ivory page background */
  --stone-soft:   #faf6ef;   /* card background */
  --stone-mid:    #e8ddc8;   /* borders / hairlines */
  --stone-deep:   #d4c4a5;   /* dividers */
  --amber:        #b87c2e;   /* primary accent — real-ale amber */
  --amber-dark:   #8a5c1a;   /* hover / darker amber */
  --amber-pale:   #d4a054;   /* light amber highlight */
  --charcoal:     #231f1a;   /* headings / near-black */
  --ink:          #1a1712;   /* deepest black */
  --bark:         #4a3728;   /* dark wood brown */
  --bark-mid:     #705540;   /* mid wood */
  --muted:        #6b5e50;   /* secondary text */
  --cream:        #fff9f2;   /* pure white with warmth */

  /* Header dark state */
  --header-bg:    rgba(244, 237, 225, 0.97);
  --header-bg-scroll: rgba(35, 31, 26, 0.96);

  /* Type scale */
  --serif: Georgia, "Iowan Old Style", "Hoefler Text", "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --max-w:    1180px;
  --gutter:   clamp(1.25rem, 5vw, 2.5rem);
  --radius:   3px;

  /* Transitions */
  --ease: cubic-bezier(.22, .68, .3, 1);
}

/* ---------- BASE ---------------------------------------------- */
html, body {
  background: var(--stone);
  color: var(--charcoal);
}
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.16;
  letter-spacing: .01em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3.8vw, 2.4rem); }
h3 {
  font-size: 1.15rem;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bark);
}
h4 {
  font-size: .95rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
}
h5 {
  font-size: .82rem;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--amber-pale);
}

p { margin: 0 0 1em; }
a { color: var(--amber-dark); text-decoration: underline; text-decoration-thickness: 1px;
    text-underline-offset: 3px; transition: color .15s var(--ease); }
a:hover { color: var(--ink); }
ul, ol { padding-left: 1.4rem; }
li { margin: .2rem 0; }
hr { border: 0; height: 1px; background: var(--stone-deep); margin: 2.5rem 0; }
::selection { background: var(--amber-pale); color: var(--ink); }

/* ---------- LAYOUT -------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--tight { padding: clamp(2rem, 4.5vw, 3.5rem) 0; }
.section--dark { background: var(--charcoal); color: #d5c9b8; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--stone); }
.section--dark a { color: var(--amber-pale); }
.section--warm { background: var(--stone-soft); }
.section--bark { background: var(--bark); color: #e8d9c4; }
.section--bark h2, .section--bark h3, .section--bark h4 { color: var(--stone); }

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.eyebrow::before { content: "— "; }

/* ---------- SITE HEADER --------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--stone-mid);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
}

/* Brand / logo */
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand__crest {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--amber);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--stone-soft);
  flex: 0 0 auto;
}
.brand__crest svg { width: 22px; height: 22px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  letter-spacing: .04em;
  white-space: nowrap;
}
.brand__sub {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  white-space: nowrap;
}

/* Burger (CSS-only checkbox hack) */
.burger-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.burger-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 12px;
  cursor: pointer;
  background: var(--stone-soft);
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius);
  flex: 0 0 auto;
  transition: background .2s var(--ease);
}
.burger-label:hover { background: var(--stone-deep); }
.burger-label::before,
.burger-label::after,
.burger-label span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .28s var(--ease), opacity .2s var(--ease), width .2s;
  pointer-events: none;
}
.burger-label::before,
.burger-label::after { content: ""; }
.burger-toggle:checked ~ .burger-label::before {
  transform: translateY(7px) rotate(45deg);
}
.burger-toggle:checked ~ .burger-label::after {
  transform: translateY(-7px) rotate(-45deg);
}
.burger-toggle:checked ~ .burger-label span { opacity: 0; }

/* Navigation */
.main-nav {
  display: none;
  background: var(--stone);
  border-bottom: 1px solid var(--stone-mid);
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  padding: 1.25rem var(--gutter) 1.75rem;
  box-shadow: 0 16px 40px -12px rgba(26,23,18,.18);
}
.main-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.main-nav a {
  display: block;
  font-family: var(--sans);
  font-size: .88rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: .9rem 0;
  border-bottom: 1px solid var(--stone-mid);
  transition: color .18s var(--ease), padding-left .18s var(--ease);
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--amber);
  padding-left: .5rem;
}
.main-nav .nav-book {
  display: inline-block;
  background: var(--amber);
  color: var(--cream) !important;
  padding: .75rem 1.2rem !important;
  border-radius: var(--radius);
  margin-top: 1rem;
  letter-spacing: .18em !important;
  transition: background .2s var(--ease) !important;
  text-align: center;
  border-bottom: none !important;
}
.main-nav .nav-book:hover {
  background: var(--amber-dark) !important;
  padding-left: 1.2rem !important;
}

.burger-toggle:checked ~ .main-nav { display: block; }

/* Desktop nav */
@media (min-width: 900px) {
  .burger-label { display: none; }
  .main-nav {
    display: block !important;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }
  .main-nav ul {
    flex-direction: row;
    gap: 0;
    align-items: center;
  }
  .main-nav a {
    padding: .4rem .75rem;
    border-bottom: 2px solid transparent;
    font-size: .75rem;
    letter-spacing: .2em;
    white-space: nowrap;
    transition: color .18s var(--ease), border-color .18s var(--ease);
  }
  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    color: var(--amber-dark);
    border-bottom-color: var(--amber);
    padding-left: .75rem;
  }
  .main-nav .nav-book {
    margin-top: 0;
    margin-left: .5rem;
    padding: .5rem 1.1rem !important;
    border-bottom: none !important;
  }
  .main-nav .nav-book:hover {
    padding-left: 1.1rem !important;
  }
}

/* ---------- HERO ---------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--stone);
  padding: clamp(5rem, 15vw, 10rem) 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(26,23,18,.68) 0%,
    rgba(26,23,18,.45) 55%,
    rgba(74,55,40,.55) 100%
  );
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero .eyebrow { color: var(--amber-pale); }
.hero .eyebrow::before { content: "— "; }
.hero h1 {
  color: var(--stone);
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
  margin-bottom: 1.1rem;
}
.hero p.lead {
  color: #ede0cc;
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero__divider {
  width: 56px;
  height: 2px;
  background: var(--amber);
  margin: 1.2rem 0;
}

/* Inner page hero (shorter) */
.hero--inner {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.hero--inner h1 { font-size: clamp(2rem, 4.8vw, 3.2rem); }

/* ---------- BUTTONS ------------------------------------------- */
.btn {
  display: inline-block;
  padding: .9rem 2rem;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--stone); color: var(--ink); border-color: var(--stone); }
.btn--primary:hover { background: var(--amber-pale); border-color: var(--amber-pale); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--stone); border-color: rgba(244,237,225,.65); }
.btn--ghost:hover { background: var(--stone); color: var(--ink); border-color: var(--stone); }
.btn--amber { background: var(--amber); color: var(--cream); border-color: var(--amber); }
.btn--amber:hover { background: var(--amber-dark); border-color: var(--amber-dark); color: var(--cream); }
.btn--dark { background: var(--charcoal); color: var(--stone); border-color: var(--charcoal); }
.btn--dark:hover { background: var(--bark); border-color: var(--bark); }
.btn--outline { background: transparent; color: var(--amber-dark); border-color: var(--amber); }
.btn--outline:hover { background: var(--amber); color: var(--cream); }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- GRID & CARDS ------------------------------------- */
.grid { display: grid; gap: clamp(1.5rem, 3.5vw, 2.25rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--stone-soft);
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3.5vw, 2rem);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card--lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(26,23,18,.32);
}
.card h3 { margin-bottom: .6rem; }
.card p:last-child { margin-bottom: 0; }

/* Photo card */
.photo-card {
  background: var(--stone-soft);
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.photo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(26,23,18,.32);
}
.photo-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.photo-card__body { padding: 1.2rem 1.4rem 1.5rem; flex: 1; }
.photo-card__body h3 { margin-bottom: .4rem; }
.photo-card__body p { font-size: .95rem; color: var(--muted); margin: 0; }

/* ---------- SPLIT LAYOUT ------------------------------------- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse > :first-child { order: 2; }
  .split--60 { grid-template-columns: 1.25fr 1fr; }
  .split--60.split--reverse { grid-template-columns: 1fr 1.25fr; }
}
.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px -32px rgba(26,23,18,.42);
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split__media--tall {
  aspect-ratio: 4/5;
}
.split__media--square {
  aspect-ratio: 1/1;
}

/* ---------- MENU STYLES -------------------------------------- */
.menu-section { margin-bottom: 3rem; }
.menu-section:last-of-type { margin-bottom: 0; }
.menu-section__header {
  border-bottom: 1px solid var(--stone-deep);
  padding-bottom: .75rem;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.menu-section__header h2 {
  font-size: clamp(1.4rem, 3.2vw, 1.9rem);
}
.menu-list {
  list-style: none;
  padding: 0;
}
.menu-list__item {
  padding: .85rem 0;
  border-bottom: 1px dashed var(--stone-mid);
  line-height: 1.55;
  font-size: .98rem;
}
.menu-list__item:last-child { border-bottom: 0; }

/* Food hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.hours-table td {
  padding: .6rem 0;
  border-bottom: 1px dashed var(--stone-mid);
}
.hours-table td:first-child {
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--ink);
  width: 40%;
}
.hours-table td:last-child {
  color: var(--muted);
}
.hours-table tr:last-child td { border-bottom: 0; }

/* ---------- INFO / CONTACT BLOCKS ---------------------------- */
.info-block h3 { margin-bottom: .9rem; }
.info-block p, .info-block li { font-size: .98rem; line-height: 1.75; }
.info-block ul { padding-left: 0; list-style: none; }

.hours-list {
  list-style: none;
  padding: 0;
}
.hours-list__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .6rem 0;
  border-bottom: 1px dashed var(--stone-mid);
  gap: 1rem;
  font-size: .95rem;
}
.hours-list__row:last-child { border-bottom: 0; }
.hours-list__day {
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--ink);
  flex: 0 0 auto;
  min-width: 6.5rem;
}
.hours-list__time { color: var(--muted); }

/* ---------- GALLERY ------------------------------------------ */
.gallery-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.gallery-tile {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone-mid);
  position: relative;
}
.gallery-tile--wide { aspect-ratio: 4/3; grid-column: span 2; }
.gallery-tile--tall { aspect-ratio: 3/4; }
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  display: block;
}
.gallery-tile:hover img { transform: scale(1.04); }

/* ---------- ROOMS -------------------------------------------- */
.room-card {
  background: var(--stone-soft);
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius);
  overflow: hidden;
}
.room-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  background: var(--stone-mid);
}
.room-card__body { padding: 1.4rem 1.6rem 1.8rem; }
.room-card__status {
  display: inline-block;
  background: var(--amber-pale);
  color: var(--ink);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: var(--radius);
  margin-bottom: .9rem;
}

/* ---------- EVENTS ------------------------------------------- */
.event-card {
  background: var(--stone-soft);
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius);
  padding: 1.75rem 1.9rem;
  border-left: 3px solid var(--amber);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -16px rgba(26,23,18,.28);
}
.event-card__when {
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .6rem;
  font-family: var(--sans);
  font-weight: 600;
}
.event-card h2 {
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  margin-bottom: .7rem;
}
.event-card p:last-child { margin-bottom: 0; }

/* ---------- BOOKING PAGE ------------------------------------- */
.booking-hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px -24px rgba(26,23,18,.38);
}
.booking-notice {
  background: var(--stone-soft);
  border: 1px solid var(--stone-mid);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 1.4rem 1.7rem;
}
.booking-notice p:last-child { margin-bottom: 0; }

/* ---------- FOOTER ------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: #c2b5a4;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 0;
}
.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem;
}
@media (min-width: 680px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
.site-footer h5 {
  color: var(--amber-pale);
  margin-bottom: 1rem;
}
.site-footer p, .site-footer address {
  font-size: .93rem;
  line-height: 1.78;
  color: #c2b5a4;
  font-style: normal;
}
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { padding: .14rem 0; font-size: .93rem; }
.site-footer a { color: #ddd0be; text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease); }
.site-footer a:hover { color: var(--amber-pale); border-bottom-color: var(--amber); }
.site-footer__brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--stone);
  margin-bottom: .4rem;
}
.site-footer__tagline {
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.2rem 0;
  font-size: .8rem;
  color: #6a5e50;
  letter-spacing: .04em;
  text-align: center;
}

/* Social icons (inline SVG) */
.social-links { display: flex; gap: .75rem; margin-top: .5rem; }
.social-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: #c2b5a4;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255,255,255,.15) !important;
}
.social-link:hover {
  background: var(--amber);
  border-color: var(--amber) !important;
  color: var(--cream) !important;
}
.social-link svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- ORNAMENT / DIVIDER ------------------------------ */
.ornament {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: var(--amber);
  margin: 0 auto 2rem;
}
.ornament--center { justify-content: center; }
.ornament::before, .ornament::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--stone-deep), transparent);
  flex: 1;
  max-width: 100px;
}
.ornament__diamond {
  width: 7px; height: 7px;
  background: var(--amber);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

/* ---------- UTILITIES --------------------------------------- */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.2rem); line-height: 1.72; color: var(--muted); }
.on-dark { color: var(--stone); }
.on-dark.lead { color: #d9ccba; }
.narrow { max-width: 680px; }
.narrow--sm { max-width: 500px; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-0 { margin-bottom: 0; }
.space { height: 1.5rem; }
.space-lg { height: 3rem; }

main { display: block; }

/* ---------- PAGE-SPECIFIC HERO BACKGROUNDS ----------------- */
.hero--home   { background-image: none; }
.hero--about  { background-image: none; }
.hero--menu   { background-image: none; }
.hero--rooms  { background-image: none; }
.hero--events { background-image: none; }
.hero--book   { background-image: none; }
.hero--gallery { background-image: none; }

/* Background images set via inline style on .hero__bg for each page */

/* ---------- NOTICE BANNER ---------------------------------- */
.notice-bar {
  background: var(--amber);
  color: var(--cream);
  text-align: center;
  padding: .65rem var(--gutter);
  font-size: .84rem;
  letter-spacing: .06em;
}
.notice-bar strong { font-weight: 700; }

/* ---------- PRINT ------------------------------------------ */
@media print {
  .site-header, .site-footer, .burger-label, .btn { display: none; }
  body { background: white; color: black; font-size: 12pt; }
  .hero { padding: 1rem 0; }
  .hero__bg, .hero__overlay { display: none; }
  .hero h1 { color: black; text-shadow: none; }
}
