/* ==========================================================================
   del Cuadro-Zimmerman, PLLC — Firm Website
   Design tokens + styles rebuilt from the high-fidelity design handoff.
   ========================================================================== */

:root {
  /* Colors */
  --teal-brand: #3fbdb2;   /* primary accent, eyebrows, chips, icons */
  --teal-link: #1f6f68;    /* links, tag text */
  --teal-ink: #123330;     /* hero/approach/contact bg, headings */
  --teal-footer: #0d2622;  /* footer bg */
  --cream: #f8f7f3;        /* body / alternating sections */
  --white: #ffffff;
  --pale-teal: #eef2f0;    /* testimonials bg */
  --chip-bg: #eef6f5;      /* practice tag chips */
  --terracotta: #c76a3b;   /* nav CTA */
  --terracotta-dark: #b0562b;
  --text: #28322f;
  --text-soft: #5a6763;
  --text-muted: #4a5754;
  --label: #8a9793;
  --label-dark: #6f918c;
  --hairline: #ecebe4;
  --hairline-2: #e6e4dc;

  /* Fonts */
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans: 'Libre Franklin', system-ui, -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;

  /* Layout */
  --maxw: 1240px;
  --gutter: 32px;
}

/* ---- Reset ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--teal-link); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-brand); }
::selection { background: var(--teal-brand); color: #fff; }

/* ---- Shared helpers ---- */
.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--teal-brand);
}
.eyebrow--link { color: var(--teal-link); }

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.announce {
  background: var(--teal-ink);
  color: #cfe6e2;
  font-size: 12.5px;
  letter-spacing: .04em;
  text-align: center;
  padding: 9px 20px;
  font-weight: 500;
}

/* ==========================================================================
   Header (sticky)
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(248, 247, 243, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline-2);
  transition: border-color .3s ease;
}
.header.is-scrolled { border-bottom-color: #dcdad0; }

.header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand:hover { color: inherit; }
.brand__logo { height: 38px; width: auto; }
.brand__lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  border-left: 1px solid rgba(18, 51, 48, .18);
  padding-left: 14px;
}
.brand__name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--teal-ink);
  letter-spacing: .01em;
}
.brand__sub {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .28em;
  color: var(--teal-brand);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 34px; }
.nav__link {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
}
.nav__link:hover { color: var(--teal-brand); }
.nav__cta {
  background: var(--terracotta);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 2px;
  letter-spacing: .02em;
  box-shadow: 0 6px 16px rgba(199, 106, 59, .28);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nav__cta:hover {
  background: var(--terracotta-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(199, 106, 59, .36);
}

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

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  color: var(--teal-ink);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 32px;
  border-top: 1px solid #eee;
}
.mobile-menu a:first-child { border-top: none; }
.mobile-menu a:last-child { font-weight: 600; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; background: var(--teal-ink); overflow: hidden; }
.hero__glow {
  position: absolute; inset: 0;
  background: radial-gradient(1100px 600px at 78% -10%, rgba(63, 189, 178, .22), transparent 60%);
}
.hero__ring {
  position: absolute;
  border: 1px solid rgba(63, 189, 178, .18);
  border-radius: 50%;
}
.hero__ring--1 { top: -140px; right: -120px; width: 520px; height: 520px; }
.hero__ring--2 { top: -60px; right: -40px; width: 340px; height: 340px; border-color: rgba(63, 189, 178, .12); }

.hero__grid {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px var(--gutter) 104px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.hero__copy { animation: rise .8s ease both; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}
.hero__eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--teal-brand);
  display: inline-block;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 60px;
  line-height: 1.06;
  letter-spacing: -.015em;
  color: #fff;
  margin-bottom: 26px;
  text-wrap: balance;
}
.hero__lede {
  font-size: 18px;
  line-height: 1.68;
  color: #c4d6d2;
  max-width: 520px;
  margin-bottom: 38px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  background: var(--teal-brand);
  color: #0a2320;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 2px;
  letter-spacing: .01em;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  color: #0a2320;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(63, 189, 178, .32);
}
.btn-ghost {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}
.btn-ghost:hover { color: #fff; border-bottom-color: #fff; }

.hero__media { position: relative; animation: rise 1s ease .15s both; }
.hero__photo {
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  overflow: hidden;
  background: #0e2825;
  border: 1px solid rgba(63, 189, 178, .22);
  position: relative;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 88%;
  transform: scale(1.28);
  transform-origin: 50% 25%;
}
.hero__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 40, 37, .35));
}
.hero__stat {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: var(--cream);
  border-radius: 3px;
  padding: 22px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
  max-width: 230px;
}
.hero__stat-num { font-family: var(--serif); font-size: 34px; color: var(--teal-ink); line-height: 1; }
.hero__stat-label { font-size: 12.5px; color: var(--text-soft); margin-top: 6px; line-height: 1.4; }

.credibility { position: relative; border-top: 1px solid rgba(255, 255, 255, .09); }
.credibility__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  align-items: center;
  justify-content: center;
}
.credibility__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--label-dark);
}
.credibility__item { color: #9fb8b3; font-size: 13px; font-weight: 500; }
.credibility__dot { width: 4px; height: 4px; background: var(--teal-brand); border-radius: 50%; }

/* ==========================================================================
   Mission
   ========================================================================== */
.mission { background: var(--cream); padding: 104px var(--gutter); }
.mission__inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.mission__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.28;
  color: var(--teal-ink);
  margin-top: 24px;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.mission__body {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 720px;
  margin: 30px auto 0;
  line-height: 1.7;
}

/* ==========================================================================
   Collaboration band
   ========================================================================== */
.collab { background: #fff; padding: 0 var(--gutter) 8px; }
.collab__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
.collab__media { border-radius: 4px; overflow: hidden; }
.collab__media img {
  width: 100%; height: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center 30%;
}
.collab__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.2;
  color: var(--teal-ink);
  margin: 18px 0 20px;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.collab__body { font-size: 16px; color: var(--text-soft); line-height: 1.72; margin-bottom: 18px; }
.collab__body:last-child { margin-bottom: 0; }

/* ==========================================================================
   Practice areas
   ========================================================================== */
.practice {
  background: #fff;
  padding: 88px var(--gutter) 104px;
  border-top: 1px solid var(--hairline);
  margin-top: 96px;
}
.practice__inner { max-width: var(--maxw); margin: 0 auto; }
.practice__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 56px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 44px;
  color: var(--teal-ink);
  margin-top: 18px;
  letter-spacing: -.015em;
}
.practice__intro { max-width: 380px; font-size: 15px; color: var(--text-soft); line-height: 1.65; }

.practice__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.practice-card {
  background: #fff;
  padding: 44px 40px;
  position: relative;
  transition: background .25s;
}
.practice-card:hover { background: #fbfbf8; }
.practice-card__num { font-family: var(--mono); font-size: 12px; color: var(--teal-brand); letter-spacing: .1em; }
.practice-card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  color: var(--teal-ink);
  margin: 14px 0 12px;
}
.practice-card__body { font-size: 14.5px; color: var(--text-soft); line-height: 1.66; margin-bottom: 20px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 12px;
  color: var(--teal-link);
  background: var(--chip-bg);
  padding: 5px 11px;
  border-radius: 2px;
}

/* ==========================================================================
   Approach
   ========================================================================== */
.approach { background: var(--teal-ink); padding: 104px var(--gutter); position: relative; overflow: hidden; }
.approach__ring {
  position: absolute;
  bottom: -160px; left: -120px;
  width: 480px; height: 480px;
  border: 1px solid rgba(63, 189, 178, .12);
  border-radius: 50%;
}
.approach__grid {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.approach__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
  margin-top: 20px;
  letter-spacing: -.01em;
}
.approach__body { font-size: 16px; color: #c4d6d2; line-height: 1.7; margin-top: 24px; max-width: 460px; }

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
}
.pillar { background: var(--teal-ink); padding: 34px 30px; }
.pillar__title { font-family: var(--serif); font-size: 22px; color: #fff; margin-bottom: 10px; }
.pillar__body { font-size: 14px; color: #a9c2bd; line-height: 1.6; }

/* ==========================================================================
   Process
   ========================================================================== */
.process { background: var(--cream); padding: 104px var(--gutter); }
.process__inner { max-width: var(--maxw); margin: 0 auto; }
.process__head { text-align: center; margin-bottom: 60px; }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { border-top: 2px solid #cfd6d3; padding-top: 26px; }
.step--first { border-top-color: var(--teal-brand); }
.step__num { font-family: var(--mono); font-size: 12px; color: var(--label); letter-spacing: .1em; }
.step__title { font-family: var(--serif); font-size: 23px; color: var(--teal-ink); margin: 12px 0 10px; }
.step__body { font-size: 14px; color: var(--text-soft); line-height: 1.6; }

/* ==========================================================================
   Attorney
   ========================================================================== */
.attorney { background: #fff; padding: 104px var(--gutter); border-top: 1px solid var(--hairline); }
.attorney__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.attorney__media { position: relative; }
.attorney__photo {
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  overflow: hidden;
  background: #eef1ee;
  border: 1px solid #e2e5e0;
}
.attorney__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
  transform: scale(1.7);
  transform-origin: 61% 40%;
}
.attorney__badge {
  position: absolute;
  top: 20px; right: -18px;
  background: var(--teal-brand);
  color: #0a2320;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 2px;
  font-weight: 500;
}
.attorney__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 42px;
  color: var(--teal-ink);
  margin: 18px 0 8px;
  letter-spacing: -.015em;
}
.attorney__meta {
  font-size: 15px;
  color: var(--label);
  font-family: var(--mono);
  letter-spacing: .06em;
  margin-bottom: 24px;
}
.attorney__body { font-size: 16px; color: var(--text-muted); line-height: 1.72; margin-bottom: 18px; }
.attorney__stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  padding-top: 28px;
  margin-top: 12px;
  border-top: 1px solid var(--hairline);
}
.attorney__stat-num { font-family: var(--serif); font-size: 30px; color: var(--teal-ink); }
.attorney__stat-label { font-size: 12.5px; color: var(--label); margin-top: 2px; }
/* Second attorney block, separated by a hairline */
.attorney__grid + .attorney__grid {
  margin-top: 88px;
  padding-top: 88px;
  border-top: 1px solid var(--hairline);
}
/* Square headshot: fill the 4/5 frame without the founder portrait's crop transform */
.attorney__photo--square img { transform: none; object-position: 50% 30%; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { background: var(--pale-teal); padding: 96px var(--gutter); }
.testimonials__inner { max-width: var(--maxw); margin: 0 auto; }
.testimonials__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 40px;
  color: var(--teal-ink);
  margin: 16px 0 48px;
  letter-spacing: -.015em;
}
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: #fff; padding: 36px 32px; border-radius: 3px; }
.quote__mark { font-family: var(--serif); font-size: 44px; color: var(--teal-brand); line-height: .5; height: 22px; }
.quote__text {
  font-size: 15.5px;
  color: #3a4744;
  line-height: 1.7;
  margin: 10px 0 22px;
  font-family: var(--serif);
  font-style: italic;
}
.quote__who { font-size: 13px; font-weight: 600; color: var(--teal-ink); }
.quote__where { font-size: 12px; color: var(--label); }
.testimonials__disclaimer {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--label);
  margin-top: 22px;
  letter-spacing: .04em;
}

/* ==========================================================================
   Insights
   ========================================================================== */
.insights { background: var(--cream); padding: 104px var(--gutter); }
.insights__inner { max-width: var(--maxw); margin: 0 auto; }
.insights__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.insights__all { font-size: 14px; font-weight: 600; color: var(--teal-link); }
.insights__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.insight-card {
  display: block;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 3px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(18, 51, 48, .1); }
.insight-card__thumb {
  aspect-ratio: 16 / 10;
  background-color: #123330;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(18, 51, 48, .05) 10px, rgba(18, 51, 48, .05) 20px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.insight-card__body { padding: 26px 26px 30px; }
.insight-card__cat {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-brand);
}
.insight-card__title {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--teal-ink);
  margin: 12px 0 10px;
  line-height: 1.28;
}
.insight-card__excerpt { font-size: 13.5px; color: var(--text-soft); line-height: 1.6; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: #fff; padding: 104px var(--gutter); border-top: 1px solid var(--hairline); }
.faq__inner { max-width: 900px; margin: 0 auto; }
.faq__head { text-align: center; margin-bottom: 48px; }
.faq__list { border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-item__q-text { font-family: var(--serif); font-size: 21px; color: var(--teal-ink); line-height: 1.35; }
.faq-item__icon {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 26px;
  color: var(--teal-brand);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .35s ease, opacity .3s ease;
}
.faq-item.is-open .faq-item__panel { max-height: 260px; opacity: 1; }
.faq-item__a {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  padding: 0 0 26px;
  max-width: 760px;
}

/* ==========================================================================
   Personality band
   ========================================================================== */
.personality { position: relative; background: var(--teal-ink); }
.personality__media { position: relative; height: min(72vh, 640px); overflow: hidden; }
.personality__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.personality__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10, 35, 32, .82) 0%, rgba(10, 35, 32, .55) 42%, rgba(10, 35, 32, .08) 70%, transparent 100%);
}
.personality__overlay { position: absolute; inset: 0; display: flex; align-items: center; }
.personality__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.personality__box { max-width: 540px; }
.personality__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.3;
  color: #fff;
  margin-top: 22px;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.personality__attr { font-size: 14px; color: #c4d6d2; margin-top: 22px; letter-spacing: .02em; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { background: var(--teal-ink); padding: 104px var(--gutter); position: relative; overflow: hidden; }
.contact__ring {
  position: absolute;
  top: -140px; right: -120px;
  width: 460px; height: 460px;
  border: 1px solid rgba(63, 189, 178, .14);
  border-radius: 50%;
}
.contact__grid {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 46px;
  line-height: 1.12;
  color: #fff;
  margin: 18px 0 22px;
  letter-spacing: -.015em;
}
.contact__lede { font-size: 16px; color: #c4d6d2; line-height: 1.7; max-width: 440px; margin-bottom: 40px; }
.contact__details { display: flex; flex-direction: column; gap: 22px; }
.contact__detail-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--label-dark);
  margin-bottom: 6px;
}
.contact__detail-value { font-size: 16px; color: #fff; font-style: normal; line-height: 1.5; }
.contact__detail-value a { color: var(--teal-brand); }

.contact__card { background: var(--cream); border-radius: 4px; padding: 40px; }
.contact__card-title { font-family: var(--serif); font-size: 24px; color: var(--teal-ink); margin-bottom: 24px; }

/* Contact CTA card (Clio booking) */
.contact__card--cta .contact__card-title { margin-bottom: 12px; }
.contact__card-text { font-size: 15.5px; line-height: 1.65; color: var(--text-soft); margin-bottom: 28px; }
.contact__book {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--terracotta);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 17px 28px;
  border-radius: 2px;
  box-shadow: 0 6px 16px rgba(199, 106, 59, .28);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.contact__book:hover {
  background: var(--terracotta-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(199, 106, 59, .36);
}
.contact__card-note { font-size: 13px; color: var(--label); line-height: 1.55; margin-top: 20px; }
.contact__card-note a { color: var(--teal-link); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form__field { margin-bottom: 16px; }
.form__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-ink);
  margin-bottom: 7px;
  letter-spacing: .01em;
}
.form__input,
.form__textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--teal-ink);
  background: #fff;
  border: 1px solid #d8dcd6;
  border-radius: 2px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form__input:focus,
.form__textarea:focus {
  border-color: var(--teal-brand);
  box-shadow: 0 0 0 3px rgba(63, 189, 178, .18);
}
.form__textarea { resize: vertical; }
.form__submit {
  width: 100%;
  background: var(--teal-ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 16px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: .02em;
  transition: background .2s, color .2s;
}
.form__submit:hover { background: var(--teal-brand); color: #0a2320; }
.form__consent { font-size: 11px; color: var(--label); line-height: 1.5; margin-top: 16px; }
.form__consent a { color: var(--teal-link); }

.form-success { text-align: center; padding: 40px 10px; }
.form-success__check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--teal-brand);
  color: #0a2320;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.form-success__title { font-family: var(--serif); font-size: 26px; color: var(--teal-ink); margin-bottom: 10px; }
.form-success__body { font-size: 15px; color: var(--text-soft); }
[hidden] { display: none !important; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--teal-footer); padding: 64px var(--gutter) 40px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.footer__logo { height: 46px; width: auto; margin-bottom: 18px; }
.footer__blurb { font-size: 14px; color: #8fa8a3; line-height: 1.65; max-width: 340px; }
.footer__address {
  font-style: normal;
  font-size: 13px;
  color: #8fa8a3;
  line-height: 1.7;
  margin-top: 16px;
}
.footer__address a { color: var(--teal-brand); }
.footer__col-title {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-brand);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { font-size: 14px; color: #c4d6d2; }
.footer__links a:hover { color: var(--teal-brand); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
}
.footer__bottom span { font-size: 12.5px; color: #6f8b86; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .nav { display: none; }
  .burger { display: flex; }
  .hero__grid,
  .approach__grid,
  .attorney__grid,
  .contact__grid,
  .collab__grid { grid-template-columns: 1fr; gap: 44px; }
  .practice__grid,
  .process__grid,
  .quotes,
  .insights__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__stat { left: 0; }
}

@media (max-width: 640px) {
  .hero__title { font-size: 42px; }
  .form__row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   BLOG / THE dCZ JOURNAL — editorial layout
   ========================================================================== */

/* ---- Journal masthead (blogroll) ---- */
.journal-masthead {
  background: var(--teal-ink);
  padding: 88px var(--gutter) 76px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.journal-masthead__glow {
  position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 50% -20%, rgba(63, 189, 178, .18), transparent 60%);
}
.journal-masthead__ring {
  position: absolute; top: -160px; right: -120px;
  width: 460px; height: 460px;
  border: 1px solid rgba(63, 189, 178, .12); border-radius: 50%;
}
.journal-masthead__inner { position: relative; max-width: 820px; margin: 0 auto; }
.journal-masthead__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  margin-top: 20px;
  text-wrap: balance;
}
.journal-masthead__sub {
  font-size: 17px;
  line-height: 1.65;
  color: #c4d6d2;
  max-width: 620px;
  margin: 22px auto 0;
}

/* ---- Featured lead article ---- */
.journal-body { max-width: var(--maxw); margin: 0 auto; padding: 80px var(--gutter) 40px; }
.journal-lead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--hairline);
}
.journal-lead__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal-link);
}
.journal-lead__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--teal-ink);
  max-width: 900px;
  text-wrap: balance;
}
.journal-lead__title a { color: inherit; }
.journal-lead__title a:hover { color: var(--teal-link); }
.journal-lead__summary { font-size: 19px; line-height: 1.7; color: var(--text-soft); max-width: 760px; }
.journal-lead__meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center;
  font-family: var(--mono); font-size: 12px; color: var(--label); letter-spacing: .04em;
}
.journal-lead__read { font-weight: 600; color: var(--teal-link); font-family: var(--sans); letter-spacing: 0; font-size: 14px; }

.journal-more-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--teal-brand);
  margin-bottom: 34px;
}

/* ---- Article list ---- */
.journal-list { display: grid; grid-template-columns: 1fr; gap: 0; }
.journal-item {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 32px;
  align-items: baseline;
  padding: 34px 0;
  border-top: 1px solid var(--hairline);
}
.journal-item:last-child { border-bottom: 1px solid var(--hairline); }
.journal-item__cat { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-brand); }
.journal-item__body { max-width: 720px; }
.journal-item__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--teal-ink);
  margin-bottom: 10px;
}
.journal-item__title a { color: inherit; }
.journal-item__title a:hover { color: var(--teal-link); }
.journal-item__summary { font-size: 15.5px; line-height: 1.6; color: var(--text-soft); }
.journal-item__date { font-family: var(--mono); font-size: 12px; color: var(--label); white-space: nowrap; }

/* ==========================================================================
   Article page
   ========================================================================== */
.article-hero { background: var(--cream); padding: 60px var(--gutter) 48px; border-bottom: 1px solid var(--hairline); }
.article-hero__inner { max-width: 760px; margin: 0 auto; }
.article-hero__back {
  display: inline-block;
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-link); margin-bottom: 28px;
}
.article-hero__cat {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-brand);
}
.article-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--teal-ink);
  margin: 16px 0 24px;
  text-wrap: balance;
}
.article-hero__byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 16px;
}
.article-hero__author { display: flex; align-items: center; gap: 12px; }
.article-hero__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; border: 1px solid var(--hairline); }
.article-hero__author-name { font-size: 14.5px; font-weight: 600; color: var(--teal-ink); }
.article-hero__meta { font-family: var(--mono); font-size: 12px; color: var(--label); letter-spacing: .04em; }

.article-body { background: #fff; padding: 56px var(--gutter) 24px; }
.prose { max-width: 720px; margin: 0 auto; }
.prose > p { font-size: 18px; line-height: 1.78; color: #2f3a37; margin-bottom: 26px; }
.prose > p:first-of-type { font-size: 20px; line-height: 1.7; color: #28322f; }
.prose h2 {
  font-family: var(--serif); font-weight: 500; font-size: 30px; line-height: 1.25;
  letter-spacing: -.01em; color: var(--teal-ink); margin: 46px 0 16px;
}
.prose ul { list-style: none; margin: 0 0 26px; padding: 0; }
.prose li {
  position: relative; font-size: 18px; line-height: 1.7; color: #2f3a37;
  padding-left: 24px; margin-bottom: 10px;
}
.prose li::before {
  content: ""; position: absolute; left: 2px; top: 12px;
  width: 6px; height: 6px; background: var(--teal-brand); border-radius: 50%;
}
.prose .pull {
  font-family: var(--serif); font-style: italic; font-size: 27px; line-height: 1.4;
  color: var(--teal-ink); border-left: 3px solid var(--teal-brand);
  padding: 4px 0 4px 26px; margin: 40px 0;
}
.prose strong { color: var(--teal-ink); font-weight: 600; }

/* Article footer: author card + CTA */
.article-foot { max-width: 760px; margin: 0 auto; padding: 40px 0 8px; border-top: 1px solid var(--hairline); }
.article-author {
  display: flex; gap: 18px; align-items: flex-start;
}
.article-author__avatar { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; flex-shrink: 0; border: 1px solid var(--hairline); }
.article-author__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-brand); margin-bottom: 6px; }
.article-author__name { font-family: var(--serif); font-size: 22px; color: var(--teal-ink); margin-bottom: 8px; }
.article-author__bio { font-size: 14.5px; line-height: 1.65; color: var(--text-soft); }

.article-cta {
  background: var(--teal-ink); border-radius: 4px;
  padding: 40px; margin: 44px auto 0; max-width: 760px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.article-cta__text { max-width: 400px; }
.article-cta__title { font-family: var(--serif); font-size: 26px; color: #fff; line-height: 1.2; margin-bottom: 8px; }
.article-cta__sub { font-size: 14.5px; color: #c4d6d2; line-height: 1.55; }

/* ==========================================================================
   Blog responsive
   ========================================================================== */
@media (max-width: 760px) {
  .journal-masthead__title { font-size: 40px; }
  .journal-lead__title { font-size: 34px; }
  .journal-item { grid-template-columns: 1fr; gap: 8px; }
  .journal-item__date { order: -1; }
  .article-hero__title, .article-hero__title { font-size: 34px; }
  .prose > p:first-of-type { font-size: 18px; }
  .article-cta { flex-direction: column; align-items: flex-start; }
}
