
:root{
  --bg:#f3f5f8;
  --surface:#ffffff;
  --surface-alt:#f8fbff;
  --text:#182235;
  --muted:#5f6d83;
  --brand:#2d6cdf;
  --brand-dark:#153e98;
  --brand-soft:#d9e8ff;
  --navy:#08152f;
  --navy-2:#0f2558;
  --line:#dbe4f0;
  --shadow:0 18px 50px rgba(11,22,44,.10);
  --shadow-soft:0 10px 30px rgba(10,25,48,.08);
  --radius:24px;
  --radius-sm:16px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#f6f9fc 0%,#eef3f9 100%);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:none}
main{min-height:60vh}
.container{width:min(100% - 2rem,var(--max));margin-inline:auto}

.site-header{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(8,21,47,.92);
  color:#fff;
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 14px 30px rgba(0,0,0,.16);
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 0}
.brand{color:#fff;font-weight:800;font-size:1.3rem;letter-spacing:-.03em}
.nav-links{display:flex;gap:.5rem;flex-wrap:wrap}
.nav-links a{
  color:#edf3ff;
  padding:.7rem 1rem;
  border-radius:999px;
  font-weight:600;
  transition:background .2s ease,transform .2s ease,color .2s ease;
}
.nav-links a:hover,.nav-links a[aria-current="page"]{
  background:rgba(255,255,255,.12);
  color:#fff;
}

.hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  padding:7rem 0 5rem;
  background:
    radial-gradient(circle at top left, rgba(94,167,255,.28), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(140,196,255,.20), transparent 28%),
    linear-gradient(130deg, #08152f 0%, #17316d 55%, #2868ef 100%);
}
.hero-backdrop{
  position:absolute;inset:0;
  background:
    linear-gradient(rgba(3,10,26,.08),rgba(3,10,26,.14)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 1px, transparent 1px 20px);
  pointer-events:none;
}
.hero-grid,.page-hero-grid{display:grid;grid-template-columns:1.2fr .95fr;gap:2rem;align-items:center;position:relative}
.hero-copy{max-width:760px}
.badge,.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.badge{
  background:rgba(232,241,255,.96);
  color:var(--brand-dark);
  border-radius:999px;
  padding:.55rem .95rem;
  box-shadow:var(--shadow-soft);
}
.eyebrow{color:var(--brand-dark)}
.hero h1,.page-hero h1{
  margin:.8rem 0 1rem;
  line-height:.98;
  letter-spacing:-.05em;
  font-size:clamp(2.7rem,5vw,5.4rem);
}
.hero p,.page-hero p{font-size:1.12rem;color:#e8eefb;max-width:58ch}
.actions,.cta-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1.5rem}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:.95rem 1.3rem;
  border-radius:14px;
  border:none;
  background:linear-gradient(180deg,var(--brand),#2358b7);
  color:#fff;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 12px 24px rgba(31,83,194,.24);
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.button:hover{transform:translateY(-1px);box-shadow:0 16px 28px rgba(31,83,194,.28)}
.button.secondary{
  background:#fff;
  color:var(--navy);
  box-shadow:0 14px 24px rgba(6,15,35,.10);
}
.card,.hero-card,.table-card,.pricing-highlight,.stacked-note,.contact-info-card,.form-card{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(219,228,240,.95);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.card,.hero-card,.pricing-highlight,.stacked-note,.contact-info-card,.form-card{padding:1.5rem}
.spotlight-card{position:relative}
.spotlight-card::after{
  content:"";
  position:absolute;
  inset:auto 20px -20px 20px;
  height:36px;
  background:radial-gradient(circle, rgba(45,108,223,.22), transparent 70%);
  filter:blur(16px);
}
.card-header h2,.pricing-highlight h2,.stacked-note h2,.contact-info-card h2{margin:.3rem 0 .6rem;font-size:1.9rem;line-height:1.1}
.feature-list{list-style:none;padding:0;margin:1rem 0;display:grid;gap:.8rem}
.feature-list li{display:flex;align-items:flex-start;gap:.75rem;color:var(--text);font-weight:600}
.feature-list.compact li{font-weight:500}
.check-dot{
  width:12px;height:12px;border-radius:999px;flex:0 0 12px;margin-top:.45rem;
  background:linear-gradient(180deg,var(--brand),#76a5ff);
  box-shadow:0 0 0 6px rgba(45,108,223,.10);
}
.mini-highlight{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  margin-top:1.2rem;padding-top:1rem;border-top:1px solid var(--line);
}
.mini-highlight span{color:var(--muted)}
.mini-highlight strong{font-size:1.4rem}

.trust-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:.9rem;
  margin-top:1.6rem;
}
.trust-pill{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  border-radius:18px;
  padding:1rem;
  backdrop-filter:blur(8px);
}
.trust-pill strong{display:block;font-size:1rem}
.trust-pill span{display:block;color:#d8e4ff;font-size:.95rem}

.section{padding:5rem 0}
.section-compact{padding:2.5rem 0}
.section-alt{background:linear-gradient(180deg, rgba(255,255,255,.7), rgba(240,246,255,.9))}
.section-heading{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:1.5rem;
  margin-bottom:2rem;
}
.section-title{
  margin:.35rem 0 .4rem;
  font-size:clamp(2rem,3vw,3rem);
  letter-spacing:-.04em;
  line-height:1.05;
}
.section-subtitle{color:var(--muted);max-width:60ch;margin:0}
.info-band,.cta-panel{
  display:grid;
  grid-template-columns:1.2fr .9fr;
  gap:2rem;
  align-items:center;
  padding:2rem 2.2rem;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,248,255,.96));
  border:1px solid rgba(219,228,240,.95);
  box-shadow:var(--shadow-soft);
}
.info-band h2,.cta-panel h2{margin:.4rem 0 0;font-size:clamp(2rem,3vw,2.8rem);line-height:1.08;letter-spacing:-.04em}
.info-band p,.cta-panel p{margin:0;color:var(--muted)}

.services-grid,.value-grid,.projects-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.25rem;
}
.service-card,.value-card,.project-card{height:100%}
.icon-chip{
  display:inline-flex;
  min-width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:linear-gradient(180deg,#eaf2ff,#d7e7ff);
  color:var(--brand-dark);
  font-weight:800;
  box-shadow:inset 0 0 0 1px rgba(45,108,223,.14);
}
.service-card h3,.value-card h3,.project-card h3,.gallery-card h3{margin:1rem 0 .55rem;font-size:1.35rem;line-height:1.15}
.service-card p,.value-card p,.project-copy p,.gallery-copy p{margin:0;color:var(--muted)}
.project-media{
  display:block;
  aspect-ratio:4/3;
  border-radius:18px;
  overflow:hidden;
  background:linear-gradient(180deg,#edf3fb,#dfe9f7);
}
.project-media img,.gallery-image{
  width:100%;height:100%;object-fit:cover;
}
.project-copy{padding-top:1rem}
.empty-state{text-align:center;padding:2rem}
.empty-state h3{margin:0 0 .6rem}

.page-hero{
  padding:4.8rem 0 3rem;
  color:#fff;
  background:
    radial-gradient(circle at 15% 15%, rgba(94,167,255,.2), transparent 28%),
    linear-gradient(135deg,#08152f 0%, #15305f 65%, #235fd0 100%);
}
.page-hero-short h1{font-size:clamp(2.3rem,4vw,4.2rem)}
.page-hero .eyebrow,.page-hero .stacked-note .eyebrow{color:#b9d4ff}
.page-hero .stacked-note p,.page-hero .stacked-note a,.page-hero .stacked-note h2,.page-hero .stacked-note h3{color:var(--text)}

.pricing-highlight{
  padding:2rem;
}
.pricing-highlight h2{font-size:clamp(2.2rem,4vw,3.5rem);margin:.25rem 0 .4rem}
.pricing-section{display:grid;gap:1.2rem}
.table-card{overflow:hidden}
.table-wrap{overflow:auto;border-radius:inherit}
table{width:100%;border-collapse:collapse;background:#fff}
th,td{padding:1rem 1.1rem;text-align:left;border-bottom:1px solid var(--line);vertical-align:top}
th{
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--brand-dark);
  background:#edf4ff;
}
tbody tr:hover{background:#f8fbff}

.gallery-grid,.polished-gallery{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.25rem;
}
.gallery-card{overflow:hidden;padding:0}
.gallery-card .gallery-link{display:block;aspect-ratio:4/3;background:linear-gradient(180deg,#edf3fb,#dfe9f7)}
.gallery-copy{padding:1.4rem}
.placeholder{
  display:grid;place-items:center;
  min-height:240px;
  text-align:center;
  color:#617086;
  background:linear-gradient(180deg,#edf3fb,#dfe9f7);
  border-radius:18px;
}
.placeholder.tall{min-height:320px}

.contact-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:1.4rem;
  align-items:start;
}
.contact-stack{display:grid;gap:1.2rem}
.styled-form{display:grid;gap:1rem}
.form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
label{display:block;margin-bottom:.35rem;font-weight:700;color:#23324e}
input,textarea,select{
  width:100%;
  padding:.9rem 1rem;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  font:inherit;
  transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease;
}
input:focus,textarea:focus,select:focus{
  outline:none;
  border-color:#7fa8ff;
  box-shadow:0 0 0 4px rgba(45,108,223,.14);
}
textarea{resize:vertical;min-height:160px}
.notice,.form-status{
  padding:1rem 1.1rem;border-radius:16px;margin-bottom:1rem;font-weight:600
}
.notice{background:#edf4ff;border:1px solid #cfe0ff;color:#153e98}
.form-status.success{background:#ecfdf3;border:1px solid #b4efc7;color:#0f7b3a}
.form-status.error{background:#fff1f1;border:1px solid #ffc8c8;color:#b3261e}
.small{color:var(--muted);font-size:.95rem}
.list-clean{list-style:none;padding:0;margin:0}
.grid-2,.grid-3{display:grid;gap:1.2rem}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.hp-field{position:absolute;left:-10000px;opacity:0;pointer-events:none}
.error-text{color:#b3261e}

.site-footer{
  margin-top:3rem;
  color:#dce7ff;
  background:
    radial-gradient(circle at left top, rgba(73,135,255,.16), transparent 28%),
    linear-gradient(135deg,#071327,#0f2558 70%,#0e1b39 100%);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:2rem;
  padding:3rem 0 2rem;
}
.footer-grid h2,.footer-grid h3{margin:0 0 .65rem;color:#fff}
.footer-grid p,.footer-list li,.footer-list a{color:#dce7ff}
.footer-kicker{
  margin:0 0 .55rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.8rem;
  font-weight:800;
  color:#9ec0ff;
}
.footer-list{list-style:none;padding:0;margin:0;display:grid;gap:.55rem}
.footer-bottom{
  display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;
  padding:1rem 0 2rem;border-top:1px solid rgba(255,255,255,.10);font-size:.95rem;color:#b9d4ff;
}

.login-shell{min-height:calc(100vh - 100px);display:grid;place-items:center;padding:3rem 1rem}
.login-card{width:min(100%,460px)}
.admin-layout{display:grid;gap:1.5rem}
.admin-section{padding:1.5rem}
.admin-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
.admin-grid.full{grid-template-columns:1fr}
textarea.code-input{font-family:ui-monospace,SFMono-Regular,Menlo,monospace}
.gallery-admin-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
.admin-gallery-card.dragging{opacity:.6}
.submissions-grid{display:grid;gap:1rem}
.submission-top{display:flex;justify-content:space-between;gap:1rem}
.submission-meta{color:var(--muted);font-size:.92rem}
.sort-order{color:var(--muted);font-size:.9rem}

@media (max-width: 980px){
  .hero-grid,.page-hero-grid,.info-band,.cta-panel,.contact-layout,.section-heading,.footer-grid{
    grid-template-columns:1fr;
  }
  .services-grid,.value-grid,.projects-grid,.gallery-grid,.polished-gallery,.grid-3{grid-template-columns:repeat(2,minmax(0,1fr))}
  .hero{padding-top:6rem}
}

@media (max-width: 720px){
  .nav{align-items:flex-start;flex-direction:column}
  .nav-links{width:100%}
  .nav-links a{padding:.75rem .95rem}
  .services-grid,.value-grid,.projects-grid,.gallery-grid,.polished-gallery,.grid-2,.gallery-admin-grid,.form-grid{grid-template-columns:1fr}
  .trust-row{grid-template-columns:1fr}
  .hero h1,.page-hero h1{font-size:clamp(2.2rem,11vw,3.4rem)}
  .section{padding:3.8rem 0}
  .info-band,.cta-panel,.card,.hero-card,.pricing-highlight,.stacked-note,.contact-info-card,.form-card{padding:1.25rem}
  .footer-bottom{padding-bottom:1.5rem}
}


.hero-card,
.pricing-highlight,
.stacked-note,
.contact-info-card,
.form-card{color:var(--text)}

.hero-card p,
.pricing-highlight p,
.stacked-note p,
.contact-info-card p,
.form-card p{color:var(--muted)}

.hero-copy > p,
.page-hero-grid > div > p{color:#e8eefb}

.trust-row-two{grid-template-columns:repeat(2,minmax(0,1fr));max-width:680px}
.trip-fee-amount,
.pricing-fee{color:var(--brand-dark)}

.pricing-highlight-copy{color:var(--muted)!important}

.factor-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.25rem;
}
.factor-card h3{margin:.8rem 0 .35rem;font-size:1.25rem}
.factor-card p{margin:0;color:var(--muted)}

@media (max-width: 780px){
  .factor-grid{grid-template-columns:1fr}
  .trust-row-two{grid-template-columns:1fr}
}


.hero-card .eyebrow,
.pricing-highlight .eyebrow,
.stacked-note .eyebrow,
.contact-info-card .eyebrow{
  color:var(--brand);
}

.hero-card h2,
.pricing-highlight h2,
.stacked-note h2,
.contact-info-card h2,
.pricing-highlight .pricing-fee,
.pricing-highlight .trip-fee-amount{
  color:var(--navy);
}

.hero-card p,
.pricing-highlight p,
.stacked-note p,
.contact-info-card p,
.hero-card span,
.pricing-highlight span{
  color:var(--muted);
}

.pricing-highlight .button{
  color:#fff;
}

.pricing-highlight .button.secondary{
  color:var(--navy);
}

.trip-fee-amount{
  color:var(--brand)!important;
  font-weight:800;
}
