:root {
  --blue: #0b3286;
  --blue-deep: #06296d;
  --ink: #111629;
  --gold: #c4932b;
  --gold-bright: #d5a533;
  --paper: #f7f5ef;
  --line: rgba(196, 147, 43, 0.7);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Avenir, "Avenir Next", Montserrat, "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
  background: var(--paper);
}

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

.landing {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 43%, rgba(255, 255, 255, 0.95), transparent 35rem),
    var(--paper);
}

.hero {
  position: relative;
  display: grid;
  min-height: 510px;
  isolation: isolate;
  overflow: hidden;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -3;
  background-image: url("assets/cassidys-bar.jpg");
  background-position: center 34%;
  background-size: cover;
  transform: scale(1.03);
  filter: blur(2px) saturate(0.95);
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 7, 15, 0.7) 0%, rgba(5, 7, 15, 0.55) 42%, rgba(5, 7, 15, 0.78) 100%),
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.12), transparent 23rem);
}

.hero::after {
  position: absolute;
  right: -5%;
  bottom: -1px;
  left: -5%;
  z-index: -1;
  height: 170px;
  content: "";
  background: linear-gradient(180deg, rgba(247, 245, 239, 0), var(--paper) 72%);
  filter: blur(1px);
}

.hero__content {
  display: grid;
  place-items: center;
  align-content: start;
  padding: 104px 24px 0;
}

.brand-logo {
  width: min(660px, 75vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.55));
}

.brand-rule,
.cassidy-divider {
  display: grid;
  grid-template-columns: minmax(45px, 180px) auto minmax(45px, 180px);
  gap: 18px;
  align-items: center;
  color: var(--gold);
}

.brand-rule {
  width: min(430px, 62vw);
  margin-top: -38px;
}

.brand-rule span,
.cassidy-divider span {
  height: 1px;
  background: var(--line);
}

.brand-rule b {
  font-size: 28px;
  line-height: 1;
}

.notice {
  position: relative;
  margin-top: -88px;
  padding: 74px 24px 44px;
  text-align: center;
}

.notice::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(247, 245, 239, 0.18) 0%, var(--paper) 106px),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.92), transparent 24rem);
}

.notice__inner {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.eyebrow,
.footer {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 22px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  color: var(--blue);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: 88px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.cassidy-divider {
  width: min(850px, 86%);
  margin: 8px auto 30px;
  grid-template-columns: 1fr auto 1fr;
}

.cassidy-divider b {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.notice h2,
.hours h2,
.social h2 {
  color: var(--blue);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
}

.notice h2 {
  margin-bottom: 18px;
}

.intro {
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 19px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
}

.feature {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 160px;
  padding: 0 30px;
  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: 0;
}

.feature svg,
.contact-icon svg,
.social svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.feature svg {
  width: 58px;
  height: 58px;
  margin: 0 auto 2px;
  color: var(--blue);
}

.feature h3 {
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.feature p {
  margin-bottom: 0;
  font-size: 17px;
}

.details {
  width: min(1110px, calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.contact-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  align-items: center;
  padding: 18px 8% 16px;
}

.contact-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 70px;
}

.contact-item + .contact-item {
  padding-left: 68px;
  border-left: 1px solid var(--line);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.contact-icon svg {
  width: 34px;
  height: 34px;
}

.contact-item strong {
  display: block;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hours-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin: 0 calc(50% - 50vw);
  padding: 18px calc(50vw - 485px) 24px;
  color: white;
  background:
    linear-gradient(90deg, rgba(5, 34, 89, 0.98), rgba(4, 47, 123, 0.98)),
    var(--blue-deep);
}

.hours {
  justify-self: center;
  width: min(390px, 100%);
}

.hours h2,
.social h2 {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 20px;
}

.hours dl {
  margin: 0;
}

.hours dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  font-size: 16px;
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dl div.is-today {
  color: #fff3ca;
  font-weight: 800;
}

.social {
  display: grid;
  justify-self: stretch;
  align-content: center;
  min-height: 100px;
  padding-left: 88px;
  border-left: 2px solid var(--gold);
}

.social__links {
  display: flex;
  gap: 24px;
}

.social__links a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--blue-deep);
  background: var(--gold-bright);
  border-radius: 50%;
  transition: transform 160ms ease, background 160ms ease;
}

.social__links a:hover,
.social__links a:focus-visible {
  transform: translateY(-2px);
  background: #edc45d;
}

.social__links span {
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.social__links svg {
  width: 29px;
  height: 29px;
  stroke-width: 3;
}

.footer {
  padding: 13px 24px 16px;
  font-size: 17px;
  text-align: center;
  background: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    min-height: 440px;
  }

  .hero__content {
    padding-top: 86px;
  }

  .brand-logo {
    width: min(590px, 84vw);
  }

  .brand-rule {
    margin-top: -30px;
  }

  .notice {
    margin-top: -78px;
    padding-top: 64px;
  }

  .eyebrow {
    font-size: 19px;
  }

  h1 {
    font-size: 66px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .feature:nth-child(2) {
    border-right: 0;
  }

  .contact-row,
  .hours-social {
    padding-right: 32px;
    padding-left: 32px;
  }

  .contact-item + .contact-item {
    padding-left: 32px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 350px;
  }

  .hero__image {
    background-position: center top;
  }

  .hero__content {
    padding: 74px 18px 0;
  }

  .brand-logo {
    width: min(420px, 88vw);
  }

  .brand-rule {
    width: 64vw;
    margin-top: -18px;
    gap: 12px;
  }

  .notice {
    margin-top: -58px;
    padding: 52px 18px 24px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 15px;
  }

  h1 {
    font-size: 43px;
    line-height: 1;
    margin-bottom: 18px;
  }

  .cassidy-divider {
    width: 95%;
    margin: 0 auto 18px;
  }

  .cassidy-divider b {
    font-size: 42px;
  }

  .notice h2 {
    font-size: 22px;
  }

  .intro {
    font-size: 17px;
  }

  .features,
  .contact-row,
  .hours-social {
    grid-template-columns: 1fr;
  }

  .features {
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .feature {
    min-height: 0;
    padding: 22px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .details {
    width: calc(100% - 36px);
  }

  .contact-row {
    gap: 0;
    padding: 14px 0;
  }

  .contact-item {
    grid-template-columns: 58px 1fr;
    min-height: 78px;
    gap: 14px;
  }

  .contact-item + .contact-item {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-icon svg {
    width: 28px;
    height: 28px;
  }

  .contact-item strong {
    font-size: 18px;
  }

  .hours-social {
    gap: 24px;
    padding: 24px 28px 28px;
  }

  .hours {
    justify-self: stretch;
  }

  .hours dl div {
    font-size: 15px;
  }

  .social {
    min-height: auto;
    padding: 24px 0 0;
    border-top: 1px solid var(--gold);
    border-left: 0;
  }

  .social__links {
    justify-content: flex-start;
  }

  .footer {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 315px;
  }

  .brand-logo {
    width: 92vw;
  }

  .notice {
    padding-right: 14px;
    padding-left: 14px;
  }

  h1 {
    font-size: 36px;
  }

  .features h3,
  .feature p {
    font-size: 16px;
  }

  .hours dl div {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
