/* ============================================================
   PRINCEWOOD CAPITAL — CLEAN REBUILD
   Black / White / Wine Red — No grey anywhere
   ============================================================ */

:root {
  --black:     #080808;
  --dark:      #141414;
  --white:     #ffffff;
  --off-white: #f7f6f4;
  --pale:      #ece9e5;
  --wine:      #1a4a2e;
  --wine-lt:   #236b3f;
  --wine-dk:   #123320;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Barlow', sans-serif;
  --font-cond:  'Barlow Condensed', sans-serif;

  --nav-h: 76px;
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body { font-family: var(--font-sans); background: var(--white); color: var(--black); line-height: 1.65; overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.1; color: var(--black); }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 700; font-family: var(--font-cond); letter-spacing: 0.06em; text-transform: uppercase; }
p  { color: #2a2a2a; line-height: 1.8; font-size: 1rem; }

/* on dark backgrounds */
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-dark p { color: rgba(255,255,255,0.75); }
.on-dark h4 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.85rem; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 0.85rem;
}

/* LAYOUT */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 7rem 0; background: var(--white); }
.section-off { padding: 7rem 0; background: var(--off-white); }
.section-black { padding: 7rem 0; background: var(--black); }

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.8rem 4rem;
  text-align: center;
  transition: all 0.3s var(--ease);
  cursor: pointer; border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  width: auto;
}
.btn-wine { background: var(--wine); color: var(--white); border-color: var(--wine); }
.btn-wine:hover { background: var(--wine-lt); border-color: var(--wine-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,74,46,0.4); }
.btn-white { background: var(--white); color: var(--wine-dk); border-color: var(--white); }
.btn-white:hover { background: var(--off-white); border-color: var(--off-white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-dark { background: transparent; color: var(--black); border-color: rgba(0,0,0,0.3); }
.btn-outline-dark:hover { border-color: var(--wine); color: var(--wine); }

/* NAVBAR */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 200;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
#nav.solid { background: var(--black); box-shadow: 0 1px 0 rgba(26,74,46,0.2); }
.nav-wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 2.5rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.logo-wordmark {
  display: flex; flex-direction: column; gap: 2px;
  border-left: 1px solid rgba(255,255,255,0.18); padding-left: 10px;
}
.logo-name { font-family: var(--font-cond); font-size: 1rem; font-weight: 700; letter-spacing: 0.2em; color: var(--white); text-transform: uppercase; }
.logo-tagline { font-family: var(--font-cond); font-size: 0.6rem; letter-spacing: 0.28em; color: var(--wine-lt); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-family: var(--font-cond); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); transition: color 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--wine-lt);
  transform: scaleX(0); transition: transform 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links .cta-link { background: var(--wine); color: var(--white); padding: 0.55rem 1.4rem; }
.nav-links .cta-link::after { display: none; }
.nav-links .cta-link:hover { background: var(--wine-lt); color: var(--white); }
.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--white); }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-rows: 1fr auto; background: var(--black); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1800&q=80');
  background-size: cover; background-position: center 30%;
  filter: brightness(0.42);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.15) 60%, rgba(8,8,8,0.5) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 128px;
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 5rem) 2.5rem 4rem;
  max-width: 1240px; margin: 0 auto; width: 100%;
}
.hero-h1 {
  color: var(--white); font-size: clamp(3.5rem, 7.5vw, 7rem);
  font-weight: 700; line-height: 1.0; max-width: 860px; margin-bottom: 1.75rem;
  animation: fadeUp 0.8s 0.2s var(--ease) both;
}
.hero-h1 em { font-style: italic; color: var(--wine-lt); }
.hero-p {
  max-width: 500px; color: rgba(255,255,255,0.7);
  font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.4s var(--ease) both;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.8s 0.55s var(--ease) both; }
.hero-stats {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(26,74,46,0.3);
  display: flex; align-items: stretch;
}
.hero-stat { flex: 1; padding: 1.75rem 2.5rem; border-right: 1px solid rgba(255,255,255,0.06); }
.hero-stat:last-child { border-right: none; }
.stat-val { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--white); display: block; }
.stat-lbl { font-family: var(--font-cond); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.25em; text-transform: uppercase; color: var(--wine-lt); display: block; margin-top: 4px; }

/* MARQUEE */
.marquee-bar { background: var(--wine-dk); overflow: hidden; padding: 0.75rem 0; display: flex; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-item {
  font-family: var(--font-cond); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); padding: 0 3rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* INTRO SPLIT */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
.intro-img-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 3px; overflow: hidden; }
.intro-img-stack img { width: 100%; height: 100%; object-fit: cover; }
.intro-text {
  background: var(--black); padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.intro-text h2 { color: var(--white); margin-bottom: 1.5rem; }
.intro-text p { color: rgba(255,255,255,0.72); margin-bottom: 1.25rem; }
.intro-text p:last-of-type { margin-bottom: 2rem; }
.intro-rule { width: 40px; height: 2px; background: var(--wine); margin-bottom: 1.5rem; }
.intro-text .eyebrow { color: var(--wine-lt); font-size: 0.9rem; }

/* PILLARS */
.pillars-header { text-align: center; margin-bottom: 4rem; }
.pillars-header p { max-width: 560px; margin: 0.75rem auto 0; color: #2a2a2a; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--pale); }
.pillar-card {
  background: var(--white); padding: 3rem 2.5rem;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.pillar-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--wine);
  transform: scaleX(0); transition: transform 0.35s var(--ease);
}
.pillar-card:hover { background: var(--off-white); }
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-num { font-family: var(--font-cond); font-size: 3.5rem; font-weight: 700; color: rgba(26,74,46,0.1); line-height: 1; margin-bottom: 1rem; }
.pillar-card h3 { color: var(--black); margin-bottom: 0.75rem; font-size: 1.25rem; }
.pillar-card p { color: #2a2a2a; font-size: 0.93rem; }

/* IMAGE STRIP — 2 cols only, no broken images */
.img-strip { display: grid; grid-template-columns: 1.2fr 1fr; height: 480px; gap: 3px; }
.img-strip img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.88); transition: filter 0.4s; }
.img-strip img:hover { filter: brightness(1); }

/* STRATEGY TWO-PANEL */
.strategy-two { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--pale); }
.strat-panel { background: var(--white); padding: 5rem 4rem; position: relative; overflow: hidden; }
.strat-panel.dark { background: var(--off-white); border-left: 3px solid var(--wine); }
.strat-panel h3 { color: var(--black); font-size: 2rem; margin-bottom: 1rem; }
.strat-panel p { color: #2a2a2a; margin-bottom: 1rem; }
.strat-rule { width: 32px; height: 2px; background: var(--wine); margin-bottom: 1.5rem; }
.strat-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; }
.strat-list li { font-size: 0.9rem; color: #2a2a2a; padding-left: 1.25rem; position: relative; }
.strat-list li::before { content: '→'; position: absolute; left: 0; color: var(--wine); }

.strat-panel-centered { display: flex; flex-direction: column; align-items: center; text-align: center; }
.strat-panel-centered .strat-rule { margin-left: auto; margin-right: auto; }
.strat-panel-centered p { max-width: 480px; }
.strat-list-centered { align-items: center; max-width: 460px; margin-left: auto; margin-right: auto; }
.strat-list-centered li { padding-left: 1.5rem; text-align: left; }
.strat-panel-centered .btn { display: block; width: max-content; margin-left: auto; margin-right: auto; margin-top: 1.5rem; }

/* QUOTE BLEED */
.quote-bleed { position: relative; overflow: hidden; min-height: 400px; display: flex; align-items: center; }
.quote-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.28);
}
.quote-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.6) 0%, transparent 100%);
}
.quote-content { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 5rem 2.5rem; }
.quote-mark { font-family: var(--font-serif); font-size: 8rem; color: var(--wine); line-height: 0.5; display: block; margin-bottom: 1rem; }
.quote-text { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.6rem); color: var(--white); font-style: italic; max-width: 880px; line-height: 1.3; margin-bottom: 1.5rem; }
.quote-attr { font-family: var(--font-cond); font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--wine-lt); }

/* PROCESS — BLACK BACKGROUND, WHITE TEXT */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--black);
}
.process-step { padding: 4rem 2.5rem; border-right: 1px solid rgba(255,255,255,0.06); }
.process-step:last-child { border-right: none; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--wine);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-cond); font-size: 0.85rem; font-weight: 700;
  color: var(--wine); margin-bottom: 1.5rem; background: var(--black);
}
.process-step h4 { color: var(--white); margin-bottom: 0.75rem; }
.process-step p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

/* ALT ROWS */
.alt-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.alt-row.reverse { direction: rtl; }
.alt-row.reverse > * { direction: ltr; }
.alt-img { overflow: hidden; }
.alt-img img { width: 100%; height: 100%; object-fit: cover; }
.alt-text { padding: 5rem 5rem; display: flex; flex-direction: column; justify-content: center; }
.alt-text.bg-off { background: var(--off-white); }
.alt-text.bg-white { background: var(--white); }
.alt-text h2 { color: var(--black); margin-bottom: 1.25rem; }
.alt-text p { color: #2a2a2a; margin-bottom: 1rem; }
.alt-rule { width: 36px; height: 2px; background: var(--wine); margin-bottom: 1.5rem; }
.alt-text .btn { margin-top: 0.75rem; align-self: center; }
.intro-text .btn { align-self: center; }
.strat-panel .btn { display: block; width: max-content; margin-left: auto; margin-right: auto; }
.inq-left .btn { align-self: center; }

/* CRITERIA CARDS */
.criteria-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.crit-card { border: 1px solid var(--pale); padding: 2rem; transition: border-color 0.3s, box-shadow 0.3s; }
.crit-card:hover { border-color: var(--wine); box-shadow: 0 6px 28px rgba(26,74,46,0.1); }
.crit-icon { width: 38px; height: 38px; border: 1px solid var(--wine); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--wine); font-size: 1rem; }
.crit-card h4 { color: var(--black); margin-bottom: 0.6rem; }
.crit-card p { color: #2a2a2a; font-size: 0.88rem; }

/* CTA BAND */
.cta-band { background: var(--wine-dk); padding: 5rem 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-band p { color: rgba(255,255,255,0.75); margin-top: 0.5rem; }

/* PAGE HERO (inner pages) */
.page-hero { position: relative; overflow: hidden; padding: calc(var(--nav-h) + 6rem) 2.5rem 5rem; background: var(--black); }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.38); }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(8,8,8,0.75) 0%, rgba(8,8,8,0.2) 100%); }
.page-hero-content { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; }
.page-hero h1 { color: var(--white); }
.page-hero-sub { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 520px; margin-top: 1rem; line-height: 1.7; }

/* ABOUT STATS */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--pale); margin-top: 3.5rem; }
.a-stat { padding: 2.5rem 2rem; text-align: center; border-right: 1px solid var(--pale); }
.a-stat:last-child { border-right: none; }
.a-stat-val { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 700; color: var(--wine); }
.a-stat-lbl { font-family: var(--font-cond); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #2a2a2a; margin-top: 0.3rem; }

/* INQUIRY — two separate form sections */
.inq-two-col { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.inq-left h2 { margin-bottom: 1.25rem; }
.inq-left p { color: #2a2a2a; margin-bottom: 1rem; }
.inq-list { margin: 1.75rem 0; }
.inq-list li { font-size: 0.92rem; color: #2a2a2a; padding: 0.6rem 0; border-bottom: 1px solid var(--pale); display: flex; gap: 0.75rem; align-items: flex-start; }
.inq-list li:first-child { border-top: 1px solid var(--pale); }
.inq-list li::before { content: '→'; color: var(--wine); font-weight: 700; flex-shrink: 0; }
.inq-list.light li { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.1); }
.inq-list.light li:first-child { border-top-color: rgba(255,255,255,0.1); }
.inq-list.light li::before { color: var(--wine-lt); }
.contact-box { background: var(--black); padding: 2rem 2.25rem; margin-top: 1.75rem; }
.contact-box p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 0.4rem; }
.contact-box a { color: var(--wine-lt); font-family: var(--font-cond); font-size: 0.92rem; }
.contact-box.light { background: rgba(255,255,255,0.07); }
.contact-box.light p { color: rgba(255,255,255,0.55); }
.contact-box.light a { color: var(--wine-lt); }

/* FORMS */
.inq-form-box { background: var(--white); padding: 3rem; box-shadow: 0 4px 48px rgba(0,0,0,0.07); }
.inq-form-box.dark { background: #141414; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.2rem; }
.fg label { display: block; font-family: var(--font-cond); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--black); margin-bottom: 0.4rem; }
.inq-form-box.dark .fg label { color: rgba(255,255,255,0.8); }
.fg input, .fg select, .fg textarea {
  width: 100%; background: var(--off-white);
  border: 1px solid var(--pale); border-bottom: 1px solid #bbb;
  color: var(--black); font-family: var(--font-sans); font-size: 0.95rem;
  padding: 0.85rem 1rem; outline: none; transition: border 0.25s; appearance: none; border-radius: 0;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--wine); background: var(--white); }
.fg textarea { resize: vertical; }
.inq-form-box.dark .fg input,
.inq-form-box.dark .fg select,
.inq-form-box.dark .fg textarea { background: #1e1e1e; border-color: rgba(255,255,255,0.1); color: var(--white); }
.inq-form-box.dark .fg input:focus,
.inq-form-box.dark .fg select:focus,
.inq-form-box.dark .fg textarea:focus { border-color: var(--wine-lt); }
.inq-form-box.dark .fg select option { background: #1e1e1e; color: var(--white); }
.form-check { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1.5rem; }
.form-check input { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; accent-color: var(--wine); }
.form-check label { font-size: 0.8rem; color: #555; }
.inq-form-box.dark .form-check label { color: rgba(255,255,255,0.5); }
.form-submit-btn { width: 100%; cursor: pointer; font-size: 0.85rem; padding: 1.1rem; text-align: center; }
.form-ok { display: none; margin-top: 1.25rem; padding: 1rem 1.5rem; background: rgba(26,74,46,0.08); border-left: 3px solid var(--wine); font-size: 0.88rem; color: var(--black); }
.form-ok b { color: var(--wine-dk); }
.inq-form-box.dark .form-ok { background: rgba(26,74,46,0.15); color: var(--white); }

/* SECTION DIVIDER LABEL */
.section-label {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 2.5rem 0; background: var(--white);
}
.section-label-line { flex: 1; height: 1px; background: var(--pale); }
.section-label-text { font-family: var(--font-cond); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; color: var(--wine); white-space: nowrap; }

/* FOOTER */
footer { background: var(--black); border-top: 1px solid rgba(26,74,46,0.15); padding: 5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.75; margin-top: 1rem; max-width: 280px; }
.footer-col h5 { font-family: var(--font-cond); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; color: var(--wine-lt); margin-bottom: 1.25rem; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 0.65rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 0.4rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); max-width: 680px; }
.footer-bottom span { font-size: 0.75rem; color: var(--wine-lt); letter-spacing: 0.15em; }

/* OFFICE CARDS */
.offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--pale); }
.office-card { background: var(--white); overflow: hidden; }
.office-img { height: 300px; overflow: hidden; }
.office-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.office-card:hover .office-img img { transform: scale(1.04); }
.office-info { padding: 2.5rem 3rem; }
.office-city { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 700; color: var(--black); margin-bottom: 0.3rem; }
.office-role { font-family: var(--font-cond); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; color: var(--wine); margin-bottom: 1rem; }
.office-addr { font-size: 0.9rem; color: #2a2a2a; line-height: 1.7; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .intro-split, .strategy-two, .alt-row, .offices-grid, .inq-two-col { grid-template-columns: 1fr; }
  .alt-row.reverse { direction: ltr; }
  .alt-text { padding: 4rem 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .criteria-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .burger { display: flex; }
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--black); flex-direction: column; padding: 2rem; gap: 1.5rem; border-top: 1px solid rgba(26,74,46,0.15); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .img-strip { display: none; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .form-row2 { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .intro-img-stack { display: none; }
  .alt-img-credit-advisor { display: none; }
  .alt-img-team-intro { display: none; }
  .alt-img-home-serve { display: none; }
  .strategy-two { grid-template-columns: 1fr; }
  .strat-panel { padding: 3.5rem 2.5rem; }
  .strat-panel .btn,
  .alt-text .btn,
  .intro-text .btn,
  .inq-left .btn {
    display: block;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    text-align: center;
  }
  body, .wrap, section, .about-stats, .criteria-grid, .pillars-grid, .footer-grid {
    max-width: 100vw;
    overflow-x: hidden;
  }
  /* Never let a section or box trap touch scrolling on mobile.
     Forcing vertical panning to always win means any part of the
     screen scrolls the page, even over card/box grids. */
  html, body { touch-action: pan-y pinch-zoom; }
}

/* PARTNER LOGIN NAV LINK */
.nav-links .partner-link {
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.45rem 1rem;
  letter-spacing: 0.12em;
  transition: border-color 0.25s, color 0.25s;
}
.nav-links .partner-link::after { display: none; }
.nav-links .partner-link:hover { border-color: var(--wine-lt); color: var(--wine-lt); }

/* LOGIN PAGE */
.login-page {
  min-height: 100vh; background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.login-box {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--wine);
  padding: 3rem 2.5rem;
  width: 100%; max-width: 420px;
}
.login-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 2.5rem;
}
.login-box h2 {
  color: var(--white); font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.login-box p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem; margin-bottom: 2rem;
}
.login-fg { margin-bottom: 1.1rem; }
.login-fg label {
  display: block; font-family: var(--font-cond);
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 0.4rem;
}
.login-fg input {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom-color: rgba(255,255,255,0.25);
  color: var(--white); font-family: var(--font-sans);
  font-size: 0.95rem; padding: 0.85rem 1rem;
  outline: none; transition: border 0.25s;
}
.login-fg input:focus { border-color: var(--wine-lt); }
.login-submit {
  width: 100%; margin-top: 0.5rem;
  background: var(--wine); color: var(--white);
  font-family: var(--font-cond); font-size: 0.82rem;
  font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 1rem;
  border: none; cursor: pointer;
  transition: background 0.25s;
}
.login-submit:hover { background: var(--wine-lt); }
.login-forgot {
  text-align: center; margin-top: 1.25rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
}
.login-forgot a { color: var(--wine-lt); }
.login-disclaimer {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.72rem; color: rgba(255,255,255,0.22);
  line-height: 1.6; text-align: center;
}

/* INTRO TEXT LIGHT (home page white panel) */
.intro-text-light {
  background: var(--white) !important;
}
.intro-text-light h2 { color: var(--black) !important; }
.intro-text-light p { color: #2a2a2a !important; }
.intro-text-light .eyebrow { color: var(--wine) !important; }
.intro-text-light .btn-outline-white {
  color: var(--black) !important;
  border-color: rgba(0,0,0,0.25) !important;
}
.intro-text-light .btn-outline-white:hover {
  border-color: var(--wine) !important;
  color: var(--wine) !important;
}

/* DONATE NAV LINK */
.nav-links .donate-link {
  color: var(--white);
  background: rgba(26,74,46,0.85);
  padding: 0.45rem 1rem;
  letter-spacing: 0.12em;
  transition: background 0.25s;
}
.nav-links .donate-link::after { display: none; }
.nav-links .donate-link:hover { background: var(--wine-lt); color: var(--white); }

/* DONATIONS PAGE */
.donations-hero {
  position: relative; min-height: 520px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; background: var(--black);
}
.donations-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1800&q=80');
  background-size: cover; background-position: center;
  filter: brightness(0.3);
}
.donations-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(18,51,32,0.7) 0%, rgba(8,8,8,0.2) 100%);
}
.donations-hero-content { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: calc(var(--nav-h) + 4rem) 2.5rem 4rem; }
.donations-hero h1 { color: var(--white); }

.tree-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.tree-img { overflow: hidden; }
.tree-img img { width: 100%; height: 100%; object-fit: cover; }
.tree-text { background: var(--black); padding: 5rem; display: flex; flex-direction: column; justify-content: center; }
.tree-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.tree-text p { color: rgba(255,255,255,0.72); margin-bottom: 1rem; }

.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--pale); margin-top: 3rem; }
.impact-card { background: var(--white); padding: 2.5rem 2rem; text-align: center; transition: background 0.3s; }
.impact-card:hover { background: var(--off-white); }
.impact-num { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 700; color: var(--wine); }
.impact-lbl { font-family: var(--font-cond); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: #2a2a2a; margin-top: 0.35rem; }
.impact-card p { font-size: 0.88rem; color: #2a2a2a; margin-top: 0.75rem; }

.donate-cta-box {
  background: var(--wine-dk); padding: 5rem 0;
  text-align: center;
}
.donate-cta-box h2 { color: var(--white); margin-bottom: 1rem; }
.donate-cta-box p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2rem; }
.btn-donate-main {
  display: inline-block; background: var(--white); color: var(--wine-dk);
  font-family: var(--font-cond); font-size: 0.9rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase; padding: 1.1rem 3rem;
  transition: all 0.3s; text-decoration: none;
}
.btn-donate-main:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

@media (max-width: 768px) {
  .tree-split { grid-template-columns: 1fr; }
  .tree-text { padding: 3rem 1.25rem; }
  .impact-grid { grid-template-columns: 1fr; }
  .donations-hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .donations-hero-content p { margin-left: auto; margin-right: auto; }
  .donations-hero-content .btn { display: block; width: max-content; margin-left: auto; margin-right: auto; }
}

/* LOGIN PAGE — WHITE VERSION */
.login-page-light { background: var(--off-white); }
.login-box-light {
  background: var(--white);
  border: 1px solid var(--pale);
  border-top: 3px solid var(--wine);
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}
.login-box-light h2 { color: var(--black); }
.login-box-light p { color: #5a5a5a; }
.login-fg label { color: #2a2a2a !important; }
.login-box-light .login-fg input {
  background: var(--off-white);
  border-color: var(--pale);
  border-bottom-color: #bbb;
  color: var(--black);
}
.login-box-light .login-fg input:focus { border-color: var(--wine); }
.login-box-light .login-forgot { color: #5a5a5a; }
.login-box-light .login-disclaimer { color: #aaa; border-top-color: var(--pale); }

/* DONATE NAV — match other nav button formatting */
.nav-links .donate-link {
  background: transparent;
  color: rgba(255,255,255,0.6);
  padding: 0;
  border: none;
  letter-spacing: 0.18em;
}
.nav-links .donate-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--wine-lt);
  transform: scaleX(0); transition: transform 0.3s var(--ease);
  display: block;
}
.nav-links .donate-link:hover { color: var(--white); background: transparent; }
.nav-links .donate-link:hover::after, .nav-links .donate-link.active::after { transform: scaleX(1); }
.nav-links .donate-link.active { color: var(--white); }

/* PROCESS STEPS LIGHT VERSION */
.process-steps-light { background: var(--white); border-top: 1px solid var(--pale); border-bottom: 1px solid var(--pale); }
.process-steps-light .process-step { border-right-color: var(--pale); }
.process-steps-light .step-num { background: var(--white); color: var(--wine); border-color: var(--wine); }
.process-steps-light h4 { color: var(--black); }
.process-steps-light p { color: #2a2a2a; }
.process-steps-light::before { background: rgba(26,74,46,0.15); }

/* TREE TEXT LIGHT */
.tree-text-light {
  background: var(--white);
  padding: 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.tree-text-light h2 { color: var(--black); margin-bottom: 1.25rem; }
.tree-text-light p { color: #2a2a2a; margin-bottom: 1rem; }
.tree-text-light .intro-rule { background: var(--wine); }
.tree-text-light .eyebrow { color: var(--wine); }

@media (max-width: 768px) {
  .tree-text-light { padding: 3rem 1.25rem; }
}

/* NEWS ARTICLES */
.news-article { padding: 3rem 0; max-width: 820px; }
.news-meta { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1rem; }
.news-category {
  font-family: var(--font-cond); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); background: var(--wine); padding: 0.3rem 0.85rem;
}
.news-date {
  font-family: var(--font-cond); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: #999999;
}
.news-title {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700;
  color: var(--black); line-height: 1.2; margin-bottom: 1.25rem;
}
.news-excerpt {
  font-family: var(--font-sans); font-size: 0.95rem; color: #2a2a2a;
  line-height: 1.8; margin-bottom: 1rem; max-width: 780px;
}
.news-tags { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.news-tags span {
  font-family: var(--font-cond); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--wine); border: 1px solid rgba(26,74,46,0.25);
  padding: 0.25rem 0.75rem;
}
.news-divider { width: 100%; height: 1px; background: var(--pale); margin: 0; }

@media (max-width: 768px) {
  .news-title { font-size: 1.3rem; }
  .news-article { padding: 2.5rem 0; }
}

/* ============================================
   TEAM PAGE
   ============================================ */
.team-section { padding: 7rem 0; background: var(--white); }
.team-section-off { padding: 6rem 0; background: var(--off-white); }
.team-group-label {
  font-family: var(--font-cond); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--wine); border-bottom: 1px solid var(--pale);
  padding-bottom: 1rem; margin-bottom: 3rem;
}
.team-grid-leadership { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; background: var(--pale); margin-bottom: 3px; }
.team-grid-advisory { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; background: var(--pale); margin-bottom: 3px; }
.team-grid-associates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: var(--pale); }
.team-card {
  background: var(--white); padding: 3rem 2.5rem;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.team-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--wine);
  transform: scaleX(0); transition: transform 0.35s var(--ease);
}
.team-card:hover { background: var(--off-white); }
.team-card:hover::after { transform: scaleX(1); }
.team-card.vacant { background: var(--off-white); opacity: 0.65; }
.team-card.vacant:hover { background: var(--off-white); opacity: 0.65; }
.team-card.vacant::after { display: none; }
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--wine); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.5rem; flex-shrink: 0;
}
.team-avatar.vacant-avatar {
  background: var(--pale); color: rgba(0,0,0,0.2);
  border: 1px dashed rgba(0,0,0,0.2);
}
.team-name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--black); margin-bottom: 0.3rem; }
.team-title {
  font-family: var(--font-cond); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--wine); margin-bottom: 1.25rem;
}
.team-bio { font-size: 0.9rem; color: #2a2a2a; line-height: 1.75; }
.team-vacant-label {
  font-family: var(--font-cond); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(0,0,0,0.3);
}
.team-open-tag {
  display: inline-block; margin-top: 1rem;
  font-family: var(--font-cond); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--wine); border: 1px solid rgba(26,74,46,0.3); padding: 0.3rem 0.75rem;
  text-decoration: none; transition: background 0.2s, color 0.2s;
}
.team-open-tag:hover { background: var(--wine); color: var(--white); }
.team-contact { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.team-contact a {
  display: inline-flex; align-items: center;
  font-family: var(--font-cond); font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); background: var(--wine); border: 1px solid var(--wine); padding: 0.35rem 0.8rem;
  text-decoration: none; transition: background 0.2s, opacity 0.2s;
}
.team-contact a:hover { background: var(--black); border-color: var(--black); }

@media (max-width: 1024px) {
  .team-grid-leadership,
  .team-grid-advisory { grid-template-columns: 1fr 1fr; }
  .team-grid-associates { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .team-grid-leadership,
  .team-grid-advisory,
  .team-grid-associates { grid-template-columns: 1fr; }
  .team-card { padding: 2.5rem 1.75rem; }
}

/* ============================================
   CAREERS — JOB LISTINGS
   ============================================ */
.job-listing {
  border: 1px solid var(--pale); padding: 2.5rem;
  margin-bottom: 1.5rem; transition: border-color 0.3s, box-shadow 0.3s;
}
.job-listing:hover { border-color: var(--wine); box-shadow: 0 6px 28px rgba(26,74,46,0.1); }
.job-listing-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.job-title { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--black); }
.job-meta { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-top: 0.6rem; }
.job-tag {
  font-family: var(--font-cond); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.28rem 0.8rem; border: 1px solid rgba(26,74,46,0.25); color: var(--wine);
}
.job-tag.open { background: var(--wine); color: var(--white); border-color: var(--wine); }
.job-desc { font-size: 0.92rem; color: #2a2a2a; line-height: 1.8; margin-bottom: 1rem; }
.job-duties { margin: 1rem 0; padding: 0; list-style: none; }
.job-duties li {
  font-size: 0.9rem; color: #2a2a2a;
  padding: 0.45rem 0 0.45rem 1.4rem; position: relative;
  border-bottom: 1px solid var(--pale);
}
.job-duties li:last-child { border-bottom: none; }
.job-duties li::before { content: '→'; position: absolute; left: 0; color: var(--wine); font-weight: 700; }
.job-apply { margin-top: 1.75rem; }

@media (max-width: 768px) {
  .job-listing { padding: 1.75rem 1.25rem; }
  .job-title { font-size: 1.2rem; }
}

/* ============================================
   PROCESS STEPS — LIGHT VARIANT (inquiries page)
   ============================================ */
.process-steps-light {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-top: 1px solid var(--pale);
  border-bottom: 1px solid var(--pale);
}
.process-steps-light .process-step { border-right: 1px solid var(--pale); background: var(--white); }
.process-steps-light .process-step:last-child { border-right: none; }
.process-steps-light .step-num {
  border-color: var(--wine); background: var(--white); color: var(--wine);
}
.process-steps-light h4 { color: var(--black); }
.process-steps-light p { color: #2a2a2a; }

@media (max-width: 1024px) {
  .process-steps-light { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .process-steps-light { grid-template-columns: 1fr; }
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews-intro { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.reviews-intro p { color: #2a2a2a; margin-top: 0.75rem; }

/* Featured testimonials — large, with backstory */
.featured-reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--pale); }
.feat-review {
  background: var(--white); padding: 3.5rem 3rem;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: background 0.3s;
}
.feat-review::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--wine);
  transform: scaleX(0); transition: transform 0.35s var(--ease);
}
.feat-review:hover { background: var(--off-white); }
.feat-review:hover::after { transform: scaleX(1); }
.feat-review-mark { font-family: var(--font-serif); font-size: 4.5rem; color: rgba(26,74,46,0.14); line-height: 0.6; height: 2.2rem; }
.feat-stars { color: var(--wine); letter-spacing: 0.2em; font-size: 0.95rem; margin: 0.5rem 0 1.25rem; }
.feat-quote { font-family: var(--font-serif); font-size: 1.3rem; font-style: italic; line-height: 1.5; color: var(--black); margin-bottom: 1.5rem; }
.feat-backstory { font-size: 0.92rem; color: #2a2a2a; line-height: 1.8; margin-bottom: 2rem; }
.feat-attr { display: flex; align-items: center; gap: 1rem; margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--pale); }
.feat-avatar {
  width: 52px; height: 52px; border-radius: 50%; background: var(--wine);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--white);
}
.feat-attr-name { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--black); }
.feat-attr-role { font-family: var(--font-cond); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wine); margin-top: 2px; }
.feat-attr-co { font-family: var(--font-cond); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #888; margin-top: 1px; }

/* Supporting testimonial grid — shorter quotes */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--pale); margin-top: 3px; }
.review-card {
  background: var(--white); padding: 2.75rem 2.25rem;
  display: flex; flex-direction: column; transition: background 0.3s;
}
.review-card:hover { background: var(--off-white); }
.review-card .feat-stars { font-size: 0.85rem; margin: 0 0 1rem; }
.review-card p { font-size: 0.95rem; color: #2a2a2a; line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.review-card-attr { margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--pale); }
.review-card-name { font-family: var(--font-cond); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); }
.review-card-role { font-family: var(--font-cond); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--wine); margin-top: 3px; }

/* Invitation / placeholder card */
.review-card.invite { background: var(--off-white); border: 1px dashed rgba(26,74,46,0.3); text-align: center; align-items: center; justify-content: center; }
.review-card.invite:hover { background: var(--off-white); }
.review-card.invite .review-invite-label { font-family: var(--font-cond); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wine); margin-bottom: 0.75rem; }
.review-card.invite h4 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--black); text-transform: none; letter-spacing: 0; margin-bottom: 0.75rem; }
.review-card.invite p { font-size: 0.88rem; font-style: normal; color: #2a2a2a; margin-bottom: 1.25rem; }
.review-card.invite .team-open-tag { margin-top: 0; }

@media (max-width: 1024px) {
  .featured-reviews { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .review-grid { grid-template-columns: 1fr; }
  .feat-review { padding: 2.75rem 1.75rem; }
}
