/* Rock & Paper LP — stylesheet */

:root {
  --navy: #1b3a57;
  --navy-dark: #10263c;
  --navy-soft: #274a6c;
  --gold: #b08d57;
  --gold-light: #d3b57e;
  --cream: #f7f4ee;
  --paper: #fffdf9;
  --white: #ffffff;
  --ink: #20242b;
  --muted: #5c6472;
  --border: #e6e0d2;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 16px;
}

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

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

.rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 0 0 22px;
}
.rule--center { margin: 0 auto 22px; }

section { padding: 96px 0; }
.section-head { max-width: 680px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-navy {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 40px; width: 40px; }
.brand-text {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 16px;
  color: var(--navy);
}
.brand-text span { color: var(--gold); }
.brand-sub {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--muted);
}

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--navy);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.main-nav a:hover { color: var(--gold); border-color: var(--gold); }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 13px !important;
}
.nav-cta:hover { background: var(--navy-soft); border-color: transparent !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  color: var(--white);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 54px);
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-lede {
  font-size: 17.5px;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 28px;
}
.hero-stats .stat-num {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold-light);
  display: block;
}
.hero-stats .stat-label {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.65);
}
.hero-mark {
  display: flex;
  justify-content: center;
}
.hero-mark img {
  width: 100%;
  max-width: 360px;
  filter: drop-shadow(0 20px 45px rgba(0,0,0,0.35));
}

/* ---------- About ---------- */
.about {
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.about-copy p { color: var(--muted); font-size: 15.5px; }
.about-copy p:first-of-type {
  font-size: 19px;
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.55;
}
.about-highlights {
  display: grid;
  gap: 20px;
}
.highlight-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 24px 26px;
  border-radius: 4px;
}
.highlight-card h4 { margin-bottom: 8px; font-size: 17px; }
.highlight-card p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ---------- Practice Areas ---------- */
.practice { background: var(--cream); }
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.practice-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 28px;
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.practice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(27,58,87,0.35);
}
.practice-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: block;
}
.practice-card h3 { font-size: 19px; margin-bottom: 10px; }
.practice-card p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.practice-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--muted);
}
.practice-card li { margin-bottom: 6px; }
.practice-card li::marker { color: var(--gold); }

/* ---------- Experience ---------- */
.experience { background: var(--navy-dark); color: var(--white); }
.experience .section-head h2 { color: var(--white); }
.experience .section-head p { color: rgba(255,255,255,0.72); }
.exp-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
}
.exp-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
}
.exp-item .mark { color: var(--gold-light); font-family: var(--serif); font-size: 18px; flex-shrink: 0; }

/* ---------- Ethos ---------- */
.ethos {
  background: var(--paper);
  text-align: center;
}
.ethos blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--navy);
  line-height: 1.5;
  max-width: 820px;
  margin: 0 auto 24px;
  font-style: italic;
}
.ethos cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Team ---------- */
.team { background: var(--cream); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid var(--gold);
}
.team-body { padding: 30px 28px; }
.team-body h3 { font-size: 20px; margin-bottom: 4px; }
.team-role {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}
.team-body p { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.li-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 3px;
  transition: all 0.2s ease;
}
.li-link:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.li-link svg { width: 15px; height: 15px; }

/* ---------- Sectors ---------- */
.sectors { background: var(--paper); }
.sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sector-pill {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.sector-pill strong { color: var(--gold); margin-right: 4px; }

/* ---------- Contact ---------- */
.contact { background: var(--navy); color: var(--white); }
.contact .section-head h2 { color: var(--white); }
.contact .section-head p { color: rgba(255,255,255,0.72); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.office-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  padding: 32px;
}
.office-card h3 {
  color: var(--white);
  font-size: 19px;
  margin-bottom: 4px;
}
.office-card .office-tag {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.office-card address {
  font-style: normal;
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  margin-bottom: 20px;
}
.contact-methods {
  grid-column: span 2;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 28px;
  margin-top: 8px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 14px 22px;
  border-radius: 4px;
  font-size: 14.5px;
  transition: background 0.2s ease;
}
.contact-method:hover { background: rgba(255,255,255,0.12); }
.contact-method svg { width: 18px; height: 18px; color: var(--gold-light); flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 28px;
  font-size: 13.5px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 32px; width: 32px; }
.footer-brand-text { font-family: var(--sans); font-weight: 700; letter-spacing: 0.1em; color: var(--white); font-size: 14px; }
.footer-col h5 {
  color: var(--white);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--sans);
  font-weight: 700;
}
.footer-col a, .footer-col p { display: block; margin-bottom: 10px; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.footer-social svg { width: 15px; height: 15px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-mark { order: -1; }
  .hero-mark img { max-width: 220px; }
  .about-grid { grid-template-columns: 1fr; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .exp-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-methods { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav { position: fixed; top: 84px; left: 0; right: 0; background: var(--paper); flex-direction: column; align-items: flex-start; gap: 0; padding: 12px 28px 24px; border-bottom: 1px solid var(--border); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: all 0.2s ease; }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-cta { margin-top: 10px; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }
  section { padding: 64px 0; }
  .practice-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 70px; }
  .hero-stats { gap: 28px; }
}
