/* ============================================================
   PSYCH STATION — MAIN STYLESHEET
   Fonts: Cormorant Garamond, Playfair Display, Raleway
   Edit colours via WordPress Customizer > Psych Station > Colors
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Raleway:wght@300;400;500;600&display=swap');

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── DESIGN TOKENS ── */
:root {
  --navy:        #060c18;
  --navy2:       #0d1525;
  --navy3:       #131e30;
  --gold:        #c9a84c;
  --gold-light:  #e8d08a;
  --gold-dim:    #8a6f2e;
  --ivory:       #f5f0e4;
  --ivory-dim:   #c8c0aa;
  --muted:       #6e6454;
  --teal:        #1a7a6e;
  --teal-light:  #2aaf9a;
  --line:        rgba(201,168,76,0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--ivory);
  font-family: 'Raleway', sans-serif;
  overflow-x: hidden;
}

/* ── UTILITY ── */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── ADMIN BAR OFFSET ── */
.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar nav { top: 46px; } }

/* ================================================================
   NAVIGATION
================================================================ */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6,12,24,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img.custom-logo {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav-links a,
.nav-links li > a {
  color: var(--ivory-dim);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .3s;
}

.nav-links a:hover,
.nav-links li > a:hover,
.nav-links .current-menu-item > a { color: var(--gold); }

.nav-cta > a,
a.nav-cta {
  border: 1px solid var(--gold-dim) !important;
  color: var(--gold) !important;
  padding: 8px 18px;
  transition: all .3s !important;
}

.nav-cta > a:hover,
a.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  outline: none;
}

.nav-hamburger span {
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: block;
  transition: all .3s;
}

/* ================================================================
   HERO SECTION
================================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 40%, rgba(26,122,110,.13) 0%, transparent 60%),
    radial-gradient(ellipse at 25% 75%, rgba(201,168,76,.09) 0%, transparent 55%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 79px, rgba(201,168,76,.04) 80px
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  padding: 0 40px;
}

.hero-tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-tag::before, .hero-tag::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: var(--gold-dim);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 9vw, 108px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -2px;
  color: var(--ivory);
  margin-bottom: 16px;
}

.hero-title span { color: var(--gold); font-style: italic; }

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 300;
  color: var(--ivory-dim);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 52px;
}

.hero-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 44px;
}

.hero-stats {
  display: flex;
  gap: 64px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stat { text-align: center; }

.hero-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--gold);
  font-weight: 300;
  letter-spacing: -1px;
}

.hero-stat span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

.hero-actions {
  margin-top: 52px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 36px;
  text-decoration: none;
  font-weight: 600;
  transition: all .3s;
  display: inline-block;
  cursor: pointer;
}

.btn-primary:hover { background: var(--gold-light); color: var(--navy); }

.btn-outline {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold-dim);
  padding: 16px 36px;
  text-decoration: none;
  font-weight: 500;
  transition: all .3s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.06);
  color: var(--gold);
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}

@keyframes pulse { 0%,100% { opacity: .5; } 50% { opacity: 1; } }

/* Decorative corners */
.corner-tl, .corner-tr, .corner-bl, .corner-br {
  position: absolute;
  width: 40px;
  height: 40px;
}
.corner-tl { top: 80px; left: 40px; border-top: 1px solid var(--gold-dim); border-left: 1px solid var(--gold-dim); }
.corner-tr { top: 80px; right: 40px; border-top: 1px solid var(--gold-dim); border-right: 1px solid var(--gold-dim); }
.corner-bl { bottom: 80px; left: 40px; border-bottom: 1px solid var(--gold-dim); border-left: 1px solid var(--gold-dim); }
.corner-br { bottom: 80px; right: 40px; border-bottom: 1px solid var(--gold-dim); border-right: 1px solid var(--gold-dim); }

.edition-tag {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(201,168,76,.2);
  padding: 6px 20px;
  white-space: nowrap;
}

/* ================================================================
   SECTION BASE
================================================================ */
.site-section { padding: 100px 80px; position: relative; }

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-eyebrow::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: var(--gold-dim);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 32px;
}

.section-title em { font-style: italic; color: var(--gold); }

/* ================================================================
   ABOUT SECTION
================================================================ */
#about {
  background: var(--navy2);
  display: flex;
  align-items: center;
  gap: 80px;
  min-height: 80vh;
}

.about-text { flex: 1; }

.about-text p {
  color: var(--ivory-dim);
  line-height: 1.9;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-text p strong { color: var(--gold); font-weight: 500; }

.about-art {
  flex: 0 0 360px;
  height: 480px;
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-art::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1px solid rgba(201,168,76,.08);
}

.about-art-inner { text-align: center; padding: 40px; }

.about-art-symbol {
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px;
  line-height: 1;
  color: var(--gold);
  opacity: .15;
  font-weight: 700;
}

.about-art-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-top: -16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.about-stat {
  border-left: 2px solid var(--gold-dim);
  padding-left: 20px;
}

.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold);
  font-weight: 300;
}

.about-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ================================================================
   SERVICES SECTION
================================================================ */
#services { background: var(--navy); min-height: 80vh; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
  margin-top: 48px;
  border: 1px solid var(--line);
}

.service-card {
  padding: 40px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .3s;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.05), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  color: var(--gold);
  opacity: .15;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--ivory);
  margin-bottom: 12px;
  font-weight: 400;
}

.service-desc {
  font-size: 13px;
  color: var(--ivory-dim);
  line-height: 1.75;
  font-weight: 300;
}

.service-tag {
  margin-top: 20px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-light);
}

/* ================================================================
   WHY SECTION
================================================================ */
#why { background: var(--navy2); min-height: 60vh; }

.why-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 48px;
}

.why-list { display: grid; gap: 28px; }

.why-item { display: flex; gap: 24px; align-items: flex-start; }

.why-item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold-dim);
  font-weight: 300;
  line-height: 1;
  min-width: 36px;
}

.why-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--ivory);
  margin-bottom: 8px;
  font-weight: 400;
}

.why-item-desc {
  font-size: 13px;
  color: var(--ivory-dim);
  line-height: 1.75;
  font-weight: 300;
}

.why-pull {
  border: 1px solid var(--line);
  padding: 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.why-pull::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1px solid rgba(201,168,76,.06);
}

.why-pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--ivory);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

.why-pull-quote em { color: var(--gold); font-style: italic; }

.why-pull-attr {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}

/* ================================================================
   MEMBERSHIP SECTION
================================================================ */
#membership { background: var(--navy); min-height: 60vh; }

.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.mem-card {
  background: var(--navy3);
  border: 1px solid rgba(201,168,76,.1);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}

.mem-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-dim);
  transition: background .3s;
}

.mem-card.featured::after { background: var(--gold); }
.mem-card:hover { border-color: rgba(201,168,76,.25); }

.mem-card.featured {
  background: linear-gradient(135deg, var(--navy3) 0%, rgba(201,168,76,.04) 100%);
}

.mem-badge {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-block;
}

.mem-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 8px;
}

.mem-tagline {
  font-size: 13px;
  color: var(--ivory-dim);
  margin-bottom: 32px;
  font-weight: 300;
  font-style: italic;
}

.mem-divider {
  width: 48px;
  height: 1px;
  background: var(--gold-dim);
  margin-bottom: 28px;
}

.mem-perks {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}

.mem-perks li {
  font-size: 13px;
  color: var(--ivory-dim);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
  font-weight: 300;
}

.mem-perks li::before {
  content: '→';
  color: var(--gold-dim);
  flex-shrink: 0;
  margin-top: 0;
}

.mem-cta {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
  transition: all .3s;
}

.mem-cta:hover { background: var(--gold-light); color: var(--navy); }

.mem-cta.outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-dim);
}

.mem-cta.outline:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.06);
}

/* ================================================================
   PROJECTS SECTION
================================================================ */
#projects { background: var(--navy2); min-height: 60vh; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
  margin-top: 48px;
  border: 1px solid var(--line);
}

.project-card {
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  cursor: default;
  transition: background .2s;
}

.project-card:hover { background: rgba(201,168,76,.03); }

.project-category {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.project-category::before {
  content: '';
  flex: 0 0 24px;
  height: 1px;
  background: var(--teal);
}

.project-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.2;
}

.project-desc {
  font-size: 13px;
  color: var(--ivory-dim);
  line-height: 1.75;
  font-weight: 300;
}

.project-year {
  position: absolute;
  top: 36px;
  right: 36px;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
}

/* ================================================================
   CONTACT SECTION
================================================================ */
#contact {
  background: var(--navy);
  min-height: 60vh;
  display: flex;
  align-items: center;
  gap: 80px;
}

.contact-text { flex: 1; }

.contact-text > p {
  color: var(--ivory-dim);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  max-width: 480px;
  margin-bottom: 0;
}

.contact-details {
  display: grid;
  gap: 28px;
  margin-top: 40px;
}

.contact-item { display: flex; align-items: flex-start; gap: 20px; }

.contact-key {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 80px;
  padding-top: 3px;
}

.contact-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--ivory-dim);
  font-weight: 300;
}

.contact-val a {
  color: var(--ivory-dim);
  text-decoration: none;
  transition: color .3s;
}

.contact-val a:hover { color: var(--gold); }

.contact-socials {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.social-link {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(201,168,76,.15);
  padding: 10px 16px;
  text-decoration: none;
  transition: all .3s;
}

.social-link:hover { color: var(--gold); border-color: var(--gold-dim); }

.contact-form-col { flex: 0 0 440px; }

.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--ivory);
  font-weight: 300;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 16px; }

.form-input {
  width: 100%;
  background: var(--navy3);
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 14px 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  outline: none;
  transition: border .2s;
}

.form-input:focus { border-color: var(--gold-dim); }
.form-input::placeholder { color: var(--muted); }
textarea.form-input { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px;
  cursor: pointer;
  transition: all .3s;
  margin-top: 4px;
}

.form-submit:hover { background: var(--gold-light); }

/* Contact Form 7 compatibility */
.wpcf7-form .form-input { display: block; }
.wpcf7-form .form-submit { display: block; width: 100%; }
.wpcf7-response-output { margin-top: 16px; font-size: 13px; letter-spacing: 1px; padding: 12px 18px; }
.wpcf7-mail-sent-ok { border-color: var(--teal) !important; color: var(--teal-light) !important; background: rgba(26,122,110,.08); }
.wpcf7-validation-errors { border-color: var(--gold-dim) !important; color: var(--gold) !important; background: rgba(201,168,76,.06); }

/* ================================================================
   FOOTER
================================================================ */
#colophon {
  background: var(--navy2);
  padding: 80px;
  text-align: center;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,.05) 0%, transparent 70%);
}

.footer-logo {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 300;
}

.footer-tagline {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 36px;
  position: relative;
}

.footer-ornament {
  font-size: 24px;
  color: var(--gold-dim);
  margin: 28px 0;
  letter-spacing: 20px;
  position: relative;
}

.footer-nav {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
  list-style: none;
  position: relative;
}

.footer-nav a,
.footer-nav li > a {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
}

.footer-nav a:hover,
.footer-nav li > a:hover { color: var(--gold); }

.footer-copy {
  position: relative;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 24px;
}

/* ================================================================
   GENERIC PAGE / BLOG STYLES
================================================================ */
.page-header {
  padding: 160px 80px 80px;
  background: var(--navy2);
  border-bottom: 1px solid var(--line);
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  color: var(--ivory);
}

.page-header h1 em { color: var(--gold); font-style: italic; }

.site-content { padding: 80px; background: var(--navy); min-height: 50vh; }

.entry-content { max-width: 800px; margin: 0 auto; }

.entry-content h1, .entry-content h2, .entry-content h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ivory);
  font-weight: 300;
  margin-bottom: 20px;
}

.entry-content h2 { font-size: clamp(28px, 4vw, 48px); }
.entry-content h3 { font-size: clamp(22px, 3vw, 36px); color: var(--gold); }

.entry-content p {
  color: var(--ivory-dim);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 300;
}

.entry-content a { color: var(--gold); transition: color .3s; }
.entry-content a:hover { color: var(--gold-light); }

.entry-content ul, .entry-content ol {
  color: var(--ivory-dim);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 24px;
  padding-left: 24px;
  font-weight: 300;
}

.entry-content blockquote {
  border-left: 2px solid var(--gold-dim);
  padding: 20px 28px;
  margin: 32px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ivory-dim);
}

/* Blog posts list */
.posts-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2px; border: 1px solid var(--line); }

.post-card {
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}

.post-card:hover { background: rgba(201,168,76,.03); }

.post-card-date {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.post-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--ivory);
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  display: block;
}

.post-card-title:hover { color: var(--gold); }

.post-card-excerpt {
  font-size: 13px;
  color: var(--ivory-dim);
  line-height: 1.75;
  font-weight: 300;
}

/* 404 */
.error-404 { text-align: center; padding: 160px 40px; }
.error-404 .error-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  color: var(--gold);
  opacity: .1;
  font-weight: 700;
  line-height: 1;
}
.error-404 h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--ivory);
  font-weight: 300;
  margin-bottom: 20px;
  margin-top: -40px;
}
.error-404 p {
  color: var(--ivory-dim);
  margin-bottom: 32px;
  font-size: 15px;
  font-weight: 300;
}

/* ================================================================
   SCROLL REVEAL ANIMATIONS
================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 900px) {
  nav.site-nav { padding: 0 20px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: rgba(6,12,24,.98);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li > a, .nav-links a { padding: 14px 24px; border-bottom: 1px solid rgba(201,168,76,.06); }
  .nav-hamburger { display: flex; }

  .site-section { padding: 60px 24px; }
  #about, #contact { flex-direction: column; gap: 40px; }
  .about-art { flex: none; width: 100%; height: 260px; }
  .contact-form-col { flex: none; width: 100%; }
  .why-cols { grid-template-columns: 1fr; }
  .membership-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 36px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 260px; text-align: center; }
  .corner-tl, .corner-tr, .corner-bl, .corner-br, .edition-tag { display: none; }
  #colophon { padding: 48px 24px; }
  .footer-nav { gap: 16px; }
  .page-header { padding: 120px 24px 60px; }
  .site-content { padding: 60px 24px; }
}

@media (max-width: 600px) {
  .hero-title { letter-spacing: -1px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .services-grid, .projects-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}
