:root {
  --sand: #f3eee7;
  --serif: Georgia, serif;
  --sans: Arial, sans-serif;
}

body {
  background: var(--sand);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
}

/* All content photos scale with their container and keep their original crop. */
.hero .frame {
  margin-right: 0;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.bandwrap {
  width: calc(100% - 96px);
  max-width: 1064px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}

.hero .frame img,
.frame img,
.bandphoto,
.page-hero img,
.final img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
  opacity: 0.88;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-composite: intersect;
}

.bandwrap.in .bandphoto {
  transform: none;
}

/* Use a narrower, lighter edge fade for the About portraits. */
.page-hero img,
.two > .frame img {
  opacity: 0.94;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 4%, #000 96%, transparent 100%);
}

h1,
h2,
h3,
.logo,
blockquote,
q {
  font-family: var(--serif);
}

nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  padding: 24px 0;
  transition: 0.35s;
}

nav.scrolled {
  padding: 15px 0;
  background: rgba(243, 238, 231, 0.95);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  list-style: none;
}

.nav-links a,
.nav-links .lang-link {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.nav-links a {
  text-decoration: none;
}

.lang,
.lang b,
.lang .lang-link {
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.04em;
}

.lang {
  color: var(--muted);
}

.lang b {
  color: var(--ink);
  font-weight: 600;
}

.lang .lang-link {
  color: var(--muted);
  font-weight: 400;
  cursor: default;
}

/* Keep card titles independent from the testimonial container's legacy .t class. */
.m-cell .t {
  max-width: none;
  padding-left: 0;
  border-left: 0;
}

/* Preserve the intended emphasis inside biography copy. */
.bio .os {
  font-size: clamp(21px, 2.3vw, 27px);
  line-height: 1.5;
}

.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ivory);
}

.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  color: var(--ink);
  transition: 0.3s;
}

.nav-cta:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--ivory);
}

.legal-page main {
  min-height: calc(100vh - 235px);
  padding: 170px 0 96px;
}

.legal-page h1 {
  max-width: 900px;
  font-size: clamp(28px, 3.9vw, 48px);
  font-weight: 500;
  line-height: 1.11;
  letter-spacing: -0.014em;
}

.legal-page .placeholder {
  font-size: 18px;
  line-height: 30px;
}

.legal-page footer {
  background: var(--graphite-2);
  color: rgba(237, 231, 222, 0.55);
  font-size: 14px;
  line-height: 24.65px;
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
    line-height: 1.7;
  }

  .bandwrap {
    width: calc(100% - 48px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: block;
  }

  .nav-links.open {
    position: absolute;
    top: 58px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 28px 24px;
    background: var(--sand);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
  }

  .legal-page main {
    padding: 118px 0 56px;
  }
}
