/* Palette: deep navy #0b1b2b, gold #d7a449, sage #d6e2d3, ivory #f8f5f0 */
:root {
  --bg: #0b1b2b;
  --surface: #0f2235;
  --card: #11283b;
  --accent: #d7a449;
  --accent-soft: #f3d59f;
  --text: #f8f5f0;
  --muted: #b8c3cf;
  --border: #1e3145;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 10% 10%, rgba(215, 164, 73, 0.08), transparent 35%),
    radial-gradient(circle at 90% 10%, rgba(215, 164, 73, 0.06), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Inter", serif;
  margin: 0 0 12px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
}

.hero {
  position: relative;
  padding: 32px clamp(20px, 5vw, 60px) 140px;
  background: linear-gradient(135deg, rgba(11, 27, 43, 0.9), rgba(11, 27, 43, 0.6)),
    url("event01.jpg")
      center/cover no-repeat;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 164, 73, 0.08), transparent 60%);
  pointer-events: none;
}

.nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  margin: 0 auto 40px;
  background: rgba(11, 27, 43, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  max-width: 1100px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 0;
}

.footer-logo {
  height: 50px;
}

.brand-name {
  display: block;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-tagline {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-weight: 600;
}

.nav a {
  color: var(--text);
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #0b1b2b;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(215, 164, 73, 0.25);
}

.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(215, 164, 73, 0.35);
}

.ghost-btn {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  transition: border 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.ghost-btn:hover {
  border-color: var(--accent);
  background: rgba(215, 164, 73, 0.08);
  transform: translateY(-1px);
}

.hero-content {
  position: relative;
  max-width: 780px;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent-soft);
  margin-bottom: 14px;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}

.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 22px 0;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hero-meta div {
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}

.hero-meta strong {
  display: block;
  color: var(--accent-soft);
  margin-bottom: 6px;
}

.section {
  padding: 90px clamp(20px, 5vw, 64px);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.section-header {
  max-width: 780px;
  margin-bottom: 40px;
}

.section h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.about-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-weight: 600;
}

.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 18px 10px;
  box-shadow: var(--shadow);
}

.about-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.services {
  background: linear-gradient(180deg, rgba(17, 40, 59, 0.65), var(--bg));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, border 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 164, 73, 0.4);
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(215, 164, 73, 0.14);
  border: 1px solid rgba(215, 164, 73, 0.5);
  margin-bottom: 10px;
}

.gallery {
  background: #0c1f33;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.gallery figure {
  background: var(--card);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonials {
  background: linear-gradient(180deg, #0c1f33, var(--bg));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  color: var(--text);
}

.quote-meta {
  display: block;
  margin-top: 12px;
  color: var(--accent-soft);
  font-weight: 600;
}

.contact {
  background: #0f2235;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.contact-info {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.info-pills {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.contact-form {
  display: grid;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(215, 164, 73, 0.5);
  border-color: var(--accent);
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.form-status {
  min-height: 20px;
  font-weight: 700;
}

.footer {
  padding: 28px clamp(20px, 5vw, 64px);
  background: #09182a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-weight: 600;
}

.footer a:hover {
  color: var(--accent);
}

@media (max-width: 820px) {
  .nav {
    position: static;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-meta {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 560px) {
  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

