/* ==========================================================================
   Companionship Booking — Public Site Stylesheet
   Direction: "Midnight & Rose" — cool navy-ink dark sections, a clean cool
   off-white (not cream/tan) for light sections, and a dusty rose-mauve
   accent. Editorial serif display type, a "ledger" treatment for
   activities & pricing (booking time reads naturally as a reservation book).
   No external fonts/CDNs — refined system font stacks only.
   ========================================================================== */

:root {
  /* ---- Palette ---- */
  --ink:        #12141f;   /* near-black navy, hero/footer bg */
  --ink-2:      #1c2030;   /* secondary dark surface */
  --paper:      #f7f7f5;   /* primary light bg — cool off-white */
  --panel:      #ececee;   /* subtle cool-gray card tint */
  --rose:       #b8788a;   /* dusty rose-mauve accent */
  --rose-deep:  #8a4f61;   /* deeper rose for emphasis/hover */
  --rose-soft:  rgba(184, 120, 138, 0.28);
  --slate:      #545b6b;
  --text-dark:  #1b1d24;
  --text-soft:  #5b6070;
  --text-paper: #f2f1ee;
  --text-paper-soft: rgba(242, 241, 238, 0.68);
  --radius: 3px;
  --radius-lg: 6px;

  /* ---- Type ---- */
  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

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

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 520px; }

a { color: var(--rose-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 2px; }

/* ---------------------------------------------------------------------- */
/* Header + mobile nav toggle                                             */
/* ---------------------------------------------------------------------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid #e2e0da;
  position: relative;
  z-index: 50;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-style: italic;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 60;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#site-nav {
  display: flex;
  align-items: center;
}
#site-nav a {
  margin-left: 26px;
  color: var(--text-dark);
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 600;
}
#site-nav a:hover { color: var(--rose-deep); text-decoration: none; }
.link-btn {
  background: none; border: none; color: var(--text-dark); font: inherit;
  cursor: pointer; margin-left: 26px; font-size: 0.78rem; letter-spacing: 0.11em; text-transform: uppercase; font-weight: 600;
}
.link-btn:hover { color: var(--rose-deep); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  #site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid #e2e0da;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 24px 20px;
    display: none;
    box-shadow: 0 12px 24px rgba(18,20,31,0.08);
  }
  #site-nav.open { display: flex; }
  #site-nav a, #site-nav .link-btn {
    margin-left: 0;
    padding: 13px 0;
    border-bottom: 1px solid #ece9e2;
    text-align: left;
  }
  #site-nav .btn { margin-top: 10px; text-align: center; }
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */
.hero {
  text-align: center;
  padding: 110px 24px 90px;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(184,120,138,0.14), transparent 60%),
    var(--ink);
  color: var(--text-paper);
  position: relative;
}
.hero::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: var(--rose);
  margin: 28px auto 0;
}
.hero h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1.25;
  margin: 0 auto;
  max-width: 720px;
  color: #fff;
  animation: heroRise 0.7s ease-out both;
}
.hero .lead {
  font-size: 1.05rem;
  color: var(--text-paper-soft);
  margin-top: 18px;
  letter-spacing: 0.01em;
}
.hero .disclaimer {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 30px 0 34px;
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--rose);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
}
.btn-primary:hover {
  background: transparent;
  color: var(--rose-deep);
  border-color: var(--rose-deep);
  text-decoration: none;
  transform: translateY(-1px);
}
.hero .btn-primary {
  background: transparent;
  color: var(--rose);
}
.hero .btn-primary:hover {
  background: var(--rose);
  color: #fff;
}
.btn-lg { padding: 15px 36px; font-size: 0.82rem; }

/* ---------------------------------------------------------------------- */
/* Section rhythm + eyebrows                                              */
/* ---------------------------------------------------------------------- */
section.container { padding: 72px 24px; }
.activities-preview, .pricing-preview { text-align: center; }
.activities-preview h2, .pricing-preview h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  margin-bottom: 8px;
}
.activities-preview h2::before, .pricing-preview h2::before, .activity-detail h1::before {
  content: "THE OFFERING";
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--rose-deep);
  margin-bottom: 12px;
}
.pricing-preview h2::before { content: "RESERVATION RATES"; }
.muted { color: var(--text-soft); font-size: 0.88rem; }

/* ---------------------------------------------------------------------- */
/* Activities — presented as an editorial list, not stock cards           */
/* ---------------------------------------------------------------------- */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 36px;
  text-align: left;
  border-top: 1px solid #e2e0da;
}
.card {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e2e0da;
  border-radius: 0;
  padding: 22px 4px;
  color: var(--text-dark);
  position: relative;
  transition: padding-left 0.25s ease;
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--rose);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.card:hover {
  text-decoration: none;
  padding-left: 18px;
}
.card:hover::before { transform: scaleY(1); }
.card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0 0 4px;
  color: var(--ink);
  flex-shrink: 0;
}
.card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  text-align: right;
  max-width: 380px;
}

/* ---------------------------------------------------------------------- */
/* Pricing — reservation-ledger rows with a dotted leader, like a menu    */
/* ---------------------------------------------------------------------- */
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 36px auto 0;
  max-width: 480px;
  text-align: left;
}
.pricing-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 2px;
  border-bottom: 1px dashed #ddd9d0;
  background: none;
  border-radius: 0;
}
.pricing-list li span {
  font-size: 0.95rem;
  color: var(--text-dark);
}
.pricing-list li strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--rose-deep);
  white-space: nowrap;
}

/* ---------------------------------------------------------------------- */
/* Safety band — dark, quiet, reassuring                                  */
/* ---------------------------------------------------------------------- */
.safety-preview {
  background: var(--ink-2);
  color: var(--text-paper-soft);
  text-align: center;
  border-radius: var(--radius-lg);
  width: calc(100% - 48px);
  margin: 0 auto 72px;
  padding: 56px 24px !important;
}
.safety-preview h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  font-size: 1.6rem;
  margin-top: 0;
}
.safety-preview p { max-width: 600px; margin: 0 auto; }
.safety-preview a { color: var(--rose); }

/* ---------------------------------------------------------------------- */
/* Activity detail page                                                   */
/* ---------------------------------------------------------------------- */
.activity-detail h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2.1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.activity-detail > p { color: var(--text-soft); max-width: 620px; }
.activity-detail h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  margin-top: 40px;
}

/* ---------------------------------------------------------------------- */
/* Forms                                                                   */
/* ---------------------------------------------------------------------- */
form .field { margin-bottom: 22px; }
form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 8px;
  font-weight: 600;
}
form input[type=text],
form input[type=email],
form input[type=password],
form input[type=date],
form input[type=time],
form input[type=number],
form select,
form textarea {
  width: 100%;
  padding: 11px 2px;
  border: none;
  border-bottom: 1px solid #ddd9d0;
  border-radius: 0;
  background: transparent;
  font: inherit;
  color: var(--text-dark);
  transition: border-color 0.2s ease;
}
form input:focus, form select:focus, form textarea:focus {
  border-bottom-color: var(--rose-deep);
  outline: none;
}
form select { background: transparent; padding: 11px 2px; }
form .checkbox label { display: flex; align-items: center; gap: 8px; font-weight: 400; text-transform: none; letter-spacing: normal; font-size: 0.92rem; }
.hp-field { position: absolute; left: -9999px; }

/* ---------------------------------------------------------------------- */
/* Alerts                                                                  */
/* ---------------------------------------------------------------------- */
.alert {
  padding: 13px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  border-left: 3px solid transparent;
}
.alert-error   { background: #fbecec; color: #7a2b2b; border-left-color: #b3453a; }
.alert-success { background: #eaf1e6; color: #34522c; border-left-color: #5f8f3e; }
.alert-info    { background: #eeeef2; color: var(--text-dark); border-left-color: var(--rose); }

/* ---------------------------------------------------------------------- */
/* Booking price quote panel                                              */
/* ---------------------------------------------------------------------- */
.price-quote {
  background: var(--panel);
  border: none;
  border-radius: var(--radius);
  padding: 20px;
  margin: 26px 0;
  text-align: center;
}
.price-quote p { margin: 0 0 6px; }
.price-quote strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rose-deep);
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--text-paper-soft);
  border-top: 1px solid rgba(184,120,138,0.25);
  margin-top: 0;
  padding: 40px 0;
  font-size: 0.82rem;
}
.site-footer .container > p:first-child { color: var(--text-paper); max-width: 640px; }
.site-footer a { color: var(--rose); }

/* ---------------------------------------------------------------------- */
/* Responsive                                                              */
/* ---------------------------------------------------------------------- */
@media (max-width: 640px) {
  .hero { padding: 80px 20px 60px; }
  .card { flex-direction: column; align-items: flex-start; gap: 6px; }
  .card p { text-align: left; }
}
