/* The Rowan Hotel — boutique countryside demo */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --rh-cream: #f8f4ed;
  --rh-cream-d: #efe8dc;
  --rh-green: #2d4a3e;
  --rh-green-d: #1e3329;
  --rh-gold: #b8954a;
  --rh-gold-l: #d4b56a;
  --rh-ink: #2a2824;
  --rh-muted: #6b6560;
  --rh-line: #ddd5c8;
  --rh-radius: 10px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--rh-ink);
  background: var(--rh-cream);
}

img { max-width: 100%; height: auto; display: block; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.rh-nav-toggle:focus-visible {
  outline: 2px solid var(--rh-gold);
  outline-offset: 3px;
}

.rh-container { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }

.rh-concept {
  margin: 0;
  text-align: center;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rh-muted);
  padding: 0.45rem 1rem;
  border-bottom: 1px solid var(--rh-line);
  background: var(--rh-cream-d);
}

.rh-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 244, 237, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rh-line);
}

.rh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 1rem;
}

.rh-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--rh-green);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.rh-logo span { font-style: italic; color: var(--rh-gold); }

.rh-nav-check { position: absolute; opacity: 0; pointer-events: none; }

.rh-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  background: none;
  border: 1px solid var(--rh-line);
  border-radius: 8px;
  cursor: pointer;
}

.rh-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--rh-green);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (min-width: 768px) {
  .rh-nav-toggle { display: none; }
}

.rh-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: var(--rh-cream);
  border-bottom: 1px solid var(--rh-line);
  padding: 1rem 1.25rem 1.25rem;
  gap: 0.75rem;
}

.rh-nav a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rh-muted);
  text-decoration: none;
}

.rh-nav a:hover { color: var(--rh-green); }

.rh-nav-cta {
  color: var(--rh-green) !important;
  padding: 0.55rem 1rem;
  border: 1px solid var(--rh-green);
  border-radius: 999px;
  text-align: center;
}

.rh-nav-check:checked ~ .rh-nav { display: flex; }

@media (min-width: 768px) {
  .rh-header-inner { position: relative; }
  .rh-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    border: none;
    padding: 0;
    background: transparent;
    gap: 1.5rem;
  }
}

.rh-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding: 4rem 0;
}

.rh-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rh-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rh-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 51, 41, 0.25) 0%, rgba(30, 51, 41, 0.88) 100%);
}

.rh-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 36rem;
}

.rh-eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--rh-gold-l);
}

.rh-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.rh-hero-content > p {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

.rh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.rh-btn-gold { background: var(--rh-gold); color: #fff; }
.rh-btn-gold:hover { background: var(--rh-gold-l); transform: translateY(-1px); }

.rh-btn-green { background: var(--rh-green); color: #fff; width: 100%; }
.rh-btn-green:hover { background: var(--rh-green-d); }

.rh-section { padding: 3.5rem 0; }

.rh-section-alt { background: var(--rh-cream-d); }

.rh-section-head { text-align: center; max-width: 34rem; margin: 0 auto 2.5rem; }

.rh-section-head h2,
.rh-split h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--rh-green);
}

.rh-section-head p { margin: 0; color: var(--rh-muted); }

.rh-rooms {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .rh-rooms { grid-template-columns: repeat(3, 1fr); }
}

.rh-room {
  background: #fff;
  border-radius: var(--rh-radius);
  overflow: hidden;
  border: 1px solid var(--rh-line);
  transition: transform 0.2s, box-shadow 0.2s;
}

.rh-room:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(45, 74, 62, 0.12);
}

.rh-room img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }

.rh-room-body { padding: 1.25rem; }

.rh-room h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.rh-room p { margin: 0 0 0.75rem; font-size: 0.875rem; color: var(--rh-muted); }

.rh-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rh-gold);
}

.rh-avail {
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--rh-radius);
  border: 1px solid var(--rh-line);
}

@media (min-width: 640px) {
  .rh-avail { grid-template-columns: repeat(2, 1fr); }
  .rh-avail .rh-btn { grid-column: 1 / -1; }
}

.rh-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--rh-green);
}

.rh-field input,
.rh-field select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--rh-line);
  border-radius: 8px;
  font-family: inherit;
  background: var(--rh-cream);
}

.rh-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .rh-split { grid-template-columns: 1fr 1fr; }
}

.rh-split img { border-radius: var(--rh-radius); box-shadow: 0 20px 40px rgba(45, 74, 62, 0.1); }

.rh-list {
  margin: 1.25rem 0 0;
  padding-left: 1.25rem;
  color: var(--rh-muted);
}

.rh-list li { margin-bottom: 0.5rem; }

.rh-local {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .rh-local { grid-template-columns: repeat(3, 1fr); }
}

.rh-local article {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--rh-radius);
  border: 1px solid var(--rh-line);
}

.rh-local h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0 0 0.5rem;
  color: var(--rh-green);
}

.rh-local p { margin: 0; font-size: 0.875rem; color: var(--rh-muted); }

.rh-gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .rh-gallery { grid-template-columns: repeat(4, 1fr); }
}

.rh-gallery img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  border-radius: var(--rh-radius);
}

.rh-info {
  display: grid;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto;
}

.rh-info div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rh-line);
}

.rh-info strong { color: var(--rh-green); font-size: 0.875rem; }
.rh-info span { color: var(--rh-muted); font-size: 0.875rem; }

.rh-book {
  background: var(--rh-green);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}

.rh-book h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  margin: 0 0 0.75rem;
}

.rh-book p { margin: 0 0 1.5rem; color: rgba(255, 255, 255, 0.85); }

.rh-note { margin-top: 1.25rem !important; font-size: 0.875rem; }
.rh-note a { color: var(--rh-gold-l); }

.rh-footer {
  background: var(--rh-green-d);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0;
  font-size: 0.875rem;
}

.rh-footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .rh-footer-grid { grid-template-columns: 2fr 1fr; }
}

.rh-footer strong { color: #fff; }

.rh-footer div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rh-footer a { color: var(--rh-gold-l); text-decoration: none; font-size: 0.8125rem; }
.rh-footer a:hover { text-decoration: underline; }

.rh-demo-strip {
  position: sticky;
  bottom: 0;
  z-index: 50;
  text-align: center;
  font-size: 0.6875rem;
  padding: 0.85rem 1rem;
  color: var(--rh-muted);
  background: rgba(248, 244, 237, 0.96);
  border-top: 1px solid var(--rh-line);
  backdrop-filter: blur(8px);
}

.rh-demo-strip a {
  color: var(--rh-green);
  font-weight: 600;
  text-decoration: none;
}

.rh-demo-strip a:hover { text-decoration: underline; }
