/* The Strands & Screes — redesign concept
   System fonts only, no webfonts/icon libraries — zero third-party requests. */

:root {
  --ink: #1f2b22;
  --ink-soft: #445043;
  --paper: #faf6ee;
  --paper-dim: #f0ead9;
  --line: #ddd4bd;
  --green: #2f4a34;
  --green-dark: #1c3023;
  --brass: #a97a2f;
  --brass-dark: #86611f;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 12px 30px -14px rgba(20, 24, 18, 0.35);
  --maxw: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-dark);
  color: var(--white);
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.brand {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--green-dark);
  white-space: nowrap;
}
.brand small {
  display: block;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover { color: var(--green-dark); border-color: var(--brass); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brass);
  color: var(--white);
  box-shadow: 0 8px 18px -8px rgba(169, 122, 47, 0.6);
}
.btn-primary:hover { background: var(--brass-dark); }
.btn-ghost {
  background: transparent;
  border-color: var(--green-dark);
  color: var(--green-dark);
}
.btn-ghost:hover { background: var(--green-dark); color: var(--white); }
.btn-small { padding: 9px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--green-dark);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-dark);
  position: relative;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: linear-gradient(180deg, rgba(20, 24, 18, 0.35) 0%, rgba(16, 20, 14, 0.55) 55%, rgba(12, 16, 11, 0.82) 100%),
    url("../assets/images/hero-sunset.jpg") center 62% / cover no-repeat;
}
.hero .wrap { padding-bottom: 56px; padding-top: 120px; width: 100%; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f3e3c2;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 18px;
  max-width: 18ch;
  text-wrap: balance;
}
.hero p.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 52ch;
  color: #ece5d6;
  margin: 0 0 32px;
}

.booking-box {
  background: rgba(250, 246, 238, 0.97);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  max-width: 640px;
}
.field { display: flex; flex-direction: column; gap: 4px; }
.field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
}
.field input:focus { outline: 2px solid var(--brass); outline-offset: 1px; }
.booking-box .btn { align-self: end; }

/* Trust bar */
.trust-bar {
  background: var(--green-dark);
  color: #eee8d8;
}
.trust-bar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding: 18px 24px;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  text-align: center;
}
.trust-bar strong { color: var(--white); }
.trust-bar .dot { opacity: 0.5; }
.trust-bar a { text-decoration: underline; text-underline-offset: 3px; }

/* Sections */
section { padding: 76px 0; }
.section-head { max-width: 62ch; margin: 0 0 40px; }
.eyebrow {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brass-dark);
  margin-bottom: 10px;
}
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 12px; line-height: 1.2; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
}
.step h3 { margin: 0 0 8px; font-size: 1.1rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* Amenities */
.amenities {
  background: var(--paper-dim);
}
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 32px;
}
.amenity-grid li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.amenity-grid li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--brass);
}

/* Feature rows (rooms / food / brewery / explore) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.feature-row.reverse .feature-media { order: 2; }
.feature-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.feature-copy h2 { margin-top: 0; }
.feature-copy ul {
  padding: 0;
  margin: 18px 0 26px;
  list-style: none;
}
.feature-copy li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
.feature-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.feature-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.feature-row + .feature-row { margin-top: 90px; }

/* Trust / story */
.story {
  background: var(--green-dark);
  color: #ece5d6;
}
.story .wrap { max-width: 780px; text-align: center; }
.story .eyebrow { color: #f3e3c2; }
.story h2 { color: var(--white); }
.story p { font-size: 1.08rem; color: #d9d2bd; }
.story-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.story-stats div { text-align: center; }
.story-stats strong {
  display: block;
  font-size: 1.6rem;
  color: var(--white);
}
.story-stats span { font-size: 0.85rem; color: #bcb49c; }

/* CTA band */
.cta-band {
  background: var(--brass);
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #fff3e0; max-width: 56ch; margin: 0 auto 28px; }
.cta-band .btn-ghost { border-color: var(--white); color: var(--white); }
.cta-band .btn-ghost:hover { background: var(--white); color: var(--brass-dark); }

/* Footer */
footer.site-footer {
  background: var(--ink);
  color: #cfcabb;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-grid h4 {
  color: var(--white);
  margin: 0 0 14px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.footer-grid p, .footer-grid a { color: #b9b39f; text-decoration: none; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--white); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.social-row { display: flex; gap: 14px; margin-top: 14px; }
.social-row a {
  width: 36px; height: 36px;
  border: 1px solid #4a4738;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}
.footer-bottom {
  border-top: 1px solid #3a3728;
  padding-top: 22px;
  font-size: 0.78rem;
  color: #8f8a76;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Mobile nav */
@media (max-width: 880px) {
  .main-nav {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 28px 24px;
    gap: 4px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-open .main-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-toggle { display: flex; }
  .header-actions .btn-ghost-desktop { display: none; }
  .site-header .wrap { padding: 0 16px; gap: 10px; }
  .brand { white-space: normal; font-size: 0.92rem; }
  .header-actions { gap: 10px; }
  .header-actions .btn { padding: 10px 16px; font-size: 0.85rem; }
  .booking-box { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row.reverse .feature-media { order: 0; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  section { padding: 56px 0; }
  .hero { min-height: 92vh; }
}

@media (min-width: 881px) {
  .nav-open .main-nav { display: flex; }
}
