:root {
  --black: #050505;
  --charcoal: #141414;
  --ink: #202020;
  --soft-black: #282828;
  --white: #ffffff;
  --cloud: #f6f5f2;
  --stone: #d9d4cb;
  --muted: #747474;
  --red: #d71920;
  --red-dark: #9d0f15;
  --yellow: #ffcc00;
  --shadow: 0 24px 80px rgb(0 0 0 / 0.22);
  --radius: 28px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cloud);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  transform: translateY(-150%);
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
}
.skip-link:focus { transform: translateY(0); }
.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;
  inset: 0 0 auto;
  z-index: 50;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  background: rgb(255 255 255 / .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 30px rgb(0 0 0 / .08);
}
.nav {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img { width: clamp(190px, 26vw, 310px); }
.nav-menu { display: flex; gap: .5rem; align-items: center; }
.nav-menu a {
  padding: .75rem 1rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
  color: rgb(255 255 255 / .88);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.site-header.is-scrolled .nav-menu a { color: var(--black); }
.nav-menu a:hover { background: rgb(215 25 32 / .12); color: var(--red); transform: translateY(-1px); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 12rem 1rem 6rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}
.hero-media, .hero-media img, .hero-gradient, .line-grid { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); }
.hero-gradient {
  background:
    radial-gradient(circle at 80% 25%, rgb(215 25 32 / .45), transparent 26rem),
    linear-gradient(90deg, rgb(0 0 0 / .88), rgb(0 0 0 / .5) 46%, rgb(0 0 0 / .1));
}
.line-grid {
  opacity: .18;
  background-image:
    linear-gradient(115deg, transparent 0 48%, var(--white) 48.2% 48.45%, transparent 48.7%),
    linear-gradient(155deg, transparent 0 58%, var(--red) 58.2% 58.5%, transparent 58.7%);
  background-size: 260px 260px, 340px 340px;
  animation: drift 18s linear infinite;
}
@keyframes drift { to { background-position: 260px 260px, -340px 340px; } }

.hero-content, .hero-card { position: relative; z-index: 2; }
.hero-content {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}
.eyebrow, .section-kicker {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 850px;
  margin-bottom: 1.25rem;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: .88;
  letter-spacing: -.07em;
}
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.045em;
}
h3 { font-size: 1.3rem; letter-spacing: -.03em; }
.hero-content p:not(.eyebrow) {
  max-width: 620px;
  color: rgb(255 255 255 / .78);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--red); color: var(--white); box-shadow: 0 14px 30px rgb(215 25 32 / .32); }
.button-primary:hover { background: var(--red-dark); }
.button-secondary { border: 1px solid rgb(255 255 255 / .3); color: var(--white); background: rgb(255 255 255 / .08); backdrop-filter: blur(14px); }
.hero-card {
  width: min(360px, calc(100% - 2rem));
  margin: 3rem auto 0;
  justify-self: end;
  translate: calc((100vw - min(var(--max-width), calc(100vw - 2rem))) / -2) 0;
  padding: 1.15rem;
  border: 1px solid rgb(255 255 255 / .16);
  border-radius: 22px;
  background: rgb(255 255 255 / .1);
  backdrop-filter: blur(22px);
}
.hero-card span { display: block; margin-bottom: .35rem; color: var(--yellow); font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; }

.section-padding { padding: clamp(5rem, 9vw, 9rem) 1rem; }
.intro, .partners, .feature-band, .section-heading {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}
.intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}
.intro > p, .feature-copy p, .cta p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 680px;
}

.about-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.05rem;
}

.showcase {
  width: min(1360px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.showcase-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.showcase-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.showcase-card:hover img { transform: scale(1.07); }
.showcase-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgb(0 0 0 / .76)); }
.showcase-card div { position: absolute; z-index: 1; left: 1.35rem; right: 1.35rem; bottom: 1.35rem; color: white; }
.showcase-card span { color: var(--yellow); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.showcase-card h3 { margin: .5rem 0 0; font-size: 1.6rem; }

.services {
  margin-top: 1rem;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 30%, rgb(255 255 255 / .25), transparent 18rem),
    radial-gradient(circle at 93% 88%, rgb(215 25 32 / .25), transparent 22rem),
    linear-gradient(135deg, #050505, #303030 48%, #101010);
}
.section-heading { margin-bottom: 3rem; text-align: center; }
.section-heading h2 { max-width: 840px; margin-inline: auto; }
.service-grid {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card {
  padding: 2rem;
  border: 1px solid rgb(255 255 255 / .12);
  border-radius: var(--radius);
  background: rgb(255 255 255 / .07);
  backdrop-filter: blur(20px);
  transition: transform .25s ease, background .25s ease;
}
.service-card:hover { transform: translateY(-8px); background: rgb(255 255 255 / .11); }
.icon { margin-bottom: 2rem; color: var(--red); font-size: 3rem; }
.service-card p { color: rgb(255 255 255 / .68); line-height: 1.8; }

.feature-band {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 1.25rem;
  align-items: stretch;
}
.feature-copy, .feature-panel {
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 4rem);
}
.feature-copy { background: var(--white); box-shadow: 0 20px 60px rgb(0 0 0 / .08); }
.feature-panel { background: var(--black); color: var(--white); }
.feature-panel ul { list-style: none; padding: 0; margin: 0; }
.feature-panel li {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgb(255 255 255 / .14);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
}
.feature-panel li:last-child { border-bottom: 0; }
.feature-panel span { color: var(--red); }

.partners {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(2rem, 8vw, 7rem);
  align-items: center;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem 4rem;
    align-items: center;
    justify-items: center;
}

.logo-grid img {
    width: auto;
    height: auto;

    max-width: 180px;
    max-height: 70px;

    object-fit: contain;

    opacity: 0.55;
    filter: grayscale(100%);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        filter 0.4s ease;
}

.logo-grid img:hover {
    opacity: 1;
    transform: translateY(-4px);
    filter: grayscale(0%);
}

.cta {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 5rem 1rem;
  overflow: hidden;
  color: var(--white);
}
.cta-bg { position: absolute; inset: 0; background: linear-gradient(rgb(0 0 0 / .62), rgb(0 0 0 / .78)), url("assets/luxury-lounge.jpg") center/cover; }
.cta-content { position: relative; width: min(760px, calc(100% - 2rem)); text-align: center; }
.cta h2 { margin-bottom: 1rem; }
.cta p { color: rgb(255 255 255 / .72); }

.footer {
  padding: 2rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  color: var(--muted);
}
.footer img { width: 220px; mix-blend-mode: multiply; }
.footer p { margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 0;
    border-radius: 999px;
    background: rgb(255 255 255 / .9);
  }
  .nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: var(--black); }
  .nav-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 78px;
    display: grid;
    padding: .75rem;
    border-radius: 22px;
    background: rgb(255 255 255 / .95);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-menu a, .site-header .nav-menu a { color: var(--black); }
  .intro, .partners, .feature-band { grid-template-columns: 1fr; }
  .showcase, .service-grid { grid-template-columns: 1fr; }
  .showcase-card { min-height: 360px; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card { justify-self: start; translate: 0; }
}

@media (max-width: 560px) {
  .hero { padding-top: 9rem; }
  h1 { font-size: clamp(3rem, 17vw, 5rem); }
  .logo-grid { grid-template-columns: 1fr; }
  .footer { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .logo-grid img {
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: 1fr;
    }
}
