/* Wolf Stay — shared styles
   Design tokens ported 1:1 from the Claude Design prototype (Home Standalone.dc.html, WS-Header.dc.html, WS-Footer.dc.html, etc.) */

:root {
  --bg: oklch(0.08 0.005 50);
  --bg-deep: oklch(0.05 0.005 50);
  --bg-card: oklch(0.13 0.01 55);
  --bg-card-alt: oklch(0.15 0.01 55);
  --bg-header: oklch(0.08 0.005 50 / 0.94);
  --bg-mobile-nav: oklch(0.07 0.005 50);
  --bg-cta-tint: oklch(0.06 0.005 50 / 0.72);
  --bg-icon-navy: oklch(0.16 0.015 260);
  --bg-icon-navy-2: oklch(0.16 0.02 260);

  --border: oklch(0.28 0.02 60 / 0.5);
  --border-soft: oklch(0.28 0.02 60 / 0.35);
  --border-btn: oklch(0.45 0.03 60);
  --border-toggle: oklch(0.3 0.02 60);
  --border-social: oklch(0.35 0.02 60);

  --gold: oklch(0.78 0.13 85);
  --gold-border: oklch(0.78 0.13 85 / 0.5);

  --text: oklch(0.96 0.01 80);
  --text-bright: oklch(0.98 0.01 80);
  --text-bright-2: oklch(0.97 0.01 80);
  --text-1: oklch(0.93 0.01 80);
  --text-2: oklch(0.85 0.015 70);
  --text-3: oklch(0.82 0.015 70);
  --text-4: oklch(0.8 0.015 70);
  --text-5: oklch(0.78 0.015 70);
  --text-6: oklch(0.75 0.015 70);
  --text-7: oklch(0.72 0.015 70);
  --text-muted-1: oklch(0.68 0.02 60);
  --text-muted-2: oklch(0.65 0.02 60);
  --text-muted-3: oklch(0.62 0.02 60);
  --text-muted-4: oklch(0.6 0.02 60);
  --text-muted-5: oklch(0.58 0.02 60);
  --text-muted-6: oklch(0.55 0.02 60);
  --text-dim: oklch(0.6 0.02 70);
  --text-dim-2: oklch(0.62 0.02 70);

  --footer-bg: oklch(0.18 0.03 260);
  --footer-border: oklch(0.3 0.03 260 / 0.5);
  --footer-border-2: oklch(0.32 0.03 260 / 0.5);
  --footer-heading: oklch(0.85 0.015 70);
  --footer-text: oklch(0.62 0.02 260);
  --footer-text-dim: oklch(0.6 0.02 260);
  --footer-text-copyright: oklch(0.52 0.02 260);
  --footer-text-copyright-2: oklch(0.46 0.02 260);
  --footer-social-border: oklch(0.4 0.03 260);
  --footer-social-text: oklch(0.7 0.02 260);

  --on-gold: oklch(0.08 0.005 50);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  min-height: 100vh;
}

a { color: inherit; }

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

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  background: var(--bg-header);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.brand-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--text-bright-2);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.15s ease;
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: var(--gold);
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-toggle);
  border-radius: 4px;
  width: 40px;
  height: 40px;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}

.mobile-nav {
  position: sticky;
  top: 71px;
  z-index: 99;
  background: var(--bg-mobile-nav);
  border-bottom: 1px solid var(--border-soft);
  padding: 20px 24px;
  display: none;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--text-1);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.mobile-nav a.active { color: var(--gold); }

@media (max-width: 900px) {
  .desktop-nav { display: none !important; }
  .mobile-toggle { display: flex !important; align-items: center; justify-content: center; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 26px;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--on-gold);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-btn);
  color: var(--text-1);
  font-weight: 600;
}

.btn-block { display: block; padding: 14px; }

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  padding: 80px 5vw 60px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin: 0 auto 24px;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 42px);
  margin: 0 0 20px;
  font-weight: 600;
}

.page-hero p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted-1);
  margin: 0 auto;
}

.gold { color: var(--gold); }

/* ---------- Tagline ---------- */

.tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.tagline::before,
.tagline::after {
  content: "";
  height: 1px;
  width: 34px;
  background: var(--gold);
  opacity: 0.55;
}

.hero-tagline {
  font-size: clamp(16px, 1.8vw, 20px);
  margin: 0 0 22px;
  position: relative;
}

.page-hero .tagline {
  font-size: 14.5px;
  margin: 14px auto 0;
}

.footer-tagline {
  font-size: 13.5px;
  margin: 10px 0 18px;
  justify-content: flex-start;
  gap: 10px;
}

.footer-tagline::before,
.footer-tagline::after { width: 18px; }

/* ---------- Home hero ---------- */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 5vw;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(0.08 0.005 50 / 0.45), oklch(0.08 0.005 50 / 0.88));
}

.hero-content { position: relative; max-width: 780px; }

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.15;
  margin: 0 0 22px;
  font-weight: 600;
  color: var(--text-bright);
}

.hero p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-3);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-btns, .cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .hero-btns, .cta-btns { flex-direction: column !important; align-items: stretch !important; }
}

/* ---------- Section shells ---------- */

section { padding: 80px 5vw; }
section.container { margin: 0 auto; }

.section-tight { padding-top: 0; }

h2.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 36px);
  margin: 0 0 44px;
  font-weight: 600;
  text-align: center;
}

.section-lead {
  font-size: 15px;
  color: var(--text-muted-4);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
  text-align: center;
}

/* ---------- Welcome (split) ---------- */

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.welcome-copy { padding: 48px 44px; }

.welcome-copy h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  margin: 0 0 20px;
  font-weight: 600;
}

.welcome-copy p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted-1);
  margin: 0 0 22px;
}

.welcome-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.welcome-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-4);
}

.welcome-photo {
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 860px) {
  .welcome-photo {
    background-size: contain !important;
    background-color: #0c0c0c;
    min-height: 240px !important;
    aspect-ratio: 1536 / 1024;
  }
}

.link-arrow {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}

/* ---------- Card grids ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: left; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

@media (max-width: 860px) {
  .welcome-grid, .grid-3, .grid-2 { grid-template-columns: 1fr !important; }
}
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr !important; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
}

.card-lg { padding: 32px 26px; background: var(--bg-card-alt); }

.card-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: oklch(0.1 0.01 55);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 17px;
  margin-bottom: 18px;
}

.card-icon-circle-sm {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-icon-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 700;
}

.card h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 8px;
}

.card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted-5);
  margin: 0;
}

.card-lg h3 { font-size: 17px; margin: 0 0 10px; }
.card-lg p { font-size: 14px; color: var(--text-muted-3); line-height: 1.6; margin: 0 0 16px; }

/* ---------- Why-partner section ---------- */

.section-alt { background: var(--bg-deep); text-align: center; }

/* ---------- Testimonials ---------- */

.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-quote { font-size: 14px; line-height: 1.6; color: var(--text-6); margin: 0 0 18px; font-style: italic; }
.testimonial-name { font-size: 13.5px; font-weight: 700; color: var(--text-1); }
.testimonial-loc { font-size: 12.5px; color: var(--text-muted-6); margin-top: 2px; }

/* ---------- CTA banner ---------- */

.cta-banner {
  position: relative;
  padding: 90px 5vw;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-banner-scrim { position: absolute; inset: 0; background: var(--bg-cta-tint); }

.cta-banner-content { position: relative; max-width: 640px; margin: 0 auto; }

.cta-icon { font-size: 26px; color: var(--gold); margin-bottom: 18px; }

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 16px;
  font-weight: 600;
}

.cta-banner p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-5);
  margin: 0 0 32px;
}

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

.site-footer {
  padding: 56px 5vw 28px;
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 36px; }
}

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }

.footer-brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.footer-brand-name { font-weight: 800; font-size: 16px; letter-spacing: 0.05em; color: var(--text-bright-2); }

.footer p { font-size: 13.5px; line-height: 1.6; color: var(--footer-text-dim); max-width: 260px; margin: 0 0 18px; }

.footer-socials { display: flex; gap: 12px; }

.footer-social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--footer-social-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--footer-social-text);
  font-weight: 700;
  text-decoration: none;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--footer-heading);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--footer-text); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact div { font-size: 14px; color: var(--footer-text); }

.footer-bottom {
  max-width: 1280px;
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--footer-border-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-bottom span:first-child { font-size: 13px; color: var(--footer-text-copyright); }
.footer-bottom span:last-child { font-size: 12.5px; color: var(--footer-text-copyright-2); }

/* ---------- Photo placeholder (no real photo sourced) ---------- */

.photo-placeholder {
  background: linear-gradient(135deg, oklch(0.19 0.015 60), oklch(0.15 0.013 55));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  min-height: 280px;
}

.photo-placeholder span {
  font-size: 13px;
  color: var(--text-dim-2);
}

/* ---------- Misc page-specific ---------- */

.narrow { max-width: 780px; }
.narrow-md { max-width: 820px; }
.narrow-sm { max-width: 720px; }

.checklist { display: flex; flex-direction: column; gap: 16px; max-width: 640px; margin: 0 auto; text-align: left; }
.checklist div { display: flex; gap: 12px; align-items: flex-start; }
.checklist span.mark { color: var(--gold); font-size: 15px; margin-top: 1px; }
.checklist span.txt { font-size: 14.5px; color: var(--text-7); line-height: 1.5; }

.panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail .icon { font-size: 18px; color: var(--gold); }
.contact-detail .label { font-size: 14.5px; font-weight: 700; }
.contact-detail .value { font-size: 13.5px; color: var(--text-muted-4); }
