@font-face {
  font-family: "din-next-w01-light";
  font-style: normal;
  font-weight: 400;
  src: url("https://static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w01-light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "didot-w01-italic";
  font-style: normal;
  font-weight: 400;
  src: url("https://static.parastorage.com/fonts/v2/6a8685bf-8255-4762-98b8-54a1192acc7c/v1/didot-w01-italic.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "avenir-lt-w01_35-light1475496";
  font-style: normal;
  font-weight: 400;
  src: url("https://static.parastorage.com/fonts/v2/af36905f-3c92-4ef9-b0c1-f91432f16ac1/v1/avenir-lt-w01_35-light1475496.woff2") format("woff2");
  font-display: swap;
}

:root {
  --site-width: 980px;
  --header-shadow-stop: 10.55rem;
  --page-bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #fafafa;
  --text: #2f2e2e;
  --text-soft: #666666;
  --line: #e5e5e5;
  --accent: #2f2e2e;
  --accent-soft: #8f8f8f;
  --title-accent: #ee9629;
  --font-body: "din-next-w01-light", Arial, Helvetica, sans-serif;
  --font-heading: "didot-w01-italic", Georgia, "Times New Roman", serif;
  --font-strong: "avenir-lt-w01_35-light1475496", Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font: 400 17px/1.7 var(--font-body);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.page-shell {
  width: 100%;
  max-width: 100%;
}

.page-shell::before {
  content: "";
  position: sticky;
  top: 0;
  z-index: 40;
  display: block;
  width: calc(100% + 1.5rem);
  margin-left: -0.75rem;
  height: var(--header-shadow-stop);
  margin-bottom: calc(-1 * var(--header-shadow-stop));
  background: var(--surface);
  box-shadow: 0 14px 24px -22px rgba(70, 47, 22, 0.45);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(calc(100vw - 2rem), var(--site-width));
  margin: 0 auto;
  padding: 3rem 0 2.6rem;
  background: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: auto;
  height: 4.25rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font: 400 0.9rem/1 var(--font-body);
  cursor: pointer;
}

.menu-toggle__icon {
  position: relative;
  width: 1rem;
  height: 0.8rem;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after,
.menu-toggle__icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle__icon::before {
  top: 0;
}

.menu-toggle__icon span {
  top: calc(50% - 0.5px);
}

.menu-toggle__icon::after {
  bottom: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
  transform: translateY(0.38rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.site-tools {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.3rem;
  margin: 0;
  padding: 0;
}

.site-nav li {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  padding: 0;
  color: var(--title-accent);
  text-decoration: none;
  font: 400 1.11rem/1.4 var(--font-body);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.lang-switch a:hover,
.lang-switch a:focus-visible,
.note-link:hover,
.note-link:focus-visible {
  color: var(--accent-soft);
  outline: none;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.35rem;
}

.lang-switch__sep {
  color: var(--title-accent);
  font: 400 0.96rem/1 var(--font-body);
}

.lang-switch a {
  color: var(--title-accent);
  text-decoration: none;
  font: 400 0.96rem/1 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-switch a[aria-current="page"] {
  color: var(--title-accent);
}

main {
  display: block;
}

[id] {
  scroll-margin-top: 7rem;
}

.hero,
.section,
.site-footer {
  width: min(calc(100vw - 2rem), var(--site-width));
  margin: 0 auto;
  background: var(--surface);
}

.hero {
  border-bottom: 1px solid var(--line);
}

.hero--splash {
  position: relative;
  width: 100%;
  margin-top: calc(-1 * var(--header-shadow-stop));
  min-height: min(58vh, 660px);
  border-bottom: 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: min(58vh, 660px);
  padding: 5.5rem 1.5rem 1.5rem;
  text-align: left;
}

.hero__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03) 34%, rgba(76, 52, 26, 0.12) 72%, rgba(52, 34, 14, 0.18));
  pointer-events: none;
}

.hero__welcome,
.hero__logo-mark,
.hero__overlay h1 {
  position: relative;
  z-index: 1;
}

.hero__welcome {
  margin-bottom: 0;
  color: #545454;
  font: 400 clamp(2.1rem, 4vw, 4.2rem)/1.02 var(--font-heading);
}

.hero__welcome p {
  margin: 0;
}

.hero__logo-mark {
  width: min(331px, 50vw);
  height: auto;
  margin: 0;
}

.hero__overlay h1 {
  margin: 0;
  color: var(--title-accent);
  font: 400 clamp(2.15rem, 4.1vw, 4.25rem)/1.02 var(--font-heading);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28),
    0 2px 10px rgba(60, 35, 12, 0.22);
}

.hero__overlay h1 span {
  display: block;
}

.section--intro {
  padding-top: 2rem;
  padding-bottom: 2.55rem;
}

.hero__copy h1,
.section-heading h2,
.about__copy h2,
.contact__copy h2 {
  margin: 0 0 1.2rem;
  color: var(--title-accent);
  font: 400 clamp(2.5rem, 4.2vw, 4.85rem)/1.02 var(--font-heading);
  letter-spacing: 0;
}

.hero__copy p,
.section-heading p,
.about__copy p,
.contact__copy p,
.quote-card p,
.info-card p,
.service-card p,
.service-card li,
.info-card li {
  color: var(--text);
}

.lead {
  margin-bottom: 1rem;
  color: var(--title-accent);
  font: 400 clamp(1.25rem, 2vw, 1.75rem)/1.35 var(--font-body);
}

.hero .eyebrow {
  margin-bottom: 1rem;
  color: #555;
  text-transform: none;
  letter-spacing: 0;
  font: 400 2.15rem/1.1 var(--font-heading);
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid #d9d9d9;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font: 400 0.95rem/1 var(--font-body);
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: #bdbdbd;
  color: var(--accent-soft);
  outline: none;
}

.button--ghost {
  background: #f7f7f7;
}

.hero__media {
  min-height: 181px;
}

.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 181px;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font: 400 0.94rem/1.4 var(--font-body);
}

.section {
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line);
}

.section--tinted,
.section--dark,
.section--accent,
.legal-section,
.site-footer {
  color: inherit;
  background: var(--surface);
}

.section-heading {
  max-width: 636px;
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  font-size: clamp(2.45rem, 4.2vw, 4.7rem);
}

.service-grid,
.footer-grid,
.about,
.contact,
.info-grid,
.text-columns {
  display: grid;
  gap: 1.8rem;
}

.section--split .service-grid,
.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.practice-card,
.quote-card,
.contact-card,
.info-card {
  padding: 0;
  border: 0;
  background: transparent;
}

.service-card h3,
.practice-card h3,
.contact-card h3,
.info-card h3 {
  margin: 0 0 0.85rem;
  color: var(--title-accent);
  font: 400 1.92rem/1.12 var(--font-heading);
}

.service-card ul,
.practice-card ul,
.link-list,
.long-copy ul {
  margin: 0.4rem 0 0;
  padding-left: 1.2rem;
}

.service-card li,
.practice-card li,
.link-list li,
.long-copy li {
  margin-top: 0.35rem;
}

.about {
  display: block;
}

.about__image {
  float: left;
  width: min(43%, 360px);
  margin: 0 1.5rem 1rem 0;
}

.about__image img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  object-position: center top;
}

.about__copy h2 {
  font-size: clamp(2rem, 3.7vw, 4rem);
}

.about__facts {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.about__facts p {
  margin: 0;
}

.quote-stack {
  display: grid;
  gap: 1.4rem;
}

.quote-card {
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.quote-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.quote-card p {
  margin: 0 0 0.65rem;
}

.quote-card footer {
  color: var(--text-soft);
  font: 400 0.95rem/1.4 var(--font-body);
}

.contact {
  grid-template-columns: 1fr 320px;
  align-items: start;
}

.contact__map {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f4f1ec;
}

.contact__map iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

.contact__map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font: 400 0.95rem/1.4 var(--font-body);
  background: rgba(255, 255, 255, 0.92);
}

.contact__map-link:hover,
.contact__map-link:focus-visible {
  color: var(--accent-soft);
  outline: none;
}

.contact-card {
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-card a {
  text-decoration: none;
}

.long-copy {
  display: grid;
  gap: 0.9rem;
}

.long-copy p,
.long-copy li {
  max-width: none;
}

.note-link {
  color: #5d5d5d;
}

.info-grid,
.text-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-grid + .info-card {
  margin-top: 5rem;
}

.info-grid + .info-card + .gallery-grid {
  margin-top: 1.75rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid button {
  display: block;
  width: 100%;
  height: 150px;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding-top: 0.5rem;
  color: var(--text-soft);
  font: 400 0.88rem/1.4 var(--font-body);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(34, 34, 34, 0.85);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__frame {
  position: relative;
  width: min(1100px, 100%);
  padding: 1rem;
  background: var(--surface);
}

.lightbox__close {
  position: absolute;
  top: 0.35rem;
  right: 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font: 400 1.5rem/1 var(--font-body);
  cursor: pointer;
}

.lightbox__image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox__caption {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
  font: 400 0.9rem/1.4 var(--font-body);
}

.site-footer {
  padding: 2.2rem 0 3rem;
  border-bottom: 0;
}

.closing-image {
  display: none;
}

.footer-landscape {
  width: 100%;
  margin: 0;
  background: #fff;
}

.footer-landscape img {
  width: 100%;
  height: min(38vw, 470px);
  object-fit: cover;
}

.footer-bar {
  width: calc(100% + 1.5rem);
  margin-left: -0.75rem;
  padding: 0.55rem 1rem 0.65rem;
  background: var(--title-accent);
  color: #fff;
  text-align: center;
  font: 400 0.9rem/1.3 var(--font-body);
}

.footer-grid {
  grid-template-columns: 1fr 1fr 1.2fr;
}

.footer-grid p {
  margin-top: 0;
}

.footer-grid--wide {
  grid-template-columns: 1fr 1fr 1.2fr;
}

@media (max-width: 980px) {
  body {
    font-size: 17px;
  }

  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(calc(100vw - 1rem), var(--site-width));
  }

  .hero--splash,
  .footer-landscape {
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-tools {
    position: absolute;
    top: calc(100% - 0.1rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    background: var(--surface);
  }

  .site-tools.is-open {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  .lang-switch {
    justify-content: flex-start;
  }

  .about__image {
    float: none;
    width: 100%;
    margin: 0 0 1rem;
  }

  .about__image img {
    aspect-ratio: 1 / 1.22;
    object-position: center 18%;
  }

  .hero,
  .about,
  .contact,
  .section--split .service-grid,
  .service-grid,
  .info-grid,
  .text-columns,
  .footer-grid,
  .footer-grid--wide {
    grid-template-columns: 1fr;
  }

  .hero__overlay {
    flex-direction: column;
    min-height: 64vh;
    padding-top: 4.5rem;
    padding-bottom: 1.5rem;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    padding-inline: 0.75rem;
  }

  .hero,
  .section,
  .site-footer {
    width: 100%;
  }

  .hero--splash,
  .footer-landscape {
    width: calc(100% + 1.5rem);
    margin-inline: -0.75rem;
  }

  .site-header {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .brand img {
    height: 3.2rem;
  }

  .hero__welcome {
    font-size: clamp(1.7rem, 7vw, 2.6rem);
  }

  .hero__overlay h1 {
    font-size: clamp(1.8rem, 7.4vw, 2.7rem);
  }

  .footer-landscape img {
    height: 260px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid button {
    height: 190px;
  }
}
