@font-face {
  font-family: "Alternate Gothic Compressed";
  src: url("/faithful/fonts/alternate-gothic-compressed-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/faithful/fonts/montserrat-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/faithful/fonts/montserrat-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/faithful/fonts/montserrat-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/faithful/fonts/open-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/faithful/fonts/open-sans-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #b81932;
  --red-dark: #99162b;
  --slate: #455660;
  --ink: #455660;
  --muted: #7b858b;
  --line: #d1d7db;
  --pale: #e6ebed;
  --white: #fff;
  --max: 1300px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", serif;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  color: #fff;
  padding-top: 27px;
}

.nav-wrap {
  width: min(100% - 140px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 52px);
  white-space: nowrap;
}

.nav-right {
  justify-content: flex-end;
}

.site-header a,
.site-header button {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.brand img {
  width: 224px;
  margin: 0 auto;
}

.header-phone {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  background: var(--red);
  padding: 0 22px;
  white-space: nowrap;
  text-transform: uppercase;
}

.hamburger-menu {
  display: none;
  width: 42px;
  height: 36px;
  border: 0;
  background: transparent;
  padding: 0;
}

.hamburger-menu span {
  display: block;
  width: 36px;
  height: 4px;
  margin: 6px 0 6px auto;
  background: #fff;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(rgba(69, 86, 96, 0.45), rgba(69, 86, 96, 0.45)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero.home {
  min-height: 666px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(69, 86, 96, 0.24);
}

.hero-title {
  position: relative;
  z-index: 2;
  width: min(100% - 140px, var(--max));
  margin: 0 auto;
  padding-bottom: 92px;
}

.hero h1 {
  margin: 0;
  max-width: 1140px;
  color: #fff;
  font-family: "Alternate Gothic Compressed", Impact, sans-serif;
  font-size: 105px;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.hero.home h1 {
  font-size: 200px;
  line-height: 0.9;
  letter-spacing: 0.05em;
}

.diamond {
  position: absolute;
  width: 64px;
  height: 64px;
  background: var(--red);
  transform: rotate(45deg);
  z-index: 3;
}

.diamond.left {
  left: -32px;
  bottom: 122px;
}

.diamond.right {
  right: -32px;
  bottom: 122px;
}

.section {
  width: min(100% - 140px, var(--max));
  margin: 0 auto;
  padding: 100px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.1fr;
  gap: 76px;
  align-items: start;
}

.section h2,
.section-title {
  margin: 0 0 32px;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.section h3 {
  margin: 0 0 18px;
  color: var(--slate);
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
}

p {
  margin: 0 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 48px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  border: 0;
  padding: 0 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover {
  background: var(--red-dark);
}

.paired-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 70px;
  text-align: center;
}

.paired-cards img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
}

.paired-cards h3 {
  margin-top: 28px;
}

.gray-band {
  background: var(--pale);
}

.feature-grid {
  width: min(100% - 140px, var(--max));
  margin: 0 auto;
  padding: 112px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 92px;
  align-items: center;
}

.feature-grid img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.quote-band {
  width: min(100% - 140px, 1180px);
  margin: 0 auto;
  padding: 118px 0;
  color: var(--red);
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
}

.taxonomy-text-section {
  width: min(100% - 140px, var(--max));
  margin: 0 auto;
  padding: 28px 0 80px;
}

.taxonomy-row {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 92px;
  gap: 56px;
  align-items: start;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.taxonomy-row:last-child {
  border-bottom: 1px solid var(--line);
}

.taxonomy-row h2 {
  margin: 0;
  color: #111;
  font-family: "Alternate Gothic Compressed", Impact, sans-serif;
  font-size: 66px;
  line-height: 0.93;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.taxonomy-copy p {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
  line-height: 32px;
  font-weight: 600;
}

.taxonomy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
}

.taxonomy-links a {
  color: #141414;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.taxonomy-links a:hover,
.footer-column a:hover {
  color: var(--red);
}

.taxonomy-view {
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
}

.location-cinema-section {
  width: min(100% - 140px, var(--max));
  margin: 0 auto;
  padding: 28px 0 130px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr) auto;
  gap: 42px;
  align-items: start;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  color: #111;
  font-family: "Alternate Gothic Compressed", Impact, sans-serif;
  font-size: 72px;
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-head p {
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 31px;
}

.location-cinema-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.location-cinema-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: var(--slate);
}

.location-cinema-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62));
}

.location-cinema-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.location-cinema-card:hover img {
  transform: scale(1.04);
}

.location-cinema-card span {
  position: absolute;
  inset: auto 20px 18px;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.18;
}

.card-list {
  display: grid;
  gap: 72px;
}

.listing-card {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 64px;
  align-items: stretch;
  min-height: 430px;
  text-decoration: none;
  color: var(--ink);
}

.listing-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.listing-card:nth-child(even) .listing-image {
  order: 2;
}

.listing-image {
  min-height: 430px;
  background: var(--pale);
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-copy {
  padding: 54px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.listing-copy h2 {
  margin-bottom: 20px;
}

.small-label {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 90px;
  align-items: start;
}

.detail-copy img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
  margin-bottom: 56px;
}

.detail-panel {
  padding: 0 0 54px;
  border-bottom: 1px solid var(--line);
}

.sidebar {
  position: sticky;
  top: 30px;
  border-top: 1px solid var(--line);
}

.sidebar h3 {
  margin-top: 28px;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

.sidebar a {
  display: block;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  font-size: 15px;
}

.accordion {
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

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

.accordion-title {
  width: 100%;
  min-height: 66px;
  border: 0;
  background: transparent;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.accordion-title::after {
  content: "+";
  float: right;
}

.accordion-item.is-open .accordion-title::after {
  content: "-";
}

.accordion-item p {
  display: none;
  padding-bottom: 24px;
}

.accordion-item.is-open p {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 70px;
}

.form-grid {
  display: grid;
  gap: 30px;
}

label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-family: "Open Sans", serif;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 60px;
  border: 0;
  background: #f0f0f0;
  padding: 13px 20px;
  font: inherit;
}

select {
  width: 300px;
  background: #fff;
  border: 1px solid #8f989e;
}

textarea {
  min-height: 350px;
}

.office-list h3 {
  margin-top: 0;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  text-decoration: underline;
}

.office-list a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.contact-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  margin-top: 10px;
}

.site-footer {
  background: var(--slate);
  color: #fff;
  padding: 76px 0 74px;
}

.footer-grid {
  width: min(100% - 140px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 2.1fr);
  gap: 70px;
  align-items: start;
}

.footer-logo {
  width: 230px;
  margin-bottom: 28px;
}

.footer-brand p {
  max-width: 430px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 23px;
}

.footer-brand a {
  color: #fff;
  text-decoration: none;
}

.footer-map {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 26px;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

@media (max-width: 980px) {
  body {
    font-size: 14px;
    line-height: 22px;
  }

  .site-header {
    padding-top: 40px;
  }

  .nav-wrap {
    width: calc(100% - 80px);
    display: flex;
    justify-content: space-between;
    gap: 18px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .brand img {
    width: 156px;
    margin: 0;
  }

  .header-phone {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
    letter-spacing: 0;
  }

  .hamburger-menu {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 80;
    width: min(100%, 390px);
    padding: 44px 40px;
    background: #fff;
    color: var(--slate);
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform 180ms ease;
    display: block;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  .mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
  }

  .mobile-top img {
    width: 174px;
  }

  .menu-close {
    border: 0;
    background: transparent;
    color: var(--red);
    font-size: 34px;
    line-height: 1;
  }

  .mobile-phone {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: var(--red);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 0 16px;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-links a {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    border-top: 1px solid var(--line);
    color: var(--slate);
    font-family: "Open Sans", serif;
    font-size: 14px;
    text-decoration: none;
  }

  .mobile-links a:last-child {
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .hero.home {
    min-height: 650px;
  }

  .hero-title {
    width: calc(100% - 80px);
    padding-bottom: 42px;
  }

  .hero h1,
  .hero.home h1 {
    font-size: 70px;
    line-height: 0.94;
    letter-spacing: 0.04em;
  }

  .diamond {
    display: none;
  }

  .section,
  .feature-grid,
  .taxonomy-text-section,
  .location-cinema-section,
  .quote-band,
  .footer-grid {
    width: calc(100% - 80px);
  }

  .section {
    padding: 52px 0;
  }

  .intro-grid,
  .feature-grid,
  .paired-cards,
  .listing-card,
    .listing-card:nth-child(even),
    .detail-grid,
    .contact-grid,
    .taxonomy-row,
    .section-head,
    .footer-links,
    .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section h2,
  .section-title {
    font-size: 24px;
    line-height: 31px;
  }

  .paired-cards img {
    aspect-ratio: 1.05;
  }

  .gray-band .feature-grid {
    padding: 64px 0;
  }

  .quote-band {
    padding: 62px 0;
    font-size: 20px;
    line-height: 29px;
  }

  .taxonomy-row {
    padding: 34px 0;
  }

  .taxonomy-row h2,
  .section-head h2 {
    font-size: 52px;
  }

  .taxonomy-copy p,
  .section-head p {
    font-size: 17px;
    line-height: 27px;
  }

  .taxonomy-view {
    text-align: left;
  }

  .location-cinema-grid {
    grid-template-columns: 1fr 1fr;
  }

  .listing-card:nth-child(even) .listing-image {
    order: 0;
  }

  .listing-image {
    min-height: 310px;
  }

  .listing-copy {
    padding: 28px 0;
  }

  .sidebar {
    position: static;
  }

  textarea {
    min-height: 250px;
  }

  .site-footer {
    padding: 56px 0;
  }

  .footer-logo {
    width: 210px;
  }

  .footer-links {
    gap: 24px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-top: 28px;
  }

  .nav-wrap,
  .section,
  .feature-grid,
  .taxonomy-text-section,
  .location-cinema-section,
  .quote-band,
  .footer-grid {
    width: calc(100% - 40px);
  }

  .brand img {
    width: 128px;
  }

  .header-phone {
    min-height: 38px;
    padding: 0 10px;
    font-size: 11px;
  }

  .hamburger-menu {
    width: 34px;
  }

  .hamburger-menu span {
    width: 30px;
    height: 3px;
  }

  .mobile-menu {
    padding: 34px 26px;
  }

  .hero h1,
  .hero.home h1 {
    font-size: 56px;
  }

  .taxonomy-row h2,
  .section-head h2 {
    font-size: 44px;
  }

  .taxonomy-links {
    gap: 14px 22px;
  }

  .taxonomy-links a {
    font-size: 16px;
  }

  .location-cinema-grid {
    grid-template-columns: 1fr;
  }

  .location-cinema-card,
  .location-cinema-card img {
    min-height: 230px;
  }
}

/* brand-logo-img sizing (added by brand playbook) */
.brand-logo{display:block;width:auto!important;height:auto;}
.site-header .brand img.brand-logo{height:44px!important;width:auto!important;margin:0!important;}
.site-footer .footer-logo.brand-logo{height:54px!important;width:auto!important;margin-bottom:28px;}
.mobile-top img.brand-logo{height:42px!important;width:auto!important;}
@media (max-width:1024px){.site-header .brand img.brand-logo{height:40px!important;}}
@media (max-width:640px){.site-header .brand img.brand-logo{height:36px!important;}.site-footer .footer-logo.brand-logo{height:48px!important;}.mobile-top img.brand-logo{height:38px!important;}}
