:root{
  --bg:#0b0d0f;
  --text:#e9eaec;
  --muted:#9aa0a6;
  --accent:#2f6b55;
  --accent-deep:#255643;
  --portfolio-accent:#2f6b55;
  --portrait-accent:#2f6b55;
  --container:1100px;
  --ease:cubic-bezier(.16,1,.24,1);
  --line:rgba(255,255,255,.08);
  --shadow-soft:0 24px 70px rgba(0,0,0,.45);
}

*{box-sizing:border-box}

html,body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
}

img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}

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

/* ================= NAV ================= */

nav{
  position:fixed;
  inset:0 0 auto 0;
  height:96px;
  backdrop-filter:blur(10px);
  background:rgba(11,13,15,.6);
  border-bottom:1px solid var(--line);
  z-index:10;
}

.nav-inner{
  height:96px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 18px;
}

.nav-links{
  display:flex;
  gap:28px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.nav-links a{
  position:relative;
  color:var(--muted);
  transition:color .35s var(--ease);
}

.nav-links a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:1px;
  background:var(--accent);
  transition:width .35s var(--ease);
}

.nav-links a:hover{
  color:var(--accent);
}

.nav-links a:hover::after{
  width:100%;
}

.logo{
  height:82px;
  width:auto;
  max-width:none;
  filter:brightness(0) invert(1);
  flex-shrink:0;
}
.brand-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:15px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  white-space:nowrap;
  color:var(--text);
}

.brand-link .accent{
  color:var(--accent);
}

.menu-toggle{
  display:none;
}
/* ================= SECTION SYSTEM ================= */

.section{padding:80px 0}

/* ================= HERO ================= */

.hero{
  padding:164px 0 80px;
}

.hero-grid-structured{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:80px;
  align-items:start;
}

.hero-headline{
  font-size:clamp(42px,5vw,70px);
  line-height:1.05;
  margin:20px 0 24px;
}

.hero-headline .accent{
  color:var(--accent);
}

.hero-sub{
  max-width:480px;
  color:var(--muted);
  margin-bottom:28px;
}

.hero-benefits{
  margin-top:18px;
  padding-left:18px;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}

.hero-card{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}

.hero-card img{
  width:100%;
  display:block;
}

.hero-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:28px;
  background:linear-gradient(to top, rgba(0,0,0,.8), transparent);
}

.hero-pills{
  display:flex;
  gap:10px;
  margin-bottom:12px;
}

.hero-pills span{
  background:rgba(255,255,255,.08);
  padding:6px 14px;
  border-radius:999px;
  font-size:12px;
}

.overlay-buttons{
  display:flex;
  gap:12px;
  margin-top:12px;
}

.btn-secondary.small{
  padding:8px 18px;
  font-size:12px;
}

/* ================= WHAT I CREATE ================= */

.section-header{
  margin-bottom:36px;
}

.section-header h2{
  font-size:32px;
  margin-bottom:6px;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

.card{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,0.02);
  transition:transform .3s var(--ease);
}

.card:hover{
  transform:translateY(-6px);
}

.card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.card h3{
  padding:18px 20px 8px;
  font-size:18px;
}

.card p{
  padding:0 20px 22px;
  font-size:14px;
  color:var(--muted);
  line-height:1.5;
}

/* ================= PROCESS ================= */

.process ul{
  margin:18px 0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}

/* ================= REVIEWS ================= */

.reviews-structured{
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px 32px;
  max-width:820px;
}

.review-item{
  margin-top:24px;
}

.stars{
  color:var(--accent);
  letter-spacing:4px;
  margin-bottom:12px;
}

.review-meta{
  margin-top:12px;
  color:var(--muted);
  font-size:13px;
}

.review-divider{
  height:1px;
  background:var(--line);
  margin:30px 0;
}

/* ================= FINAL CTA ================= */

.final-cta{
  padding:80px 0;
}

.cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}

/* ================= BUTTONS ================= */

.btn-primary{
  background:var(--accent);
  padding:16px 32px;
  border-radius:12px;
  font-weight:600;
  letter-spacing:.04em;
  transition:
    background .35s var(--ease),
    transform .35s var(--ease),
    box-shadow .35s var(--ease);
  display:inline-block;
}

.btn-primary:hover{
  background:var(--accent-deep);
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(47,107,85,.25);
}

.btn-secondary{
  border:1px solid var(--accent);
  padding:16px 32px;
  border-radius:12px;
  font-weight:600;
  letter-spacing:.04em;
  transition:
    background .35s var(--ease),
    color .35s var(--ease),
    transform .35s var(--ease);
  display:inline-block;
}

.btn-secondary:hover{
  background:var(--accent);
  color:#fff;
  transform:translateY(-2px);
}

/* ================= FOOTER ================= */

footer{
  padding:60px 0;
  text-align:center;
  color:var(--muted);
  border-top:1px solid var(--line);
}

/* ================= CINEMATIC REVEAL FIX ================= */

.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:
    opacity 1.2s cubic-bezier(.22,1,.36,1),
    transform 1.2s cubic-bezier(.22,1,.36,1);
}

.reveal.in-view{
  opacity:1;
  transform:translateY(0);
}

/* ================= PAGE TRANSITION ================= */

body{
  opacity:1;
  transition:opacity .7s var(--ease);
}

body.page-exit{
  opacity:0;
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){
  .hero-grid-structured,
  .card-grid{
    grid-template-columns:1fr;
  }

  .cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  nav{
    height:88px;
  }

  .nav-inner{
    height:88px;
    padding:0 12px;
  }

  .logo{
    height:72px;
  }

  .hero{
    padding:150px 0 80px;
  }
}

/* ===== MOBILE NAV DROPDOWN (FIXED) ===== */

@media(max-width:768px){

  .menu-toggle{
    display:block;
    font-size:22px;
    cursor:pointer;
  }

  .nav-links{
    position:fixed;
    top:88px;
    left:0;
    right:0;
    background:rgba(11,13,15,.98);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:30px 0;
    transform:translateY(-140%);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:
      transform .4s var(--ease),
      opacity .25s var(--ease),
      visibility .25s var(--ease);
    border-bottom:1px solid var(--line);
    z-index:999;
  }

  .nav-links.open{
    transform:translateY(0);
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

}

/* ===== Portfolio Screenshot Layout ===== */

.portfolio-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 160px 60px 120px;
}

.portfolio-header {
  max-width: 600px;
  margin-bottom: 120px;
}

.portfolio-header .eyebrow {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.portfolio-header h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.portfolio-header p {
  color: var(--muted);
  line-height: 1.7;
}

.portfolio-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 120px;
  align-items: center;
  margin-bottom: 160px;
}

.portfolio-row.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.portfolio-text .number {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.portfolio-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.portfolio-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 450px;
}

.portfolio-text .stat {
  font-weight: 600;
  margin-bottom: 20px;
}

.portfolio-text a {
  color: var(--accent);
  text-decoration: none;
}

.portfolio-images {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.portfolio-images img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 14px;
}

.portfolio-cta {
  text-align: center;
  padding-top: 60px;
}

@media (max-width: 1000px) {
  .portfolio-row,
  .portfolio-row.reverse {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* ===== MOBILE HERO + SPACING CLEANUP ===== */

@media(max-width:768px){

  .section{
    padding:60px 0;
  }

  .hero{
    padding:130px 0 60px;
  }

  .hero-headline{
    font-size:34px;
    line-height:1.15;
  }

  .hero-sub{
    font-size:14px;
  }

  .hero-buttons{
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .hero-benefits{
    font-size:13px;
  }

}

/* ===== MOBILE CARD + CTA CLEANUP ===== */

@media(max-width:768px){

  .container{
    width:min(var(--container),calc(100% - 32px));
  }

  .card-grid{
    gap:20px;
  }

  .card img{
    height:190px;
  }

  .section-header{
    margin-bottom:24px;
  }

  .section-header h2{
    font-size:28px;
  }

  .reviews-structured{
    padding:22px 20px;
  }

  .review-divider{
    margin:22px 0;
  }

  .cta-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }

  .cta-buttons{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:12px;
  }

}

/* ===== CONTACT PAGE MOBILE CLEANUP ===== */

@media(max-width:768px){

  form{
    width:100%;
  }

  form .btn-primary,
  form .btn-secondary,
  form button,
  form input[type="submit"]{
    width:100%;
    text-align:center;
  }

  input,
  textarea,
  select{
    width:100%;
    font-size:16px;
  }

  textarea{
    min-height:140px;
  }

  label{
    display:block;
    margin-bottom:8px;
  }

  .contact-grid,
  .contact-layout,
  .contact-columns,
  .contact-row,
  .form-grid,
  .form-row{
    display:grid;
    grid-template-columns:1fr !important;
    gap:16px;
  }

  .contact-card,
  .contact-panel,
  .contact-form,
  .contact-info{
    padding:20px;
    border-radius:18px;
  }

  .contact-hero,
  .contact-section{
    padding-top:120px;
  }

  .contact-hero h1,
  .contact-section h1{
    font-size:34px;
    line-height:1.1;
  }

  .contact-hero p,
  .contact-section p{
    font-size:14px;
    line-height:1.7;
  }

}

/* ===== CONTACT PAGE SPECIFIC MOBILE FIX ===== */

@media(max-width:768px){

  .contact-main{
    padding-top:110px !important;
  }

  .contact-layout{
    grid-template-columns:1fr !important;
    gap:36px !important;
  }

  .contact-layout h3{
    margin-bottom:22px !important;
  }

  .contact-layout p{
    max-width:100% !important;
  }

  .contact-main .section:first-child{
    padding-bottom:24px;
  }

  .contact-main h1{
    font-size:34px !important;
    line-height:1.08 !important;
  }

  .contact-main form{
    gap:18px !important;
  }

  .contact-main input,
  .contact-main textarea,
  .contact-main select{
    padding:14px 14px !important;
    border-radius:10px !important;
  }

  .contact-main textarea{
    min-height:140px;
  }

}

/* ===== ABOUT PAGE MOBILE CLEANUP ===== */

@media(max-width:768px){

  .about-photo{
    height:360px !important;
  }

  .hero-grid-structured{
    gap:28px;
  }

  .hero-right,
  .hero-left{
    width:100%;
  }

  .hero-card{
    border-radius:18px;
  }

  .hero-card img{
    width:100%;
  }

  .hero h2{
    font-size:30px !important;
    line-height:1.1;
    margin-bottom:16px !important;
  }

  .hero-sub{
    max-width:100%;
  }

}

@media (max-width: 768px) {
  .client-login-header {
    display: none;
  }
}

/* ===== ABOUT SECTION REORDER (MOBILE ONLY) ===== */

@media(max-width:768px){

  /* Target ONLY section 2 */
  .section:nth-of-type(2) .hero-grid-structured{
    display:flex;
    flex-direction:column;
  }

  /* Order the elements */
  .section:nth-of-type(2) .hero-right{
    order:1; /* first image */
  }

  .section:nth-of-type(2) .hero-left{
    order:2; /* text */
  }

}


/* =========================================================
   WEDDING FILMS PAGE — SCOPED RESTORE
   Uses Bassler Creative black base, green accents only, and existing reveal motion
   ========================================================= */

body.wedding-films-page{
  background:var(--bg);
  overflow-x:hidden;
}

.wedding-films-page .wedding-main{
  position:relative;
  padding-top:120px;
}

.wedding-films-page .wedding-intro{
  width:min(1240px, calc(100% - 56px));
  margin:0 auto;
  padding:0 0 34px;
}

.wedding-films-page .wedding-kicker{
  display:inline-block;
  margin-bottom:18px;
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:11px;
}

.wedding-films-page .wedding-intro-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) minmax(280px, .8fr);
  gap:34px;
  align-items:end;
  border-bottom:1px solid rgba(255,255,255,.06);
  padding-bottom:34px;
}

.wedding-films-page .wedding-title{
  margin:0;
  font-family:inherit;
  font-size:clamp(46px, 7vw, 84px);
  line-height:1.02;
  letter-spacing:-.05em;
  font-weight:700;
  max-width:780px;
}

.wedding-films-page .wedding-title .accent{
  color:var(--accent);
}

.wedding-films-page .wedding-copy{
  margin:0;
  color:rgba(233,234,236,.74);
  line-height:1.9;
  font-size:15px;
  max-width:420px;
  justify-self:end;
}

.wedding-films-page .wedding-films{
  width:min(1380px, calc(100% - 40px));
  margin:0 auto;
  padding:32px 0 120px;
  display:grid;
  gap:34px;
}

.wedding-films-page .wedding-film-card{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  border-radius:28px;
  background:#0b0d0f;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
  isolation:isolate;
}

.wedding-films-page .wedding-film-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    linear-gradient(90deg, rgba(5,7,8,.64), rgba(5,7,8,.15));
}

.wedding-films-page .wedding-film-card::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:2px;
  background:linear-gradient(90deg, transparent, var(--accent), transparent);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform 1.2s cubic-bezier(.22,1,.36,1);
  z-index:3;
}

.wedding-films-page .wedding-film-card.in-view::after{
  transform:scaleX(1);
}

.wedding-films-page .wedding-film-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0, 1.18fr) minmax(280px, .82fr);
  gap:34px;
  align-items:center;
  padding:34px;
}

.wedding-films-page .wedding-film-inner.reverse{
  grid-template-columns:minmax(280px, .82fr) minmax(0, 1.18fr);
}

.wedding-films-page .wedding-video-wrap{
  opacity:0;
  transform:translateY(28px);
  transition:
    opacity 1s cubic-bezier(.22,1,.36,1),
    transform 1s cubic-bezier(.22,1,.36,1);
}

.wedding-films-page .wedding-film-card.in-view .wedding-video-wrap{
  opacity:1;
  transform:translateY(0);
}

.wedding-films-page .wedding-video-frame{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:22px;
  background:#050607;
  border:1px solid rgba(255,255,255,.09);
  box-shadow:0 24px 70px rgba(0,0,0,.42);
}

.wedding-films-page .wedding-video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.wedding-films-page .wedding-film-copy{
  max-width:520px;
  opacity:0;
  transform:translateY(28px);
  transition:
    opacity 1s cubic-bezier(.22,1,.36,1) .10s,
    transform 1s cubic-bezier(.22,1,.36,1) .10s;
}

.wedding-films-page .wedding-film-card.in-view .wedding-film-copy{
  opacity:1;
  transform:translateY(0);
}

.wedding-films-page .wedding-meta{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.wedding-films-page .wedding-number,
.wedding-films-page .wedding-label{
  display:inline-block;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.22em;
}

.wedding-films-page .wedding-number{
  color:var(--accent);
}

.wedding-films-page .wedding-label{
  color:rgba(255,255,255,.68);
}

.wedding-films-page .wedding-heading{
  margin:0 0 12px;
  font-family:inherit;
  font-size:clamp(36px, 5vw, 64px);
  line-height:1.02;
  letter-spacing:-.045em;
  font-weight:700;
  max-width:620px;
}

.wedding-films-page .wedding-subtitle{
  margin:0 0 18px;
  color:#fff;
  font-size:17px;
  line-height:1.6;
  max-width:510px;
}

.wedding-films-page .wedding-description{
  margin:0;
  color:rgba(233,234,236,.74);
  font-size:15px;
  line-height:1.9;
  max-width:540px;
}

.wedding-films-page .wedding-bottom{
  width:min(1240px, calc(100% - 56px));
  margin:0 auto;
  padding:0 0 110px;
}

.wedding-films-page .wedding-bottom-card{
  border:1px solid rgba(255,255,255,.10);
  border-radius:26px;
  padding:32px 34px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}

.wedding-films-page .wedding-bottom-card h3{
  margin:0 0 10px;
  font-family:inherit;
  font-size:clamp(28px, 4vw, 46px);
  line-height:1.04;
  letter-spacing:-.04em;
  font-weight:700;
  max-width:580px;
}

.wedding-films-page .wedding-bottom-card p{
  margin:0;
  color:rgba(233,234,236,.74);
  line-height:1.85;
  font-size:14px;
  max-width:520px;
}

@media(max-width:1100px){
  .wedding-films-page .wedding-intro-grid,
  .wedding-films-page .wedding-film-inner,
  .wedding-films-page .wedding-film-inner.reverse,
  .wedding-films-page .wedding-bottom-card{
    grid-template-columns:1fr;
    display:grid;
  }

  .wedding-films-page .wedding-copy{
    justify-self:start;
    max-width:580px;
  }

  .wedding-films-page .wedding-film-inner{
    padding:34px;
  }

  .wedding-films-page .wedding-film-inner.reverse .wedding-film-copy{
    order:2;
  }

  .wedding-films-page .wedding-film-inner.reverse .wedding-video-wrap{
    order:1;
  }
}

@media(max-width:760px){
  .wedding-films-page .wedding-main{
    padding-top:104px;
  }

  .wedding-films-page .wedding-intro,
  .wedding-films-page .wedding-bottom{
    width:min(1240px, calc(100% - 24px));
  }

  .wedding-films-page .wedding-films{
    width:min(1380px, calc(100% - 12px));
    gap:18px;
    padding:20px 0 72px;
  }

  .wedding-films-page .wedding-intro-grid{
    gap:16px;
    padding-bottom:20px;
  }

  .wedding-films-page .wedding-title{
    font-size:clamp(34px, 10vw, 54px);
    line-height:1.04;
  }

  .wedding-films-page .wedding-copy{
    font-size:14px;
    line-height:1.75;
  }

  .wedding-films-page .wedding-film-card{
    border-radius:20px;
  }

  .wedding-films-page .wedding-film-inner{
    padding:18px;
    gap:18px;
  }

  .wedding-films-page .wedding-video-frame{
    border-radius:16px;
  }

  .wedding-films-page .wedding-heading{
    font-size:clamp(30px, 9vw, 48px);
  }

  .wedding-films-page .wedding-subtitle{
    font-size:14px;
    line-height:1.5;
    margin:0 0 14px;
  }

  .wedding-films-page .wedding-description{
    font-size:13px;
    line-height:1.75;
  }

  .wedding-films-page .wedding-bottom-card{
    border-radius:20px;
    padding:22px 18px;
    gap:18px;
  }

  .wedding-films-page .wedding-bottom-card h3{
    font-size:clamp(24px, 8vw, 36px);
  }

  .wedding-films-page .wedding-bottom-card p{
    font-size:13px;
    line-height:1.7;
  }

  .wedding-films-page .wedding-bottom-card .btn-primary{
    width:100%;
    text-align:center;
  }
}
