:root {
  --primary: #d4af37;
  --primary-fg: #004d2e;
  --foreground: #ffffff;
  --muted: rgba(255, 255, 255, 0.8);
  --border: rgba(255, 255, 255, 0.25);
  --glass: rgba(0, 12, 18, 0.55);
  --glass-soft: rgba(0, 6, 14, 0.32);
  --font-display: "Rajdhani", sans-serif;
  --font-body: "IBM Plex Mono", monospace;
  --font-accent: "Oswald", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--foreground);
  background: transparent;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.text-accent-label {
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.text-muted {
  color: var(--muted);
}

.text-primary {
  color: var(--primary);
}

a {
  color: inherit;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1024px) {
  .container {
    max-width: 1280px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.prestige-gradient-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(
    120deg,
    #004d2e,
    #031e42,
    #5b21b6,
    #002818,
    #004d2e
  );
  background-size: 400% 400%;
  animation: none;
}

.app-shell {
  position: relative;
  z-index: 1;
  isolation: isolate;
  min-height: 100vh;
  width: 100%;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.site-logo img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.site-logo-text strong {
  font-family: var(--font-display);
  font-size: 1.125rem;
  display: block;
  line-height: 1.2;
}

.site-logo-text span {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.nav-desktop {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1.1rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-mobile-wrap {
  position: relative;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.5rem 0.65rem;
  border-radius: 4px;
  cursor: pointer;
  color: inherit;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
  .nav-mobile-wrap {
    display: none;
  }
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--foreground);
}

#nav-drawer-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#nav-drawer-toggle:checked ~ .nav-mobile-panel {
  display: flex;
}

.nav-mobile-panel {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  gap: 0.5rem;
}

.nav-mobile-panel a {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

main.page-main {
  padding-top: 5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--foreground);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.card-glass {
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero {
  padding: 4rem 0 3rem;
}

.section {
  padding: 3rem 0;
}

.section-soft {
  background: var(--glass-soft);
  backdrop-filter: blur(8px);
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.img-cover {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.grid-overlay {
  position: relative;
}

.grid-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
  opacity: 0.9;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  color: var(--foreground);
  font-family: var(--font-body);
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.quote-card {
  margin: 0;
}

.quote-card blockquote {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.quote-attr {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}

