/* =========================================================
   Modern Dark (Grey + Slate Blue-Grey) — refined
   Typography: Inter (body) + Space Grotesk (headings)
   Accent: Slate Blue-Grey (#4f6d7a)
   ========================================================= */

:root{
  --bg: #0c0c0f;
  --surface: rgba(255,255,255,.045);
  --surface-2: rgba(255,255,255,.06);
  --text: #f2f2f4;
  --muted: #b6b6c2;
  --muted-2: #8e8e9b;

  /* Accent (updated) */
  --accent: #4f6d7a;
  --accent-soft: rgba(79, 109, 122, .18);

  --radius: 18px;
  --max: 1100px;

  --shadow: 0 14px 32px rgba(0,0,0,.38);
  --shadow-soft: 0 10px 24px rgba(0,0,0,.26);

  --h1: clamp(30px, 4.2vw, 52px);
  --h2: clamp(22px, 2.2vw, 28px);
}

*{ box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1100px 650px at 12% 8%, rgba(79,109,122,.14) 0%, rgba(79,109,122,0) 55%),
    radial-gradient(900px 600px at 88% 20%, rgba(255,255,255,.06) 0%, rgba(255,255,255,0) 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

h1, h2, h3{
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  letter-spacing: -0.02em;
}
p{ letter-spacing: 0.005em; }

a{ color: inherit; text-decoration: none; }
img,video{
  width:100%;
  height:auto;
  display:block;
  border-radius: var(--radius);
}

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

/* ============ Header ============ */
.header{
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(12,12,15,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}

/* Brand with PNG logo */
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: .2px;
}
.brand strong{ font-weight: 900; }

.brand__logo{
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  background: transparent;
}

.nav{
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav a{
  color: var(--muted);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
}

.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,.04);
}

/* ============ Buttons ============ */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);

  background: linear-gradient(
    180deg,
    rgba(79,109,122,1),
    rgba(60,90,102,1)
  );

  color: #0c0c0f;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(79,109,122,.25);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 16px 32px rgba(79,109,122,.30);
}

.btn--ghost{
  background: rgba(255,255,255,.04);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: none;
}

.btn--ghost:hover{
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

.btn--small{
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 800;
}

/* ============ Hero ============ */
.hero{
  padding: 28px 0 18px;
}

.hero__grid{
  display: grid;
  gap: 18px;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
  margin: 0 0 12px;
  font-size: 13px;
}

.badge::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.hero h1{
  margin: 0 0 10px;
  font-size: var(--h1);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lead{
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 62ch;
  font-size: 16px;
}

.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

/* hero media */
.hero__media{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: calc(var(--radius) + 4px);
  padding: 10px;
  box-shadow: var(--shadow);
}

.hero__media img{
  border-radius: var(--radius);
}

.hero--compact .hero__meta{ display:none; }

/* ============ Sections ============ */
.section{
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.section__head h2{
  margin: 0 0 6px;
  font-size: var(--h2);
}

.section__head p{
  margin: 0 0 18px;
  color: var(--muted);
}

/* ============ Grid / Cards ============ */
.grid{
  display: grid;
  gap: 14px;
}

.grid--3{
  grid-template-columns: 1fr;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform .15s ease, border-color .15s ease;
}

.card:hover{
  transform: translateY(-3px);
  border-color: rgba(79,109,122,.45);
}

.card img{
  border-radius: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card__body{
  padding: 14px 14px 16px;
}

.card__body h3{
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card__body p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.tile{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.tile h3{
  margin: 0 0 8px;
  font-size: 16px;
}

.tile p{
  margin: 0;
  color: var(--muted);
}

.hint{
  margin: 14px 0 0;
  color: var(--muted-2);
  font-size: 14px;
}

/* ============ Split (About) ============ */
.split{
  display: grid;
  gap: 16px;
}

.split__media{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: calc(var(--radius) + 4px);
  padding: 10px;
  box-shadow: var(--shadow);
}

.list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

/* ============ Form ============ */
.form{
  display: grid;
  gap: 12px;
  max-width: 620px;
}

label{
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

input, textarea{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 12px 12px;
  color: var(--text);
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}

input:focus, textarea:focus{
  border-color: rgba(79,109,122,.65);
  background: rgba(79,109,122,.08);
}

.form__note{
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
}

.contact-meta{
  margin-top: 18px;
  color: var(--muted);
}
.contact-meta strong{ color: var(--text); }

/* Steps + CTA row */
.steps{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.steps li{ margin: 8px 0; }
.steps strong{ color: var(--text); }

.cta-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* ============ Footer ============ */
.footer{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  color: var(--muted-2);
  text-align: center;
}

/* ============ Responsive ============ */
@media (max-width: 520px){
  .nav a:not(.btn){
    display: none;
  }
}

@media (min-width: 900px){
  .hero__grid{
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
  }

  .grid{
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--3{
    grid-template-columns: repeat(3, 1fr);
  }

  .split{
    grid-template-columns: 1.1fr .9fr;
    align-items: start;
  }
}

/* =========================================================
   Consent Banner + Modal (matches your design)
   ========================================================= */

.consent-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: none;
}

.consent-banner.is-open{ display: block; }

.consent-banner__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(12,12,15,.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0,0,0,.45);
  display: grid;
  gap: 12px;
}

.consent-banner__text strong{
  display: inline-block;
  margin-bottom: 4px;
}

.consent-banner__text p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.consent-banner__text a{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-banner__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 900px){
  .consent-banner__inner{
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .consent-banner__actions{
    justify-content: flex-end;
  }
}

/* Modal */
.consent-modal{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

.consent-modal.is-open{ display: block; }

.consent-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.consent-modal__panel{
  position: relative;
  width: min(720px, calc(100% - 32px));
  margin: 8vh auto 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(12,12,15,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
  overflow: hidden;
}

.consent-modal__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.consent-modal__head h3{
  margin: 0;
  font-size: 18px;
}

.consent-modal__close{
  font-size: 22px;
  line-height: 1;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 10px;
}

.consent-modal__close:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.consent-modal__body{
  padding: 14px 16px 8px;
}

.consent-row{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.consent-row__text p{
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.consent-row__toggle input[type="checkbox"]{
  width: 46px;
  height: 26px;
  appearance: none;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}

.consent-row__toggle input[type="checkbox"]::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  transform: translateY(-50%);
  transition: transform .15s ease;
}

.consent-row__toggle input[type="checkbox"]:checked{
  background: var(--accent);
  border-color: rgba(255,255,255,.18);
}

.consent-row__toggle input[type="checkbox"]:checked::after{
  transform: translate(20px, -50%);
}

.consent-row__toggle input[type="checkbox"]:disabled{
  opacity: .55;
  cursor: not-allowed;
}

.consent-hint{
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 13px;
}

.consent-hint a{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-modal__actions{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 16px 16px;
}

.shoot-list{
  display: grid;
  gap: 12px;
}

.shoot-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.shoot-item__info{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shoot-item__info span{
  font-size: 13px;
  color: var(--muted);
}

.photo-list{
  display: grid;
  gap: 10px;
}

.photo-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.photo-row__name{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.photo-row__path{
  font-size: 12px;
  color: var(--muted-2);
  word-break: break-all;
}


/* Admin lists */
.shoot-list{
  display: grid;
  gap: 12px;
}

.shoot-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.shoot-item__info{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.shoot-item__meta{
  font-size: 13px;
  color: var(--muted);
}

.shoot-item__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Photo list */
.photo-list{
  display: grid;
  gap: 10px;
}

.photo-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.photo-row__name{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.photo-row__path{
  font-size: 12px;
  color: var(--muted-2);
  word-break: break-all;
}

/* Admin Galerie Preview */
.admin-gallery{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 720px){
  .admin-gallery{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 980px){
  .admin-gallery{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.admin-thumb{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.admin-thumb__img{
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,.02);
  display: grid;
  place-items: center;
}

.admin-thumb__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-thumb__placeholder{
  color: var(--muted);
  font-size: 12px;
  padding: 10px;
  text-align: center;
}

.admin-thumb__meta{
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-thumb__name{
  font-size: 12px;
  color: var(--muted);
  word-break: break-word;
  line-height: 1.25;
}

.admin-thumb__actions{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
