:root {
  --ink: #161616;
  --muted: #6a6a6a;
  --soft: #8a8a8a;
  --line: rgba(22, 22, 22, 0.08);
  --paper: #f7f6f4;
  --white: #ffffff;
  --red: #c8102e;
  --red-deep: #9d0c24;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Outfit, "Segoe UI", sans-serif;
}

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

a { color: inherit; text-decoration: none; }

.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 20;
  background: #fff;
  padding: 8px 12px;
}

.shell {
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.header {
  background: #e8e8e8;
  z-index: 20;
}

.header-top {
  background: #c9c9c9;
  padding: 0.7rem 5.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #1f1f1f;
}

.header-top a {
  color: #1f1f1f;
}

.header-top a:hover {
  color: var(--red);
}

.header-top-left,
.header-top-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-top svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.navbar {
  padding: 1.15rem 5.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e8e8e8;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 312px;
  height: 72px;
  object-fit: contain;
  display: block;
}

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

.nav-links > li > a,
.nav-links .nav-trigger {
  font-family: Corbel, "Lucida Grande", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1f1f1f;
  padding: 0.5rem 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.nav-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.nav-icon svg {
  width: 100%;
  height: 100%;
}

.nav-links a:hover,
.nav-links a:hover .nav-icon {
  color: var(--red);
  opacity: 1;
}

.nav-links a.active,
.nav-links a.active .nav-icon {
  color: var(--red);
  opacity: 1;
}

.nav-links > li > a.active::after,
.nav-links .nav-trigger.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.7rem;
  right: 0.7rem;
  height: 2px;
  background: var(--red);
}

.dropdown-arrow {
  font-size: 0.6em;
  margin-left: 0.15rem;
  opacity: 0.7;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 4px;
  padding: 0.5rem 0;
  margin-top: 0.35rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 30;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.35rem;
  font-family: Corbel, "Lucida Grande", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1f1f1f;
}

.dropdown-menu a:hover {
  background: #f7f7f7;
  color: var(--red);
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  border-top: 1px solid #eee;
}

.dropdown-all {
  border-top: 1px solid #eee;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1f1f1f;
}

.split {
  display: grid;
  grid-template-columns: minmax(360px, 41%) 1fr;
  min-height: 0;
  flex: 1;
}
.split-3 {
  grid-template-columns: minmax(260px, 0.92fr) minmax(280px, 1.15fr) minmax(260px, 1fr);
}

.body {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 40px 5.4rem 1.25rem;
  flex: none;
  background: #1b1b1b;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: grayscale(0.35) contrast(1.05);
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,18,18,0.94) 0%, rgba(18,18,18,0.72) 48%, rgba(18,18,18,0.94) 100%),
    linear-gradient(180deg, rgba(18,18,18,0.2), rgba(18,18,18,0.55));
}

.page-hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000 10%, transparent 72%);
  pointer-events: none;
}

.page-hero-mark {
  position: absolute;
  right: 6%;
  top: 50%;
  width: min(220px, 22vw);
  height: auto;
  transform: translateY(-50%);
  opacity: 0.16;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  font-family: Outfit, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.55rem;
}

.page-hero .breadcrumb a { color: rgba(255,255,255,0.82); }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb span { margin: 0 0.45rem; color: rgba(255,255,255,0.35); }

.page-hero h1 {
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  letter-spacing: -0.08em;
  color: #fff;
  max-width: none;
  line-height: 1;
  margin: 0;
}

.page-hero .hero-last {
  font-style: italic;
  color: var(--red);
  letter-spacing: -0.08em;
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(200px, 42vw);
  margin: 0.7rem auto 0.55rem;
  color: var(--red);
}

.hero-rule span {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
}

.hero-rule i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  display: block;
  box-shadow: 0 0 0 4px rgba(200,16,46,0.18);
}

.page-hero .subtitle {
  margin: 0;
  font-family: Outfit, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

.copy {
  padding: 28px 44px 28px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.csr-brand {
  margin-bottom: 1.15rem;
}
.csr-logo-lockup {
  position: relative;
  width: 312px;
  height: 72px;
}
.csr-brand-logo {
  width: 312px;
  height: 72px;
  object-fit: contain;
  display: block;
}
.csr-brand-tag {
  position: absolute;
  left: 40%;
  right: 21%;
  bottom: 2px;
  height: 17px;
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #6b6b6b;
  text-align: right;
  line-height: 17px;
  text-transform: uppercase;
  white-space: nowrap;
}

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.05rem, 3.5vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 12ch;
}

.brand-limited {
  font-style: italic;
  color: var(--red);
}

.lede {
  margin-top: 16px;
  max-width: 36em;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: #444;
}

.lede + .lede { margin-top: 10px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.stat b {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 22px;
}
.bar i {
  height: 4px;
  background: #e3e0dc;
  display: block;
}
.bar i:nth-child(1) { background: var(--red); }
.bar i:nth-child(2) { background: #e25a6c; }
.bar i:nth-child(3) { background: #8a8a8a; }
.bar i:nth-child(4) { background: #1f1f1f; }

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 18px;
  border: 1px solid var(--ink);
}

.btn-solid {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-solid:hover { background: var(--red); border-color: var(--red); }

.btn-ghost:hover { color: var(--red); border-color: var(--red); }

.list {
  margin-top: 20px;
  list-style: none;
}
.list li {
  display: flex;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
}
.list li:last-child { border-bottom: 1px solid var(--line); }
.list small {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
  min-width: 92px;
  padding-top: 3px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.pills span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 7px 10px;
  background: #fff;
}

.ratings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.rating {
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 14px;
}
.rating em {
  display: block;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.rating strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin-right: 8px;
}
.rating b {
  font-weight: 500;
  font-size: 13px;
  color: var(--red);
}

.switcher {
  margin-top: 18px;
}
.switcher button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 11px 0;
  cursor: pointer;
  font: inherit;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.switcher button:last-child { border-bottom: 1px solid var(--line); }
.switcher b {
  font-weight: 500;
  font-size: 16px;
}
.switcher span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.switcher button.is-on b { color: var(--red); }

.meta {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #444;
  min-height: 4.6em;
}

.people li b { display: block; font-weight: 500; }
.people li span { color: var(--muted); font-size: 12px; }

.contact-line {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
}
.contact-line a:hover { color: var(--red); }

.contact-page .contact-line {
  font-size: 1.22rem;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 400;
}
.contact-page .pills {
  gap: 10px;
  margin-top: 1.15rem;
}
.contact-page .pills span {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 0.9rem;
  color: var(--ink);
}
.contact-page .actions {
  margin-top: 1.6rem;
  gap: 12px;
}
.contact-page .btn {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.9rem 1.4rem;
}

.copy-title {
  font-family: Montserrat, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  letter-spacing: -0.08em;
  line-height: 1.05;
  max-width: none;
  margin: 0;
}
.copy-title .hero-last {
  font-style: italic;
  color: var(--red);
  letter-spacing: -0.08em;
}
.copy-title-rule {
  justify-content: flex-start;
  margin: 0.7rem 0 1.15rem;
}

.collage {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1.2fr 0.82fr 0.95fr;
  gap: 8px;
  height: 100%;
  min-height: 0;
  padding: 14px 14px 14px 0;
}

.tile {
  overflow: hidden;
  background: #d9d4ce;
  min-height: 0;
}
.tile img,
.tile iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.tile-0 { grid-column: 1; grid-row: 1 / 3; }
.tile-1 { grid-column: 2; grid-row: 1; }
.tile-2 { grid-column: 2; grid-row: 2; }
.tile-3 { grid-column: 1 / -1; grid-row: 3; }
.collage.collage-5 .tile-3 { grid-column: 1; grid-row: 3; }
.collage.collage-5 .tile-4 { grid-column: 2; grid-row: 3; }
.collage.collage-5 .tile-0 img { object-position: 50% 42%; }
.collage.collage-5 .tile-1 img { object-position: 50% 40%; }
.collage.collage-5 .tile-3 img,
.collage.collage-5 .tile-4 img { object-position: 50% 22%; }

.collage.portraits {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}
.collage.portraits .tile { grid-column: auto; grid-row: auto; }
.collage.portraits .tile img { object-position: top center; }

.collage-photo {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #d9d4ce;
}
.collage-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.contact-map {
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
  background: #e4e0da;
  overflow: hidden;
}
.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.split-3 .collage-photo img {
  object-fit: cover;
  object-position: 52% 58%;
}
.split-3 .copy {
  padding: 28px 28px 28px 40px;
}

.caption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.tile { position: relative; }

.footer {
  background: #262626;
  padding: 2rem;
  text-align: center;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.footer-social a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}
.footer-social a:hover {
  color: rgba(255,255,255,0.7);
}
.footer-social svg {
  width: 24px;
  height: 24px;
}
.footer-copyright {
  font-family: Calibri, "Segoe UI", sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

@media (max-width: 1100px) {
  .header-top,
  .navbar {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .logo-img { width: 244px; height: 56px; }
  .nav-links > li > a,
  .nav-links .nav-trigger { font-size: 16px; padding: 0.45rem 0.45rem; }
}

@media (max-width: 980px) {
  html, body { overflow: auto; height: auto; }
  .shell { height: auto; min-height: 100dvh; }
  .header-top { display: none; }
  .navbar { padding: 1rem 1.25rem; }
  .logo-img { width: 224px; height: 52px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1f1f1f;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 0 1.5rem;
  }
  .header { position: relative; }
  .nav-links.is-open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a,
  .nav-links .nav-trigger {
    color: #fff;
    font-size: 16px;
    padding: 0.85rem 1.5rem;
  }
  .nav-links a.active::after,
  .nav-links .nav-trigger.active::after { display: none; }
  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    min-width: 0;
    padding: 0 0 0.5rem 2.5rem;
    margin: 0;
  }
  .dropdown-menu a { color: rgba(255,255,255,0.85); font-weight: 600; }
  .dropdown-divider { border-top-color: rgba(255,255,255,0.15); }
  .page-hero { padding: 40px 1.25rem 1.25rem; }
  .page-hero-mark { opacity: 0.08; right: -4%; width: 160px; }
  .split { grid-template-columns: 1fr; }
  .split-3 { grid-template-columns: 1fr; }
  .copy {
    padding: 28px 20px 20px;
    overflow: visible;
  }
  h1 { max-width: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .collage {
    padding: 0 12px 16px;
    height: 58vh;
    min-height: 320px;
  }
  .collage-photo {
    height: 52vh;
    min-height: 280px;
  }
  .contact-map {
    height: 46vh;
    min-height: 280px;
  }
}

@media (max-height: 800px) and (min-width: 981px) {
  .header-top { padding-top: 0.45rem; padding-bottom: 0.45rem; }
  .navbar { padding-top: 0.7rem; padding-bottom: 0.7rem; }
  .logo-img { width: 244px; height: 56px; }
  .copy { padding: 18px 36px 18px 40px; }
  h1 { font-size: 2.1rem; }
  .lede { font-size: 16px; margin-top: 10px; }
  .stats, .actions, .ratings, .switcher { margin-top: 14px; }
  .list li { padding: 7px 0; }
  .footer { padding: 1.15rem 2rem; }
  .footer-social { margin-bottom: 0.7rem; }
}
