:root {
  --blue: #1087f5;
  --dark: #080808;
  --navy: #061226;
  --ink: #121212;
  --muted: #686868;
  --line: #e7e2dc;
  --paper: #f6f2ec;
  --white: #ffffff;
  --radius: 28px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
}
.brand { display: flex; align-items: center; gap: 14px; margin-right: auto; }
.brand img { width: 58px; height: 44px; object-fit: contain; }
.brand span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.28em; color: rgba(255,255,255,0.7); }
.desktop-nav { display: flex; gap: 28px; font-size: 14px; color: rgba(255,255,255,0.76); }
.desktop-nav a:hover { color: white; }
.header-cta, .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.header-cta { background: white; color: black; }
.button:hover, .header-cta:hover { transform: translateY(-2px); }
.menu-button { display: none; background: none; color: white; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 10px 14px; }
.mobile-nav { display: none; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section-dark { background: var(--dark); color: white; }
.section-muted { background: #fffaf3; }
.hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: 90px;
  overflow: hidden;
  min-height: 820px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(4,12,26,.91) 0%, rgba(4,12,26,.76) 38%, rgba(4,12,26,.5) 68%, rgba(4,12,26,.62) 100%),
    url("assets/hero-exterior.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 92% auto;
  background-color: #071326;
  transform: scale(1.03);
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid, .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); }
.align-end { align-items: end; }
.align-center { align-items: center; }
.eyebrow { color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .25em; font-size: 13px; font-weight: 800; margin: 0 0 18px; }
.eyebrow.blue { color: var(--blue); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(44px, 6.3vw, 84px); line-height: .94; letter-spacing: -0.06em; margin-bottom: 28px; max-width: 960px; }
h2 { font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -0.045em; margin-bottom: 22px; }
h3 { font-size: 25px; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 16px; }
.lead { font-size: clamp(18px, 2vw, 22px); line-height: 1.6; color: rgba(255,255,255,.74); max-width: 700px; }
.lead.small { font-size: 18px; }
.copy-block p, .section-intro p, .visual-copy p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button-light { background: white; color: black; }
.button-outline { border: 1px solid rgba(255,255,255,.24); color: white; }
.button-dark { background: var(--dark); color: white; }
.button.full { width: 100%; }
.hero-card {
  background: rgba(7, 23, 52, 0.86);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  min-height: 390px;
  padding: 46px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  align-self: center;
}
.hero-card img {
  width: min(280px, 76%);
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}
.hero-card p { font-size: clamp(25px, 3.6vw, 38px); line-height: 1.07; letter-spacing: -0.04em; font-weight: 850; margin: 0; color: white; }
.section-intro { max-width: 780px; margin-bottom: 46px; }
.section-intro.narrow { max-width: 620px; }
.cards { display: grid; gap: 22px; }
.cards.three { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card, .space-card, .form-panel, details {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 10px 28px rgba(0,0,0,.04);
}
.card p, .space-card p { color: var(--muted); line-height: 1.6; }
.card a { color: var(--blue); font-weight: 800; }
.action-card { display: flex; flex-direction: column; min-height: 100%; height: 100%; }
.action-card a { margin-top: auto; padding-top: 24px; }
.card-icon { display: inline-flex; margin-bottom: 22px; color: var(--blue); font-weight: 900; letter-spacing: .08em; }
.featured-card { background: var(--dark); color: white; border-color: var(--dark); }
.featured-card p, .featured-card li { color: rgba(255,255,255,.72); }
.featured-card a { color: white; }
.section-event-front { background: white; }
.use-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.use-grid span { background: #f4f8ff; border: 1px solid #dcecff; color: #0a4e96; border-radius: 999px; padding: 14px 16px; font-weight: 800; text-align: center; }
.why-section { overflow: hidden; }
.check-list { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 28px; color: var(--ink); line-height: 1.55; }
.check-list li::before { content: ""; width: 10px; height: 10px; border-radius: 99px; background: var(--blue); position: absolute; left: 0; top: .55em; }
.visual-section { background: white; }
.image-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.image-stack img { height: 360px; width: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: 0 10px 28px rgba(0,0,0,.08); }
.feature-panel { margin-top: 28px; background: var(--dark); color: white; border-radius: var(--radius); padding: clamp(28px, 5vw, 56px); display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; }
.feature-panel p { color: rgba(255,255,255,.68); }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.feature-list li { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 13px 15px; color: rgba(255,255,255,.8); }
.price-card span { color: var(--blue); text-transform: uppercase; letter-spacing: .2em; font-weight: 900; font-size: 12px; }
.price-card h3 { font-size: clamp(32px, 3.4vw, 44px); margin-top: 18px; }
.price-card ul { margin: 18px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.7; }
.price-card.same-size { transform: none; }
.pricing-cards .price-card { height: 100%; display: flex; flex-direction: column; }
.pricing-cards .price-card a { margin-top: auto; padding-top: 24px; }
.gallery-grid { display: grid; gap: 18px; }
.gallery-grid.six { grid-template-columns: repeat(3, 1fr); }
.gallery-grid img { width: 100%; height: 330px; object-fit: cover; object-position: center; border-radius: var(--radius); box-shadow: 0 10px 28px rgba(0,0,0,.08); }
.faq-section { background: white; }
.faq-list { display: grid; gap: 14px; }
details { padding: 24px 28px; }
summary { cursor: pointer; font-weight: 850; font-size: 18px; }
details p { margin: 16px 0 0; color: var(--muted); line-height: 1.6; }
.contact-list { display: grid; gap: 14px; margin-top: 30px; color: rgba(255,255,255,.82); }
.contact-list a:hover { color: white; }
.form-panel { color: var(--ink); }
.form-note { margin: 20px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.footer { background: var(--dark); color: rgba(255,255,255,.65); padding: 34px 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; }
.footer a { color: white; }

@media (max-width: 1100px) {
  .use-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: inline-flex; }
  .mobile-nav { position: fixed; z-index: 49; top: 76px; left: 0; right: 0; background: var(--dark); color: white; padding: 20px; border-bottom: 1px solid rgba(255,255,255,.12); flex-direction: column; gap: 18px; }
  .mobile-nav.open { display: flex; }
  .hero-grid, .two-col, .feature-panel { grid-template-columns: 1fr; }
  .hero::before { background-size: auto 100%; background-position: center center; }
  .hero-card { text-align: left; min-height: 300px; }
  .cards.three, .cards.four, .feature-list, .gallery-grid.six, .image-stack, .use-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-card p { font-size: 28px; }
  .footer-grid { flex-direction: column; }
}


.floor-card { overflow: hidden; padding: 0; }
.floor-card h3, .floor-card p { padding-left: 24px; padding-right: 24px; }
.floor-card h3 { padding-top: 22px; }
.floor-card p { padding-bottom: 26px; }
.floor-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #f4f0ea;
}
.gallery-expanded { grid-template-columns: repeat(3, 1fr); align-items: start; }
.gallery-expanded img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  background: #efe9df;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}
@media (max-width: 900px) {
  .gallery-expanded { grid-template-columns: 1fr; }
  .gallery-expanded img { max-height: none; }
}

/* v6 tweak: keep gallery images consistent in size without changing the rest of the page */
.gallery-expanded { align-items: stretch; }
.gallery-expanded img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 900px) {
  .gallery-expanded img { height: 240px; }
}

/* v5 tweak: restore blue fade background on the final enquiry section only */
#enquire.section-dark {
  background:
    radial-gradient(circle at 15% 15%, rgba(16, 135, 245, 0.48) 0%, rgba(16, 135, 245, 0.18) 28%, rgba(4, 18, 43, 0) 56%),
    radial-gradient(circle at 85% 70%, rgba(16, 135, 245, 0.32) 0%, rgba(16, 135, 245, 0.1) 32%, rgba(4, 18, 43, 0) 62%),
    linear-gradient(135deg, #071c3f 0%, #061226 46%, #030711 100%);
}

/* v6 blue-panel tweak: keep the brand line on one line on desktop */
.hero-card p {
  font-size: clamp(20px, 2.35vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}
@media (max-width: 900px) {
  .hero-card p {
    white-space: normal;
    font-size: 28px;
  }
}
