:root {
  --brand: #EFBF04;
  --brand-dark: #c99b03;
  --bg: #0b0c10;
  --bg-alt: #111218;
  --bg-accent: #191b24;
  --text: #f7f7f7;
  --muted: #a0a4b5;
  --border: #22232e;
  --radius-lg: 16px;
  --radius-md: 10px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --max-width: 1120px;
  --transition-fast: 0.18s ease-out;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #181925 0, #05050a 55%);
  color: var(--text);
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  padding: 4.5rem 0;
  background: rgba(255, 255, 255, 0.01);
}

.section-accent {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #10121b, #171924);
}

h1,
h2,
h3 {
  font-weight: 650;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 2.9rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 640px;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 6, 12, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.5rem;
}

.logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

/* Honeypot field (hidden from users) */
.hp-field {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}


.logo {
  display: flex;
  align-items: center;
}


.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff 0, var(--brand) 40%, #7a5a00 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.6);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 1.1rem;
  font-weight: 650;
}

.logo-sub {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Mobile nav toggle (hamburger) */

.nav-toggle {
  display: none;              /* stays hidden on desktop, shown in mobile media query */
  background: none;
  border: none;
  padding: 0.25rem;
  margin-left: auto;
  cursor: pointer;

  position: relative;         /* for absolutely positioned bars */
  width: 28px;
  height: 20px;
}

/* Burger bars */
.nav-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

/* Top, middle, bottom lines */
.nav-toggle span:nth-child(1) {
  top: 0;
}

.nav-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span:nth-child(3) {
  bottom: 0;
}

/* When nav is open, animate burger into an "X" */
.site-header.nav-open .nav-toggle span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}



.main-nav a {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.main-nav a:hover {
  color: var(--brand);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #111;
  font-weight: 650;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(239, 191, 4, 0.65);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(239, 191, 4, 0.12);
}

.btn-small {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.btn-full-width {
  width: 100%;
}

/* Hero */

.hero {
  padding: 4rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2.2rem;
  align-items: center;
}

.hero-text p {
  color: var(--muted);
  max-width: 640px;
}

.hero-actions {
  margin: 1.6rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.hero-highlights span {
  font-size: 0.82rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

/* Hero card */

.hero-card {
  background: radial-gradient(circle at top left, rgba(239, 191, 4, 0.18), #11121b);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.hero-card ul {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card-note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Cards & grids */

.grid {
  display: grid;
  gap: 1.5rem;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.two-col {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: rgba(10, 11, 18, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.list {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0 0;
}

.list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature-list li + li {
  margin-top: 1rem;
}

.feature-list h3 {
  margin-bottom: 0.15rem;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
}

/* Highlight box */

.highlight-box {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(239, 191, 4, 0.5);
  padding: 1.4rem 1.3rem;
}

/* Gallery */

/* Use flexbox so items keep a fixed-ish thumbnail width, even if there's only one */
.gallery-grid {
  display: flex !important;          /* override .grid { display: grid } */
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
  justify-content: flex-start;
}

.gallery-item {
  flex: 0 0 190px;                   /* base width of each thumb */
  max-width: 220px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease-out,
              box-shadow 0.18s ease-out,
              border-color 0.18s ease-out;
}

/* Neat small thumbnails */
.gallery-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* Hover effect */
.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  border-color: rgba(239, 191, 4, 0.7); /* brand highlight */
}

.gallery-empty {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Lightbox (click-to-expand gallery images) */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: min(1000px, 92vw);
  max-height: 88vh;
  padding: 0.5rem;
  border-radius: 14px;
  background: #05060b;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.65);
}

.lightbox-inner img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 0.3rem;
  right: 0.6rem;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem;
}

.lightbox-close:hover {
  color: var(--brand);
}

/* Areas */

.area-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: flex-start;
}

/* Proper pill-shaped tags */
.area-tag-list .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(239, 191, 4, 0.1);
  border: 1px solid rgba(239, 191, 4, 0.4);
  color: var(--brand);
  height: auto;
  min-height: 0;
  white-space: nowrap;
}

/* Contact */

.contact-container {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-form {
  background: rgba(5, 6, 12, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}

label {
  font-size: 0.85rem;
  color: var(--muted);
}

input,
textarea {
  background: #05060b;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 0.55rem 0.75rem;
  font: inherit;
  outline: none;
  transition: border var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast);
}

input:focus,
textarea:focus {
  border-color: rgba(239, 191, 4, 0.8);
  box-shadow: 0 0 0 1px rgba(239, 191, 4, 0.45);
  background: #070813;
}

.form-status {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0 1.4rem;
  background: #05060b;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .contact-container {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Header layout on mobile */
  .header-inner {
    justify-content: space-between;   /* logo left, burger right */
    gap: 0.75rem;
  }

  /* Show hamburger on mobile */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Turn main nav into a dropdown panel */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 1.5rem;
    right: 1.5rem;
    margin-top: 0.5rem;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.8rem 0.9rem;
    background: rgba(5, 6, 12, 0.98);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
    display: none;       /* 🔒 hidden by default */
    z-index: 999;
  }

  /* Show menu when nav is open */
  .site-header.nav-open .main-nav {
    display: flex;       /* 🔓 shown when .nav-open is on header */
  }

  .main-nav a {
    padding: 0.4rem 0.1rem;
  }
}


