/* ==========================================================================
   Derest Haven — Guest Info Page
   Shared styles for all three properties.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Work+Sans:wght@400;500;600&display=swap');

:root{
  --forest-950: #0F1D17;
  --forest-800: #1C3529;
  --forest-600: #3A6552;
  --sand-100:   #EFE7D6;
  --sand-050:   #F7F2E7;
  --brass-500:  #B98A3E;
  --brass-600:  #9C7331;
  --ink-900:    #172119;
  --ink-600:    #4B564E;
  --line:       rgba(23, 33, 25, 0.12);
  --line-dark:  rgba(239, 231, 214, 0.16);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", -apple-system, sans-serif;

  --max-w: 560px;
}

*{ box-sizing: border-box; }

html{ -webkit-text-size-adjust: 100%; }

body{
  margin: 0;
  background: var(--sand-050);
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

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

a{ color: inherit; }

.wrap{
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ---------- Hero ---------- */

.hero{
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--sand-050);
}

.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,29,23,0.15) 0%, rgba(15,29,23,0.55) 60%, rgba(15,29,23,0.92) 100%);
}

.hero-inner{
  position: relative;
  z-index: 1;
  padding: 28px 24px 26px;
  width: 100%;
}

.hero-eyebrow{
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--sand-100);
  opacity: 0.85;
  margin: 0 0 6px;
}

.hero-title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 7vw, 38px);
  line-height: 1.12;
  margin: 0 0 10px;
}

.hero-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.badge{
  font-size: 12.5px;
  padding: 5px 11px;
  border: 1px solid rgba(247,242,231,0.35);
  border-radius: 100px;
  color: var(--sand-050);
}

/* ---------- Sections ---------- */

main{
  padding: 30px 22px 10px;
}

section{
  margin-bottom: 34px;
}

.section-title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  margin: 0 0 4px;
  color: var(--forest-800);
}

.section-sub{
  font-size: 14px;
  color: var(--ink-600);
  margin: 0 0 16px;
}

/* ---------- Quick facts card ---------- */

.stub{
  background: var(--sand-100);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.stub-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-bottom: 1px dashed var(--line);
}

.stub-row:last-child{ border-bottom: none; }

.stub-label{
  font-size: 13px;
  color: var(--ink-600);
}

.stub-value{
  font-size: 15px;
  font-weight: 500;
  text-align: right;
}

.stub-value.code{
  font-family: "Work Sans", monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  background: var(--sand-050);
  border: 1px solid var(--line);
  padding: 3px 9px;
  border-radius: 3px;
}

/* ---------- Rules list ---------- */

.rules{
  list-style: none;
  margin: 0;
  padding: 0;
}

.rules li{
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.rules li:last-child{ border-bottom: none; }

.rules .mark{
  color: var(--brass-600);
  font-family: var(--font-display);
  font-size: 15px;
  flex-shrink: 0;
  width: 16px;
}

/* ---------- Info blocks (checkout, local tips) ---------- */

.info-block{
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.info-block:last-child{ border-bottom: none; }

.info-block h4{
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
}

.info-block p{
  font-size: 14.5px;
  color: var(--ink-600);
  margin: 0;
}

/* ---------- Contact ---------- */

.contact-section{
  background: var(--forest-800);
  color: var(--sand-050);
  padding: 32px 22px;
}

.contact-section .section-title{
  color: var(--sand-050);
}

.contact-section .section-sub{
  color: rgba(247,242,231,0.7);
}

.contact-buttons{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wa-button{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--sand-050);
  color: var(--forest-800);
  text-decoration: none;
  padding: 16px 18px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
}

.wa-button .who{
  display: block;
  font-weight: 400;
  font-size: 12.5px;
  color: var(--ink-600);
  margin-top: 2px;
}

.wa-button .arrow{
  font-size: 18px;
  color: var(--brass-600);
}

.wa-button.secondary{
  background: transparent;
  color: var(--sand-050);
  border: 1px solid var(--line-dark);
}

.wa-button.secondary .who{ color: rgba(247,242,231,0.6); }
.wa-button.secondary .arrow{ color: var(--sand-100); }

/* ---------- Footer ---------- */

footer{
  padding: 26px 22px 34px;
  text-align: center;
  background: var(--forest-950);
  color: rgba(247,242,231,0.55);
}

footer .brand{
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--sand-100);
  letter-spacing: 0.02em;
}

footer .tagline{
  font-size: 12px;
  margin-top: 4px;
}

footer a{
  color: rgba(247,242,231,0.75);
  text-decoration: underline;
}

/* ---------- Quick access nav ---------- */

.quick-nav{
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 16px 22px;
  background: var(--sand-100);
  border-bottom: 1px solid var(--line);
}

.quick-nav a{
  flex-shrink: 0;
  font-size: 13px;
  padding: 8px 13px;
  background: var(--sand-050);
  border: 1px solid var(--line);
  border-radius: 100px;
  text-decoration: none;
  color: var(--ink-900);
  white-space: nowrap;
}

/* ---------- Explore accordion ---------- */

.explore-cat{
  border-bottom: 1px solid var(--line);
}

.explore-cat summary{
  padding: 14px 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.explore-cat summary::-webkit-details-marker{ display:none; }

.explore-cat summary::after{
  content: "+";
  margin-left: auto;
  color: var(--brass-600);
  font-size: 18px;
}

.explore-cat[open] summary::after{
  content: "–";
}

.explore-cat summary .sub{
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ink-600);
  width: 100%;
}

.explore-venues{
  padding: 4px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.venue{
  padding-left: 2px;
}

.venue-name{
  font-weight: 600;
  font-size: 14.5px;
}

.venue-tag{
  font-size: 12.5px;
  color: var(--brass-600);
  margin-top: 1px;
}

.venue p{
  font-size: 14px;
  color: var(--ink-600);
  margin: 4px 0;
}

.venue a{
  font-size: 12.5px;
  color: var(--forest-600);
  text-decoration: none;
}

/* ---------- Useful places grid ---------- */

.useful-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.useful-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  background: var(--sand-100);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink-900);
  font-size: 12.5px;
  text-align: center;
}

.useful-icon{ font-size: 22px; }

/* ---------- Checklist ---------- */

.checklist{
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li{
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}

.checklist li:last-child{ border-bottom: none; }

.checklist label{
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checklist input{
  width: 17px;
  height: 17px;
  accent-color: var(--brass-600);
}
