@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&family=Roboto:wght@400;500;700&display=swap");

:root {
  --orange: #ed8c08;
  --orange-soft: #ebb866;
  --red: #b60019;
  --blue: #066783;
  --blue-dark: #11475f;
  --ink: #111111;
  --muted: #4c5262;
  --light-blue: #79b4d6;
  --paper: #f7f7f7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

a:hover {
  color: var(--light-blue);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.wrap {
  width: min(1138px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 50;
  background: #fff;
  font-family: "Open Sans", Arial, sans-serif;
}

.desktop-head {
  width: 1108px;
  max-width: calc(100vw - 80px);
  height: 113px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 330px;
  padding-top: 10px;
  overflow: visible;
}

.brand-mark {
  width: 70px;
  height: 68px;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 3px;
  width: 64px;
  height: 34px;
  background: #191919;
  clip-path: polygon(50% 0%, 100% 34%, 100% 72%, 50% 100%, 0 72%, 0 34%);
}

.brand-mark::before {
  top: 0;
}

.brand-mark::after {
  bottom: 0;
  background: var(--orange);
  transform: rotate(180deg);
}

.brand-mark span {
  position: absolute;
  inset: 26px 18px 26px;
  z-index: 2;
  background: #fff;
  border-radius: 50%;
}

.brand-type {
  display: grid;
  line-height: .83;
  letter-spacing: 0;
  color: #191919;
}

.brand-type strong {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-type em {
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1px;
}

.header-right {
  display: grid;
  justify-items: end;
  flex: 1;
}

.top-links {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.top-links a:not(.social-dot):hover {
  color: var(--red);
}

.header-support {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 8px 14px;
  background: #f6f8f9;
  color: var(--blue-dark);
  letter-spacing: 0;
}

.header-support strong {
  color: var(--red);
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0;
}

.header-support span {
  color: #4c5262;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.social-dot {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
}

.social-dot:hover {
  color: #fff;
  opacity: .75;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
}

.main-nav a {
  color: #050505;
  white-space: nowrap;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--light-blue);
}

.mobile-head,
.mobile-menu {
  display: none;
}

.captured-hero {
  position: relative;
  height: 972px;
  min-height: calc(100vh - 113px);
  background-image: url("/images/hero/hero-commercial-roofing-st-petersburg-fl-10.jpg");
  background-size: cover;
  background-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .46);
}

.home-hero .hero-copy {
  position: absolute;
  left: calc(50% - 560px);
  top: 44%;
  transform: translateY(-50%);
  width: 820px;
  color: #fff;
}

.home-hero h1 {
  margin: 0 0 14px;
  max-width: 830px;
  color: #fff;
  font-size: 43px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

.home-hero p {
  margin: 0;
  max-width: 780px;
  color: var(--orange);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-phone,
.hero-cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #fff;
  font-weight: 800;
}

.hero-phone {
  gap: 12px;
  background: var(--red);
}

.hero-phone strong {
  font-size: 20px;
  letter-spacing: 0;
}

.hero-phone span {
  max-width: 150px;
  color: rgba(255,255,255,.88);
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.hero-cta {
  background: var(--orange);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 12px;
}

.hero-phone:hover,
.hero-cta:hover {
  color: #fff;
  opacity: .88;
}

.down-arrow {
  position: absolute;
  left: 50%;
  bottom: 153px;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--orange-soft);
  cursor: pointer;
}

.down-arrow span {
  display: block;
  width: 18px;
  height: 18px;
  margin: 13px auto 0;
  border-right: 5px solid #fff;
  border-bottom: 5px solid #fff;
  transform: rotate(45deg);
}

.featured-section {
  padding: 78px 0 103px;
  background: #fff;
}

.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 38px;
}

.section-kicker {
  position: relative;
  display: inline-block;
  margin-bottom: 4px;
  padding-left: 33px;
  color: var(--red);
  font-size: 12px;
  line-height: 1.8;
  font-weight: 800;
  letter-spacing: 2px;
}

.section-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 26px;
  height: 1px;
  background: var(--red);
}

h2 {
  margin: 0;
  color: #050505;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

.round-link {
  color: #050505;
  font-size: 12px;
  font-weight: 800;
}

.round-link span {
  display: inline-block;
  width: 23px;
  height: 23px;
  margin-left: 12px;
  border: 1px solid var(--red);
  border-radius: 50%;
  vertical-align: middle;
  position: relative;
}

.round-link span::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 8px;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  transform: rotate(45deg);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card img {
  width: 100%;
  height: 169px;
  object-fit: cover;
}

.feature-card h3 {
  margin: 24px 0 5px;
  color: var(--orange);
  font-size: 19px;
  line-height: 1.08;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  color: #69727d;
  font-size: 12px;
  line-height: 1.45;
}

.news-band {
  padding: 82px 0 72px;
  background:
    linear-gradient(rgba(0, 0, 0, .56), rgba(0, 0, 0, .56)),
    repeating-linear-gradient(0deg, #2e2a26 0 3px, #3d3934 3px 12px);
  color: #fff;
}

.news-band h2 {
  margin-bottom: 47px;
  color: #fff;
  text-align: center;
  font-size: 31px;
}

.news-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-strip img {
  width: 100%;
  height: 169px;
  object-fit: cover;
}

.news-strip h3 {
  margin: 17px 0 4px;
  color: var(--orange);
  font-size: 18px;
  line-height: 1.25;
}

.news-strip p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 13px;
}

.dot-row,
.mini-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 27px;
}

.dot-row span,
.mini-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d9d9d9;
}

.dot-row span:first-child,
.mini-dots span:first-child {
  background: var(--orange);
}

.why-section {
  min-height: 440px;
  padding: 112px 0 105px;
  background:
    linear-gradient(rgba(255,255,255,.85), rgba(255,255,255,.85)),
    repeating-linear-gradient(90deg, #e9e9e9 0 2px, #f6f6f6 2px 160px);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.85fr;
  gap: 70px;
  align-items: center;
}

.why-grid h2 {
  color: var(--orange);
  font-size: 30px;
}

.why-copy {
  padding-left: 58px;
  border-left: 1px solid #bdd3df;
  color: #4c5262;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}

.location-cinema {
  padding: 88px 0 96px;
  background:
    linear-gradient(135deg, rgba(17,71,95,.98), rgba(5,25,35,.94)),
    url("/images/hero/hero-commercial-roofing-st-petersburg-fl-05.jpg") center / cover;
  color: #fff;
}

.location-cinema-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.location-cinema h2 {
  color: #fff;
  max-width: 670px;
}

.round-link.light {
  color: #fff;
}

.round-link.light span {
  border-color: var(--orange);
}

.round-link.light span::after {
  border-color: var(--orange);
}

.location-cinema-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, .9fr);
  grid-auto-rows: 214px;
  gap: 18px;
}

.location-tile {
  position: relative;
  min-height: 0;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 22px;
  color: #fff;
  isolation: isolate;
}

.location-tile.is-large {
  grid-row: span 2;
}

.location-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.location-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.78));
}

.location-tile span {
  color: #fff;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 800;
}

.location-tile small {
  display: block;
  max-width: 360px;
  margin-top: 8px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  line-height: 1.45;
}

.location-tile:hover {
  color: #fff;
}

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

.footer-contact-band {
  padding: 92px 0;
  background:
    linear-gradient(rgba(17,71,95,.76), rgba(17,71,95,.86)),
    url("/images/services/commercial-roof-inspection-commercial-roofing-st-petersburg-fl.png") center / cover;
  color: #fff;
  border-top: 5px solid var(--orange);
}

.footer-contact-inner {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 50px;
  align-items: start;
}

.footer-contact-band h2 {
  color: #fff;
  font-size: 27px;
}

.footer-contact-band p {
  max-width: 470px;
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.6;
}

.footer-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.footer-contact-form label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.footer-contact-form .full {
  grid-column: 1 / -1;
}

.footer-contact-form input,
.footer-contact-form select,
.footer-contact-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.38);
  padding: 10px 12px;
  background: #fff;
  color: #111;
}

.footer-contact-form textarea {
  min-height: 92px;
  resize: vertical;
}

.footer-contact-form button,
.contact-form button {
  height: 38px;
  border: 0;
  background: var(--orange);
  color: #fff;
  padding: 0 28px;
  font-weight: 800;
  cursor: pointer;
}

.footer-contact-form button {
  width: max-content;
  min-width: 165px;
  height: 44px;
}

.site-footer {
  background: var(--blue);
  color: #fff;
}

.footer-grid {
  min-height: 370px;
  display: grid;
  grid-template-columns: 1.3fr .9fr .75fr .75fr 1.25fr;
  gap: 60px;
  align-items: center;
  padding: 55px 0;
}

.site-footer a {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 14px;
}

.footer-brand p,
.site-footer p {
  margin: 15px 0 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.55;
}

.footer-logo {
  padding: 0;
  transform: scale(.88);
  transform-origin: left center;
}

.footer-map iframe {
  width: 100%;
  height: 210px;
  border: 0;
  display: block;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

.footer-legal {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--blue-dark);
  color: #fff;
  font-size: 12px;
}

.footer-legal a {
  display: inline-block;
  font-size: 12px;
}

.inner-hero {
  position: relative;
  height: 400px;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
}

.inner-hero .wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inner-hero h1 {
  margin: 48px 0 22px;
  color: #fff;
  font-size: 47px;
  line-height: 1;
  font-weight: 800;
}

.inner-hero i {
  width: 182px;
  height: 2px;
  background: #fff;
}

.overlap-section {
  background: #fff;
}

.overlap-grid {
  display: grid;
  grid-template-columns: 570px 1fr;
  gap: 30px;
  align-items: center;
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.overlap-img {
  width: 570px;
  height: 620px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
}

.overlap-copy {
  padding: 36px 0 30px;
  color: #333;
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
}

.tab-band {
  margin-top: 0;
  padding: 82px 0 92px;
  background:
    linear-gradient(rgba(255,255,255,.76), rgba(255,255,255,.76)),
    repeating-linear-gradient(90deg, #e8e8e8 0 2px, #fafafa 2px 145px);
}

.tab-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  align-items: start;
}

.tab-list {
  display: grid;
}

.tab-list button {
  height: 56px;
  border: 0;
  border-bottom: 1px solid #fff;
  padding: 0 25px;
  background: #efefef;
  color: #050505;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.tab-list button.active {
  background: var(--orange);
  color: #fff;
}

.tab-panels article {
  display: none;
  min-height: 150px;
  padding: 18px 0 0;
  font-family: Roboto, Arial, sans-serif;
  color: #111;
  font-size: 18px;
  line-height: 1.55;
}

.tab-panels article.active {
  display: block;
}

.line-icon {
  display: block;
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
  border: 5px solid var(--orange);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  position: relative;
}

.line-icon::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 5px;
  background: var(--orange);
  left: 19px;
  top: 36px;
  transform: rotate(-36deg);
}

.article-section {
  padding: 86px 0;
  background: #fff;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 55px;
  align-items: start;
}

.article-grid article {
  color: #343434;
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

.article-grid h2 {
  margin: 0 0 18px;
  font-family: "Open Sans", Arial, sans-serif;
}

.article-grid p {
  margin: 0 0 20px;
}

details {
  border-top: 1px solid #ddd;
  padding: 16px 0;
}

summary {
  cursor: pointer;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 800;
}

.side-panel {
  padding: 28px;
  background: var(--paper);
  border-top: 5px solid var(--orange);
}

.side-panel h3 {
  margin: 0 0 14px;
  font-size: 21px;
}

.side-panel p,
.side-panel a {
  display: block;
  margin: 0 0 12px;
  color: #333;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.detail-lede {
  padding: 70px 0 28px;
  background: #fff;
}

.detail-lede-grid {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) 1fr;
  gap: 46px;
  align-items: center;
}

.detail-lede-grid img {
  width: 100%;
  aspect-ratio: 5 / 3.6;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(17,71,95,.18);
}

.detail-lede-grid h2 {
  margin: 0 0 16px;
}

.detail-lede-grid p {
  margin: 0;
  color: #4c5262;
  font-family: Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.detail-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.detail-actions a:first-child {
  background: var(--red);
}

.article h2,
.article h3 {
  margin: 34px 0 14px;
  font-family: "Open Sans", Arial, sans-serif;
  color: #050505;
  line-height: 1.18;
}

.article h2:first-child,
.article h3:first-child {
  margin-top: 0;
}

.article .faq {
  margin-top: 32px;
  display: grid;
  gap: 13px;
}

.article .faq details,
.article details {
  border: 1px solid #dce4e8;
  border-left: 5px solid var(--orange);
  padding: 0;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17,71,95,.08);
}

.article .faq summary,
.article summary {
  padding: 16px 18px;
  color: var(--blue-dark);
  list-style: none;
}

.article .faq summary::-webkit-details-marker,
.article summary::-webkit-details-marker {
  display: none;
}

.article .faq summary::after,
.article summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-size: 18px;
}

.article .faq details[open] summary::after,
.article details[open] summary::after {
  content: "-";
}

.article .faq details p,
.article details p {
  padding: 0 18px 18px;
  margin: 0;
}

.related-section,
.index-section,
.contact-details {
  padding: 80px 0 95px;
  background: #fff;
}

.related-grid,
.index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.related-card,
.index-card {
  display: block;
  background: #fff;
  border: 1px solid #e1e7eb;
  border-top: 5px solid var(--orange);
  box-shadow: 0 12px 30px rgba(17,71,95,.08);
}

.related-card img,
.index-card img {
  width: 100%;
  height: 188px;
  object-fit: cover;
}

.related-card strong,
.index-card strong {
  display: block;
  margin: 18px 18px 6px;
  color: var(--orange);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.related-card span,
.index-card span,
.index-intro {
  display: block;
  color: #69727d;
  font-size: 14px;
  line-height: 1.55;
}

.related-card span,
.index-card span {
  padding: 0 18px 22px;
}

.index-intro {
  max-width: 760px;
  margin: 12px 0 0;
}

.about-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.about-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 730px;
  padding: 90px 0;
}

.about-hero-copy .section-kicker,
.location-cinema .section-kicker {
  color: var(--orange);
}

.about-hero-copy h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 800;
}

.about-hero-copy p {
  margin: 0 0 26px;
  max-width: 640px;
  color: rgba(255,255,255,.9);
  font-size: 17px;
  line-height: 1.65;
}

.about-story,
.about-operating {
  padding: 84px 0;
  background: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 58px;
  align-items: center;
}

.about-story p {
  color: #4c5262;
  font-family: Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

.about-proof-card {
  padding: 34px;
  background: var(--blue);
  color: #fff;
  border-top: 6px solid var(--orange);
}

.about-proof-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.about-proof-card span {
  color: rgba(255,255,255,.88);
}

.about-operating {
  background:
    linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.88)),
    repeating-linear-gradient(90deg, #e8e8e8 0 2px, #fafafa 2px 145px);
}

.about-operating h2 {
  max-width: 650px;
  margin-bottom: 30px;
}

.about-operating-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-operating-grid a {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  background: #fff;
  border: 1px solid #dce4e8;
  border-top: 5px solid var(--orange);
  box-shadow: 0 14px 28px rgba(17,71,95,.08);
}

.about-operating-grid strong {
  color: var(--blue-dark);
  font-size: 20px;
  line-height: 1.1;
}

.about-operating-grid span {
  color: #59616c;
  font-size: 13px;
  line-height: 1.55;
}

.contact-page {
  padding: 82px 0 70px;
  background:
    linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)),
    repeating-linear-gradient(90deg, #e8e8e8 0 2px, #fafafa 2px 145px);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) 1fr;
  gap: 52px;
  align-items: start;
}

.contact-visual {
  position: sticky;
  top: 24px;
}

.contact-visual img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(17,71,95,.18);
}

.contact-card {
  margin: -74px 28px 0;
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 24px;
  background: var(--blue);
  color: #fff;
  border-top: 5px solid var(--orange);
  box-shadow: 0 18px 36px rgba(0,0,0,.2);
}

.contact-card strong {
  font-size: 19px;
  line-height: 1.15;
}

.contact-card a {
  color: #fff;
  overflow-wrap: anywhere;
}

.contact-copy h1 {
  margin: 0 0 12px;
  color: #050505;
  font-size: 43px;
  line-height: 1.08;
  font-weight: 800;
}

.contact-copy p {
  margin: 0 0 26px;
  color: #4c5262;
  font-size: 16px;
  line-height: 1.65;
}

.contact-form {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #4c5262;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #c6d0d6;
  min-height: 43px;
  padding: 10px 12px;
  background: #fff;
  color: #111;
}

.contact-form textarea {
  min-height: 96px;
}

.contact-form label:has(textarea),
.contact-form label:has(select) {
  grid-column: 1 / -1;
}

.contact-form button {
  width: max-content;
  min-width: 170px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

@media (max-width: 900px) {
  .desktop-head {
    display: none;
  }

  .mobile-head {
    height: 152px;
    padding: 28px 31px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
  }

  .mobile-head .brand-logo {
    min-width: 0;
    padding: 0;
    gap: 10px;
    max-width: calc(100vw - 88px);
  }

  .mobile-head .brand-mark {
    width: 68px;
    height: 66px;
  }

  .mobile-head .brand-type strong {
    font-size: 29px;
  }

  .mobile-head .brand-type em {
    font-size: 13px;
  }

  .menu-toggle {
    width: 48px;
    height: 44px;
    border: 1px solid #d6e0e5;
    background: #f7f9fa;
    display: grid;
    align-content: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--blue-dark);
  }

  .mobile-menu {
    display: none;
    padding: 12px 31px 26px;
    background: #fff;
    border-top: 1px solid #eee;
  }

  .mobile-menu.open {
    display: grid;
    gap: 14px;
  }

  .mobile-menu a {
    color: #050505;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
  }

  .captured-hero {
    height: 520px;
    min-height: 520px;
    background-position: center;
  }

  .home-hero .hero-copy {
    left: 20px;
    right: 20px;
    top: 46%;
    width: auto;
    text-align: center;
  }

  .home-hero h1 {
    font-size: 36px;
    line-height: 1.16;
  }

  .home-hero p {
    font-size: 17px;
    line-height: 1.35;
  }

  .hero-actions {
    justify-content: center;
    margin-top: 20px;
  }

  .hero-phone,
  .hero-cta {
    width: 100%;
    max-width: 315px;
  }

  .location-cinema {
    padding: 62px 0 68px;
  }

  .location-cinema-head {
    display: grid;
    align-items: start;
  }

  .location-cinema-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .location-tile.is-large {
    grid-row: auto;
  }

  .featured-section {
    padding: 94px 20px 58px;
  }

  .wrap {
    width: calc(100vw - 40px);
  }

  .section-title-row,
  .footer-contact-inner,
  .why-grid,
  .overlap-grid,
  .contact-grid,
  .contact-page-grid,
  .detail-lede-grid,
  .about-story-grid,
  .about-operating-grid,
  .tab-layout,
  .article-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .section-title-row {
    align-items: flex-start;
    gap: 12px;
  }

  h2 {
    font-size: 30px;
  }

  .feature-cards,
  .news-strip,
  .related-grid,
  .index-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card img,
  .news-strip img,
  .related-card img,
  .index-card img {
    height: 206px;
  }

  .news-band {
    padding: 56px 0;
  }

  .why-section {
    padding: 72px 0;
  }

  .why-copy {
    padding-left: 0;
    border-left: 0;
    text-align: left;
  }

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

  .inner-hero {
    height: 260px;
  }

  .inner-hero h1 {
    margin: 35px 0 15px;
    font-size: 45px;
  }

  .about-hero {
    min-height: 520px;
  }

  .about-hero-copy {
    padding: 76px 0;
  }

  .about-hero-copy h1,
  .contact-copy h1 {
    font-size: 36px;
  }

  .about-story,
  .about-operating,
  .contact-page,
  .detail-lede {
    padding: 58px 0;
  }

  .about-proof-card {
    padding: 26px;
  }

  .about-operating-grid a {
    min-height: 0;
    gap: 18px;
  }

  .detail-lede-grid img {
    aspect-ratio: 16 / 10;
  }

  .overlap-grid,
  .contact-grid {
    margin-top: 0;
    width: 100%;
  }

  .overlap-img {
    width: 100vw;
    max-width: none;
    height: 425px;
    margin-left: -20px;
    box-shadow: none;
  }

  .overlap-copy {
    padding: 28px 0;
    font-size: 16px;
  }

  .tab-band {
    padding: 56px 0 64px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    position: relative;
    top: 0;
  }

  .contact-visual img {
    aspect-ratio: 16 / 10;
  }

  .contact-card {
    margin: -44px 18px 0;
  }

  .footer-grid {
    gap: 25px;
    min-height: 0;
    padding: 45px 0;
  }

  .footer-map iframe {
    height: 250px;
  }

  .footer-legal {
    flex-wrap: wrap;
    padding: 20px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .mobile-head {
    padding-left: 28px;
    padding-right: 28px;
  }

  .mobile-head .brand-mark {
    width: 68px;
    height: 66px;
  }

  .mobile-head .brand-type strong {
    font-size: 25px;
  }

  .mobile-head .brand-type em {
    font-size: 12px;
  }

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

  .home-hero p {
    font-size: 16px;
  }
}
