
:root{
  --bg:#0a0b0c;
  --surface:#111315;
  --text:#f4f1ea;
  --muted:#9b9b96;
  --accent:#e6bb22;
  --line:rgba(255,255,255,.08);
}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  letter-spacing:-.01em;
}

a{text-decoration:none}

.navbar{
  background:rgba(10,11,12,.78);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.05);
}

.brand{
  font-weight:700;
  letter-spacing:.20em;
  color:#fff;
  font-size:.95rem;
}

.brand span{color:var(--accent)}

.nav-link{
  color:#b8b8b4!important;
  font-size:.86rem;
  margin-left:1.25rem;
}

.nav-link:hover{color:#fff!important}

.hero{
  min-height:100vh;
  display:flex;
  align-items:end;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(0,0,0,.74) 0%,rgba(0,0,0,.42) 44%,rgba(0,0,0,.10) 100%),
    url('img/hero.webp') center 30%/cover no-repeat;
}

.hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:34%;
  background:linear-gradient(transparent,var(--bg));
}

.hero-content{
  position:relative;
  z-index:2;
  padding-bottom:11vh;
  max-width:850px;
}

.eyebrow,
.category{
  text-transform:uppercase;
  letter-spacing:.30em;
  color:var(--accent);
  font-size:.70rem;
  font-weight:700;
}

.hero h1,
.section-title{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-weight:600;
  letter-spacing:-.035em;
}

.hero h1{
  font-size:clamp(4.2rem,9vw,8.7rem);
  line-height:.82;
  margin-top:.5rem;
}

.hero h1 em{
  font-weight:500;
  color:#ddd7cc;
}

.hero p{
  font-size:clamp(1rem,1.5vw,1.15rem);
  max-width:590px;
  color:#d3d0c9;
  line-height:1.75;
}

.btn-accent{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.34);
  border-radius:0;
  font-weight:500;
  padding:.9rem 1.5rem;
}

.btn-accent:hover{
  background:#fff;
  color:#111;
  border-color:#fff;
}

.section{
  padding:130px 0;
}

.section-title{
  font-size:clamp(3rem,5vw,5rem);
  line-height:.95;
}

.section-copy{
  color:var(--muted);
  font-size:1rem;
  line-height:1.9;
}

/* Editorial portfolio */
.editorial-grid{
  display:grid;
  grid-template-columns:1.05fr 1.35fr;
  gap:28px;
}

.editorial-stack{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.editorial-inner{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
}

.editorial-item{
  min-width:0;
}

.editorial-item-tall{
  grid-row:span 2;
}

.editorial-item-wide{
  grid-column:1 / -1;
}

.editorial-item-bottom{
  margin-top:28px;
}

.portfolio-card{
  position:relative;
  display:block;
  overflow:hidden;
  background:#111;
  border:none;
}

.portfolio-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s ease,filter .6s ease;
}

.h-portrait{height:720px}
.h-landscape{height:390px}
.h-square{height:360px}

.portfolio-card::after{
  content:"View";
  position:absolute;
  left:22px;
  bottom:18px;
  color:#fff;
  opacity:0;
  transform:translateY(8px);
  transition:.3s ease;
  font-size:.72rem;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.portfolio-card:hover img{
  transform:scale(1.025);
  filter:brightness(.78);
}

.portfolio-card:hover::after{
  opacity:1;
  transform:none;
}

/* About */
.about-editorial{
  padding:0;
}

.about-photo{
  width:100%;
  max-width:390px;
  aspect-ratio:4/5;
  object-fit:cover;
  object-position:center 30%;
  border-radius:0;
}

.logo-mark{
  width:62px;
  height:62px;
  object-fit:contain;
}

.about-editorial .section-copy{
  max-width:680px;
}

/* Instagram */
.social-section{
  background:#0c0e0f;
}

.instagram-handle{
  color:#d7d7d2;
  font-weight:500;
  font-size:1rem;
}

.instagram-handle:hover{color:var(--accent)}

.instagram-grid-2{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:28px !important;
  width:100% !important;
}

.instagram-grid-2 > *{
  min-width:0 !important;
  width:100% !important;
}

.instagram-clean-card{
  position:relative;
  display:block;
  aspect-ratio:4/3;
  overflow:hidden;
  background:#111;
  border:none;
  border-radius:0;
}

.instagram-clean-card img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center !important;
  transition:transform .6s ease,filter .6s ease;
}

.instagram-clean-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  padding:24px;
  background:linear-gradient(transparent 50%,rgba(0,0,0,.72));
  opacity:0;
  transition:opacity .3s ease;
}

.instagram-clean-overlay span{
  color:#fff;
  font-weight:500;
  font-size:.78rem;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.instagram-clean-card:hover img{
  transform:scale(1.025);
  filter:brightness(.78);
}

.instagram-clean-card:hover .instagram-clean-overlay{opacity:1}

.instagram-profile-card-clean{
  aspect-ratio:4/3;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:transparent;
  border:1px solid var(--line);
  border-radius:0;
  color:#fff;
}

.instagram-profile-inner{
  padding:42px;
  text-align:center;
}

.instagram-profile-inner h3{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:2.1rem;
  font-weight:600;
}

.instagram-profile-inner p{
  color:var(--muted);
  max-width:300px;
  margin:12px auto 20px;
}

.instagram-profile-inner span{
  color:var(--accent);
  font-weight:500;
  font-size:.82rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.instagram-icon{
  width:60px;
  height:60px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid rgba(230,187,34,.7);
  color:var(--accent);
  font-size:1.6rem;
  margin:0 auto 22px;
}

/* Contact */
.contact{
  background:#ece9e2;
  color:#111;
}

.contact .section-title{
  color:#111;
}

.contact .section-copy{
  color:#555;
}

.contact .btn{
  border-radius:0;
  padding:.9rem 1.4rem;
}

/* Footer */
footer{
  border-top:1px solid var(--line);
  color:#6f716f;
  padding:30px 0;
  font-size:.82rem;
}

@media(max-width:991px){
  .editorial-grid{
    grid-template-columns:1fr;
  }

  .h-portrait{height:620px}
}

@media(max-width:767.98px){
  .section{
    padding:84px 0;
  }

  .hero{
    min-height:90vh;
    background-position:58% center;
  }

  .hero-content{
    padding-bottom:9vh;
  }

  .hero h1{
    font-size:clamp(3.7rem,16vw,6rem);
  }

  .editorial-inner{
    grid-template-columns:1fr;
  }

  .editorial-item-wide{
    grid-column:auto;
  }

  .h-portrait,
  .h-landscape,
  .h-square{
    height:430px;
  }

  .instagram-grid-2{
    grid-template-columns:1fr !important;
    gap:18px !important;
  }

  .instagram-clean-card,
  .instagram-profile-card-clean{
    aspect-ratio:4/3;
  }

  .nav-link{
    margin-left:0;
  }
}


/* Homepage portfolio preview */
.portfolio-preview-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  grid-template-rows:340px 340px;
  gap:24px;
}
.preview-photo{
  position:relative;
  display:block;
  overflow:hidden;
  background:#111;
}
.preview-photo-tall{
  grid-row:1 / span 2;
}
.preview-photo-wide{
  grid-column:2;
}
.preview-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s ease, filter .6s ease;
}
.preview-photo::after{
  content:"View portfolio";
  position:absolute;
  left:22px;
  bottom:18px;
  color:#fff;
  opacity:0;
  transform:translateY(8px);
  transition:.3s ease;
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.preview-photo:hover img{
  transform:scale(1.025);
  filter:brightness(.78);
}
.preview-photo:hover::after{
  opacity:1;
  transform:none;
}
.portfolio-link{
  display:inline-block;
  color:var(--text);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.16em;
  border-bottom:1px solid rgba(255,255,255,.25);
  padding-bottom:8px;
}
.portfolio-link:hover{
  color:var(--accent);
  border-color:var(--accent);
}
@media(max-width:767.98px){
  .portfolio-preview-grid{
    grid-template-columns:1fr;
    grid-template-rows:none;
  }
  .preview-photo,
  .preview-photo-tall,
  .preview-photo-wide{
    grid-column:auto;
    grid-row:auto;
    height:390px;
  }
}


/* Portfolio preview v2 */
.portfolio-heading-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:32px;
}

.portfolio-title-link{
  color:var(--text);
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.16em;
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,.22);
  white-space:nowrap;
}
.portfolio-title-link span{
  display:inline-block;
  margin-left:8px;
  transition:transform .25s ease;
}
.portfolio-title-link:hover{
  color:var(--accent);
  border-color:var(--accent);
}
.portfolio-title-link:hover span{
  transform:translateX(5px);
}

.portfolio-teaser{
  position:relative;
  display:block;
  overflow:hidden;
  min-height:430px;
  background:#111;
}

.portfolio-teaser-track{
  display:grid;
  grid-template-columns:1.15fr .8fr 1fr .75fr;
  gap:8px;
  height:430px;
  padding:8px;
  background:#0f1112;
}

.teaser-photo{
  margin:0;
  overflow:hidden;
  position:relative;
  background:#151515;
}
.teaser-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .7s ease, filter .7s ease;
}

.teaser-photo-1{transform:translateY(0)}
.teaser-photo-2{transform:translateY(24px)}
.teaser-photo-3{transform:translateY(-12px)}
.teaser-photo-4{transform:translateY(18px)}

.portfolio-teaser::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.12),rgba(0,0,0,.04) 55%,rgba(0,0,0,.34));
  pointer-events:none;
}

.portfolio-teaser-overlay{
  position:absolute;
  z-index:2;
  inset:auto 28px 28px 28px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  color:#fff;
}

.portfolio-teaser-kicker{
  display:block;
  font-size:.68rem;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--accent);
  margin-bottom:5px;
}

.portfolio-teaser-overlay strong{
  display:block;
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(1.8rem,3vw,2.8rem);
  font-weight:600;
  line-height:1;
}

.portfolio-teaser-arrow{
  font-size:2rem;
  transition:transform .3s ease;
}

.portfolio-teaser:hover .teaser-photo img{
  transform:scale(1.035);
  filter:brightness(.82);
}

.portfolio-teaser:hover .portfolio-teaser-arrow{
  transform:translate(5px,-5px);
}

.portfolio-teaser-copy{
  color:var(--muted);
  font-size:.92rem;
  max-width:640px;
}

@media(max-width:767.98px){
  .portfolio-heading-row{
    align-items:flex-start;
    flex-direction:column;
    gap:20px;
  }

  .portfolio-title-link{
    padding-bottom:7px;
  }

  .portfolio-teaser{
    min-height:430px;
  }

  .portfolio-teaser-track{
    grid-template-columns:1fr 1fr;
    grid-template-rows:1fr 1fr;
    height:430px;
  }

  .teaser-photo-1,
  .teaser-photo-2,
  .teaser-photo-3,
  .teaser-photo-4{
    transform:none;
  }

  .portfolio-teaser-overlay{
    inset:auto 20px 20px 20px;
  }
}


/* Portfolio teaser v3 — compact thumbnail strip */
.portfolio-teaser{
  min-height:0 !important;
  height:auto !important;
  max-width:980px;
  margin:0 auto;
  background:transparent;
  overflow:visible;
}

.portfolio-teaser-track{
  height:230px !important;
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:14px !important;
  padding:0 !important;
  background:transparent !important;
}

.teaser-photo,
.teaser-photo-1,
.teaser-photo-2,
.teaser-photo-3,
.teaser-photo-4{
  height:230px !important;
  transform:none !important;
  margin:0 !important;
  overflow:hidden;
}

.teaser-photo img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
}

.portfolio-teaser-overlay{
  inset:0 !important;
  padding:22px !important;
  align-items:flex-end !important;
  background:rgba(0,0,0,.08);
  opacity:0;
  transition:opacity .3s ease;
}

.portfolio-teaser:hover .portfolio-teaser-overlay{
  opacity:1;
  background:rgba(0,0,0,.34);
}

.portfolio-teaser-overlay strong{
  font-size:1.8rem !important;
}

.portfolio-teaser-copy{
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
}

@media(max-width:767.98px){
  .portfolio-teaser{
    max-width:100%;
  }

  .portfolio-teaser-track{
    height:auto !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:8px !important;
  }

  .teaser-photo,
  .teaser-photo-1,
  .teaser-photo-2,
  .teaser-photo-3,
  .teaser-photo-4{
    height:160px !important;
  }

  .portfolio-teaser-overlay{
    display:none !important;
  }
}
