:root{
  --bg0: #070a14;
  --bg1: #0b1020;
  --text: #e8eefc;
  --muted: rgba(232, 238, 252, 0.75);
  --shadow: 0 18px 45px rgba(0,0,0,0.45);
  --r: 18px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1100px 700px at 15% 10%, rgba(123, 220, 255, 0.20), transparent 55%),
    radial-gradient(900px 650px at 75% 35%, rgba(168, 146, 255, 0.22), transparent 55%),
    radial-gradient(1000px 800px at 55% 90%, rgba(255, 90, 182, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{ color: inherit; }
a:hover{ opacity: 0.95; }

.page{ min-height: 100vh; }
.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section{ padding: 54px 0; }

.section-title{
  font-size: clamp(24px, 2.6vw, 34px);
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}

.section-subtitle{
  margin: 0 0 22px 0;
  color: var(--muted);
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding: 10px 16px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(10,16,32,0.62), rgba(10,16,32,0.42));
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;

  padding: 6px 10px;
  border-radius: 14px;
  background: rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.08);
}

.site-header .brand-logo{
  height: 76px;
  width: auto;
  display: block;
  object-fit: contain;
}

}

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
}

.nav a{
  text-decoration: none;
  color: rgba(232, 238, 252, 0.88);
}

.nav a:hover{ color: rgba(232, 238, 252, 1); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border-radius: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  text-decoration:none;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

.btn:hover{ background: rgba(255,255,255,0.08); }

.btn-primary{
  border: none;
  background: linear-gradient(90deg, rgba(123,220,255,0.95), rgba(168,146,255,0.95));
  color: #081025;
  font-weight: 700;
}

.btn-ghost{ background: rgba(255,255,255,0.04); }
.btn-wide{ width: 100%; }

/* Hero */
.hero{
  position: relative;
  padding: 36px 0 28px 0;
}

.hero-bg{
  position:absolute;
  inset: 0;
  pointer-events:none;
  background:
    radial-gradient(900px 600px at 30% 20%, rgba(123,220,255,0.14), transparent 60%),
    radial-gradient(900px 650px at 70% 30%, rgba(168,146,255,0.18), transparent 60%),
    radial-gradient(900px 650px at 55% 85%, rgba(255,90,182,0.10), transparent 60%);
  filter: saturate(120%);
  opacity: 0.9;
}

.hero-grid{
  position: relative;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.eyebrow{
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(232,238,252,0.74);
  margin-bottom: 12px;
}

.hero h1{
  margin: 0 0 12px 0;
  font-size: clamp(32px, 3.4vw, 48px); /* calmer so logo competes */
  letter-spacing: -0.02em;
  line-height: 1.07;
  font-weight: 760;
}

.lead{
  margin: 0 0 18px 0;
  color: rgba(232,238,252,0.80);
  font-size: 16px;
  line-height: 1.65;
}

.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 16px 0;
}

.pill-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(232,238,252,0.88);
  font-size: 13px;
}

/* Cards */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.045));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card-title{
  margin: 0 0 6px 0;
  font-size: 20px;
}

.muted{ color: var(--muted); }
.fine{ font-size: 13px; }

/* Booking form */
.form{
  display:flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

label span{
  display:block;
  font-size: 13px;
  color: rgba(232,238,252,0.85);
  margin-bottom: 6px;
}

input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  color: rgba(232,238,252,0.95);
  outline: none;
}

input::placeholder, textarea::placeholder{
  color: rgba(232,238,252,0.45);
}

input:focus, textarea:focus{
  border-color: rgba(123, 220, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(123,220,255,0.10

.site-header .brand-logo{
  height: 76px !important;
  transform: scale(1.35) !important;
  transform-origin: left center !important;
}
.brand{
  overflow: visible !important;
}
