:root {
  --ivory: #f5f1e8;
  --paper: #fbf9f4;
  --sand: #e9e1d3;
  --charcoal: #242622;
  --muted: #686a63;
  --burgundy: #702c3b;
  --burgundy-dark: #55202c;
  --navy: #172b36;
  --line: #d8d1c4;
  --white: #fffdf8;
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --container: 1240px;
  --pad: clamp(1.25rem, 4vw, 3.25rem);
  --section: clamp(5rem, 10vw, 8.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body { margin: 0; background: var(--ivory); color: var(--charcoal); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.35rem; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
h1 { font-size: clamp(3.5rem, 7.5vw, 7.2rem); }
h2 { font-size: clamp(2.6rem, 5vw, 4.65rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.15; }
button, input, select, textarea { font: inherit; }
address { font-style: normal; }
.container { width: min(var(--container), calc(100% - var(--pad) * 2)); margin-inline: auto; }
.container-wide { width: min(1500px, calc(100% - clamp(1rem, 2vw, 2rem) * 2)); margin-inline: auto; }
.section { padding-block: var(--section); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 999; background: var(--white); padding: .75rem 1rem; border: 1px solid var(--charcoal); }
.skip-link:focus { top: 1rem; }
.eyebrow { display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 1.5rem; color: var(--burgundy); font-size: .73rem; font-weight: 600; letter-spacing: .15em; line-height: 1.2; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 1.8rem; height: 1px; background: currentColor; }
.eyebrow-light { color: #dcb7bd; }
.lead { font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1.32; letter-spacing: -.015em; }
.button { display: inline-flex; min-height: 3.35rem; align-items: center; justify-content: center; padding: .85rem 1.45rem; border: 1px solid var(--burgundy); background: var(--burgundy); color: var(--white); font-size: .82rem; font-weight: 600; letter-spacing: .025em; transition: background .25s ease, color .25s ease, transform .25s ease; }
.button:hover { background: var(--burgundy-dark); transform: translateY(-2px); }
.button-small { min-height: 2.75rem; padding: .65rem 1rem; margin-left: .4rem; }
.button-light { border-color: var(--white); background: var(--white); color: var(--burgundy-dark); }
.button-light:hover { background: transparent; color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: .75rem; padding-bottom: .25rem; border-bottom: 1px solid currentColor; color: var(--burgundy); font-size: .87rem; font-weight: 600; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(.25rem); }
.text-link-light { color: var(--white); }
.button-row { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(245, 241, 232, .96); border-bottom: 1px solid transparent; backdrop-filter: blur(12px); transition: border-color .2s, box-shadow .2s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(36, 38, 34, .05); }
.header-inner { min-height: 5.3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .85rem; flex-shrink: 0; }
.brand-mark { width: 2.55rem; height: 2.55rem; display: grid; place-items: center; border: 1px solid var(--burgundy); color: var(--burgundy); font-family: var(--serif); font-size: 1.65rem; line-height: 1; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; letter-spacing: -.02em; }
.brand-copy small { margin-top: .28rem; color: var(--muted); font-size: .58rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.primary-menu { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); margin: 0; padding: 0; list-style: none; }
.primary-menu li { margin: 0; padding: 0; }
.site-nav > a:not(.button), .primary-menu a { position: relative; display: block; padding-block: .75rem; color: #4a4c47; font-size: .78rem; font-weight: 600; }
.site-nav > a:not(.button)::after, .primary-menu a::after { content: ""; position: absolute; right: 0; bottom: .4rem; left: 0; height: 1px; background: var(--burgundy); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.site-nav > a:hover::after, .site-nav > a.active::after, .primary-menu a:hover::after, .primary-menu .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.site-nav > a.active, .primary-menu .current-menu-item > a { color: var(--burgundy); }
.admin-bar .site-header { top: 32px; }
.menu-toggle { display: none; width: 2.75rem; height: 2.75rem; padding: .7rem; border: 0; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; height: 1px; background: var(--charcoal); margin: .32rem 0; transition: transform .2s, opacity .2s; }

/* Homepage hero */
.home-hero { padding: clamp(3rem, 6vw, 6rem) 0 clamp(3rem, 6vw, 5rem); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(28rem, .72fr); gap: clamp(3rem, 7vw, 8rem); align-items: center; }
.hero-copy h1 { max-width: 800px; }
.hero-copy .lead { max-width: 680px; margin: 2rem 0 2.3rem; color: #4c4e49; }
.hero-contact { display: flex; gap: 1.2rem; margin-top: clamp(2.5rem, 6vw, 5rem); color: var(--muted); font-size: .76rem; }
.hero-contact span { padding-right: 1.2rem; border-right: 1px solid var(--line); }
.hero-contact a { font-weight: 600; color: var(--charcoal); }
.hero-visual { position: relative; min-height: 42rem; }
.hero-visual::before { content: ""; position: absolute; top: -1.2rem; left: -1.2rem; width: 36%; height: 32%; border-top: 1px solid var(--burgundy); border-left: 1px solid var(--burgundy); }
.hero-visual img { position: absolute; inset: 0; height: 100%; object-fit: cover; filter: saturate(.65) contrast(.96); }
.image-note { position: absolute; right: -1.5rem; bottom: 1.5rem; width: 12rem; padding: 1.25rem; background: var(--navy); color: var(--white); }
.image-note strong { display: block; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.image-note span { color: #bac2c6; font-size: .72rem; }
.trust-strip { border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: flex; flex-direction: column; padding: 1.65rem clamp(1rem, 3vw, 2.5rem); border-left: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 1px solid var(--line); }
.trust-grid strong { font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1.1; }
.trust-grid span { margin-top: .35rem; color: var(--muted); font-size: .7rem; }

/* Shared section patterns */
.section-heading { margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.split-heading { display: grid; grid-template-columns: 1.1fr .7fr; gap: 8vw; align-items: end; }
.split-heading p { max-width: 540px; color: var(--muted); }
.heading-row { display: flex; align-items: end; justify-content: space-between; gap: 3rem; }
.section-link { margin-top: 2.2rem; }
.practice-list { border-top: 1px solid var(--line); }
.practice-row { display: grid; grid-template-columns: 4rem minmax(220px, .9fr) 1.2fr 2rem; gap: 2rem; align-items: center; min-height: 7.2rem; border-bottom: 1px solid var(--line); transition: padding .2s, color .2s; }
.practice-row:hover { padding-inline: 1rem; color: var(--burgundy); }
.practice-number { color: var(--burgundy); font-family: var(--serif); font-size: 1rem; }
.practice-row p { margin: 0; color: var(--muted); font-size: .9rem; }
.practice-row .arrow { font-size: 1.2rem; }
.section-dark { background: var(--navy); color: var(--white); }
.why-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 10vw; }
.why-intro { position: sticky; top: 8rem; align-self: start; }
.why-intro p { max-width: 480px; margin: 1.8rem 0 2.2rem; color: #bdc5c8; }
.principle { display: grid; grid-template-columns: 3rem 1fr; gap: 2rem; padding: 2.4rem 0; border-top: 1px solid rgba(255,255,255,.2); }
.principle:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.principle > span { color: #dcb7bd; font-family: var(--serif); }
.principle p { margin: .8rem 0 0; color: #bdc5c8; }
.attorney-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2.5rem); }
.person-image { position: relative; overflow: hidden; background: var(--sand); aspect-ratio: .79; }
.person-image img { height: 100%; object-fit: cover; filter: grayscale(.18) saturate(.72); transition: transform .6s ease, filter .4s ease; }
.person-image > span { position: absolute; right: 0; bottom: 0; padding: .8rem 1rem; background: var(--burgundy); color: var(--white); font-size: .72rem; transform: translateY(100%); transition: transform .25s; }
.person-card a:hover .person-image img { transform: scale(1.025); filter: grayscale(0) saturate(.9); }
.person-card a:hover .person-image > span { transform: translateY(0); }
.person-meta { padding-top: 1.2rem; }
.person-meta h2, .person-meta h3 { margin-bottom: .35rem; }
.person-meta p { margin: 0; color: var(--burgundy); font-size: .76rem; font-weight: 600; }
.industries-section { padding-top: 0; }
.industries-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: stretch; }
.industries-image img { height: 100%; min-height: 38rem; object-fit: cover; filter: saturate(.55); }
.industries-content { padding: clamp(3rem, 7vw, 7rem); background: var(--paper); }
.industries-content > p { margin: 1.7rem 0 2.3rem; color: var(--muted); }
.line-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
.line-list li { padding: .85rem 0; border-top: 1px solid var(--line); font-size: .82rem; }
.outcomes-section { padding-top: 0; }
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.outcome { min-height: 24rem; padding: clamp(1.7rem, 3vw, 3rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tag { color: var(--burgundy); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.outcome h3 { margin: clamp(4rem, 8vw, 7rem) 0 1rem; font-size: clamp(3rem, 5vw, 4.5rem); }
.outcome p { color: var(--muted); font-size: .9rem; }
.story-section { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: .9fr 1fr; gap: clamp(4rem, 10vw, 10rem); }
.story-copy .large-copy { color: var(--charcoal); font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.05rem); line-height: 1.4; }
.story-copy p:not(.large-copy) { color: var(--muted); }
.story-copy .text-link { margin-top: 1rem; }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.insight-card { min-height: 25rem; padding: clamp(1.7rem, 3vw, 2.7rem); background: var(--ivory); display: flex; flex-direction: column; align-items: flex-start; }
.insight-card h3 { margin: 3rem 0 1.2rem; line-height: 1.2; }
.insight-card h3 a:hover { color: var(--burgundy); }
.insight-card p { color: var(--muted); font-size: .88rem; }
.insight-card .text-link { margin-top: auto; }
.quiet-label { color: var(--muted); font-size: .75rem; }
.consultation-cta { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--burgundy); color: var(--white); }
.cta-inner { display: grid; grid-template-columns: 1.2fr .65fr; gap: 8vw; align-items: end; }
.cta-inner h2 { max-width: 760px; }
.cta-inner p { color: #eadade; }

/* Interior pages */
.page-hero { padding: clamp(5rem, 9vw, 9rem) 0 clamp(4rem, 8vw, 7rem); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .65fr; gap: 8vw; align-items: end; }
.page-hero h1 { font-size: clamp(3.8rem, 7vw, 6.8rem); }
.page-hero-copy .lead { margin-bottom: 1.4rem; }
.page-hero-copy > p:last-child:not(.lead) { color: var(--muted); }
.services-layout { display: grid; grid-template-columns: 16rem 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.service-index { position: sticky; top: 7rem; display: flex; flex-direction: column; padding-top: 1.2rem; border-top: 1px solid var(--charcoal); }
.service-index span { margin-bottom: 1.2rem; color: var(--burgundy); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.service-index a { padding: .55rem 0; color: var(--muted); font-size: .77rem; transition: color .2s, transform .2s; }
.service-index a:hover { color: var(--burgundy); transform: translateX(.3rem); }
.service-block { padding: 0 0 clamp(5rem, 10vw, 8rem); margin-bottom: clamp(5rem, 10vw, 8rem); border-bottom: 1px solid var(--line); }
.service-block:last-child { margin-bottom: 0; }
.service-heading { display: grid; grid-template-columns: 3rem 1fr; gap: 1.5rem; }
.service-heading > span { color: var(--burgundy); font-family: var(--serif); }
.service-heading h2 { font-size: clamp(2.5rem, 4.5vw, 4.2rem); }
.service-heading p { max-width: 620px; margin: 1.2rem 0 0; font-family: var(--serif); font-size: 1.35rem; line-height: 1.4; }
.service-body { margin: 2.5rem 0 0 4.5rem; }
.service-body > p { max-width: 700px; color: var(--muted); }
.service-body ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; list-style: none; margin: 2rem 0 2.5rem; padding: 0; border-top: 1px solid var(--line); }
.service-body li { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: .85rem; }
.wide-image { padding: 0 0 var(--section); }
.wide-image img { height: clamp(28rem, 60vw, 48rem); object-fit: cover; filter: saturate(.6); }
.wide-image-caption { display: flex; justify-content: space-between; padding-top: .65rem; color: var(--muted); font-size: .68rem; }
.section-sand { background: var(--sand); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #c5bbab; }
.value-item { padding: 2rem clamp(1rem, 2vw, 2rem); border-right: 1px solid #c5bbab; }
.value-item:first-child { padding-left: 0; }
.value-item:last-child { border-right: 0; }
.value-item > span { color: var(--burgundy); font-family: var(--serif); }
.value-item h3 { margin: 3rem 0 1rem; }
.value-item p { color: var(--muted); font-size: .84rem; }
.timeline-section { background: var(--paper); }
.timeline-title { display: grid; grid-template-columns: .45fr 1fr; margin-bottom: 5rem; }
.timeline { margin-left: 32%; border-top: 1px solid var(--line); }
.timeline article { display: grid; grid-template-columns: 7rem 1fr; gap: 2rem; padding: 2.2rem 0; border-bottom: 1px solid var(--line); }
.timeline time { color: var(--burgundy); font-family: var(--serif); font-size: 1.5rem; }
.timeline p { max-width: 600px; margin: .65rem 0 0; color: var(--muted); font-size: .88rem; }
.community-section { padding-top: 0; background: var(--paper); }
.team-toolbar { display: flex; justify-content: space-between; padding: 0 0 1.2rem; margin-bottom: 3rem; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .74rem; }
.team-grid { grid-template-columns: repeat(4, 1fr); row-gap: 4.5rem; }
.team-grid .person-meta h2 { font-size: 1.6rem; line-height: 1.1; }
.team-grid .person-meta > span { display: block; min-height: 2.8rem; margin-top: .5rem; color: var(--muted); font-size: .73rem; }
.team-grid .person-meta > a { color: var(--burgundy); font-size: .7rem; border-bottom: 1px solid currentColor; }
.careers-band { padding-block: clamp(4rem, 7vw, 6rem); }
.careers-band .split-heading p { color: #bdc5c8; }
.contact-section { padding-top: 0; }
.contact-layout { display: grid; grid-template-columns: .68fr 1.32fr; }
.contact-details { padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem) 3rem 0; }
.contact-details h2 { margin-bottom: 3rem; font-size: 2.4rem; }
.contact-item { padding: 1.3rem 0; border-top: 1px solid var(--line); }
.contact-item > span { display: block; margin-bottom: .35rem; color: var(--burgundy); font-size: .67rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.contact-item a { font-family: var(--serif); font-size: 1.35rem; }
.contact-item p, .contact-item address { margin: 0; color: var(--muted); }
.urgent-note { margin-top: 2rem; padding: 1.3rem; border-left: 2px solid var(--burgundy); background: var(--sand); }
.urgent-note p { margin: .35rem 0 0; color: var(--muted); font-size: .78rem; }
.enquiry-panel { padding: clamp(3rem, 6vw, 6rem); background: var(--paper); }
.form-intro { max-width: 620px; margin-bottom: 3rem; }
.form-intro h2 { font-size: clamp(2.7rem, 4vw, 4rem); }
.form-intro p { margin-top: 1rem; color: var(--muted); font-size: .8rem; }
.contact-form { display: grid; gap: 1.4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.contact-form label:not(.check-label) { display: grid; gap: .45rem; color: #4c4e49; font-size: .74rem; font-weight: 600; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #aaa498; border-radius: 0; background: transparent; padding: .7rem 0; color: var(--charcoal); outline: none; transition: border-color .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--burgundy); }
.contact-form textarea { resize: vertical; }
.check-label { display: flex; gap: .8rem; align-items: flex-start; color: var(--muted); font-size: .72rem; font-weight: 400; }
.check-label input { width: auto; margin-top: .3rem; accent-color: var(--burgundy); }
.contact-form .button { justify-self: start; min-width: 10rem; border: 0; cursor: pointer; }
.form-status { margin: 0; color: var(--burgundy); font-size: .82rem; }
.map-section { background: var(--navy); color: var(--white); }
.map-grid { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 34rem; }
.map-visual { position: relative; overflow: hidden; background-color: #d8d0c1; background-image: linear-gradient(30deg, transparent 48%, rgba(112,44,59,.14) 49%, rgba(112,44,59,.14) 51%, transparent 52%), linear-gradient(120deg, transparent 45%, rgba(23,43,54,.18) 46%, rgba(23,43,54,.18) 48%, transparent 49%); background-size: 180px 140px, 240px 190px; }
.map-visual::before, .map-visual::after { content: ""; position: absolute; width: 120%; height: 1px; background: rgba(23,43,54,.35); transform: rotate(-18deg); top: 42%; left: -10%; }
.map-visual::after { transform: rotate(26deg); top: 66%; }
.map-pin { position: absolute; top: 46%; left: 47%; width: 3.5rem; height: 3.5rem; display: grid; place-items: center; border: 7px solid rgba(255,255,255,.7); border-radius: 50%; background: var(--burgundy); color: var(--white); font-family: var(--serif); font-size: 1.4rem; box-shadow: 0 10px 35px rgba(36,38,34,.25); }
.map-label { position: absolute; padding: .35rem .55rem; background: rgba(251,249,244,.82); color: var(--navy); font-size: .68rem; }
.label-newlands { top: 58%; left: 50%; }.label-claremont { top: 72%; left: 68%; }.label-city { top: 18%; left: 15%; }
.map-copy { padding: clamp(3rem, 6vw, 6rem); align-self: center; }
.map-copy p { margin: 1.5rem 0 2rem; color: #bdc5c8; }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 1rem; padding: 1.4rem 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.25rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--burgundy); transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; padding: 0 2rem 1.4rem 0; color: var(--muted); font-size: .85rem; }

/* Footer */
.site-footer { padding: clamp(4rem, 7vw, 6rem) 0 1.5rem; background: #19211f; color: #c3c5bf; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr 1.2fr; gap: 5vw; }
.brand-light .brand-mark { border-color: #dcb7bd; color: #dcb7bd; }
.brand-light .brand-copy strong { color: var(--white); }
.brand-light .brand-copy small { color: #979d98; }
.footer-brand p { max-width: 300px; margin-top: 1.8rem; color: #8e948f; font-size: .78rem; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; font-size: .76rem; }
.footer-grid h3 { margin-bottom: .8rem; color: var(--white); font-family: var(--sans); font-size: .67rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid a { transition: color .2s; }
.footer-grid a:hover { color: var(--white); }
.footer-grid address { color: #8e948f; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 1.3rem; border-top: 1px solid #343c39; color: #787f7a; font-size: .65rem; }
.footer-bottom div { display: flex; gap: 1.5rem; }

/* Motion and responsive */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }

@media (max-width: 1050px) {
  .site-nav, .primary-menu { gap: .8rem; }.site-nav > a:not(.button), .primary-menu a { font-size: .7rem; }.button-small { padding-inline: .75rem; }
  .hero-grid { grid-template-columns: 1fr .8fr; gap: 3rem; }.hero-visual { min-height: 34rem; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }.value-grid { grid-template-columns: 1fr 1fr; }.value-item { border-bottom: 1px solid #c5bbab; }
}

@media (max-width: 820px) {
  h1 { font-size: clamp(3.2rem, 12vw, 5.6rem); }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(.37rem) rotate(45deg); }.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-.37rem) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 1; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: .3rem; padding: 7rem var(--pad) 3rem; background: var(--ivory); visibility: hidden; opacity: 0; transform: translateY(-1rem); transition: opacity .25s, transform .25s, visibility .25s; }
  .site-nav.open { visibility: visible; opacity: 1; transform: none; }
  .primary-menu { width: 100%; flex-direction: column; align-items: stretch; gap: .3rem; }
  .site-nav > a:not(.button), .primary-menu a { padding: .6rem 0; font-family: var(--serif); font-size: clamp(2rem, 8vw, 3rem); font-weight: 400; border-bottom: 1px solid var(--line); }
  .site-nav > a:not(.button)::after, .primary-menu a::after { display: none; }.site-nav .button { margin: 1.5rem 0 0; }
  .hero-grid, .page-hero-grid, .why-grid, .industries-grid, .story-grid, .cta-inner, .contact-layout, .map-grid, .faq-layout { grid-template-columns: 1fr; }
  .hero-copy .lead { max-width: none; }.hero-visual { min-height: 34rem; margin-left: 2rem; }.image-note { right: -.5rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }.trust-grid > div:nth-child(3) { border-top: 1px solid var(--line); }.trust-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .split-heading { grid-template-columns: 1fr; gap: 2rem; }.practice-row { grid-template-columns: 2.5rem 1fr 1.5rem; gap: 1rem; padding-block: 1.5rem; }.practice-row p { grid-column: 2 / 4; }.practice-row .arrow { grid-column: 3; grid-row: 1; }
  .why-intro { position: static; }.principles { margin-top: 2rem; }.attorney-grid { grid-template-columns: 1fr 1fr; }
  .industries-image img { min-height: 27rem; }.outcome-grid, .insight-grid { grid-template-columns: 1fr; }.outcome { min-height: auto; }.outcome h3 { margin-top: 3rem; }
  .page-hero-copy { max-width: 650px; }.services-layout { grid-template-columns: 1fr; }.service-index { position: static; display: none; }
  .timeline-title { grid-template-columns: 1fr; gap: 1rem; }.timeline { margin-left: 0; }.community-section .industries-content { grid-row: 1; }
  .team-grid { grid-template-columns: 1fr 1fr; }.map-copy { grid-row: 1; }.map-visual { min-height: 26rem; }
  .contact-details { padding-right: 0; }.enquiry-panel { margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad); }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }.footer-brand { grid-row: span 2; }
}

@media (max-width: 560px) {
  :root { --pad: 1.2rem; --section: 4.8rem; }
  .header-inner { min-height: 4.7rem; }.brand-mark { width: 2.25rem; height: 2.25rem; }.brand-copy strong { font-size: 1.25rem; }
  .home-hero { padding-top: 2.5rem; }.hero-visual { min-height: 29rem; margin-left: .75rem; }.image-note { width: 10.5rem; }.hero-contact { flex-direction: column; gap: .45rem; }.hero-contact span { border: 0; }
  .button-row { align-items: flex-start; flex-direction: column; gap: 1.25rem; }.button-row .button { width: 100%; }
  .trust-grid strong { font-size: 1.7rem; }.trust-grid > div { padding: 1.3rem .8rem; }
  .heading-row { align-items: flex-start; flex-direction: column; }.practice-row h3 { font-size: 1.25rem; }
  .attorney-grid, .team-grid, .value-grid { grid-template-columns: 1fr; }.featured-grid .person-card:nth-child(3) { display: none; }.person-image { aspect-ratio: .86; }
  .line-list { grid-template-columns: 1fr; }.industries-content { padding-inline: 1.4rem; }.outcome-grid { border-left: 0; }.outcome { border-left: 1px solid var(--line); }
  .page-hero { padding-top: 4rem; }.page-hero h1 { font-size: clamp(3.1rem, 15vw, 4.5rem); }.service-heading { grid-template-columns: 2rem 1fr; gap: .75rem; }.service-body { margin-left: 2.75rem; }.service-body ul { grid-template-columns: 1fr; }
  .value-item, .value-item:first-child { padding: 1.8rem 0; border-right: 0; }.value-item h3 { margin-top: 1.7rem; }.timeline article { grid-template-columns: 4.5rem 1fr; gap: 1rem; }
  .team-toolbar { align-items: flex-start; flex-direction: column; gap: 1rem; }.field-row { grid-template-columns: 1fr; }.enquiry-panel { padding-block: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }.footer-brand { grid-column: 1 / -1; grid-row: auto; margin-bottom: 1rem; }.footer-grid > div:last-child { grid-column: 1 / -1; margin-top: 1rem; }.footer-bottom { align-items: flex-start; flex-direction: column; }.footer-bottom div { flex-wrap: wrap; gap: .8rem 1rem; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
