/* Photographer editorial style (inspired, not copied) */

:root{
  --bg: #fbfaf8;
  --ink: #111111;
  --muted: rgba(17,17,17,.62);
  --line: rgba(17,17,17,.12);
  --card: #ffffff;
  --shadow: 0 18px 55px rgba(0,0,0,.08);
  --r-lg: 28px;
  --r-md: 18px;

  --h1: clamp(2.1rem, 3.6vw, 3.2rem);
  --h2: clamp(1.6rem, 2.2vw, 2.2rem);
  --p: clamp(1.02rem, 1.15vw, 1.12rem);
}

.bg-app{
  background:
    radial-gradient(900px 520px at 12% 6%, rgba(0,0,0,.035), transparent 60%),
    radial-gradient(900px 520px at 85% 10%, rgba(0,0,0,.02), transparent 60%),
    var(--bg);
  color: var(--ink);
}

body{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  letter-spacing: .01em;
}

.brand{
  font-weight: 700;
  letter-spacing: .02em;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
}

.nav-min{
  background: rgba(251,250,248,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.navbar .nav-link{
  color: rgba(17,17,17,.72);
  font-weight: 600;
  letter-spacing: .02em;
}
.navbar .nav-link:hover{ color: rgba(17,17,17,.95); }
.btn-cta{ box-shadow: 0 10px 25px rgba(0,0,0,.08); }

.hero{
  padding: clamp(2.2rem, 6vw, 4.2rem) 0 1rem;
}

.kicker{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: rgba(17,17,17,.58);
}

.display-title{
  font-size: var(--h1);
  line-height: 1.05;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.lead-soft{
  font-size: var(--p);
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: rgba(17,17,17,.75);
  background: rgba(255,255,255,.55);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-weight: 600;
  font-size: .92rem;
}

.hero-media{
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #eee;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  min-height: 520px;
}
.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  filter: contrast(1.03) saturate(1.02);
}
.hero-badge{
  position:absolute;
  left: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

@media (max-width: 991px){
  .hero-media{ min-height: 380px; }
}

.info-strip{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 14px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
}
.info-item{
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.7);
}
.info-title{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-weight: 700;
  font-size: .88rem;
}
.info-text{
  color: rgba(17,17,17,.62);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-size: .95rem;
}

@media (max-width: 991px){
  .info-strip{ grid-template-columns: 1fr 1fr; }
}

.section{
  padding: clamp(2.6rem, 6vw, 4.2rem) 0;
}

.section-alt{
  background: rgba(0,0,0,.02);
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.section-head{
  margin-bottom: 18px;
  display:flex;
  flex-direction: column;
  gap: 6px;
}

.h2-title{
  font-size: var(--h2);
  font-weight: 700;
  margin: 0;
}

.p-soft{
  margin:0;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

/* Portfolio shots */
.shot{
  display:block;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: #f0f0f0;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.shot:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(0,0,0,.10);
}
.shot img{
  width:100%;
  height: 320px;
  object-fit: cover;
  display:block;
}
@media (min-width: 992px){
  .shot img{ height: 420px; }
}

/* About */
.about-media{
  border-radius: var(--r-lg);
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow);
  min-height: 520px;
}
.about-media img{ width:100%; height:100%; object-fit: cover; }
@media (max-width: 991px){
  .about-media{ min-height: 360px; }
}

.list-soft{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.list-item{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.75);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: rgba(17,17,17,.72);
}

/* Cards */
.card-soft{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r-lg);
  box-shadow: 0 14px 44px rgba(0,0,0,.08);
  padding: 18px;
  display:flex;
  flex-direction:column;
  min-height: 100%;
}
.card-soft.featured{
  border-color: rgba(0,0,0,.14);
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
}
.ul-soft{
  margin: 0;
  padding-left: 18px;
  color: rgba(17,17,17,.70);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
.price{
  color: rgba(17,17,17,.75);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.cta-band{
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.80);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 14px 44px rgba(0,0,0,.06);
}

@media (max-width: 575px){
  .cta-band{ flex-direction: column; align-items: flex-start; }
}

/* Quotes */
.quote{
  padding: 18px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.85);
  box-shadow: 0 14px 44px rgba(0,0,0,.06);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
.stars{ letter-spacing: .18em; }

/* Contact */
.contact-cards{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.contact-card{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.82);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: rgba(17,17,17,.72);
}

.form-wrap{
  padding: 18px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.85);
  box-shadow: 0 14px 44px rgba(0,0,0,.08);
}
.input-soft{
  border-radius: 16px !important;
  border: 1px solid rgba(0,0,0,.12) !important;
  background: rgba(255,255,255,.95) !important;
}
.input-soft:focus{
  box-shadow: none !important;
  border-color: rgba(0,0,0,.28) !important;
}

.border-top{ border-top: 1px solid rgba(0,0,0,.08) !important; }
.link-muted{ color: rgba(17,17,17,.62); text-decoration:none; }
.link-muted:hover{ color: rgba(17,17,17,.90); text-decoration:underline; }

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  display:none;
  place-items:center;
  padding: 20px;
  z-index: 2000;
}
.lightbox.open{ display:grid; }

.lightbox-img{
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}
.lightbox-close{
  position:absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 26px;
  line-height: 1;
}
