@charset "UTF-8";
/* Gresham Arms theme. PageMotor 0.8.3b. Dark walnut hospitality palette,
   DM Serif Display (display) + Source Sans 3 (body/UI). Sign-painter / carved-relief visual language. */
/* GRT bridge: Design Options take priority, source design values fall back. */
:root {
  --font1: "Source Sans 3", sans-serif;
  --font2: "DM Serif Display", serif;
  --font3: "Source Sans 3", sans-serif;
  /* font-size literal (PM does not expose as design opt) */
  --font-size: 18px;
  --f1: 47px;
  --f2: 37px;
  --f3: 29px;
  --f4: 23px;
  --f5: 18px;
  --f6: 14px;
  --g1: 73px;
  --g2: 58px;
  --g3: 47px;
  --g4: 38px;
  --g5: 31px;
  --g6: 25px;
  --x1: 50px;
  --x2: 31px;
  --x3: 19px;
  --x4: 12px;
  --x5: 7px;
  --x6: 4px;
  --b1: 320px;
  --b2: 480px;
  --b3: 768px;
  --b4: 1200px;
  --b5: 1280px;
  --phi: 1.6180339887;
  --w-content: 672px;
  --w-total: 1200px;
  --gutter-full: 32px;
  --gutter-mobile: 20px;
  --bg1: rgb(31, 26, 20);
  --bg2: rgb(42, 37, 32);
  /* bg-deep: footer walnut, literal (not a Design Opt) */
  --bg-deep: #181311FF;
  --c1: rgb(245, 234, 208);
  --c2: rgb(184, 168, 138);
  --ca: rgb(201, 155, 74);
  /* secondary literal (PM does not expose as design opt) */
  --secondary: #7C2A1FFF;
  --border1: 1px solid #3A3128FF;
  --border2: 1px solid #4A3F33FF;
  --border3: 1px dashed #3A3128FF;
  /* Bridged font tokens — $_prefix, not exposed as Design Opt */
  --font-headline: "DM Serif Display", serif;
  --font-heading: "DM Serif Display", serif;
  --font-drop-cap: "DM Serif Display", serif;
  --font-caption: "Source Sans 3", sans-serif;
  --font-blockquote: "Source Sans 3", sans-serif;
  --font-impact: "DM Serif Display", serif;
  --font-byline: "Source Sans 3", sans-serif;
  --font-title: "DM Serif Display", Georgia, serif;
  --f-title: 23px;
  --f-byline: 14px;
  --g-title: 38px;
  --g-byline: 25px;
  --p-bleed-top: 50px;
  --p-bleed-bottom: 50px;
  --m-bleed-top: 0;
  --m-bleed-bottom: 0;
  --p-content-top: 50px;
  --p-content-bottom: 50px;
  --bleed-s: var(--bg2);
  --bleed-bg-l: var(--c1);
  --bleed-text-l: var(--bg1);
  --p-callout: 19px 31px;
  --p-button-x: 19px;
  --p-button-y: 12px;
  --b-input: 1px solid #4A3F33FF;
  --b-textarea: 1px solid #4A3F33FF;
  --b-select: 1px solid #4A3F33FF;
  --bg-callout: rgb(255, 255, 255);
  --bg-callout-alert: rgb(255, 255, 255);
  --bg-callout-note: rgb(255, 255, 255);
  --c-callout: #111111;
  --c-callout-alert: #111111;
  --c-callout-note: #111111;
  --bg-button: rgb(255, 255, 255);
  --bg-button-save: rgb(255, 255, 255);
  --bg-button-action: rgb(255, 255, 255);
  --bg-button-update: rgb(255, 255, 255);
  --bg-button-delete: rgb(124, 42, 31);
  --c-button: #111111;
  --c-button-save: #111111;
  --c-button-action: #111111;
  --c-button-update: #111111;
  --c-button-delete: #FFFFFF;
  --bg-highlight: rgb(201, 155, 74);
  --bg-pre: rgb(42, 37, 32);
  --c-pre: rgb(245, 234, 208);
  --bg-blockquote: transparent;
  --c-blockquote: rgb(245, 234, 208);
  --c-impact: rgb(201, 155, 74);
  --c-drop-cap: rgb(201, 155, 74);
  --c-caption: rgb(184, 168, 138);
  --c-byline: rgb(184, 168, 138);
  /* Auxiliary palette and rule tokens, not exposed as Design Options */
  --callout-default-bd: #C99B4AFF;
  --callout-alert-bd: #7C2A1FFF;
  --callout-note-bd: #4A3F33FF;
  --selection-bg: #C99B4AFF;
  --selection-fg: #1F1A14FF;
  /* Theme-level token for fluid section padding */
  --section-padding: calc(var(--x1) * var(--phi));
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  word-break: normal;
}

img, fieldset {
  border: 0;
}

abbr {
  text-decoration: none;
}

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

iframe, video, embed, object {
  display: block;
  max-width: 100%;
}

.left, .right, .center {
  display: block;
}

.center {
  float: none;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

button, input[type=submit] {
  cursor: pointer;
  overflow: visible;
}

/* Body and structural foundations */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c1);
  background-color: var(--bg1);
  font-weight: 400;
  overflow-x: hidden;
}

::selection {
  background: var(--selection-bg);
  color: var(--selection-fg);
}

.container {
  box-sizing: border-box;
  width: calc(100% - 2 * var(--gutter-mobile));
  max-width: var(--w-total);
  margin-inline: auto;
}
@media all and (min-width: 768px) {
  .container {
    width: calc(100% - 2 * var(--gutter-full));
  }
}
@media all and (min-width: 1200px) {
  .container {
    width: 100%;
    max-width: var(--w-total);
    margin-left: auto;
    margin-right: auto;
  }
}

.container-reading {
  max-width: var(--w-content);
}

.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.section-tight {
  padding-top: var(--x1);
  padding-bottom: var(--x1);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* Typography — DM Serif Display (display/headline) + Source Sans 3 (body/UI) */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 400;
  font-style: normal;
  color: var(--c1);
  margin-top: 0;
  margin-bottom: var(--x3);
}

h1 {
  font-size: var(--f1);
  line-height: var(--g1);
  margin-bottom: var(--x2);
}

h2 {
  font-size: var(--f2);
  line-height: var(--g2);
  margin-bottom: var(--x3);
}

h3 {
  font-size: var(--f3);
  line-height: var(--g3);
  margin-bottom: var(--x4);
}

h4 {
  font-size: var(--f4);
  line-height: var(--g4);
  margin-bottom: var(--x4);
}

p {
  margin-top: 0;
  margin-bottom: var(--x2);
  font-size: var(--f5);
  line-height: var(--g5);
}

a {
  color: var(--ca);
  text-decoration: underline;
  text-decoration-color: rgba(201, 155, 74, 0.45);
  text-underline-offset: 0.18em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}
a:hover, a:focus {
  color: var(--c1);
  text-decoration-color: var(--c1);
}
a:visited {
  color: var(--ca);
}

ul, ol {
  padding-left: var(--x2);
  margin-bottom: var(--x2);
}
ul li, ol li {
  margin-bottom: var(--x4);
  font-size: var(--f5);
  line-height: var(--g5);
}

address {
  font-style: normal;
  font-size: var(--f5);
  line-height: var(--g5);
  margin-bottom: var(--x2);
}

dl {
  margin-bottom: var(--x2);
}
dl dt {
  font-weight: 600;
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--x3);
  margin-bottom: var(--x6);
}
dl dd {
  margin-left: 0;
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c2);
  margin-bottom: var(--x4);
}

cite {
  display: block;
  margin-top: var(--x4);
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
}

/* Page Content — the Page_Container div that wraps each template's editable region */
.page-main {
  min-height: 40vh;
}

.page-content {
  padding-top: var(--p-content-top);
  padding-bottom: var(--p-content-bottom);
}

/* Forms — dark walnut field treatment */
form {
  margin-bottom: var(--x2);
}
form fieldset {
  border: var(--border1);
  padding: var(--x3);
  margin-bottom: var(--x2);
}
form legend {
  padding: 0 var(--x4);
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
}
form label {
  display: block;
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--x6);
  font-weight: 600;
}
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=url],
form input[type=search],
form input[type=number],
form input[type=date],
form input[type=time],
form input[type=password] {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: var(--bg2);
  color: var(--c1);
  border: var(--b-input);
  padding: var(--x4) var(--x4);
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: var(--g5);
  margin-bottom: var(--x2);
  transition: border-color 180ms ease, outline 180ms ease;
}
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=tel]:focus,
form input[type=url]:focus,
form input[type=search]:focus,
form input[type=number]:focus,
form input[type=date]:focus,
form input[type=time]:focus,
form input[type=password]:focus {
  outline: 2px solid var(--ca);
  outline-offset: 1px;
  border-color: var(--ca);
}
form textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: var(--bg2);
  color: var(--c1);
  border: var(--b-textarea);
  padding: var(--x4) var(--x4);
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: var(--g5);
  margin-bottom: var(--x2);
  resize: vertical;
}
form textarea:focus {
  outline: 2px solid var(--ca);
  outline-offset: 1px;
  border-color: var(--ca);
}
form select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: var(--bg2);
  color: var(--c1);
  border: var(--b-select);
  padding: var(--x4) var(--x4);
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: var(--g5);
  margin-bottom: var(--x2);
}
form select:focus {
  outline: 2px solid var(--ca);
  outline-offset: 1px;
  border-color: var(--ca);
}
form ::placeholder {
  color: var(--c2);
  opacity: 0.6;
}

/* Buttons — sign-painter register, uppercase letter-spaced labels */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--x5);
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--p-button-y) var(--p-button-x);
  background: var(--bg-button);
  color: var(--c-button);
  border: 1px solid var(--bg-button);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.button:hover, .button:focus {
  background: var(--c1);
  color: var(--bg1);
  border-color: var(--c1);
  text-decoration: none;
}
.button.action {
  background: var(--bg-button-action);
  color: var(--c-button-action);
  border-color: var(--bg-button-action);
}
.button.action:hover, .button.action:focus {
  background: var(--c1);
  color: var(--bg1);
  border-color: var(--c1);
}
.button.outline {
  background: transparent;
  color: var(--c1);
  border-color: var(--c1);
}
.button.outline:hover, .button.outline:focus {
  background: var(--c1);
  color: var(--bg1);
}
.button.save {
  background: var(--bg-button-save);
  color: var(--c-button-save);
  border-color: var(--bg-button-save);
}
.button.update {
  background: var(--bg-button-update);
  color: var(--c-button-update);
  border-color: var(--border1);
}
.button.delete {
  background: var(--bg-button-delete);
  color: var(--c-button-delete);
  border-color: var(--bg-button-delete);
}

/* Callouts — dark-palette walnut variants */
.callout {
  background: var(--bg-callout);
  color: var(--c-callout);
  border-left: 3px solid var(--callout-default-bd);
  padding: var(--p-callout);
  margin-bottom: var(--x2);
  font-size: var(--f5);
  line-height: var(--g5);
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.alert {
  background: var(--bg-callout-alert);
  color: var(--c-callout-alert);
  border-left-color: var(--callout-alert-bd);
}
.callout.note {
  background: var(--bg-callout-note);
  color: var(--c-callout-note);
  border-left-color: var(--callout-note-bd);
}

/* Formatting Primitives — all 10 types demonstrated in page.html */
/* Caption */
.caption {
  font-family: var(--font-caption);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c-caption);
  letter-spacing: 0.06em;
  margin-top: var(--x4);
  margin-bottom: var(--x2);
  display: block;
}

/* Small */
.small {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
}

/* Highlight */
.highlight {
  background: var(--bg-highlight);
  color: var(--bg1);
  padding: 0 0.15em;
  font-weight: 600;
}

/* Impact */
.impact {
  font-family: var(--font-impact);
  font-size: var(--f1);
  line-height: var(--g1);
  color: var(--c-impact);
  display: block;
  margin-bottom: var(--x4);
}

/* Drop cap */
.drop-cap::first-letter {
  font-family: var(--font-drop-cap);
  font-size: 4.4em;
  line-height: 0.85;
  float: left;
  margin: 0.05em 0.12em 0 0;
  color: var(--c-drop-cap);
}

/* Pop */
.pop {
  font-family: var(--font-headline);
  font-style: italic;
  color: var(--ca);
  font-size: 1.1em;
}

/* Blockquote */
blockquote {
  margin: 0 0 var(--x2);
  padding-left: var(--x2);
  border-left: 2px solid var(--ca);
  font-family: var(--font-blockquote);
  font-style: normal;
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--c1);
  background: var(--bg-blockquote);
}
blockquote > :last-child {
  margin-bottom: 0;
}
blockquote.pull {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: var(--f3);
  line-height: var(--g3);
  border-left: none;
  padding-left: 0;
  color: var(--c1);
}

/* Pre / code */
pre {
  background: var(--bg-pre);
  color: var(--c-pre);
  border-left: 3px solid var(--ca);
  padding: var(--x3);
  margin: 0 0 var(--x2);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: var(--f6);
  line-height: var(--g6);
  overflow-x: auto;
}
pre > code {
  background: transparent;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
}

code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.9em;
  background: var(--bg2);
  padding: 0 0.25em;
}

/* Breadcrumbs */
.breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--x3);
  display: flex;
  gap: var(--x4);
  flex-wrap: wrap;
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
}
.breadcrumbs li {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}
.breadcrumbs li::after {
  content: "·";
  margin-left: var(--x4);
  color: var(--c2);
}
.breadcrumbs li:last-child::after {
  display: none;
}
.breadcrumbs a {
  color: var(--c2);
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--ca);
}

/* Skip Link — accessibility, heritage palette */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--gutter-mobile);
  z-index: 200;
  background: var(--ca);
  color: var(--bg1);
  padding: var(--x4) var(--x3);
  font-family: var(--font1);
  font-size: var(--f6);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.skip-link:focus {
  top: var(--x4);
}

/* Visual Language — sign-painter / carved-relief marks (crest, tankard, horseshoe)
   All marks use solid filled paths only. No strokes, no filters, no feTurbulence. */
.vl-mark {
  fill: var(--ca);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Hero crest — upper-right corner reveal */
.hero-mark {
  width: 96px;
  height: 120px;
  position: absolute;
  top: var(--x2);
  right: var(--x2);
}
@media all and (min-width: 768px) {
  .hero-mark {
    top: var(--x1);
    right: var(--x1);
  }
}

/* Page-hero mark — interior pages */
.page-hero-mark {
  display: block;
  margin-bottom: var(--x3);
}

/* Room-row stamp (small crest, index rooms preview) */
.room-stamp {
  width: 24px;
  height: 30px;
  flex-shrink: 0;
}

/* Room detail stamp (rooms.html larger) */
.room-stamp-large {
  width: 36px;
  height: 46px;
  display: block;
  margin-bottom: var(--x4);
}

/* Section-heading ornament (horseshoe, plate / menu columns) */
.ornament {
  width: 28px;
  height: auto;
  margin-right: var(--x4);
}

/* Tankard mark (bar sections) */
.tankard-mark {
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: var(--x3);
}

/* Final CTA crest */
.final-cta-mark {
  display: block;
  width: 80px;
  height: 100px;
  margin: 0 auto var(--x3);
  animation: crest-pulse 4.6s ease-in-out infinite;
}

@keyframes crest-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px rgba(201, 155, 74, 0));
  }
  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 0 14px rgba(201, 155, 74, 0.32));
  }
}
@media (prefers-reduced-motion: reduce) {
  .final-cta-mark {
    animation: none;
  }
}
/* Horseshoe divider (inside final-cta, between sections) */
.horseshoe-divider {
  display: block;
  width: 64px;
  height: 36px;
  margin: var(--x2) auto;
}

/* Divider row horseshoe */
.divider-horseshoe {
  display: block;
  width: 64px;
  height: 38px;
  margin: 0 auto;
}

.divider-row {
  text-align: center;
  padding-top: var(--x3);
  padding-bottom: var(--x3);
}

/* Footer mark group */
.footer-mark-group {
  display: flex;
  align-items: center;
  gap: var(--x2);
  margin-bottom: var(--x2);
}

.footer-crest {
  width: 32px;
  height: 40px;
}

.footer-tankard {
  width: 26px;
  height: 26px;
}

.footer-horseshoe {
  width: 32px;
  height: 20px;
}

/* Wordmark mark */
.wordmark-mark {
  width: 28px;
  height: 36px;
  margin-right: var(--x5);
}

/* Wordmark — site name and mark in header */
.wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0;
  flex-shrink: 0;
}

.wordmark-text {
  font-family: var(--font-headline);
  font-size: var(--f4);
  line-height: 1;
  color: var(--c1);
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.wordmark-text .accent {
  color: var(--ca);
}

/* Header / nav (Pattern A, hamburger mobile) */
.site-header {
  padding-top: var(--x3);
  padding-bottom: var(--x3);
  background-color: var(--bg1);
  border-bottom: var(--border2);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--x2);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--x2);
}
.primary-nav .nav-link {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c2);
  padding: var(--x5) 0;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}
.primary-nav .nav-link:hover {
  color: var(--c1);
  border-bottom-color: var(--ca);
}
.primary-nav .nav-link[aria-current=page] {
  color: var(--c1);
  border-bottom-color: var(--ca);
}

.nav-cta {
  font-size: var(--f6);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--c2);
  padding: var(--x4) var(--x3);
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c2);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}
.nav-toggle:hover {
  border-color: var(--ca);
  color: var(--c1);
}

.mobile-nav {
  display: none;
  background: var(--bg2);
  border-bottom: var(--border2);
  padding: var(--x3) 0;
  z-index: 45;
}
.mobile-nav .container {
  display: flex;
  flex-direction: column;
  gap: var(--x3);
}
.mobile-nav .nav-link {
  font-family: var(--font1);
  font-size: var(--f5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c2);
  padding: var(--x5) 0;
}
.mobile-nav .nav-link:hover {
  color: var(--ca);
}
.mobile-nav.is-open {
  display: block;
}

@media all and (max-width: 767px) {
  .primary-nav {
    display: none;
  }
  .nav-toggle {
    display: inline-block;
  }
}
/* Kicker — classical small-caps with letter-spacing, heritage-editorial register */
.kicker {
  display: block;
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ca);
  margin-bottom: var(--x4);
  font-weight: 600;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: var(--x4);
  font-family: var(--font-headline);
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 400;
  color: var(--c1);
  margin-bottom: var(--x3);
}

/* Hero — full-bleed photograph, the inn at deep dusk */
.section.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .section.hero {
    min-height: 100vh;
  }
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 26, 20, 0.85) 0%, rgba(31, 26, 20, 0.35) 55%, rgba(31, 26, 20, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--x1) 0;
}

.hero-kicker {
  display: block;
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ca);
  margin-bottom: var(--x3);
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-headline);
  font-size: var(--f1);
  line-height: var(--g1);
  color: var(--c1);
  font-weight: 400;
  margin-bottom: var(--x3);
}
.hero-title em {
  font-style: italic;
  color: var(--ca);
}
@media all and (max-width: 480px) {
  .hero-title {
    font-size: var(--f2);
    line-height: var(--g2);
  }
}

.hero-actions {
  display: flex;
  gap: var(--x3);
  flex-wrap: wrap;
}

/* Thesis — 10% numerals block (8 rooms / 32 seats / 12 farms) */
.section.thesis {
  background: var(--bg1);
}

.thesis-numerals {
  margin-bottom: var(--x3);
}

.thesis-row {
  display: flex;
  align-items: baseline;
  gap: var(--x3);
  margin-bottom: var(--x3);
}
.thesis-row .impact {
  min-width: 3ch;
  margin-bottom: 0;
}
.thesis-row .caption {
  margin: 0;
  font-size: var(--f5);
  color: var(--c2);
}

.thesis-coda {
  max-width: var(--w-content);
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--c2);
}

/* Rooms Preview — home page editorial room list */
.section.rooms-preview {
  background: var(--bg2);
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x2);
}
@media all and (min-width: 768px) {
  .rooms-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--x1);
    align-items: start;
  }
}

.rooms-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.rooms-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.room-row {
  display: flex;
  align-items: flex-start;
  gap: var(--x3);
  padding: var(--x3) 0;
  border-bottom: var(--border1);
  margin-bottom: 0;
}
.room-row:first-child {
  border-top: var(--border1);
}

.room-row-info {
  flex: 1;
}

.room-title {
  font-family: var(--font-headline);
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--c1);
  margin-bottom: var(--x6);
  font-weight: 400;
}

.room-meta {
  display: block;
  font-size: var(--f6);
  color: var(--c2);
  letter-spacing: 0.04em;
}

.room-row-price {
  text-align: right;
  flex-shrink: 0;
}

.room-price {
  display: block;
  font-family: var(--font-headline);
  font-size: var(--f3);
  line-height: 1;
  color: var(--ca);
}

.room-price-meta {
  display: block;
  font-size: var(--f6);
  color: var(--c2);
  margin-top: var(--x6);
}

/* Bar — full-bleed video section (home and eat pages) */
.section.bar {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.bar-media {
  position: absolute;
  inset: 0;
}

.bar-poster,
.bar-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bar-video {
  z-index: 1;
}

.bar-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(31, 26, 20, 0.65);
}

.bar-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: var(--x1) 0;
}

.bar-title {
  font-family: var(--font-headline);
  font-size: var(--f2);
  line-height: var(--g2);
  color: var(--c1);
  max-width: var(--w-content);
  margin-bottom: var(--x3);
  font-weight: 400;
}

.bar-text {
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c2);
  max-width: var(--w-content);
}

/* Kitchen — chef portrait + text quote, asymmetric editorial grid */
.section.kitchen {
  background: var(--bg1);
}

.kitchen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x1);
}
@media all and (min-width: 768px) {
  .kitchen-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.kitchen-text h2 {
  font-family: var(--font-headline);
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 400;
  margin-bottom: var(--x3);
}

.kitchen-quote {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: var(--f3);
  line-height: var(--g3);
  color: var(--c1);
  margin-bottom: var(--x3);
}

.kitchen-media {
  position: relative;
}

.kitchen-poster,
.kitchen-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.kitchen-video {
  position: absolute;
  inset: 0;
  height: 100%;
}

/* Plate — editorial inset, hearth-ember dish accent */
.section.plate {
  background: var(--bg2);
}

.plate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x1);
}
@media all and (min-width: 768px) {
  .plate-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.plate-image {
  width: 100%;
  height: auto;
  display: block;
}

.plate-dish-name {
  font-family: var(--font-headline);
  font-style: italic;
  color: var(--ca);
}

/* Place — full-bleed lane photograph, location panel */
.section.place {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.place-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.place-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(31, 26, 20, 0.88) 0%, rgba(31, 26, 20, 0.4) 70%, rgba(31, 26, 20, 0.15) 100%);
}

.place-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--x1) 0;
}

.place-panel {
  max-width: var(--w-content);
}
.place-panel address {
  color: var(--c2);
  margin-bottom: var(--x3);
}

.place-meta dt {
  font-weight: 600;
  font-size: var(--f6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ca);
  margin-top: var(--x3);
  margin-bottom: var(--x6);
}
.place-meta dd {
  color: var(--c2);
  margin-left: 0;
  font-size: var(--f5);
  line-height: var(--g5);
  margin-bottom: var(--x4);
}

/* Owners — asymmetric editorial spread, home page */
.section.owners {
  background: var(--bg1);
}

.owners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x1);
}
@media all and (min-width: 768px) {
  .owners-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.owners-image {
  width: 100%;
  height: auto;
  display: block;
}

.owners-text h2 {
  font-family: var(--font-headline);
  font-size: var(--f2);
  font-weight: 400;
  line-height: var(--g2);
  margin-bottom: var(--x3);
}

/* Final CTA — conversion intent, subtle radial gold gradient, every template */
.section.final-cta {
  background: radial-gradient(ellipse at center, rgba(201, 155, 74, 0.14) 0%, rgba(201, 155, 74, 0.06) 40%, transparent 70%), var(--bg1);
  text-align: center;
}
.section.final-cta .container {
  max-width: var(--w-content);
}
.section.final-cta h2 {
  font-family: var(--font-headline);
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 400;
  margin-bottom: var(--x3);
}
.section.final-cta p {
  color: var(--c2);
  margin-bottom: var(--x3);
}

.final-cta-line {
  font-family: var(--font1);
  font-size: var(--f6);
  color: var(--c2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: var(--x3);
}

/* Rooms Page — alternating two-column editorial spreads, not a pricing grid */
.section.page-hero {
  background: var(--bg2);
  padding-top: var(--x1);
  padding-bottom: var(--x1);
}

.page-hero-lead {
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--c2);
  margin-bottom: 0;
}

.section.rooms-list-page {
  background: var(--bg1);
}

.room-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x1);
  margin-bottom: var(--x1);
  padding-bottom: var(--x1);
  border-bottom: var(--border1);
}
@media all and (min-width: 768px) {
  .room-detail {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
@media all and (min-width: 768px) {
  .room-detail.reverse .room-image {
    order: 2;
  }
  .room-detail.reverse .room-detail-text {
    order: 1;
  }
}
.room-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.room-image {
  width: 100%;
  height: auto;
  display: block;
}

.room-detail-text h2 {
  font-family: var(--font-headline);
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 400;
  margin-bottom: var(--x3);
}

.room-price-block {
  margin-bottom: var(--x3);
}
.room-price-block .impact {
  margin-bottom: var(--x6);
}

.room-features {
  list-style: disc;
  padding-left: var(--x2);
}
.room-features li {
  font-size: var(--f6);
  color: var(--c2);
  margin-bottom: var(--x6);
}

/* Menu Section — eat.html lunch / dinner chalkboard columns */
.section.menu-section {
  background: var(--bg2);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x1);
}
@media all and (min-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.menu-column h2 {
  display: flex;
  align-items: center;
  gap: var(--x4);
  font-family: var(--font-headline);
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 400;
  margin-bottom: var(--x3);
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-list li {
  padding: var(--x3) 0;
  border-bottom: var(--border1);
  margin-bottom: 0;
}
.menu-list li:first-child {
  border-top: var(--border1);
}

.dish-name {
  font-family: var(--font-headline);
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 400;
  color: var(--c1);
  margin-bottom: var(--x6);
}

.dish-meta {
  display: block;
  font-size: var(--f6);
  color: var(--c2);
  letter-spacing: 0.04em;
}

/* Hours Block — eat.html opening times */
.section.hours-block {
  background: var(--bg1);
}

/* About Page — spread, history, suppliers */
.section.about-spread {
  background: var(--bg2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x1);
}
@media all and (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-text h2 {
  font-family: var(--font-headline);
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 400;
  margin-bottom: var(--x3);
}

.section.about-history {
  background: var(--bg1);
}

.section.suppliers-strip {
  background: var(--bg2);
}
.section.suppliers-strip ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media all and (min-width: 768px) {
  .section.suppliers-strip ul {
    grid-template-columns: 1fr 1fr;
  }
}
.section.suppliers-strip ul li {
  padding: var(--x3) 0;
  border-bottom: var(--border1);
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c2);
  margin-bottom: 0;
}
.section.suppliers-strip ul li strong {
  display: block;
  color: var(--c1);
  font-weight: 600;
  margin-bottom: var(--x6);
}

/* Page Template — long-form essay / seasonal letter (page.html) */
body.page .page-content h2 {
  font-family: var(--font-headline);
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 400;
  margin-top: var(--x1);
  margin-bottom: var(--x3);
}
body.page .page-content h3 {
  font-family: var(--font-headline);
  font-size: var(--f3);
  line-height: var(--g3);
  font-weight: 400;
  margin-top: var(--x2);
  margin-bottom: var(--x3);
}

/* Contact Template */
.section.contact-section {
  background: var(--bg1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x1);
}
@media all and (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-aside h2 {
  font-family: var(--font-headline);
  font-size: var(--f3);
  line-height: var(--g3);
  font-weight: 400;
  margin-bottom: var(--x3);
}
.contact-aside h3 {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--ca);
  margin-top: var(--x3);
  margin-bottom: var(--x4);
}
.contact-aside address {
  color: var(--c2);
  margin-bottom: var(--x3);
}
.contact-aside p {
  color: var(--c2);
  font-size: var(--f5);
  line-height: var(--g5);
}

/* Error — 404 page */
body.error .page-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: var(--x1) var(--gutter-mobile);
}
body.error h1 {
  font-family: var(--font-headline);
  font-size: var(--f1);
  line-height: var(--g1);
  color: var(--ca);
  margin-bottom: var(--x3);
}
body.error p {
  color: var(--c2);
  font-size: var(--f4);
  line-height: var(--g4);
  max-width: var(--w-content);
  margin-bottom: var(--x3);
}

/* Footer — bg-deep walnut, mark group, three-column grid */
.site-footer {
  background-color: var(--bg-deep);
  padding-top: var(--x1);
  padding-bottom: var(--x1);
  border-top: var(--border1);
  color: var(--c1);
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x2);
}
.site-footer h3 {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--x4);
  color: var(--ca);
  font-weight: 600;
  margin-top: 0;
}
.site-footer p {
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c2);
  margin-bottom: 0;
}
.site-footer address {
  color: var(--c2);
  font-size: var(--f5);
  line-height: var(--g5);
  margin-bottom: 0;
}
.site-footer a {
  color: var(--c2);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.18em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}
.site-footer a:hover {
  text-decoration-color: var(--ca);
  color: var(--c1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x2);
}
@media all and (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-col h3 {
  margin-bottom: var(--x3);
}

.footer-fineprint {
  border-top: var(--border1);
  padding-top: var(--x3);
  display: flex;
  gap: var(--x2);
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: var(--f6);
  color: var(--c2);
  letter-spacing: 0.04em;
}

/* Bleed — utility for full-width sections that break the readability container */
.bleed {
  margin-left: calc(-1 * var(--gutter-mobile));
  margin-right: calc(-1 * var(--gutter-mobile));
}
@media all and (min-width: 768px) {
  .bleed {
    margin-left: calc(-1 * var(--gutter-full));
    margin-right: calc(-1 * var(--gutter-full));
  }
}

/* Reveal Animations — IntersectionObserver driven, prefers-reduced-motion safe */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 480ms ease, transform 480ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger-2 {
  transition-delay: 120ms;
}

.reveal-stagger-3 {
  transition-delay: 240ms;
}

.reveal-stagger-4 {
  transition-delay: 360ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ---- Brand-mark bitmap sizing overrides (added 2026-05-08) ----
   Original rules sized each mark to a tallish 80:100 aspect ratio for the
   custom SVG. The new ChatGPT-generated favicon.png is 1:1 square, so each
   <img> needs a square box to render cleanly. img.<class> selector beats
   the bare .<class> rule on specificity. */
img.wordmark-mark   { width: 36px;  height: 36px;  }
img.hero-mark       { width: 200px; height: 200px; }
img.page-hero-mark  { width: 160px; height: 160px; }
img.room-stamp      { width: 30px;  height: 30px;  }
img.room-stamp-large{ width: 46px;  height: 46px;  }
img.final-cta-mark  { width: 180px; height: 180px; }
img.footer-crest      { width: 56px;  height: 56px; }

/* ---- Pint / horseshoe bitmap rules (updated 2026-05-08, aspect-fit) ----
   The hand-crafted PNGs are taller than wide (~969x1139). Forcing a square
   box would squash them. Specify width only and let height auto-scale to
   preserve the natural aspect ratio. The page-hero variants use a slightly
   larger width to give the lockup detail room to read. */
img.tankard-mark      { width: 100px;  height: auto; max-height: 130px; display: block; }
img.horseshoe-divider { width: 100px;  height: auto; max-height: 130px; margin: 8rem auto 5rem; display: block; }
img.divider-horseshoe { width: 100px;  height: auto; max-height: 130px; margin: 8rem auto 5rem; display: block; }
img.footer-tankard    { width: 56px;  height: 56px; object-fit: contain; }
img.footer-horseshoe  { width: 56px;  height: 56px; object-fit: contain; }

img.ornament          { width: 40px; height: 40px; vertical-align: middle; }

/* When page-hero-mark / hero-mark / final-cta-mark <img> source is not square
   (e.g. the taller pint/horseshoe PNGs on eat/contact pages), preserve the
   aspect ratio inside the fixed square box rather than stretching. */
img.page-hero-mark, img.hero-mark, img.final-cta-mark {
    object-fit: contain;
}
