:root {
  --bg-dark: #07131f;
  --bg-dark-2: #0a3c34;
  --gold: #d4af37;
  --gold-soft: #f4df95;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f8fafc;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 25%),
    linear-gradient(135deg, var(--bg-dark) 0%, #08253a 28%, var(--bg-dark-2) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent),
    radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.10), transparent 30%);
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), #8b6d16);
  color: #08111f;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: var(--shadow-lg);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-size: 1.5rem;
  font-weight: 800;
}

.logo-subtitle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  padding: 60px 0 90px;
}

.hero-badge {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(255,255,255,0.06);
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.98;
  margin-bottom: 20px;
  max-width: 760px;
}

.hero-copy {
  font-size: 1.12rem;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #08111f;
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.22);
}

.btn-outline {
  color: white;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 760px;
}

.mini-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 16px;
  backdrop-filter: blur(8px);
}

.mini-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  color: var(--white);
}

.mini-stat span {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}

.premium-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.card-kicker {
  color: var(--gold-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 10px;
}

.premium-card h3 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 22px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
}

.feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  margin-top: 8px;
  flex-shrink: 0;
}

.feature-item p {
  color: rgba(255,255,255,0.9);
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #8b6d16;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.left-align {
  display: block;
  text-align: left;
}

.light-label {
  color: rgba(255,255,255,0.75);
}

.green-label {
  color: #9ee7c6;
}

.section-heading h2,
.about-card h2,
.contact-copy h2,
.luxury-band h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-heading p,
.about-card p,
.contact-copy p {
  color: var(--muted);
}

.services-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
}

.card-grid {
  display: grid;
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.info-card {
  background: white;
  border: 1px solid #e7edf3;
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.14);
}

.card-number {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #0a2538, #114f42);
  color: var(--gold-soft);
  font-weight: 800;
}

.info-card h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.info-card p {
  color: var(--muted);
}

.luxury-band {
  background: linear-gradient(135deg, #08111f, #102c41);
  color: white;
}

.band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.light-heading {
  color: white;
}

.band-points {
  display: grid;
  gap: 12px;
}

.band-point {
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.about-section {
  background: #f3f8f7;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-card {
  background: white;
  border: 1px solid #e7edf3;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.dark-card {
  background: linear-gradient(160deg, #08111f, #133245);
  color: white;
  border: none;
}

.dark-card p {
  color: rgba(255,255,255,0.82);
}

.booking-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.booking-shell {
  background: white;
  border: 1px solid #e7edf3;
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.booking-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #d4dde7;
  background: #ffffff;
  font-size: 1rem;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.booking-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.booking-message {
  font-weight: 700;
}

.contact-section {
  background: #f6faf9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.contact-card {
  background: white;
  border: 1px solid #e7edf3;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-row {
  padding: 14px 0;
  border-bottom: 1px solid #e7edf3;
}

.contact-row:last-of-type {
  margin-bottom: 22px;
}

.contact-row span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.contact-row strong {
  font-size: 1.05rem;
}

.full-width {
  width: 100%;
}

.footer {
  background: #08111f;
  color: rgba(255,255,255,0.72);
  padding: 26px 0 36px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-content,
  .band-grid,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-mini-stats {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    right: 0;
    width: 220px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(7, 19, 31, 0.98);
    border: 1px solid rgba(255,255,255,0.10);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links.show {
    display: flex;
  }

  .services-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .section {
    padding: 80px 0;
  }

  .footer-inner {
    flex-direction: column;
  }

  .hero-left h1 {
    font-size: 2.8rem;
  }
}
.hero-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-content-single {
  grid-template-columns: 1fr;
}

.full-hero-left {
  max-width: 100%;
}

.hero-copy-wide {
  max-width: 900px;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.hero-service-cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.hero-service-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.hero-service-card h3 {
  color: #f4df95;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.hero-service-card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
  line-height: 1.55;
}
.custom-hero-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.hero-main {
  width: 100%;
}

.hero-photo-side {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-buttons {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
  max-width: 760px;
}

.hero-service-cards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.hero-service-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.hero-service-card h3 {
  color: #f4df95;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.hero-service-card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
  line-height: 1.55;
}

.hero-image-wrap {
  width: 100%;
  max-width: 340px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .custom-hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-photo-side {
    justify-content: flex-start;
  }

  .hero-service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-mini-stats {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .hero-service-cards {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    max-width: 100%;
  }
}
.hero-mission {
  margin-top: 5px;
  padding: 25px 1 10px;
}

.mission-wrap {
  max-width: 900px;
}

.mission-text {
  font-size: 1.3rem;
  line-height: 1.2;
  color: rgba(255,255,255,1.0);
}
.goal-section {
  margin-top: -60px;
  padding-bottom: 40px;
}

.goal-card {
  max-width: 900px;
  padding: 28px 30px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  position: relative;
  backdrop-filter: blur(10px);
}

/* gold accent line */
.goal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(to bottom, #f4df95, #d4af37);
}

/* label */
.goal-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #f4df95;
  margin-bottom: 0px;
  text-transform: uppercase;
}

/* text */
.goal-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}