:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --panel: #151515;
  --panel-2: #1b1b1b;
  --text: #f5f1e8;
  --muted: #c9c0af;
  --line: rgba(214, 170, 74, 0.18);
  --accent: #d6aa4a;
  --accent-2: #f0d48a;
  --shadow: 0 18px 50px rgba(0,0,0,0.45);
  --radius: 18px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(214,170,74,0.16), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0d0d0d 100%);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 17, 31, 0.8);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #8f6a22);
  color: white;
  box-shadow: var(--shadow);
}

.brand-text { font-size: 1rem; letter-spacing: 0.01em; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a { color: var(--muted); font-weight: 600; }
.site-nav a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
}

.hero {
  padding: 6rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.8rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); max-width: 11ch; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; }

.hero-text,
.section-head p,
.two-col p,
.cta-grid p,
.site-footer p,
.card p,
.hero-card p,
.form-note {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.6rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #8f6a22);
  color: white;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.btn:hover { transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(214, 170, 74, 0.38);
  box-shadow: none;
}
.btn-small { min-height: 42px; padding: 0 0.9rem; }

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.hero-points li,
.area-box span {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.hero-card-inner {
  background: linear-gradient(180deg, rgba(27, 27, 27, 0.98), rgba(12, 12, 12, 0.98));
  border-radius: 18px;
  padding: 2rem;
}

.mini-label {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(214, 170, 74, 0.14);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.84rem;
}

.contact-quick,
.contact-list,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-quick a,
.contact-list a,
.footer-links a {
  color: var(--accent-2);
  font-weight: 600;
}

.trust-strip {
  padding: 0 0 1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-grid > div,
.feature-box,
.contact-form,
.card,
.area-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-grid > div {
  padding: 1.15rem 1.2rem;
}

.trust-grid strong {
  display: block;
  margin-bottom: 0.25rem;
}

.trust-grid span { color: var(--muted); }

.section { padding: 5rem 0; }
.section-alt { background: rgba(255,255,255,0.02); }
.section-head { max-width: 760px; margin-bottom: 2rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card { padding: 1.4rem; }
.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

.feature-box { padding: 1.4rem; }
.feature-box ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.area-box {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cta-section {
  padding-top: 4rem;
  padding-bottom: 5.5rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-form {
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(8,17,31,0.85);
  color: var(--text);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #8ea0b8; }
.form-note { margin: 0; font-size: 0.92rem; }

.site-footer {
  padding: 1.6rem 0 2.5rem;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .cta-grid,
  .card-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(13, 23, 40, 0.98);
    border: 1px solid var(--line);
  }

  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .hero { padding-top: 4.5rem; }
  .hero-points { grid-template-columns: 1fr; }
  .footer-wrap { flex-direction: column; }
  h1 { max-width: 100%; }
}


.brand-lockup{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand-tag{
  font-size:0.72rem;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--accent-2);
  opacity:0.95;
  margin-top:0.18rem;
}

.mobile-call-cta{
  position:fixed;
  left:1rem;
  right:1rem;
  bottom:1rem;
  z-index:60;
  min-height:56px;
  display:none;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:linear-gradient(135deg, var(--accent), #8f6a22);
  color:#111111;
  font-weight:800;
  letter-spacing:0.02em;
  box-shadow:0 18px 38px rgba(0,0,0,0.45);
  border:1px solid rgba(255,255,255,0.08);
}

.site-header{
  background: rgba(10, 10, 10, 0.88);
}

.btn{
  color:#111111;
}

.btn-outline{
  color:var(--text);
}

@media (max-width: 820px){
  .mobile-call-cta{ display:flex; }
  body{ padding-bottom: 5.5rem; }
  .brand-text{ font-size:0.94rem; }
  .brand-tag{ font-size:0.64rem; }
}


.brand-logo-wrap{
  display:flex;
  align-items:center;
  padding:0;
  background:transparent;
  border:none;
  box-shadow:none;
}

.brand-logo{
  display:block;
  height:78px;
  width:auto;
  object-fit:contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}

.hero-logo{
  display:block;
  width:min(420px, 90%);
  height:auto;
  margin:0 0 1.25rem 0;
  filter: drop-shadow(0 16px 36px rgba(0,0,0,0.4));
}

.brand-mark,
.brand-lockup{
  display:none !important;
}

@media (max-width: 820px){
  .brand-logo{
    height:54px;
  }
  .hero-logo{
    width:min(300px, 88%);
    margin:0 auto 1rem auto;
  }
  .hero-copy{
    text-align:center;
  }
}


.section-tight { padding: 2rem 0; }

.cta-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.cta-banner-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.testimonial-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card,
.gallery-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.testimonial-card p {
  color: var(--text);
  margin-top: 0;
}

.testimonial-card strong {
  color: var(--accent-2);
}

.gallery-card {
  min-height: 190px;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(214,170,74,0.1), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}

.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(214,170,74,0.25), transparent 36%);
}

.gallery-card span {
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.contact-list span,
.footer-links span {
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 980px) {
  .cta-banner,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner-actions {
    justify-content: flex-start;
  }
}


/* Secret admin uploader */
.job-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.job-photo-card,
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  padding: 1.2rem;
  display: flex;
  align-items: center;
  min-height: 110px;
}
.job-photo-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #111;
}
.job-photo-copy {
  padding: 1rem;
}
.job-photo-copy h3 {
  margin-bottom: 0.35rem;
}
.job-photo-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.admin-upload-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.footer-admin-link {
  padding-bottom: 1.25rem;
}
.footer-admin-link a {
  color: var(--muted);
  font-size: 0.9rem;
}
.admin-body {
  min-height: 100vh;
}
.admin-wrap {
  padding: 4.5rem 0;
}
.admin-panel {
  max-width: 960px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.admin-panel-inner {
  padding: 1.5rem;
}
.admin-grid,
.admin-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.admin-photo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.admin-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}
.admin-label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.admin-input,
.admin-textarea,
.admin-file {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #0f0f0f;
  color: var(--text);
  padding: 0.9rem 1rem;
  font: inherit;
}
.admin-textarea {
  min-height: 110px;
  resize: vertical;
}
.admin-form-row {
  margin-bottom: 1rem;
}
.admin-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.admin-status,
.admin-note,
.admin-help {
  color: var(--muted);
}
.admin-status.success { color: #bfe7b6; }
.admin-status.error { color: #ffb4b4; }
.admin-thumb {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.admin-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.admin-thumb-copy {
  padding: 0.85rem;
}
.admin-thumb-copy h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}
.admin-thumb-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .job-gallery,
  .admin-grid,
  .admin-photo-grid {
    grid-template-columns: 1fr;
  }
}

.admin-thumb-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.btn-danger {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-danger:hover {
  border-color: rgba(255,255,255,0.35);
}

/* Smaller uploaded photo cards */
.job-gallery {
  grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
  justify-content: center;
}
.job-photo-card {
  max-width: 320px;
  margin: 0 auto;
}
.job-photo-card img {
  aspect-ratio: 4 / 3;
  max-height: 260px;
}
.admin-photo-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  justify-content: center;
}
.admin-thumb {
  max-width: 280px;
  margin: 0 auto;
}
.admin-thumb img {
  max-height: 210px;
}

/* Premium gold photo cards */
.job-photo-card,
.admin-thumb {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(10,10,10,0.96);
  border: 1px solid rgba(212, 168, 74, 0.42);
  border-radius: 24px;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.35),
    0 0 0 1px rgba(212, 168, 74, 0.08) inset;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.job-photo-card img,
.admin-thumb img {
  display: block;
  width: calc(100% - 20px);
  margin: 10px auto 0;
  border-radius: 18px;
  border: 1px solid rgba(212, 168, 74, 0.22);
  box-shadow: 0 8px 18px rgba(0,0,0,0.22);
  background: #111;
}

.job-photo-copy,
.admin-thumb-copy {
  padding: 1rem 1rem 1.1rem;
}

.job-photo-copy h3,
.admin-thumb-copy h4 {
  margin-bottom: 0.35rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.job-photo-copy p,
.admin-thumb-copy p {
  color: rgba(255,255,255,0.72);
}

.job-photo-card:hover,
.admin-thumb:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.42),
    0 0 0 1px rgba(212, 168, 74, 0.12) inset,
    0 0 18px rgba(212, 168, 74, 0.10);
}

.job-photo-card,
.admin-thumb {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

/* Obvious redesigned photo cards */
.job-gallery,
.admin-photo-grid {
  gap: 1.4rem;
}

.job-photo-card,
.admin-thumb {
  background: linear-gradient(180deg, rgba(28,22,12,0.98) 0%, rgba(14,14,14,0.98) 100%);
  border: 2px solid rgba(212, 168, 74, 0.72);
  border-radius: 28px;
  padding: 14px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 0 3px rgba(212, 168, 74, 0.12),
    0 0 24px rgba(212, 168, 74, 0.16);
}

.job-photo-card img,
.admin-thumb img {
  width: 100%;
  margin: 0;
  border-radius: 20px;
  border: 2px solid rgba(255, 214, 120, 0.55);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.28),
    0 0 18px rgba(212,168,74,0.10);
}

.job-photo-copy,
.admin-thumb-copy {
  margin-top: 0.9rem;
  padding: 0.15rem 0.15rem 0.25rem;
}

.job-photo-copy h3,
.admin-thumb-copy h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: #f5e7c2;
}

.job-photo-copy p,
.admin-thumb-copy p {
  color: rgba(255,255,255,0.78);
  font-size: 0.94rem;
  line-height: 1.45;
}

.job-photo-card:hover,
.admin-thumb:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 24px 48px rgba(0,0,0,0.52),
    0 0 0 3px rgba(212, 168, 74, 0.16),
    0 0 28px rgba(212, 168, 74, 0.22);
}

/* Polished premium photo cards */
.job-gallery {
  gap: 1.1rem;
}

.job-photo-card {
  max-width: 300px;
}

.job-photo-card,
.admin-thumb {
  border-radius: 24px;
  padding: 10px;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.34),
    0 0 0 2px rgba(212, 168, 74, 0.10),
    0 0 14px rgba(212, 168, 74, 0.10);
}

.job-photo-card img,
.admin-thumb img {
  border-radius: 22px;
  max-height: 220px;
  object-fit: cover;
  box-shadow:
    0 8px 18px rgba(0,0,0,0.22),
    0 0 10px rgba(212,168,74,0.08);
}

.job-photo-copy,
.admin-thumb-copy {
  margin-top: 0.6rem;
  padding: 0.1rem 0.25rem 0.2rem;
}

.job-photo-copy h3,
.admin-thumb-copy h4 {
  font-size: 1rem;
  margin-bottom: 0.28rem;
}

.job-photo-copy p,
.admin-thumb-copy p {
  font-size: 0.92rem;
  line-height: 1.35;
}

.job-photo-card:hover,
.admin-thumb:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 32px rgba(0,0,0,0.38),
    0 0 0 2px rgba(212, 168, 74, 0.14),
    0 0 16px rgba(212, 168, 74, 0.12);
}