:root {
  --ink: #151515;
  --paper: #f7f8f4;
  --white: #ffffff;
  --field: #0f6e4f;
  --field-dark: #083b2c;
  --red: #b93229;
  --gold: #d6a63d;
  --line: #dfe4dc;
  --muted: #626862;
  --shadow: 0 18px 50px rgb(0 0 0 / 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-visible {
  min-height: 64px;
  background: rgb(15 20 17 / 0.92);
  box-shadow: 0 12px 32px rgb(0 0 0 / 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 78px;
  height: 42px;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.18);
}

.brand-text {
  max-width: 160px;
  line-height: 1.08;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 170ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(255 255 255 / 0.52);
  border-radius: 8px;
  color: var(--white);
  background: rgb(255 255 255 / 0.1);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 88vh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/bar-reale-google-clean.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgb(0 0 0 / 0.78) 0%, rgb(0 0 0 / 0.48) 42%, rgb(0 0 0 / 0.1) 78%),
    linear-gradient(180deg, rgb(0 0 0 / 0.2) 0%, rgb(0 0 0 / 0.04) 48%, rgb(0 0 0 / 0.52) 100%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  padding: 118px 0 74px;
  margin-left: clamp(18px, 8vw, 112px);
}

.hero-logo {
  display: block;
  width: min(292px, 72vw);
  height: auto;
  margin-bottom: 22px;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgb(0 0 0 / 0.24);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(4rem, 9vw, 8.7rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgb(255 255 255 / 0.9);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
}

.btn-secondary {
  color: var(--white);
  border-color: rgb(255 255 255 / 0.52);
  background: rgb(255 255 255 / 0.12);
  backdrop-filter: blur(10px);
}

.btn-light {
  color: var(--field-dark);
  background: var(--white);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: -44px auto 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-strip div {
  min-height: 126px;
  padding: 28px;
  background: var(--white);
}

.quick-strip strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.08rem;
}

.quick-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.real-photo-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  padding: clamp(76px, 9vw, 116px) clamp(18px, 5vw, 70px);
  background: var(--white);
}

.real-photo-copy {
  max-width: 520px;
}

.real-photo-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.real-photo-frame {
  margin: 0;
}

.real-photo-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1289 / 400;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

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

.menu-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-tag {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card p {
  color: var(--muted);
  line-height: 1.65;
}

.menu-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.45;
  list-style: none;
}

.menu-list li {
  position: relative;
  padding-left: 18px;
}

.menu-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
}

.sport-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
  padding: clamp(78px, 11vw, 138px) clamp(18px, 6vw, 88px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgb(8 59 44 / 0.95), rgb(15 110 79 / 0.95)),
    repeating-linear-gradient(90deg, rgb(255 255 255 / 0.08) 0 1px, transparent 1px 96px);
}

.sport-copy {
  max-width: 760px;
}

.sport-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgb(255 255 255 / 0.82);
  font-size: 1.08rem;
  line-height: 1.68;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold);
  color: var(--white);
  font-weight: 900;
}

.text-link-dark {
  color: var(--field-dark);
}

.score-panel {
  border: 1px solid rgb(255 255 255 / 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: rgb(255 255 255 / 0.08);
  box-shadow: 0 24px 70px rgb(0 0 0 / 0.24);
}

.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
  padding: 22px 26px;
  border-bottom: 1px solid rgb(255 255 255 / 0.18);
}

.score-row:last-child {
  border-bottom: 0;
}

.score-row span {
  color: rgb(255 255 255 / 0.7);
  font-weight: 800;
}

.score-row strong {
  font-size: 1.55rem;
}

.sky-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 6vw, 88px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgb(16 22 19 / 0.98), rgb(55 20 24 / 0.94)),
    repeating-linear-gradient(0deg, rgb(255 255 255 / 0.07) 0 1px, transparent 1px 86px);
}

.sky-copy {
  max-width: 640px;
}

.sky-copy p:not(.eyebrow) {
  color: rgb(255 255 255 / 0.82);
  font-size: 1.08rem;
  line-height: 1.68;
}

.sky-panel {
  display: grid;
  gap: 16px;
}

.sky-logo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.1);
  box-shadow: 0 24px 70px rgb(0 0 0 / 0.2);
}

.sky-logo-card img {
  display: block;
  width: min(210px, 62vw);
  height: 48px;
  padding: 8px 12px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
}

.sky-logo-card span {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.rights-card {
  display: grid;
  grid-template-rows: 92px auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  min-height: 138px;
  padding: 12px;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.08);
}

.rights-logo-wrap {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 92px;
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
}

.rights-card img {
  display: block;
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.rights-card figcaption {
  min-width: 0;
  color: rgb(255 255 255 / 0.88);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.16;
  text-align: center;
  overflow-wrap: anywhere;
}

.rights-card:nth-child(4n + 1) {
  border-color: rgb(214 166 61 / 0.64);
}

.rights-card:nth-child(4n + 2) {
  border-color: rgb(185 50 41 / 0.58);
}

.rights-card:nth-child(4n + 3) {
  border-color: rgb(15 110 79 / 0.72);
}

.moments-section {
  background: var(--white);
}

.moments-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.moments-list article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 26px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.moments-list span {
  color: var(--field);
  font-size: 1.2rem;
  font-weight: 900;
}

.moments-list p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-section {
  padding: clamp(80px, 11vw, 142px) clamp(18px, 6vw, 88px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgb(0 0 0 / 0.76), rgb(0 0 0 / 0.42)),
    url("assets/bar-reale-google-clean.jpg") center / cover;
}

.contact-content {
  max-width: 980px;
}

.contact-content p:not(.eyebrow) {
  max-width: 620px;
  color: rgb(255 255 255 / 0.84);
  font-size: 1.08rem;
  line-height: 1.68;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin: 34px 0 26px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.16);
}

.contact-details div {
  min-height: 150px;
  padding: 22px;
  background: rgb(0 0 0 / 0.2);
}

.contact-details span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  line-height: 1.25;
}

.contact-details p {
  margin: 0;
  color: rgb(255 255 255 / 0.78);
  line-height: 1.5;
}

.contact-details a {
  color: var(--white);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: rgb(255 255 255 / 0.74);
  background: #101613;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 880px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 22;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: grid;
    place-content: center;
    gap: 22px;
    background: rgb(16 22 19 / 0.97);
    font-size: 1.4rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 170ms ease,
      transform 170ms ease;
  }

  .site-header.nav-visible,
  .site-header.is-scrolled.nav-visible {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: 86vh;
  }

  .hero-bg {
    background-position: 45% center;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding-top: 112px;
    padding-bottom: 86px;
    margin: 0 auto;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgb(0 0 0 / 0.82) 0%, rgb(0 0 0 / 0.56) 62%, rgb(0 0 0 / 0.32) 100%),
      linear-gradient(180deg, rgb(0 0 0 / 0.18) 0%, rgb(0 0 0 / 0.12) 48%, rgb(0 0 0 / 0.62) 100%);
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 6rem);
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3.5rem);
  }

  .quick-strip,
  .real-photo-section,
  .menu-grid,
  .contact-details,
  .sport-band,
  .sky-section {
    grid-template-columns: 1fr;
  }

  .rights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .real-photo-section {
    padding-top: 70px;
  }

  .quick-strip {
    margin-top: -30px;
  }

  .quick-strip div {
    min-height: auto;
    padding: 24px;
  }

  .menu-card {
    min-height: 230px;
  }

  .menu-tag {
    margin-bottom: 30px;
  }

  .moments-list article {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    max-width: 118px;
    line-height: 1.05;
  }

  .brand-logo {
    width: 64px;
    height: 36px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .quick-strip {
    width: calc(100% - 24px);
  }

  .score-row {
    min-height: 74px;
    padding: 18px;
  }

  .score-row strong {
    font-size: 1.28rem;
  }

  .sky-logo-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .rights-grid {
    grid-template-columns: 1fr;
  }
}
