/* =============================================================
   FOX & HOUNDS HISTORIC HOTEL
   Rustic, warm, heritage-inspired stylesheet
   ============================================================= */

/* ---------- 1. DESIGN TOKENS ------------------------------- */
:root {
  /* Palette — deep forest greens, warm cream, terracotta, brass */
  --fh-ink:        #1F1B16;   /* near-black, warm */
  --fh-forest:     #2D3A2E;   /* deep forest */
  --fh-forest-2:   #3A4A3B;   /* lifted forest */
  --fh-moss:       #5A6B4F;   /* moss */
  --fh-cream:      #F5EFE3;   /* page cream */
  --fh-bone:       #EBE3D2;   /* paper / bone */
  --fh-stone:      #C9BFA8;   /* stone */
  --fh-terracotta: #A0522D;   /* terracotta accent */
  --fh-copper:     #B8754A;   /* copper highlight */
  --fh-brass:      #B89149;   /* brass / aged gold */
  --fh-rust:       #8B3A1F;   /* deep rust */
  --fh-text:       #2A241E;   /* body text */
  --fh-muted:      #6E665B;   /* muted body */

  /* Typography */
  --fh-display:    'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --fh-accent:     'Marcellus', 'Cinzel', Georgia, serif;
  --fh-body:       'Lora', 'EB Garamond', Georgia, serif;

  /* Spacing & layout */
  --fh-container:  1240px;
  --fh-container-narrow: 960px;
  --fh-gutter:     clamp(1.25rem, 3vw, 2.5rem);
  --fh-section-y:  clamp(4rem, 8vw, 7rem);
  --fh-radius:     2px;
  --fh-radius-lg:  4px;

  /* Effects */
  --fh-shadow-sm:  0 4px 12px rgba(31, 27, 22, 0.08);
  --fh-shadow-md:  0 10px 28px rgba(31, 27, 22, 0.12);
  --fh-shadow-lg:  0 22px 60px rgba(31, 27, 22, 0.22);
}

/* ---------- 2. RESET ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--fh-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--fh-text);
  background: var(--fh-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--fh-forest); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--fh-terracotta); }
button { font: inherit; cursor: pointer; }
p { margin: 0 0 1.2em; }

/* ---------- 3. TYPOGRAPHY ----------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fh-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--fh-ink);
  margin: 0 0 .5em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
h4 { font-size: 1.3rem; font-family: var(--fh-accent); letter-spacing: .04em; text-transform: uppercase; }

.fh-eyebrow {
  font-family: var(--fh-accent);
  font-size: .8rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--fh-terracotta);
  display: inline-block;
  margin-bottom: 1rem;
  position: relative;
}
.fh-eyebrow::before, .fh-eyebrow::after {
  content: ""; display: inline-block; width: 28px; height: 1px;
  background: currentColor; vertical-align: middle;
  margin: 0 .7em;
}
.fh-eyebrow.is-center { display: block; text-align: center; }

.fh-script {
  font-family: var(--fh-display);
  font-style: italic;
  font-weight: 400;
}

.fh-lead {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--fh-muted);
}

/* ---------- 4. LAYOUT --------------------------------------- */
.fh-container {
  max-width: var(--fh-container);
  margin: 0 auto;
  padding: 0 var(--fh-gutter);
}
.fh-container--narrow { max-width: var(--fh-container-narrow); }

.fh-section { padding: var(--fh-section-y) 0; }
.fh-section--cream  { background: var(--fh-cream); }
.fh-section--bone   { background: var(--fh-bone); }
.fh-section--forest { background: var(--fh-forest); color: var(--fh-cream); }
.fh-section--ink    { background: var(--fh-ink);    color: var(--fh-cream); }
.fh-section--stone  { background: var(--fh-stone); }

.fh-section--forest h1, .fh-section--forest h2, .fh-section--forest h3,
.fh-section--ink h1, .fh-section--ink h2, .fh-section--ink h3 { color: var(--fh-cream); }
.fh-section--forest .fh-eyebrow,
.fh-section--ink .fh-eyebrow { color: var(--fh-brass); }

.fh-section-header { text-align: center; max-width: 700px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.fh-section-header h2 { margin-bottom: .6rem; }

/* ---------- 5. BUTTONS -------------------------------------- */
.fh-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.8rem;
  font-family: var(--fh-accent);
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--fh-ink);
  border-radius: var(--fh-radius);
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none !important;
}
.fh-btn__arrow { transition: transform .3s ease; }
.fh-btn:hover .fh-btn__arrow { transform: translateX(4px); }

.fh-btn--primary {
  background: var(--fh-terracotta);
  border-color: var(--fh-terracotta);
  color: #fff;
}
.fh-btn--primary:hover {
  background: var(--fh-rust);
  border-color: var(--fh-rust);
  color: #fff;
}

.fh-btn--ghost { color: var(--fh-cream); border-color: var(--fh-cream); }
.fh-btn--ghost:hover { background: var(--fh-cream); color: var(--fh-ink); }

.fh-btn--gold {
  background: var(--fh-brass);
  border-color: var(--fh-brass);
  color: var(--fh-ink);
}
.fh-btn--gold:hover { background: var(--fh-copper); border-color: var(--fh-copper); color: #fff; }

.fh-btn--sm { padding: .7rem 1.2rem; font-size: .72rem; }

/* ---------- 6. HEADER --------------------------------------- */
.fh-topbar {
  background: var(--fh-ink);
  color: var(--fh-stone);
  font-family: var(--fh-accent);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.fh-topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem 0; gap: 1rem;
}
.fh-topbar a { color: var(--fh-stone); }
.fh-topbar a:hover { color: var(--fh-brass); }
.fh-topbar__rate { color: var(--fh-brass); }

.fh-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 239, 227, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31, 27, 22, 0.08);
  transition: padding .3s ease, background .3s ease;
}
.fh-header.is-scrolled { padding: 0; }
.fh-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; gap: 1.5rem;
}
.fh-logo img {
  height: 64px; width: auto;
  transition: height .3s ease;
}
.is-scrolled .fh-logo img { height: 52px; }

.fh-nav { display: flex; align-items: center; gap: 2rem; }
.fh-menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 2rem;
}
.fh-menu a {
  font-family: var(--fh-accent);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fh-ink);
  padding: .5rem 0;
  position: relative;
}
.fh-menu a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--fh-terracotta);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s ease;
}
.fh-menu a:hover::after, .fh-menu .current-menu-item a::after { transform: scaleX(1); }
.fh-menu .current-menu-item > a { color: var(--fh-terracotta); }

.fh-burger {
  display: none;
  border: 0; background: transparent;
  width: 44px; height: 44px;
  padding: 0;
  align-items: center; justify-content: center;
}
.fh-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--fh-ink); position: relative;
  transition: transform .3s, opacity .3s;
}
.fh-burger span::before, .fh-burger span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--fh-ink);
  transition: transform .3s;
}
.fh-burger span::before { top: -8px; }
.fh-burger span::after  { top:  8px; }
.fh-burger.is-open span { background: transparent; }
.fh-burger.is-open span::before { transform: translateY(8px)  rotate(45deg); }
.fh-burger.is-open span::after  { transform: translateY(-8px) rotate(-45deg); }

/* ---------- 7. HERO ----------------------------------------- */
.fh-hero {
  position: relative;
  min-height: clamp(560px, 85vh, 780px);
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
}
.fh-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.72);
}
.fh-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,27,22,0.35) 0%, rgba(31,27,22,0.65) 100%);
}
.fh-hero__inner {
  position: relative; z-index: 2;
  max-width: 780px;
  padding: 6rem 0 4rem;
}
.fh-hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.fh-hero h1 em {
  font-style: italic;
  color: var(--fh-brass);
}
.fh-hero p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 600px;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.92);
}
.fh-hero .fh-eyebrow {
  color: var(--fh-brass);
}
.fh-hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.fh-hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-family: var(--fh-accent);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  z-index: 2;
  text-align: center;
}
.fh-hero__scroll::after {
  content: ""; display: block;
  width: 1px; height: 36px;
  background: rgba(255,255,255,.5);
  margin: .6rem auto 0;
  animation: fh-pulse 2.4s ease-in-out infinite;
}
@keyframes fh-pulse { 0%,100% { opacity: .3; transform: scaleY(.8); } 50% { opacity: 1; transform: scaleY(1); } }

/* Page hero (non-home) */
.fh-page-hero {
  position: relative;
  min-height: 360px;
  display: flex; align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.fh-page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.6);
}
.fh-page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,27,22,0.4) 0%, rgba(31,27,22,0.7) 100%);
}
.fh-page-hero__inner { position: relative; z-index: 2; width: 100%; padding: 5rem 0 3.5rem; }
.fh-page-hero h1 { color: #fff; margin: 0; }

/* ---------- 8. CARDS / GRIDS -------------------------------- */
.fh-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.fh-grid--2 { grid-template-columns: repeat(2, 1fr); }
.fh-grid--3 { grid-template-columns: repeat(3, 1fr); }
.fh-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .fh-grid--3, .fh-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .fh-grid--2, .fh-grid--3, .fh-grid--4 { grid-template-columns: 1fr; } }

.fh-card {
  background: #fff;
  border-radius: var(--fh-radius-lg);
  overflow: hidden;
  box-shadow: var(--fh-shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column;
}
.fh-card:hover { transform: translateY(-4px); box-shadow: var(--fh-shadow-md); }
.fh-card__media {
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.fh-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.fh-card:hover .fh-card__media img { transform: scale(1.04); }
.fh-card__body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.fh-card__body h3 { margin: 0 0 .4rem; }
.fh-card__meta {
  font-family: var(--fh-accent);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--fh-terracotta);
  margin-bottom: .8rem;
}
.fh-card__cta {
  margin-top: auto; padding-top: 1.2rem;
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--fh-accent);
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--fh-forest);
}
.fh-card__cta:hover { color: var(--fh-terracotta); }

/* ---------- 9. ROOM SECTIONS -------------------------------- */
.fh-room {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(4rem, 7vw, 6rem);
}
.fh-room:nth-child(even) { direction: rtl; }
.fh-room:nth-child(even) > * { direction: ltr; }
@media (max-width: 900px) {
  .fh-room { grid-template-columns: 1fr; }
  .fh-room:nth-child(even) { direction: ltr; }
}

.fh-room__media {
  position: relative;
}
.fh-room__media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--fh-radius-lg);
  box-shadow: var(--fh-shadow-md);
}
.fh-room__media .fh-room__thumbs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: 1rem;
}
.fh-room__media .fh-room__thumbs img {
  aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--fh-radius);
  box-shadow: var(--fh-shadow-sm);
}

.fh-room__body h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: .4rem; }
.fh-room__tag {
  font-family: var(--fh-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--fh-terracotta);
  margin-bottom: 1.4rem;
  display: block;
}
.fh-room__facts {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(31,27,22,.1);
  border-bottom: 1px solid rgba(31,27,22,.1);
  margin-bottom: 1.5rem;
}
.fh-room__fact { display: flex; flex-direction: column; gap: .15rem; }
.fh-room__fact dt {
  font-family: var(--fh-accent);
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--fh-muted);
}
.fh-room__fact dd { margin: 0; font-weight: 500; color: var(--fh-ink); }

.fh-room__amenities {
  list-style: none; padding: 0; margin: 0 0 2rem;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .4rem 1.5rem;
  font-size: .95rem;
}
.fh-room__amenities li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--fh-text);
}
.fh-room__amenities li::before {
  content: "✦";
  position: absolute; left: 0; top: 0;
  color: var(--fh-brass);
  font-size: .85rem;
}
@media (max-width: 500px) { .fh-room__amenities { grid-template-columns: 1fr; } }

/* ---------- 10. FEATURE / INTRO BLOCK ----------------------- */
.fh-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.fh-feature--reverse { direction: rtl; }
.fh-feature--reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .fh-feature, .fh-feature--reverse { grid-template-columns: 1fr; direction: ltr; }
}
.fh-feature__media { position: relative; }
.fh-feature__media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--fh-radius-lg);
  box-shadow: var(--fh-shadow-md);
}
.fh-feature__media--frame::before {
  content: "";
  position: absolute;
  inset: -1.5rem -1.5rem auto auto;
  width: 60%; height: 60%;
  border: 1px solid var(--fh-brass);
  border-radius: var(--fh-radius);
  z-index: -1;
}
.fh-feature__media--frame { position: relative; }

/* ---------- 11. QUICK LINKS (home) -------------------------- */
.fh-quicklinks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 700px) { .fh-quicklinks { grid-template-columns: 1fr; } }

.fh-quicklink {
  position: relative;
  display: block;
  aspect-ratio: 5/6;
  overflow: hidden;
  border-radius: var(--fh-radius-lg);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--fh-shadow-md);
}
.fh-quicklink__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s ease;
}
.fh-quicklink:hover .fh-quicklink__bg { transform: scale(1.05); }
.fh-quicklink::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(31,27,22,.85) 100%);
}
.fh-quicklink__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2rem;
  z-index: 2;
}
.fh-quicklink__caption h3 { color: #fff; margin: 0 0 .3rem; font-size: 2rem; }
.fh-quicklink__caption p {
  margin: 0;
  font-family: var(--fh-accent);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--fh-brass);
}

/* ---------- 12. DIVIDER / ORNAMENT -------------------------- */
.fh-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin: 1.5rem auto;
  color: var(--fh-brass);
}
.fh-ornament::before, .fh-ornament::after {
  content: ""; height: 1px; width: 70px; background: currentColor; opacity: .5;
}
.fh-ornament__mark { font-size: 1.2rem; line-height: 1; }

/* ---------- 13. DINING / MENU ------------------------------- */
.fh-okawari__logo { max-width: 320px; margin: 0 auto 1.5rem; display: block; }

.fh-menu-block { background: var(--fh-bone); padding: clamp(2rem, 4vw, 3.5rem); border-radius: var(--fh-radius-lg); }
.fh-menu-block h3 {
  text-align: center;
  font-size: 1.6rem;
  font-family: var(--fh-accent);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fh-ink);
  border-bottom: 1px solid rgba(31,27,22,.15);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.fh-menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .4rem 1rem;
  margin-bottom: 1.2rem;
  align-items: baseline;
}
.fh-menu-item__title {
  font-family: var(--fh-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--fh-ink);
}
.fh-menu-item__price {
  font-family: var(--fh-accent);
  color: var(--fh-terracotta);
  font-size: 1rem;
}
.fh-menu-item__desc {
  grid-column: 1 / -1;
  color: var(--fh-muted);
  font-size: .95rem;
  font-style: italic;
  margin: 0;
}
.fh-menu-placeholder {
  border: 1px dashed rgba(31,27,22,.2);
  padding: 1.5rem;
  text-align: center;
  font-family: var(--fh-accent);
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fh-muted);
  border-radius: var(--fh-radius);
}

.fh-hours { list-style: none; padding: 0; margin: 0; }
.fh-hours li {
  display: flex; justify-content: space-between;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(31,27,22,.08);
  font-size: .98rem;
}
.fh-hours li:last-child { border-bottom: 0; }
.fh-hours__day {
  font-family: var(--fh-accent);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ---------- 14. GALLERY ------------------------------------- */
.fh-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}
.fh-gallery__item {
  overflow: hidden; border-radius: var(--fh-radius);
  cursor: pointer;
  position: relative;
}
.fh-gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.fh-gallery__item:hover img { transform: scale(1.06); }
.fh-gallery__item--tall { grid-row: span 2; }
.fh-gallery__item--wide { grid-column: span 2; }
.fh-gallery__item--feature { grid-row: span 2; grid-column: span 2; }
@media (max-width: 900px) {
  .fh-gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 140px; }
  .fh-gallery__item--feature { grid-column: span 2; }
}
@media (max-width: 600px) {
  .fh-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .fh-gallery__item--feature, .fh-gallery__item--wide { grid-column: span 2; }
}

/* Simple lightbox */
.fh-lightbox {
  position: fixed; inset: 0;
  background: rgba(31, 27, 22, 0.94);
  display: none; align-items: center; justify-content: center;
  z-index: 999;
  padding: 2rem;
}
.fh-lightbox.is-open { display: flex; }
.fh-lightbox img { max-width: 90vw; max-height: 88vh; border-radius: var(--fh-radius); }
.fh-lightbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
}

/* ---------- 15. FORMS --------------------------------------- */
.fh-form { display: grid; gap: 1.2rem; }
.fh-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 600px) { .fh-form__row { grid-template-columns: 1fr; } }
.fh-form label {
  display: block;
  font-family: var(--fh-accent);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fh-muted);
  margin-bottom: .4rem;
}
.fh-form input, .fh-form select, .fh-form textarea {
  width: 100%;
  padding: .9rem 1rem;
  font-family: var(--fh-body);
  font-size: 1rem;
  border: 1px solid rgba(31,27,22,.18);
  background: #fff;
  color: var(--fh-text);
  border-radius: var(--fh-radius);
  transition: border-color .25s, box-shadow .25s;
}
.fh-form input:focus, .fh-form select:focus, .fh-form textarea:focus {
  outline: none;
  border-color: var(--fh-terracotta);
  box-shadow: 0 0 0 3px rgba(160, 82, 45, .15);
}
.fh-form textarea { min-height: 140px; resize: vertical; }
.fh-form__honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.fh-form__notice {
  padding: 1rem 1.2rem;
  border-radius: var(--fh-radius);
  font-family: var(--fh-accent);
  font-size: .85rem;
  letter-spacing: .1em;
}
.fh-form__notice--ok { background: rgba(90, 107, 79, .15); color: var(--fh-forest); border-left: 3px solid var(--fh-moss); }
.fh-form__notice--bad { background: rgba(160, 82, 45, .1); color: var(--fh-rust); border-left: 3px solid var(--fh-terracotta); }

/* ---------- 16. CONTACT ------------------------------------- */
.fh-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
@media (max-width: 900px) { .fh-contact-grid { grid-template-columns: 1fr; } }

.fh-contact-info { display: grid; gap: 1.5rem; }
.fh-contact-block { padding: 1.5rem 0; border-bottom: 1px solid rgba(31,27,22,.1); }
.fh-contact-block:last-child { border-bottom: 0; }
.fh-contact-block__label {
  font-family: var(--fh-accent);
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fh-terracotta);
  margin-bottom: .5rem;
  display: block;
}
.fh-contact-block__value { font-size: 1.15rem; color: var(--fh-ink); }
.fh-contact-block__value a { color: var(--fh-ink); border-bottom: 1px solid transparent; }
.fh-contact-block__value a:hover { color: var(--fh-terracotta); border-bottom-color: currentColor; }

.fh-map {
  width: 100%; aspect-ratio: 16/10; border: 0;
  border-radius: var(--fh-radius-lg);
  box-shadow: var(--fh-shadow-md);
  filter: sepia(.08) saturate(.9);
}

/* ---------- 17. CTA STRIP ----------------------------------- */
.fh-cta-strip {
  background: var(--fh-forest);
  color: var(--fh-cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fh-cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background: url('../images/dining/fireplace.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.fh-cta-strip > * { position: relative; z-index: 1; }
.fh-cta-strip h2 { color: var(--fh-cream); margin-bottom: .6rem; }
.fh-cta-strip p { color: rgba(245, 239, 227, .85); max-width: 600px; margin: 0 auto 2rem; }

/* ---------- 18. FOOTER -------------------------------------- */
.fh-footer {
  background: var(--fh-ink);
  color: var(--fh-stone);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
  position: relative;
}
.fh-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--fh-brass), var(--fh-copper), var(--fh-brass));
}
.fh-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 900px) { .fh-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .fh-footer__grid { grid-template-columns: 1fr; } }
.fh-footer h4 {
  color: var(--fh-cream);
  font-family: var(--fh-accent);
  font-size: .85rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.fh-footer a { color: var(--fh-stone); }
.fh-footer a:hover { color: var(--fh-brass); }
.fh-footer__logo { max-width: 240px; margin-bottom: 1.2rem; }
.fh-footer__about { color: rgba(201, 191, 168, .8); font-size: .95rem; line-height: 1.7; }
.fh-footer ul { list-style: none; padding: 0; margin: 0; }
.fh-footer ul li { margin-bottom: .6rem; font-size: .95rem; }
.fh-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-family: var(--fh-accent);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(201, 191, 168, .6);
}
.fh-social { display: flex; gap: 1rem; }
.fh-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  transition: all .25s;
}
.fh-social a:hover { background: var(--fh-brass); border-color: var(--fh-brass); color: var(--fh-ink); }
.fh-social svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- 19. UTILITIES ----------------------------------- */
.fh-text-center { text-align: center; }
.fh-mt-0 { margin-top: 0; }
.fh-mb-0 { margin-bottom: 0; }
.fh-screen-reader-text {
  position: absolute !important; clip: rect(1px, 1px, 1px, 1px); width: 1px; height: 1px; overflow: hidden;
}
.fh-fade-in { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.fh-fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- 20. MOBILE NAV ---------------------------------- */
@media (max-width: 980px) {
  .fh-burger { display: inline-flex; }
  .fh-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(360px, 85vw);
    height: 100vh;
    background: var(--fh-forest);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 6rem 2rem 2rem;
    transition: right .35s ease;
    z-index: 90;
    box-shadow: -10px 0 40px rgba(0,0,0,.2);
  }
  .fh-menu.is-open { right: 0; }
  .fh-menu a {
    color: var(--fh-cream);
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .95rem;
  }
  .fh-menu a:hover { color: var(--fh-brass); }
  .fh-menu a::after { display: none; }
  .fh-header__cta--mobile-hide { display: none; }
}

@media (max-width: 600px) {
  .fh-topbar__inner { flex-direction: column; gap: .3rem; padding: .5rem 0; font-size: .7rem; }
  .fh-topbar__rate { display: none; }
}

/* ---------- 21. ELEMENTOR INTEGRATION ----------------------- */
/* Reset wrapper when Elementor controls the full content area */
.fh-elementor-fullwidth {
  width: 100%;
}
.fh-elementor-fullwidth > .elementor {
  width: 100%;
}
.fh-elementor-canvas {
  background: var(--fh-cream);
}
/* Make global CSS classes from the theme work when applied to Elementor widgets */
.elementor-widget-button .fh-btn,
.elementor .fh-btn { display: inline-flex; }
