/* ============================================================
   TRUE EDGE MANAGEMENT — site styles
   ------------------------------------------------------------
   All three pages share this one file. To re-theme the whole
   site, change the color values just below.
   Colors are taken directly from your logo.
   ============================================================ */

:root {
  --bone:     #F1E7DD;  /* page background — matches your logo */
  --bone-2:   #F8F2EA;  /* cards / raised surfaces */
  --bone-3:   #E8DCCD;  /* alternating section bands */
  --sage:     #68725A;  /* your brand green */
  --sage-2:   #57614A;  /* darker green (button hover) */
  --sage-ink: #3A4231;  /* deepest green (footer, dark bands) */
  --ink:      #22241D;  /* main text */
  --muted:    #6E665A;  /* secondary text */
  --line:     #DCCFBE;  /* hairlines */
  --white:    #FFFFFF;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --maxw: 1140px;
  --radius: 16px;
}

/* ---------- base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: min(var(--maxw), 92vw); margin-inline: auto; }

:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; border-radius: 4px; }

/* ---------- type helpers ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.08; letter-spacing: -0.015em; color: var(--ink); }
.eyebrow {
  font-family: var(--body); font-weight: 600; font-size: .76rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--sage);
}
.lede { font-size: clamp(1.08rem, 2.2vw, 1.3rem); color: var(--muted); }
.serif-i { font-style: italic; }

/* a thin vertical rule — echoes the divider bar in your logo */
.rule-v { display: inline-block; width: 1px; height: 1.1em; background: var(--line); vertical-align: middle; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body); font-weight: 600; font-size: .98rem;
  text-decoration: none; padding: 14px 24px; border-radius: 10px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--sage); color: var(--white); }
.btn-primary:hover { background: var(--sage-2); transform: translateY(-2px); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-line:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-pale { background: var(--bone); color: var(--ink); }
.btn-pale:hover { background: var(--white); transform: translateY(-2px); }

/* ---------- nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bone) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: .97rem; opacity: .8; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--sage); }
.nav-cta { padding: 10px 18px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--bone-2); border-bottom: 1px solid var(--line);
    padding: 14px 4vw 22px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 8px 0; font-size: 1.05rem; }
  .nav-cta { margin-top: 8px; }
}

/* ---------- generic section rhythm ---------- */
.section { padding: clamp(56px, 9vw, 104px) 0; }
.section-band { background: var(--bone-3); }
.section-dark { background: var(--sage-ink); color: var(--bone); }
.section-head { max-width: 60ch; }
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin: 14px 0 0; }
.section-head .lede { margin-top: 18px; }

/* ---------- hero ---------- */
.hero { padding: clamp(40px, 7vw, 84px) 0 clamp(48px, 7vw, 90px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 20px 0 0; }
.hero .lede { margin: 24px 0 32px; max-width: 42ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-figure { position: relative; }
.hero-figure > img { width: 100%; height: clamp(340px, 46vw, 540px); object-fit: cover; border-radius: var(--radius); }
.cred-card {
  position: absolute; left: -18px; bottom: -18px;
  background: var(--bone-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 20px; box-shadow: 0 18px 40px rgba(34,36,29,.12);
  max-width: 250px;
}
.cred-card .k { font-family: var(--display); font-size: 1.5rem; color: var(--sage); line-height: 1; }
.cred-card .v { font-size: .9rem; color: var(--muted); margin-top: 4px; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .cred-card { left: 12px; bottom: 12px; }
}

/* ---------- "removes the headache" promise strip ---------- */
.promise { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.promise h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.promise ul { list-style: none; display: grid; gap: 14px; }
.promise li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 500; }
.promise li svg { flex: none; margin-top: 3px; color: var(--sage); }
@media (max-width: 760px) { .promise { grid-template-columns: 1fr; } }

/* ---------- pillars / cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.card {
  background: var(--bone-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(34,36,29,.09); }
.card .ic { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 11px; background: var(--bone-3); color: var(--sage); margin-bottom: 18px; }
.card h3 { font-size: 1.3rem; }
.card p { color: var(--muted); margin-top: 10px; font-size: 1rem; }
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }

/* ---------- who we host (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; height: clamp(300px, 40vw, 460px); object-fit: cover; border-radius: var(--radius); }
.split h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.split p { color: var(--muted); margin-top: 16px; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
}

/* ---------- steps (how it works) ---------- */
.steps { display: grid; gap: 0; margin-top: 40px; border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 92px 1fr; gap: 26px; padding: 28px 0; border-bottom: 1px solid var(--line); align-items: start; }
.step .n { font-family: var(--display); font-size: 2.2rem; color: var(--sage); line-height: 1; }
.step h3 { font-size: 1.35rem; }
.step p { color: var(--muted); margin-top: 8px; }
@media (max-width: 620px) { .step { grid-template-columns: 60px 1fr; gap: 16px; } .step .n { font-size: 1.7rem; } }

/* ---------- two-column "we handle / you keep" ---------- */
.ledger { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.ledger-col { background: var(--bone-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.ledger-col.keep { background: var(--sage-ink); color: var(--bone); border-color: var(--sage-ink); }
.ledger-col h3 { font-size: 1.25rem; margin-bottom: 16px; }
.ledger-col.keep h3 { color: var(--white); }
.ledger-col ul { list-style: none; display: grid; gap: 12px; }
.ledger-col li { display: flex; gap: 11px; align-items: flex-start; }
.ledger-col li svg { flex: none; margin-top: 4px; color: var(--sage); }
.ledger-col.keep li svg { color: #B7C29E; }
@media (max-width: 720px) { .ledger { grid-template-columns: 1fr; } }

/* ---------- FAQ (uses native <details>) ---------- */
.faq { margin-top: 34px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--display); font-size: 1.18rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 18px;
  font-family: var(--body); font-size: 1.5rem; color: var(--sage); transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--muted); padding: 0 44px 24px 0; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); }
.cta-band p { color: color-mix(in srgb, var(--bone) 86%, transparent); max-width: 48ch; margin: 18px auto 30px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.contact-direct { display: grid; gap: 22px; }
.contact-line .lbl { font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage); font-weight: 600; }
.contact-line a { display: inline-block; margin-top: 4px; font-family: var(--display); font-size: clamp(1.3rem, 3vw, 1.7rem); text-decoration: none; color: var(--ink); }
.contact-line a:hover { color: var(--sage); }
.contact-note { color: var(--muted); font-size: .95rem; border-top: 1px solid var(--line); padding-top: 20px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- form ---------- */
.form { background: var(--bone-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field.row2 { grid-template-columns: 1fr 1fr; gap: 16px; }
.field.row2 > .field { gap: 6px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px color-mix(in srgb, var(--sage) 22%, transparent); }
.form button { justify-self: start; margin-top: 6px; }
@media (max-width: 520px) { .field.row2 { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-footer { background: var(--sage-ink); color: var(--bone); padding: 56px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.footer-brand .wordmark { font-family: var(--display); font-size: 1.5rem; color: var(--white); letter-spacing: .02em; }
.footer-brand p { color: color-mix(in srgb, var(--bone) 78%, transparent); margin-top: 12px; max-width: 32ch; font-size: .95rem; }
.footer-col h4 { font-family: var(--body); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: #B7C29E; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; text-decoration: none; color: color-mix(in srgb, var(--bone) 88%, transparent); margin-bottom: 9px; font-size: .96rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid color-mix(in srgb, var(--bone) 22%, transparent); margin-top: 40px; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: .85rem; color: color-mix(in srgb, var(--bone) 70%, transparent); }
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ---------- entrance animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); animation: rise .7s ease forwards; }
.reveal.d1 { animation-delay: .08s; } .reveal.d2 { animation-delay: .16s; } .reveal.d3 { animation-delay: .24s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ============================================================
   Additions for the guest-focused version
   ============================================================ */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.mini { background: var(--bone-2); border: 1px solid var(--line); border-radius: 14px; padding: 24px 22px; }
.mini .ic { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: var(--bone-3); color: var(--sage); margin-bottom: 14px; }
.mini h3 { font-size: 1.12rem; }
.mini p { color: var(--muted); font-size: .94rem; margin-top: 6px; }
@media (max-width: 900px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }

/* included-with-your-stay checklist */
.amenities { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px 30px; margin-top: 36px; }
.amenities li { display: flex; gap: 11px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.amenities li svg { flex: none; margin-top: 3px; color: var(--sage); }
@media (max-width: 760px) { .amenities { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .amenities { grid-template-columns: 1fr; } }

/* simple image gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.gallery img { width: 100%; height: 270px; object-fit: cover; border-radius: 14px; }
.gallery-cap { color: var(--muted); font-size: .92rem; margin-top: 16px; text-align: center; }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; } .gallery img { height: 200px; } }
@media (max-width: 480px) { .gallery { grid-template-columns: 1fr; } }
