/* Settlers Rest -- Draft 2
   Palette + typography mirror draft 1 (client-approved look). */

:root {
  --cream: #FAF6EE;
  --warm-white: #FFFDF8;
  --earth: #8B6240;
  --earth-dark: #5C3D1E;
  --earth-light: #C49A6C;
  --green: #4A6741;
  --green-light: #7A9B6E;
  --sage: #B5C4A8;
  --sage-bg: #EFF4EA;
  --rust: #A0522D;
  --gold: #C8A951;
  --text-dark: #2C1F0E;
  --text-mid: #5A4030;
  --text-light: #8B7355;
  --border: rgba(139, 98, 64, 0.18);
  --shadow: 0 4px 32px rgba(92, 61, 30, 0.10);
  --shadow-lg: 0 12px 60px rgba(92, 61, 30, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--earth); }

/* DRAFT BANNER */
.draft-banner {
  background: var(--earth-dark); color: rgba(255,255,255,0.78);
  text-align: center; padding: 0.45rem 1rem;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600;
}
.draft-banner a {
  color: var(--gold); margin-left: 0.5rem; text-decoration: none;
  border-bottom: 1px solid rgba(200,169,81,0.4);
  padding-bottom: 1px;
}
.draft-banner a:hover { color: #fff; border-color: #fff; }

/* NAV */
nav.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250, 246, 238, 0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 78px; width: auto; }
.nav-links {
  display: flex; gap: 0; list-style: none; align-items: center;
}
.nav-links li a {
  display: block; padding: 0.5rem 0.7rem;
  font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none;
  color: var(--text-mid); transition: color 0.2s; white-space: nowrap;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--earth); }
.nav-links li.book-btn a {
  background: var(--earth); color: #fff;
  border-radius: 4px; padding: 0.55rem 1.1rem; margin-left: 0.5rem;
}
.nav-links li.book-btn a:hover { background: var(--earth-dark); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: 100px; left: 0; right: 0; bottom: 0;
  background: var(--warm-white); z-index: 999;
  padding: 1.5rem 2rem; overflow-y: auto;
}
.mobile-menu.open { display: flex; flex-direction: column; }
.mobile-menu a {
  display: block; padding: 0.95rem 0; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none;
  color: var(--text-dark); border-bottom: 1px solid var(--border);
}
.mobile-menu a.book { color: var(--earth); }

/* HERO -- HOME (full-bleed, viewport-height) */
.hero {
  min-height: 92vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(44,31,14,0.30) 0%, rgba(44,31,14,0.05) 40%, rgba(44,31,14,0.60) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 2rem; max-width: 820px;
}
.hero-eyebrow {
  font-weight: 300; font-size: 0.8rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 8px rgba(44,31,14,0.6);
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 5rem);
  color: #fff; font-weight: 700; line-height: 1.12;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(44,31,14,0.5);
}
.hero h1 em {
  font-style: italic; color: #fff;
  text-shadow: 0 2px 24px rgba(44,31,14,0.7);
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.9);
  font-weight: 300; line-height: 1.7;
  margin: 0 auto 2.5rem; max-width: 560px;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  animation: hero-bounce 2s ease infinite;
}
.hero-scroll svg { width: 22px; height: 22px; }
@keyframes hero-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* PAGE HERO -- inner pages (fixed height, simple title + sub) */
.page-hero {
  height: 480px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(44,31,14,0.30), rgba(44,31,14,0.65));
}
.page-hero-content {
  position: relative; z-index: 2; text-align: center;
  color: #fff; padding: 2rem; max-width: 820px;
}
.page-hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 16px rgba(44,31,14,0.45);
}
.page-hero-content p {
  font-size: 1.1rem; font-weight: 300;
  opacity: 0.92; line-height: 1.6;
}

/* BUTTONS */
.btn-primary, .btn-outline, .btn-earth-outline {
  display: inline-block; padding: 0.85rem 2rem;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 4px;
  transition: all 0.25s; border: 2px solid transparent;
}
.btn-primary { background: var(--earth); color: #fff; border-color: var(--earth); }
.btn-primary:hover { background: var(--earth-dark); border-color: var(--earth-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(92,61,30,0.3); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-earth-outline { background: transparent; color: var(--earth); border-color: var(--earth); }
.btn-earth-outline:hover { background: var(--earth); color: #fff; }

/* SECTIONS */
.section { padding: 5.5rem 2rem; }
.section-sm { padding: 3.5rem 2rem; }
.container { max-width: 1160px; margin: 0 auto; }
.container-md { max-width: 960px; margin: 0 auto; }
.container-sm { max-width: 760px; margin: 0 auto; }
.section-label {
  font-weight: 300; font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--earth-light); margin-bottom: 0.7rem; display: block;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  color: var(--text-dark); font-weight: 700;
  line-height: 1.2; margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--earth); }
.section-body { font-size: 1.02rem; line-height: 1.8; color: var(--text-mid); font-weight: 400; }
.section-body p { margin-bottom: 1.1rem; }
.divider { width: 48px; height: 2px; background: var(--gold); margin: 1.2rem 0; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.bg-warm { background: var(--warm-white); }
.bg-cream { background: var(--cream); }
.bg-sage { background: var(--sage-bg); }

/* TWO COL */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.two-col.reverse > :first-child { order: 2; }
.col-img img { border-radius: 4px; box-shadow: var(--shadow); width: 100%; }

/* CARDS */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 2.5rem;
}
.card {
  background: var(--warm-white); border-radius: 4px;
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 240px; object-fit: cover; }
.card-body { padding: 1.6rem; flex-grow: 1; display: flex; flex-direction: column; }
.card-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; color: var(--text-dark); margin-bottom: 0.7rem; }
.card-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; flex-grow: 1; }
.card-link {
  display: inline-block; margin-top: 1.1rem;
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--earth); text-decoration: none;
}
.card-link:hover { color: var(--earth-dark); }

/* FEATURES STRIP */
.features-strip { background: var(--earth-dark); padding: 2.6rem 2rem; }
.features-strip .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.feature-item {
  text-align: center; padding: 1rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.feature-item:last-child { border-right: none; }
.feature-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; color: var(--gold); margin-bottom: 0.35rem; }
.feature-desc { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 300; line-height: 1.55; }

/* CONTACT */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 3rem; align-items: start;
}
.contact-card {
  background: var(--warm-white); padding: 2rem;
  border-radius: 4px; box-shadow: var(--shadow);
}
.contact-row { padding: 0.9rem 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; }
.contact-row strong { display: block; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--earth-light); margin-bottom: 0.3rem; }
.contact-row span, .contact-row a { font-size: 1rem; color: var(--text-dark); text-decoration: none; }
.contact-row a:hover { color: var(--earth); }

/* LINKS LIST */
.links-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 2.5rem; margin-top: 2rem;
}
.link-item {
  padding: 1.2rem 0; border-bottom: 1px solid var(--border);
}
.link-item h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; color: var(--text-dark); margin-bottom: 0.4rem; }
.link-item p { font-size: 0.94rem; color: var(--text-mid); line-height: 1.6; }

/* SOCIAL STRIP (above footer) */
.social-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  text-align: center;
}
.social-strip a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--text-mid); text-decoration: none;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s;
  margin: 0 1rem;
}
.social-strip a:hover { color: var(--earth); }
.social-strip svg { width: 18px; height: 18px; }

/* FOOTER */
footer.site-footer {
  background: var(--earth-dark); color: rgba(255,255,255,0.75);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-logo img { height: 60px; width: auto; margin-bottom: 1rem; }
.footer-about { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.72); }
.footer-col-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem; color: var(--gold);
  margin-bottom: 1rem; font-weight: 700;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links li a {
  color: rgba(255,255,255,0.78); text-decoration: none;
  font-size: 0.92rem; transition: color 0.2s;
}
.footer-links li a:hover { color: #fff; }
.footer-contact-item {
  margin-bottom: 0.6rem; font-size: 0.92rem; line-height: 1.6;
  color: rgba(255,255,255,0.78);
}
.footer-contact-item a { color: var(--earth-light); text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.4rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: var(--gold); text-decoration: none; }
.footer-bottom-right { display: inline-flex; align-items: center; gap: 1.4rem; }
.footer-accred { height: 60px; width: auto; opacity: 0.6; }

/* MOBILE */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse > :first-child { order: 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .features-strip .container { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .contact-grid { grid-template-columns: 1fr; }
  .links-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .section { padding: 4rem 1.4rem; }
  nav.site-nav { padding: 0 1.2rem; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .features-strip .container { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .feature-item:last-child { border-bottom: none; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline, .btn-earth-outline { width: 100%; max-width: 280px; text-align: center; }
  .hero { min-height: 80vh; }
  .page-hero { height: 360px; }
  .social-strip a { display: block; margin: 0.5rem 0; }
}
