/* ========== Quick tweak area ========== */
:root{
  --bg: #0b1220;
  --panel: #0f172a;
  --panel2: #0b1530;
  --text: #e5e7eb;
  --muted: #a7b0c0;
  --brand: #7dd3fc;
  --brand2: #a78bfa;
  --border: rgba(255,255,255,.08);
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --maxw: 1100px;
}

/* If you want a standard grid gallery instead of the “photo pile”:
   1) Find .photo-pile and replace its styles with a simple grid. */

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(125,211,252,.16), transparent 60%),
    radial-gradient(1000px 600px at 90% 0%, rgba(167,139,250,.14), transparent 55%),
    linear-gradient(180deg, #071022, #050814 55%, #050613);
  color:var(--text);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }
code{ background: rgba(255,255,255,.06); padding: .1em .35em; border-radius: 8px; }

.container{ width:min(var(--maxw), calc(100% - 40px)); margin-inline:auto; }

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

.site-header{
  position: sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(5, 10, 25, .6);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 240px;
}
.brand-mark{
  width:40px; height:40px;
  display:grid; place-items:center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.brand-name{ font-weight: 750; letter-spacing: .2px; }
.brand-sub{ color: var(--muted); font-size: .92rem; }

.nav{
  display:flex; gap:16px; flex-wrap:wrap;
  justify-content:center;
}
.nav a{
  color: var(--muted);
  font-size: .95rem;
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,.05);
  text-decoration:none;
}

.header-cta{ display:flex; gap:10px; align-items:center; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 650;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.btn:hover{ text-decoration:none; transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn-primary{
  background: linear-gradient(135deg, rgba(125,211,252,.20), rgba(167,139,250,.18));
  border-color: rgba(125,211,252,.22);
}
.btn-ghost{
  background: transparent;
}

.hero{
  padding: 52px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}
.eyebrow{
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: .78rem;
  margin:0 0 10px;
}
.hero-copy h1{
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height:1.12;
}
.lead{
  margin: 0 0 18px;
  color: rgba(229,231,235,.92);
  font-size: 1.06rem;
}
.hero-badges{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-bottom: 18px;
}
.badge{
  font-size: .92rem;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding: 8px 10px;
  border-radius: 999px;
}
.hero-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 18px; }

.verse{
  margin: 0 0 8px;
  font-style: italic;
  color: rgba(229,231,235,.92);
}
.verse-ref{ color: var(--muted); font-style: normal; }

.note{
  margin: 0;
  color: var(--muted);
  border-left: 3px solid rgba(125,211,252,.35);
  padding-left: 12px;
}

.hero-media{
  position: relative;
}
.hero-image{
  width:100%;
  height: 340px;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    url("../img/hero.png");
  background-size: cover;
  background-position: center;
}
.hero-card{
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding: 14px 14px 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.hero-card-title{
  font-weight: 750;
  margin-bottom: 8px;
}
.checklist{
  margin:0;
  padding-left: 18px;
  color: rgba(229,231,235,.92);
}
.checklist li{ margin: 6px 0; color: var(--muted); }
.checklist strong{ color: var(--text); }

.section{
  padding: 36px 0;
}
.section.alt{
  background: rgba(255,255,255,.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head{
  margin-bottom: 16px;
}
.section-head h2{
  margin:0 0 6px;
  font-size: 1.7rem;
}
.muted{ color: var(--muted); }
.tiny{ font-size: .9rem; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.card h3{ margin: 0 0 8px; }
.bullets{ margin: 0; padding-left: 18px; color: rgba(229,231,235,.92); }
.bullets li{ margin: 8px 0; color: var(--muted); }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.feature h3{ margin:0 0 6px; }

.rates{
  margin-top: 14px;
}
.rates-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}
.rate-row{
  display:flex; justify-content:space-between; gap:12px;
  border-bottom: 1px dashed rgba(255,255,255,.10);
  padding: 8px 0;
  color: var(--muted);
}
.rate-row strong{ color: var(--text); }

/* Photo pile gallery */
.photo-pile{
  position: relative;
  min-height: 380px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  border-radius: 22px;
  overflow:hidden;
  padding: 18px;
  box-shadow: var(--shadow);
}
.pile{
  position:absolute;
  width: min(320px, 48vw);
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  overflow:hidden;
  transform-origin: center;
  transition: transform .22s ease, box-shadow .22s ease;
}
.pile img{
  width:100%;
  height: 210px;
  object-fit: cover;
  display:block;
  background: rgba(255,255,255,.06);
}
.pile figcaption{
  padding: 10px 12px;
  color: var(--muted);
  font-size: .92rem;
}

/* Positions + rotations (tweak as you like) */
.p1{ left: 6%; top: 10%; transform: rotate(-6deg); }
.p2{ left: 44%; top: 8%; transform: rotate(7deg); }
.p3{ left: 18%; top: 46%; transform: rotate(4deg); }
.p4{ left: 56%; top: 44%; transform: rotate(-5deg); }
.p5{ left: 32%; top: 22%; transform: rotate(-1deg); }

.pile:hover{
  transform: translateY(-4px) rotate(0deg) scale(1.03);
  z-index: 5;
  box-shadow: 0 26px 70px rgba(0,0,0,.45);
}

.gallery-note{ margin-top: 10px; }

/* Map */
.map-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 14px;
  align-items: start;
}
.map-frame{
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.02);
}
.map-frame iframe{
  width: 100%;
  height: 380px;
  border:0;
}
.directions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 12px;
}
.sep{
  border:0;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 16px 0;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-rows{
  display:grid;
  gap: 10px;
}
.contact-row{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,.10);
}
.label{ color: var(--muted); }
.mini-callout{
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(125,211,252,.18);
  background: rgba(125,211,252,.06);
  color: rgba(229,231,235,.92);
}
.form{
  display:grid;
  gap: 12px;
}
.form label{
  display:grid;
  gap: 6px;
  color: rgba(229,231,235,.92);
}
input, textarea{
  width:100%;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(125,211,252,.35);
  box-shadow: 0 0 0 4px rgba(125,211,252,.10);
}

.site-footer{
  padding: 22px 0 28px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.18);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.footer-title{ font-weight: 750; }
.footer-links{ display:flex; gap: 14px; color: var(--muted); }

.noscript{
  margin: 12px auto;
  width: min(var(--maxw), calc(100% - 40px));
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .rates-grid{ grid-template-columns: 1fr; }
  .map-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .nav{ display:none; } /* keep it clean on mobile; can be upgraded to a menu later */
  .brand{ min-width: unset; }
  .photo-pile{ min-height: 560px; }
}

/* Motion respect */
@media (prefers-reduced-motion: reduce){
  .btn:hover{ transform:none; }
  .pile, .pile:hover{ transition:none; }
}
