:root {
  --bg: #070A0F;              /* deep black */
  --text: #F4F6FA;            /* near-white */
  --muted: #B3BCCB;           /* cool gray */
  --line: rgba(255,255,255,.12);

  --brand: #F36B21;           /* New Era orange */
  --brand2: #FF8A3D;          /* lighter orange for gradients */
  --max: 1120px;
  --r: 16px;
  --shadow: 0 14px 30px rgba(0,0,0,.40);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.skip-link{
  position:absolute; left:-999px; top:10px;
  background:#fff; color:#000; padding:10px 12px; border-radius:10px;
  z-index:9999;
}
.skip-link:focus{ left:10px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 14, 19, .78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 12px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar-link { color: var(--muted); font-size: 14px; }
.topbar-link:hover { color: var(--text); opacity: 1; }

.pill {
  font-size: 12px;
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}

.header { border-bottom: 1px solid var(--line); background: rgba(11,15,20,.85); backdrop-filter: blur(10px); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0; /* ⬅ tighter */
  gap: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(243,107,33,.98), rgba(255,138,61,.92));
  color: #0b0f14;
  font-weight: 900;
}
.brand-text { display: grid; line-height: 1.1; }
.brand-name { font-weight: 850; }
.brand-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 18px; }
.nav a { color: var(--muted); font-size: 14px; }
.nav a:hover { color: var(--text); opacity: 1; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px; width: 20px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 750;
  font-size: 14px;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-color: rgba(0,0,0,.15);
  color: #06110b;
}
.btn-ghost { background: rgba(255,255,255,.03); }
.btn-block { width: 100%; }

.hero {
  position: relative;
  padding: 56px 0 36px;
  overflow: hidden;
  min-height: 540px;
  display: grid;
  align-items: center;
}
.hero-media{
  position:absolute; inset:0;
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(11,15,20,.88) 0%, rgba(11,15,20,.65) 55%, rgba(11,15,20,.35) 100%),
   radial-gradient(600px 420px at 20% 20%, rgba(243,107,33,.20), transparent 60%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.hero-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4.1vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.lead { margin: 0 0 18px; color: var(--muted); font-size: 16px; max-width: 60ch; }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.trust-item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.05);
  padding: 12px;
}
.trust-title { font-weight: 850; font-size: 14px; }
.trust-sub { color: var(--muted); font-size: 12px; margin-top: 4px; }

.card {
  border: 1px solid var(--line);
  border-radius: calc(var(--r) + 4px);
  background: rgba(11,15,20,.78);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 18px;
}
.card-title { margin: 0 0 6px; font-size: 18px; }
.card-sub { margin: 0 0 14px; color: var(--muted); font-size: 14px; }

.form { display: grid; gap: 12px; }
label { display: grid; gap: 7px; font-size: 13px; color: var(--muted); }
input, select, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(12, 16, 22, .85);
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: rgba(243,107,33,.60); }
.form-note { margin: 0; font-size: 13px; color: var(--muted); min-height: 18px; }
.tiny { font-size: 12px; }
.muted { color: var(--muted); }

.section { padding: 56px 0; }
.section.soft { background: rgba(255,255,255,.02); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 18px; }
.section-head h2 { margin: 0 0 6px; font-size: 28px; }
.section-head p { margin: 0; color: var(--muted); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.feature {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  padding: 16px;
}
.feature h3 { margin: 0 0 6px; font-size: 18px; }
.feature p { margin: 0 0 10px; color: var(--muted); }
.mini-list { margin: 0; padding-left: 18px; color: var(--muted); }
.mini-list li { margin: 6px 0; }

.cta-strip {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: calc(var(--r) + 4px);
  background: rgba(243,107,33,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
}
.cta-strip h3 { margin: 0 0 4px; }
.cta-strip p { margin: 0; color: var(--muted); }

.steps { display: grid; gap: 12px; }
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  padding: 14px;
}
.step-num{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(243,107,33,.14);
  border: 1px solid rgba(243,107,33,.26);
  font-weight: 900;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.shot {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.shot img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .2s ease;
}
.shot:hover img { transform: scale(1.03); }

.review {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  padding: 16px;
}
.stars { color: rgba(243,107,33,.95); }
.reviewer { margin: 10px 0 0; color: var(--muted); font-size: 13px; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
}
.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: none; }
.contact-label { color: var(--muted); font-size: 13px; }
.spacer { height: 10px; }

.faq { display: grid; gap: 10px; }
details {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  padding: 12px 14px;
}
summary { cursor: pointer; font-weight: 850; }
details p { margin: 10px 0 0; color: var(--muted); }

.footer { border-top: 1px solid var(--line); padding: 26px 0 20px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand { font-weight: 900; }
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 13px; }
.footer-links a:hover { color: var(--text); opacity: 1; }
.footer-bottom { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.footer .tiny.muted{
  max-width: 70ch;
}
.nav a{ white-space: nowrap; }


@media (max-width: 980px) {
  .hero { padding: 44px 0 28px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .shot img { height: 240px; }

  .nav-toggle { display: inline-block; }
  .nav {
    position: absolute;
    right: 20px;
    top: 118px;
    width: min(360px, calc(100% - 40px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(10, 14, 19, .92);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 10px; border-radius: 12px; }
  .nav a:hover { background: rgba(255,255,255,.04); }
}

.story{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;                 /* more space between image + text */
  align-items: center;       /* centers both columns vertically */
}

.story-copy{
  display: flex;
  flex-direction: column;
  justify-content: center;   /* centers content inside the right column */
  padding-left: 10px;        /* little extra breathing room */
}

.story-media{
  border: 1px solid var(--line);
  border-radius: calc(var(--r) + 4px);
  overflow: hidden;
  background: rgba(255,255,255,.02);
}

.story-media img{
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.story-copy h3{ margin: 0 0 8px; font-size: 20px; }

@media (max-width: 980px){
  .story{ grid-template-columns: 1fr; }
  .story-media img{ height: 260px; }
}

.process-cta{
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.map-embed{
  border: 1px solid var(--line);
  border-radius: calc(var(--r) + 6px);
  overflow: hidden;
  background: rgba(255,255,255,.02);
  box-shadow: var(--shadow);
}

.map-embed iframe{
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

@media (max-width: 980px){
  .map-embed iframe{ height: 300px; }
}

.nav-more{ position: relative; }

.nav-more-btn{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}
.nav-more-btn:hover{
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.03);
}

.nav-more-menu{
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(10, 14, 19, .95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index: 60;
}

.nav-more-menu a{
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
}
.nav-more-menu a:hover{
  color: var(--text);
  background: rgba(255,255,255,.04);
}

.nav-more.open .nav-more-menu{ display: flex; }

@media (min-width: 981px){
  .nav .btn.btn-primary{ display:none; }
}

.nav-more-menu{
  z-index: 2000; /* was 60 — bump it */
}

.header { position: relative; z-index: 999; }

/* ===== Gallery page ===== */
.gallery-controls{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 16px 0 18px;
  flex-wrap: wrap;
}

.chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 13px;
  cursor: pointer;
}
.chip:hover{ color: var(--text); }
.chip.active{
  background: rgba(243,107,33,.12);
  color: var(--text);
  border-color: rgba(243,107,33,.28);
}

.gallery-actions{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.gallery-search{
  min-width: 260px;
  padding: 12px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(12, 16, 22, .85);
  color: var(--text);
  outline: none;
}
.gallery-search:focus{ border-color: rgba(39,192,125,.55); }

/* Masonry (no JS needed) */
.masonry{
  columns: 3 320px;
  column-gap: 12px;
}

.tile{
  break-inside: avoid;
  margin: 0 0 12px;
  border: 1px solid var(--line);
  border-radius: calc(var(--r) + 6px);
  overflow: hidden;
  background: rgba(255,255,255,.02);
}
.tile-link{ display:block; }
.tile img{
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform .2s ease;
}
.tile:hover img{ transform: scale(1.02); }

.tile-cap{
  padding: 12px 12px 14px;
  display: grid;
  gap: 4px;
}
.tile-cap strong{ font-size: 14px; }
.tile-cap span{ font-size: 12px; color: var(--muted); }

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
}
.lightbox.open{ display:block; }

.lightbox-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(6px);
}

.lightbox-panel{
  position: relative;
  width: min(980px, calc(100% - 28px));
  margin: 6vh auto 0;
  border: 1px solid var(--line);
  border-radius: calc(var(--r) + 8px);
  background: rgba(11,15,20,.92);
  box-shadow: var(--shadow);
  padding: 14px;
}

.lightbox-panel img{
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: calc(var(--r) + 2px);
  border: 1px solid rgba(255,255,255,.10);
}

.lightbox-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor: pointer;
}

.lightbox-cap{
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.lightbox-nav{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 980px){
  .masonry{ columns: 1 320px; }
  .gallery-search{ min-width: 200px; width: 100%; }
}

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

.brand-logo-img{
  height: 70px;          /* main size control */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Tablet */
@media (max-width: 980px){
  .brand-logo-img{
    height: 46px;
  }
}

/* Mobile */
@media (max-width: 520px){
  .brand-logo-img{
    height: 40px;
  }
}

.footer-social{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social a{
  font-size: 13px;
  color: var(--muted);
}

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

.footer-social{
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.footer-social a{
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  transition: transform .15s ease, background .15s ease;
}

.footer-social a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.08);
}

.footer-social svg{
  width: 18px;
  height: 18px;
  fill: var(--muted);
}

.footer-social a:hover svg{
  fill: var(--text);
}

.gallery-cta {
  margin-top: 8px;   /* was too large */
  display: flex;
  justify-content: center;
}

.section .tiny {
  margin-bottom: 4px;
}

/* =========================
   Legal / Privacy Pages
   ========================= */

.legal {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.legal h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 10px;
  color: var(--text);
}

.legal .updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.legal h2 {
  margin-top: 42px;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--text);
}

.legal p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 15px;
}

.legal ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.legal li {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
}

.legal a {
  color: var(--brand);
}

.legal a:hover {
  text-decoration: underline;
}

.legal-divider {
  height: 1px;
  background: var(--line);
  margin: 48px 0;
}
