/* Sometimes */
:root{
  --bg: #fbf7f5;          /* warm off-white */
  --surface: #ffffff;
  --text: #1f1f1f;        /* charcoal */
  --muted: #5b5b5b;
  --border: #e7dedb;

  --brand: #6b1a22;       /* burgundy/oxblood */
  --brand-2: #8a2a34;     /* hover */
  --accent: #b08a45;      /* muted gold */
  --focus: #1c6dd0;       /* focus outline */

  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 16px;

  --max: 1040px;
  --pad: 20px;
  --pad-lg: 28px;

  --h1: clamp(2rem, 4vw, 3rem);
  --h2: clamp(1.4rem, 2.5vw, 2rem);
  --h3: 1.2rem;
  --body: 1rem;
  --small: .92rem;
  
  --header-offset: 90px;
  --header-h: 62px;

  --lh: 1.55;
  --lh-tight: 1.25;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: var(--lh);
}

a{ color: var(--brand); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.skip-link{
  position:absolute;
  top:-40px;
  left:10px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding:10px 12px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 1000;
}
.skip-link:focus{ top:10px; outline: 3px solid rgba(28,109,208,.35); }

header.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,247,245,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items: baseline;
  gap: 10px;
  min-width: 160px;
}
.brand a{
  font-weight: 750;
  letter-spacing: .2px;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
}
.brand .tagline{
  color: var(--muted);
  font-size: .9rem;
  display:none;
}

nav.primary-nav{
  display:flex;
  align-items:center;
  gap: 18px;
}

.nav-links{
  display:flex;
  gap: 14px;
  align-items:center;
}
.nav-links a{
  padding: 8px 10px;
  border-radius: 10px;
}
.nav-links a[aria-current="page"]{
  background: rgba(107,26,34,.08);
  color: var(--brand);
  text-decoration: none;
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 650;
  font-size: .95rem;
  text-decoration: none;
  box-shadow: none;
}
.btn:hover{ text-decoration:none; border-color: rgba(107,26,34,.28); }
.btn:focus{ outline: 3px solid rgba(28,109,208,.35); outline-offset: 2px; }

.btn.primary{
  background: var(--brand);
  color: #fff;
  border-color: transparent;
}
.btn.primary:hover{ background: var(--brand-2); }

.btn.ghost{
  background: transparent;
}

.mobile-toggle{
  display:none;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 650;
}

main{ padding: 34px 0 56px; }

.hero{
  padding: 28px 0 18px;
}
.hero h1{
  font-size: var(--h1);
  line-height: var(--lh-tight);
  margin: 0 0 10px;
  letter-spacing: -0.4px;
}
.hero p.lede{
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 64ch;
  margin: 0 0 18px;
}
.hero .cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
}
.hero .microcopy{
  margin-top: 10px;
  color: var(--muted);
  font-size: var(--small);
}

.section{
  margin-top: 28px;
  scroll-margin-top: var(--header-offset);
}
.section h2{
  font-size: var(--h2);
  margin: 0 0 10px;
  letter-spacing: -0.2px;
}
.section p{
  margin: 0 0 10px;
  color: var(--text);
  max-width: 80ch;
  /*line-height: 1.6;
  margin-bottom: 1.3rem;*/
}
.section .muted{
  color: var(--muted);
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--pad-lg);
  box-shadow: var(--shadow);
}
.card h3{
  margin: 0 0 8px;
  font-size: var(--h3);
}
.card p{ margin: 0 0 12px; color: var(--muted); }
.card ul{
  margin: 0 0 14px 18px;
  color: var(--muted);
}
.card .card-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.kicker{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.kicker .dot{
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
}

.divider{
  height: 1px;
  background: var(--border);
  margin: 22px 0;
}

.bullet-list {
  margin: 0 0 16px 20px;
  padding: 0;
}

.bullet-list li {
  margin-bottom: 4px;
  color: var(--muted);
}

.quotes {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.quote {
  margin: 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--accent, #6b1f2b); /* your burgundy */
  background: rgba(0,0,0,0.03);
  border-radius: 10px;
}

.quote blockquote {
  margin: 0;
  padding: 0;
}

.quote p {
  margin: 0;
  line-height: 1.55;
}

.quote figcaption {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Optional: two columns on wider screens */
@media (min-width: 900px) {
  .quotes {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.degrade-list li {
  margin: 0 0 8px 12px;
  padding: 0;
}

.degrade-list p {
  margin: 0 0 0px;
  padding: 0;
}

.systems-work ul {
  margin-top: 8px;
  margin-bottom: 6px;
}

.systems-work p {
  margin: 0 0 0px;
  padding: 0;
}

.why-sometimes h3 {
  color: #777;
  font-size: 1.1rem;
  margin-bottom: 0.1rem;
}

.why-sometimes p {
  color: #888;
}

.booking{
  margin-top: 10px;
}
.booking .embed-frame{
  background: #fff;
  border: 1px dashed rgba(107,26,34,.35);
  border-radius: var(--radius);
  padding: 16px;
}
.booking .embed-frame p{
  margin: 0 0 10px;
  color: var(--muted);
}
code.inline{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: .95em;
  background: rgba(107,26,34,.06);
  border: 1px solid rgba(107,26,34,.14);
  padding: 2px 6px;
  border-radius: 8px;
}

footer.site-footer{
  border-top: 1px solid var(--border);
  padding: 22px 0 40px;
  color: var(--muted);
  font-size: var(--small);
}
.footer-inner{
  display:flex;
  gap: 12px;
  justify-content: space-between;
  align-items:flex-start;
  flex-wrap: wrap;
}
.footer-inner a{ color: var(--brand); }

/* Responsive */
@media (max-width: 860px){
  .grid-2{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .brand .tagline{ display:none; }
  nav.primary-nav{
    display:none;
    position: absolute;
    left: 0; right: 0;
    top: var(--header-h);
    background: rgba(251,247,245,.98);
    border-bottom: 1px solid var(--border);
    padding: 10px var(--pad);
  }
  nav.primary-nav[data-open="true"]{ display:block; }
  .nav-links{ flex-direction: column; align-items: flex-start; }
  .actions{ margin-top: 10px; }
  .mobile-toggle{ display:inline-flex; }
}
