@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,500..900,70,1&family=Space+Grotesk:wght@400;500;600;700&family=Unbounded:wght@500;700;800&display=swap');
:root {
  --ink: #11130d;
  --forest: #142214;
  --forest2: #24351d;
  --moss: #687449;
  --cream: #f4ead8;
  --paper: #fbf5ea;
  --gold: #d7b46d;
  --rust: #965f32;
  --muted: #776d5d;
  --line: rgba(17, 19, 13, .14);
  --shadow: 0 24px 80px rgba(13, 18, 12, .18);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 0%, rgba(215, 180, 109, .25), transparent 32rem),
    linear-gradient(180deg, #f8f0e2 0%, #efe3ce 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(20,34,20,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(20,34,20,.03) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: -1;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
p { line-height: 1.72; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 234, 216, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}
.brand-mark {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(20,34,20,.16);
  border: 1px solid rgba(17,19,13,.10);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.brand-copy strong {
  display: block;
  font-family: Georgia, serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 18px;
}
.brand-copy span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  text-decoration: none;
  color: rgba(17,19,13,.75);
  font-weight: 850;
  font-size: 14px;
  padding: 11px 13px;
  border-radius: 999px;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--ink);
  background: rgba(20,34,20,.08);
}
.site-nav .nav-cta, .btn {
  color: var(--cream);
  background: var(--forest);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 24px rgba(20,34,20,.2);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.42);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(7,12,6,.9) 0%, rgba(7,12,6,.74) 45%, rgba(7,12,6,.35) 100%),
    url("../images/placeholders/hero-vintage-camera.svg") center/cover no-repeat;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, var(--paper));
}
.hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 130px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  color: var(--gold);
  border: 1px solid rgba(215,180,109,.38);
  background: rgba(244,234,216,.08);
  padding: 10px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 950;
}
.hero h1, .page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 9vw, 118px);
  line-height: .92;
  letter-spacing: -.055em;
  max-width: 940px;
  margin: 24px 0 22px;
}
.hero p, .page-hero p {
  max-width: 710px;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(244,234,216,.86);
}
.hero-actions, .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 950;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); background: #0d170d; }
.btn.secondary {
  background: rgba(244,234,216,.12);
  color: var(--cream);
  border-color: rgba(244,234,216,.22);
  box-shadow: none;
}
.btn.light { background: var(--cream); color: var(--ink); }

.section { padding: 86px 0; }
.section.tight { padding: 58px 0; }
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head h2 {
  font-family: Georgia, serif;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.045em;
  margin: 0;
}
.section-head p {
  color: var(--muted);
  max-width: 570px;
  margin: 0;
}
.intro-grid, .about-layout, .contact-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}
.panel {
  background: rgba(251,245,234,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 18px 60px rgba(13,18,12,.09);
}
.dark-panel {
  color: var(--cream);
  background:
    radial-gradient(circle at top right, rgba(215,180,109,.2), transparent 20rem),
    linear-gradient(135deg, var(--forest), #0d140b);
}
.dark-panel p { color: rgba(244,234,216,.76); }
.bio-text p { font-size: 17px; color: #3d392f; }
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.stat {
  border: 1px solid rgba(244,234,216,.16);
  border-radius: 22px;
  padding: 18px;
  background: rgba(244,234,216,.08);
}
.stat strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 30px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.portfolio-card {
  position: relative;
  min-height: 390px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--forest);
  box-shadow: 0 16px 50px rgba(13,18,12,.14);
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .35s ease;
}
.portfolio-card:hover img { transform: scale(1.045); }
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7,12,6,.88));
}
.portfolio-card-content {
  position: absolute;
  z-index: 2;
  inset: auto 20px 20px;
  color: var(--cream);
}
.portfolio-card-content span {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: .14em;
}
.portfolio-card-content h3 {
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
  margin: 8px 0;
}
.portfolio-card-content p {
  margin: 0;
  color: rgba(244,234,216,.78);
}

.page-hero {
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(7,12,6,.9), rgba(7,12,6,.62)),
    url("../images/placeholders/hero-vintage-camera.svg") center/cover no-repeat;
  padding: 96px 0;
}
.page-hero h1 { font-size: clamp(50px, 8vw, 98px); }

.service-group {
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(251,245,234,.72);
  box-shadow: 0 18px 60px rgba(13,18,12,.08);
}
.service-group-head {
  background: var(--forest);
  color: var(--cream);
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}
.service-group-head h2 {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  margin: 0;
  line-height: 1;
}
.service-group-head p {
  color: var(--gold);
  margin: 0;
  font-weight: 900;
}
.service-list { display: grid; }
.service-item {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 20px;
  padding: 24px 28px;
  border-top: 1px solid var(--line);
}
.service-item h3 { margin: 0 0 6px; font-size: 22px; }
.service-item p { margin: 0; color: var(--muted); }
.service-item strong { color: var(--rust); text-align: right; }

.about-photo {
  position: sticky;
  top: 110px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--forest);
}
.about-copy p {
  font-size: 18px;
  color: #38352c;
  margin-top: 0;
}
.about-copy .lead {
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1.12;
  color: var(--forest);
}

.contact-card, .email-pill {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  background: rgba(251,245,234,.78);
  border-radius: 26px;
  padding: 24px;
  margin-bottom: 14px;
  box-shadow: 0 14px 40px rgba(13,18,12,.08);
}
.contact-card span, .email-pill span {
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.contact-card strong { font-size: 22px; }
.email-grid { display: grid; gap: 10px; }
.email-pill {
  border-radius: 999px;
  padding: 13px 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
}
.email-pill span { text-transform: capitalize; }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.process-card {
  background: rgba(251,245,234,.72);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
}
.process-card span {
  color: var(--gold);
  font-weight: 950;
}
.process-card h3 { margin: 8px 0; }

.site-footer {
  border-top: 1px solid var(--line);
  background: #0d140b;
  color: var(--cream);
  padding: 36px max(20px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.site-footer p {
  margin: 6px 0 0;
  color: rgba(244,234,216,.64);
}
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links a { color: var(--cream); text-decoration: none; font-weight: 800; }
.fine-print {
  grid-column: 1 / -1;
  color: rgba(244,234,216,.45);
  font-size: 13px;
}
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: .55s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.muted { opacity: .45; }


/* Brand + creative vibe upgrade */
.hero-logo-stamp { position:absolute; right:clamp(18px,7vw,110px); bottom:90px; z-index:1; width:clamp(190px,27vw,410px); aspect-ratio:1; border-radius:42px; background:rgba(244,234,216,.09); border:1px solid rgba(244,234,216,.16); backdrop-filter:blur(4px); padding:clamp(18px,2vw,34px); transform:rotate(2deg); box-shadow:0 30px 90px rgba(0,0,0,.2); }
.hero-logo-stamp img { width:100%; height:100%; object-fit:contain; opacity:.92; filter:sepia(.1) contrast(1.05); }
.creative-divider { display:flex; align-items:center; gap:12px; margin:22px 0; color:var(--gold); font-weight:950; letter-spacing:.28em; text-transform:uppercase; font-size:12px; }
.creative-divider::before,.creative-divider::after { content:""; height:1px; flex:1; background:linear-gradient(90deg, transparent, rgba(215,180,109,.65), transparent); }
.bio-text { position:relative; overflow:hidden; }
.bio-text::after { content:"NYA"; position:absolute; right:22px; bottom:-10px; font-family:Georgia,serif; font-size:clamp(74px,12vw,160px); font-weight:900; color:rgba(20,34,20,.045); letter-spacing:-.08em; pointer-events:none; }
.bio-text p { font-size:clamp(18px,1.8vw,22px); color:#343025; position:relative; z-index:1; }
.bio-text p:first-child { font-family:Georgia,serif; font-size:clamp(25px,3vw,38px); line-height:1.18; color:var(--forest); letter-spacing:-.03em; }
.bio-text p:first-child::first-letter { float:left; font-size:3.2em; line-height:.82; padding:9px 11px 0 0; color:var(--rust); }
.logo-feature { display:grid; grid-template-columns:150px 1fr; gap:22px; align-items:center; margin-bottom:24px; }
.logo-feature img { width:150px; height:150px; object-fit:contain; background:rgba(251,245,234,.75); border:1px solid var(--line); border-radius:34px; padding:12px; box-shadow:0 18px 50px rgba(13,18,12,.12); }
.logo-feature strong { display:block; font-family:Georgia,serif; font-size:clamp(30px,4vw,54px); line-height:1; letter-spacing:-.04em; color:var(--forest); }
.logo-feature p { margin:10px 0 0; color:var(--muted); }
.process-card { overflow:hidden; padding:0; background:linear-gradient(180deg, rgba(251,245,234,.78), rgba(244,234,216,.72)); }
.process-card .process-image { height:170px; overflow:hidden; border-bottom:1px solid var(--line); }
.process-card .process-image img { width:100%; height:100%; object-fit:cover; }
.process-card .process-copy { padding:22px; }
.process-card span { display:inline-flex; align-items:center; justify-content:center; min-width:44px; height:34px; padding:0 12px; border-radius:999px; background:rgba(150,95,50,.12); color:var(--rust); margin-bottom:8px; }
.site-footer::before { content:""; width:82px; height:82px; background:url("../images/logo.png") center/contain no-repeat; border-radius:22px; background-color:rgba(244,234,216,.92); border:1px solid rgba(244,234,216,.18); grid-row:span 2; }
@media (max-width:980px){ .hero-logo-stamp{opacity:.22; right:12px; bottom:20px; width:280px;} .logo-feature{grid-template-columns:1fr;} }
@media (max-width:680px){ .brand-mark{width:62px;height:62px;} .hero-logo-stamp{width:220px;bottom:40px;} .process-card .process-image{height:210px;} .site-footer::before{grid-row:auto;} }

@media (max-width: 980px) {
  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .section-head, .intro-grid, .about-layout, .contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .about-photo { position: relative; top: 0; }
}

@media (max-width: 680px) {
  .header-inner, .hero-content, .container { width: min(100% - 26px, var(--max)); }
  .brand-copy span { display: none; }
  .hero { min-height: 760px; }
  .hero h1 { font-size: clamp(48px, 15vw, 78px); }
  .portfolio-grid, .process, .stat-strip { grid-template-columns: 1fr; }
  .portfolio-card { min-height: 330px; }
  .service-item { grid-template-columns: 1fr; }
  .service-item strong { text-align: left; }
  .site-footer { grid-template-columns: 1fr; }
}



/* VINTAGE CAMERA / MOUNTAIN / STARRY BRAND UPDATE */
:root {
  --forest: #243c28;
  --forest2: #365032;
  --moss: #78814d;
  --cream: #f2dfbd;
  --paper: #f7ead0;
  --gold: #d49a45;
  --rust: #a6562f;
  --blue: #7d9cab;
  --plum: #4b324f;
  --muted: #6f624e;
}

body {
  background:
    radial-gradient(circle at 18% 3%, rgba(212,154,69,.24), transparent 34rem),
    radial-gradient(circle at 85% 8%, rgba(125,156,171,.24), transparent 30rem),
    linear-gradient(180deg, #f5e5c5 0%, #d9bd8c 100%);
}

.site-header {
  background: rgba(242, 223, 189, .88);
}

.header-inner {
  min-height: 102px;
}

.brand-mark {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: #f9efd8;
  box-shadow: 0 13px 34px rgba(17, 19, 13, .18);
}

.brand-mark img {
  padding: 4px;
}

.brand-copy strong {
  font-size: 19px;
  letter-spacing: .115em;
}

.site-nav {
  gap: 8px;
}

.site-nav a {
  color: #201811;
  border: 1px solid rgba(17,19,13,.1);
  box-shadow: 0 8px 18px rgba(17,19,13,.06);
}

.site-nav a:nth-child(1) { background: #efe0b8; }
.site-nav a:nth-child(2) { background: #b8c19b; }
.site-nav a:nth-child(3) { background: #d99a52; }
.site-nav a:nth-child(4) { background: #94aeba; }
.site-nav a:nth-child(5) { background: #c9784d; }

.site-nav a:hover,
.site-nav a.active {
  background: #243c28;
  color: #f7ead0;
}

.site-nav .nav-cta {
  font-size: 16px;
  padding: 15px 22px;
  background: linear-gradient(135deg, #243c28, #4b324f);
  color: #f7ead0;
  border: 2px solid rgba(244,234,216,.38);
  transform: rotate(-1deg);
}

.site-nav .nav-cta:hover {
  background: linear-gradient(135deg, #11170f, #38243c);
  transform: rotate(0deg) translateY(-2px);
}

.hero,
.page-hero {
  background:
    linear-gradient(90deg, rgba(19, 20, 12, .86) 0%, rgba(36, 60, 40, .66) 48%, rgba(54, 43, 28, .38) 100%),
    url("../images/placeholders/hero-vintage-camera.svg") center/cover no-repeat;
}

.hero h1,
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  text-shadow: 0 12px 34px rgba(0,0,0,.22);
}

.eyebrow {
  background: rgba(247,234,208,.12);
  color: #f2c267;
  border-color: rgba(242,194,103,.48);
}

.hero-logo-stamp {
  position: absolute;
  right: clamp(20px, 7vw, 110px);
  bottom: 78px;
  z-index: 1;
  width: clamp(210px, 26vw, 430px);
  aspect-ratio: 1;
  border-radius: 48px;
  background: rgba(247,234,208,.13);
  border: 1px solid rgba(247,234,208,.22);
  backdrop-filter: blur(4px);
  padding: clamp(18px, 2vw, 34px);
  transform: rotate(2deg);
  box-shadow: 0 30px 90px rgba(0,0,0,.2);
}

.hero-logo-stamp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .92;
}

.creative-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: #f2c267;
  font-weight: 950;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 12px;
}

.creative-divider::before,
.creative-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(242,194,103,.7), transparent);
}

.logo-feature {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
}

.logo-feature img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  background: rgba(247,234,208,.88);
  border: 1px solid rgba(17,19,13,.14);
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 18px 50px rgba(13,18,12,.12);
}

.logo-feature strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(32px, 4vw, 58px);
  line-height: .95;
  letter-spacing: -.045em;
  color: #243c28;
}

.logo-feature p {
  margin: 10px 0 0;
  color: #6f624e;
}

.bio-text {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(247,234,208,.88), rgba(213,183,130,.48));
}

.bio-text::after {
  content: "NYA";
  position: absolute;
  right: 22px;
  bottom: -10px;
  font-family: Georgia, serif;
  font-size: clamp(76px, 12vw, 170px);
  font-weight: 900;
  color: rgba(36,60,40,.055);
  letter-spacing: -.08em;
  pointer-events: none;
}

.bio-text p {
  font-size: clamp(18px, 1.8vw, 22px);
  color: #342b20;
  position: relative;
  z-index: 1;
}

.bio-text p:first-child {
  font-family: Georgia, serif;
  font-size: clamp(25px, 3vw, 39px);
  line-height: 1.18;
  color: #243c28;
  letter-spacing: -.03em;
}

.bio-text p:first-child::first-letter {
  float: left;
  font-size: 3.15em;
  line-height: .82;
  padding: 9px 11px 0 0;
  color: #a6562f;
}

.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-card {
  min-height: 370px;
  border: 7px solid rgba(247,234,208,.75);
  box-shadow: 0 18px 60px rgba(43, 32, 18, .18);
}

.portfolio-card:nth-child(3n+1) { transform: rotate(-.5deg); }
.portfolio-card:nth-child(3n+2) { transform: rotate(.55deg); }
.portfolio-card:nth-child(3n+3) { transform: rotate(-.25deg); }

.portfolio-card:hover {
  transform: rotate(0deg) translateY(-4px);
}

.process-card {
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, rgba(247,234,208,.86), rgba(226,196,145,.72));
}

.process-card .process-image {
  height: 180px;
  overflow: hidden;
  border-bottom: 1px solid rgba(17,19,13,.14);
}

.process-card .process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-card .process-copy {
  padding: 22px;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(166,86,47,.14);
  color: #a6562f;
  margin-bottom: 8px;
}

.process-card:nth-child(1) span { background: rgba(36,60,40,.16); color: #243c28; }
.process-card:nth-child(2) span { background: rgba(212,154,69,.18); color: #8b561c; }
.process-card:nth-child(3) span { background: rgba(125,156,171,.2); color: #355c69; }
.process-card:nth-child(4) span { background: rgba(75,50,79,.16); color: #4b324f; }

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 26px;
  font-weight: 950;
  color: #f7ead0;
  background: linear-gradient(135deg, #243c28, #4b324f);
  border: 2px solid rgba(247,234,208,.5);
  box-shadow: 0 16px 40px rgba(17,19,13,.28);
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.site-footer::before {
  content: "";
  width: 82px;
  height: 82px;
  background: url("../images/logo.png") center/contain no-repeat;
  border-radius: 24px;
  background-color: rgba(247,234,208,.95);
  border: 1px solid rgba(244,234,216,.18);
  grid-row: span 2;
}

@media (max-width: 980px) {
  .hero-logo-stamp {
    opacity: .25;
    right: 12px;
    bottom: 20px;
    width: 280px;
  }

  .logo-feature {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-nav a {
    transform: none;
  }

  .brand-mark {
    width: 64px;
    height: 64px;
  }

  .hero-logo-stamp {
    width: 220px;
    bottom: 40px;
  }

  .process-card .process-image {
    height: 215px;
  }

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

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }

  .site-footer::before {
    grid-row: auto;
  }
}




/* DARK GREEN TREE OUTLINE + NON-BORING FONT UPDATE */
:root {
  --ink: #f6ecd2;
  --forest: #07140d;
  --forest2: #102617;
  --moss: #7f9255;
  --cream: #f6ecd2;
  --paper: #163220;
  --gold: #e3bd65;
  --rust: #c46b3b;
  --blue: #86aeb9;
  --plum: #5c3b68;
  --muted: #c9b98f;
  --line: rgba(246, 236, 210, .16);
  --shadow: 0 24px 80px rgba(0, 0, 0, .34);
}

html {
  background: #07140d;
}

body {
  color: #f6ecd2;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  background:
    radial-gradient(circle at 14% 0%, rgba(227, 189, 101, .16), transparent 34rem),
    radial-gradient(circle at 88% 10%, rgba(134, 174, 185, .15), transparent 30rem),
    radial-gradient(circle at 52% 95%, rgba(92, 59, 104, .17), transparent 36rem),
    linear-gradient(180deg, #07140d 0%, #102617 48%, #061008 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(227,189,101,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227,189,101,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.8), rgba(0,0,0,.18));
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0 0;
  height: 42vh;
  pointer-events: none;
  background:
    url("../images/tree-outlines.svg") bottom center / min(1300px, 120vw) auto no-repeat;
  opacity: .5;
  z-index: -1;
}

.site-header {
  background: rgba(7, 20, 13, .82);
  border-bottom: 1px solid rgba(246,236,210,.15);
}

.brand-copy strong {
  font-family: "Unbounded", "Space Grotesk", sans-serif;
  font-size: 17px;
  letter-spacing: .08em;
}

.brand-copy span,
.site-nav a,
.btn,
.eyebrow {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
}

.hero h1,
.page-hero h1,
.section-head h2,
.service-group-head h2,
.about-copy .lead,
.logo-feature strong,
.stat strong {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "SOFT" 70, "WONK" 1;
}

.hero h1,
.page-hero h1 {
  letter-spacing: -.07em;
}

.hero,
.page-hero {
  background:
    linear-gradient(90deg, rgba(3, 10, 6, .94) 0%, rgba(7, 20, 13, .78) 44%, rgba(16, 38, 23, .44) 100%),
    url("../images/placeholders/hero-vintage-camera.svg") center/cover no-repeat;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url("../images/tree-outlines.svg") bottom center / min(1200px, 115vw) auto no-repeat,
    radial-gradient(circle at 75% 20%, rgba(227,189,101,.22), transparent 24rem);
  opacity: .72;
}

.hero::after {
  background: linear-gradient(180deg, transparent, #07140d);
}

.page-hero {
  position: relative;
}

.section {
  position: relative;
}

.panel,
.service-group,
.process-card,
.contact-card,
.email-pill {
  background: rgba(15, 41, 25, .78);
  border-color: rgba(246,236,210,.16);
  color: #f6ecd2;
  box-shadow: 0 18px 70px rgba(0,0,0,.24);
}

.bio-text {
  background:
    radial-gradient(circle at 15% 0%, rgba(227,189,101,.17), transparent 22rem),
    linear-gradient(135deg, rgba(16,38,23,.92), rgba(7,20,13,.78));
}

.bio-text p,
.about-copy p,
.service-item p,
.section-head p,
.logo-feature p {
  color: rgba(246,236,210,.78);
}

.bio-text p:first-child,
.about-copy .lead,
.logo-feature strong {
  color: #f6ecd2;
}

.bio-text::after {
  color: rgba(227,189,101,.06);
}

.dark-panel {
  background:
    radial-gradient(circle at top right, rgba(227,189,101,.18), transparent 20rem),
    linear-gradient(135deg, #102617, #050b07);
}

.logo-feature img,
.brand-mark {
  background: rgba(246,236,210,.95);
}

.site-nav a {
  font-weight: 800;
  color: #07140d;
  border-color: rgba(246,236,210,.2);
}

.site-nav a:nth-child(1) { background: #e5bd60; }
.site-nav a:nth-child(2) { background: #8fa35f; }
.site-nav a:nth-child(3) { background: #c76f3d; }
.site-nav a:nth-child(4) { background: #83aab4; }
.site-nav a:nth-child(5) { background: #bba064; }

.site-nav a:hover,
.site-nav a.active {
  background: #f6ecd2;
  color: #07140d;
}

.site-nav .nav-cta {
  font-family: "Unbounded", "Space Grotesk", sans-serif;
  font-size: 17px;
  padding: 17px 25px;
  background: linear-gradient(135deg, #e3bd65, #c46b3b 58%, #5c3b68);
  color: #07140d;
  border: 2px solid rgba(246,236,210,.55);
  box-shadow: 0 16px 36px rgba(0,0,0,.26);
}

.btn {
  font-family: "Unbounded", "Space Grotesk", sans-serif;
  background: linear-gradient(135deg, #e3bd65, #c46b3b);
  color: #07140d;
}

.btn.secondary {
  background: rgba(246,236,210,.10);
  color: #f6ecd2;
}

.btn.light {
  background: #f6ecd2;
  color: #07140d;
}

.service-group-head {
  background:
    radial-gradient(circle at 90% 0%, rgba(227,189,101,.22), transparent 20rem),
    linear-gradient(135deg, #0a1b10, #102617);
}

.service-item {
  border-top-color: rgba(246,236,210,.14);
}

.service-item strong {
  color: #e3bd65;
}

.portfolio-card {
  border-color: rgba(246,236,210,.34);
  box-shadow: 0 18px 68px rgba(0,0,0,.28);
}

.process-card {
  background: linear-gradient(180deg, rgba(15,41,25,.9), rgba(7,20,13,.88));
}

.process-card .process-image {
  border-bottom-color: rgba(246,236,210,.16);
}

.process-card h3 {
  color: #f6ecd2;
}

.process-card p {
  color: rgba(246,236,210,.76);
}

.contact-card strong,
.email-pill strong {
  color: #f6ecd2;
}

.email-pill span,
.contact-card span {
  color: #e3bd65;
}

.site-footer {
  background: #030805;
  border-top-color: rgba(246,236,210,.14);
}

.back-to-top {
  background: linear-gradient(135deg, #e3bd65, #c46b3b);
  color: #07140d;
  font-family: "Unbounded", "Space Grotesk", sans-serif;
}

@media (max-width: 980px) {
  .site-nav {
    background: rgba(7,20,13,.96);
    border-color: rgba(246,236,210,.16);
  }

  .site-nav a {
    color: #07140d;
  }
}



/* SAFE CLEANUP PATCH: matching nav buttons, readable title spacing, no layout overhauls */
.site-nav a:not(.nav-cta) {
  background: rgba(246, 236, 210, .96) !important;
  color: #07140d !important;
  border: 1px solid rgba(246, 236, 210, .55) !important;
  box-shadow: 0 8px 22px rgba(0,0,0,.14) !important;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta).active {
  background: #ffffff !important;
  color: #07140d !important;
}

.site-nav .nav-cta {
  background: linear-gradient(135deg, #e3bd65, #c46b3b 58%, #5c3b68) !important;
  color: #07140d !important;
  border: 2px solid rgba(246,236,210,.65) !important;
}

.hero h1,
.page-hero h1 {
  letter-spacing: -0.018em !important;
  word-spacing: .035em !important;
  line-height: 1.02 !important;
}

.section-head h2,
.service-group-head h2,
.logo-feature strong,
.about-copy .lead,
.portfolio-card-content h3 {
  letter-spacing: -0.01em !important;
  line-height: 1.06 !important;
}

@media (max-width: 980px) {
  .site-nav a:not(.nav-cta) {
    background: rgba(246,236,210,.96) !important;
    color: #07140d !important;
  }
}




/* PORTFOLIO DETAIL PAGES + CLICKABLE GALLERIES */
.portfolio-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.portfolio-card-content em {
  display: inline-flex;
  margin-top: 14px;
  font-style: normal;
  font-weight: 900;
  color: #07140d;
  background: rgba(246,236,210,.92);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.gallery-page-intro {
  margin-bottom: 32px;
}

.gallery-page-intro .panel {
  max-width: 860px;
}

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

.gallery-item {
  border: 1px solid rgba(246,236,210,.18);
  padding: 0;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(15,41,25,.78);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  cursor: pointer;
}

.gallery-item:nth-child(5n+1) {
  grid-row: span 2;
  min-height: 560px;
}

.gallery-item:nth-child(7n+3) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: contrast(1.05) saturate(1.03);
}

.empty-gallery {
  grid-column: 1 / -1;
  text-align: center;
}

.empty-gallery h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(34px, 5vw, 64px);
  margin: 0 0 12px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(3, 8, 5, .92);
  padding: 28px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 100px rgba(0,0,0,.52);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(246,236,210,.3);
  background: rgba(246,236,210,.92);
  color: #07140d;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(7n+3) {
    grid-column: span 1;
  }
}

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

  .gallery-item,
  .gallery-item:nth-child(5n+1) {
    min-height: 430px;
    grid-row: auto;
  }
}

/* SECTION-SPECIFIC HERO + PORTFOLIO MOODBOARD UPDATE */

/* Every main page gets its own lead image so the site stops repeating one hero photo. */
body[data-page="home"] .hero {
  background:
    linear-gradient(90deg, rgba(3, 8, 5, .92) 0%, rgba(9, 20, 12, .70) 45%, rgba(9, 20, 12, .34) 100%),
    url("../images/portfolio/events/events-parties-02.jpg") center/cover no-repeat !important;
}

body[data-page="portfolio"]:not([data-portfolio-page]) .page-hero {
  background:
    linear-gradient(90deg, rgba(6, 6, 6, .86), rgba(28, 17, 10, .52)),
    url("../images/portfolio/weddings/wedding-04.jpg") center 42%/cover no-repeat !important;
}

body[data-page="services"] .page-hero {
  background:
    linear-gradient(90deg, rgba(5, 12, 11, .90), rgba(15, 31, 32, .54)),
    url("../images/portfolio/businesses-brands/brand-addition-12.jpg") center 45%/cover no-repeat !important;
}

body[data-page="about"] .page-hero {
  background:
    linear-gradient(90deg, rgba(2, 9, 8, .90), rgba(39, 22, 15, .46)),
    url("../images/portfolio/businesses-brands/brand-addition-13.jpg") center 44%/cover no-repeat !important;
}

body[data-page="contact"] .page-hero {
  background:
    linear-gradient(90deg, rgba(6, 6, 10, .88), rgba(42, 18, 26, .48)),
    url("../images/portfolio/events/parties-events-addition-20.jpg") center 42%/cover no-repeat !important;
}

/* Portfolio detail themes. Each section gets its own color/font personality. */
body[data-portfolio-page] {
  --detail-heading: Georgia, "Times New Roman", serif;
  --detail-accent: #d7b46d;
  --detail-ink: #11130d;
  --detail-paper: #fbf5ea;
  --detail-panel: rgba(251,245,234,.86);
  --detail-line: rgba(17,19,13,.15);
  --detail-shadow: 0 22px 78px rgba(13,18,12,.18);
  --detail-pill: #f4ead8;
  --detail-pill-ink: #11130d;
}

body[data-portfolio-page] .page-hero h1,
body[data-portfolio-page] .gallery-page-intro .panel p,
body[data-portfolio-page] .empty-gallery h2 {
  font-family: var(--detail-heading) !important;
}

body[data-portfolio-page] .gallery-page-intro .panel {
  background: var(--detail-panel) !important;
  border-color: var(--detail-line) !important;
  color: var(--detail-ink);
  box-shadow: var(--detail-shadow);
}

body[data-portfolio-page] .gallery-page-intro .eyebrow {
  color: var(--detail-accent) !important;
  border-color: color-mix(in srgb, var(--detail-accent) 45%, transparent) !important;
}

body[data-portfolio-page] .gallery-item {
  background: var(--detail-panel) !important;
  border-color: var(--detail-line) !important;
  box-shadow: var(--detail-shadow) !important;
}

body[data-portfolio-page] .btn:not(.light) {
  background: var(--detail-accent) !important;
  color: var(--detail-pill-ink) !important;
}

body[data-portfolio-page] .btn.light {
  background: var(--detail-pill) !important;
  color: var(--detail-pill-ink) !important;
}

body[data-portfolio-page] .page-hero .eyebrow {
  color: var(--detail-accent) !important;
  border-color: color-mix(in srgb, var(--detail-accent) 48%, transparent) !important;
}

/* Featured Work: editorial, cinematic, gold-lit. */
body[data-portfolio-page="featured-work"] {
  --detail-heading: "Fraunces", Georgia, serif;
  --detail-accent: #e3bd65;
  --detail-ink: #f7ead1;
  --detail-panel: rgba(9, 12, 11, .88);
  --detail-line: rgba(227,189,101,.26);
  --detail-pill: #f7ead1;
  --detail-pill-ink: #11130d;
  background: radial-gradient(circle at 15% 0%, rgba(227,189,101,.24), transparent 32rem), linear-gradient(180deg, #070b09, #18110b) !important;
}
body[data-portfolio-page="featured-work"] .page-hero {
  background:
    linear-gradient(90deg, rgba(4, 5, 4, .90), rgba(27, 15, 7, .42)),
    url("../images/portfolio/weddings/wedding-04.jpg") center 38%/cover no-repeat !important;
}

/* Businesses & Brands: crisp, modern, commercial. */
body[data-portfolio-page="businesses-brands"] {
  --detail-heading: "Space Grotesk", system-ui, sans-serif;
  --detail-accent: #66d7c4;
  --detail-ink: #eafff9;
  --detail-panel: rgba(6, 27, 29, .88);
  --detail-line: rgba(102,215,196,.26);
  --detail-pill: #eafff9;
  --detail-pill-ink: #061b1d;
  background: radial-gradient(circle at 80% 0%, rgba(102,215,196,.20), transparent 34rem), linear-gradient(180deg, #071214, #0f272d) !important;
}
body[data-portfolio-page="businesses-brands"] .page-hero {
  background:
    linear-gradient(90deg, rgba(2, 11, 12, .92), rgba(2, 26, 28, .48)),
    url("../images/portfolio/businesses-brands/brand-addition-14.jpg") center 42%/cover no-repeat !important;
}

/* Sports: punchy, fast, bold. */
body[data-portfolio-page="sports"] {
  --detail-heading: "Unbounded", "Space Grotesk", system-ui, sans-serif;
  --detail-accent: #ff4c3b;
  --detail-ink: #fff3ed;
  --detail-panel: rgba(18, 18, 20, .90);
  --detail-line: rgba(255,76,59,.28);
  --detail-pill: #fff3ed;
  --detail-pill-ink: #150d0b;
  background: radial-gradient(circle at 20% 0%, rgba(255,76,59,.20), transparent 30rem), linear-gradient(180deg, #100d0d, #1c1110) !important;
}
body[data-portfolio-page="sports"] .page-hero {
  background:
    linear-gradient(90deg, rgba(6, 5, 5, .92), rgba(54, 9, 7, .42)),
    url("../images/portfolio/sports/sports-05.jpg") center 38%/cover no-repeat !important;
}

/* Families & Portraits: warm, soft, human. */
body[data-portfolio-page="families-portraits"] {
  --detail-heading: "Fraunces", Georgia, serif;
  --detail-accent: #c9853f;
  --detail-ink: #352215;
  --detail-panel: rgba(255, 247, 232, .92);
  --detail-line: rgba(201,133,63,.26);
  --detail-pill: #fff7e8;
  --detail-pill-ink: #352215;
  background: radial-gradient(circle at 14% 0%, rgba(229,167,82,.28), transparent 34rem), linear-gradient(180deg, #fff4df, #e8d2b2) !important;
}
body[data-portfolio-page="families-portraits"] .page-hero {
  background:
    linear-gradient(90deg, rgba(50, 29, 14, .82), rgba(95, 52, 21, .32)),
    url("../images/portfolio/families-portraits/families-portraits-01.jpg") center 44%/cover no-repeat !important;
}

/* Maternity & Baby: gentle blush and sage. */
body[data-portfolio-page="maternity-baby"] {
  --detail-heading: "Fraunces", Georgia, serif;
  --detail-accent: #b7898f;
  --detail-ink: #3a2b2b;
  --detail-panel: rgba(255, 247, 244, .92);
  --detail-line: rgba(183,137,143,.30);
  --detail-pill: #fff7f4;
  --detail-pill-ink: #3a2b2b;
  background: radial-gradient(circle at 15% 0%, rgba(183,137,143,.25), transparent 32rem), linear-gradient(180deg, #fff6f3, #dfd8c8) !important;
}
body[data-portfolio-page="maternity-baby"] .page-hero {
  background:
    linear-gradient(90deg, rgba(43, 29, 31, .82), rgba(95, 70, 73, .36)),
    url("../images/portfolio/maternity-baby/maternity-baby-01.jpg") center 42%/cover no-repeat !important;
}

/* Seniors & Graduates: bright, confident, milestone energy. */
body[data-portfolio-page="seniors-graduates"] {
  --detail-heading: "Unbounded", "Space Grotesk", system-ui, sans-serif;
  --detail-accent: #8fb8ff;
  --detail-ink: #eef4ff;
  --detail-panel: rgba(11, 19, 42, .88);
  --detail-line: rgba(143,184,255,.28);
  --detail-pill: #eef4ff;
  --detail-pill-ink: #101831;
  background: radial-gradient(circle at 78% 0%, rgba(143,184,255,.22), transparent 32rem), linear-gradient(180deg, #101831, #1f1935) !important;
}
body[data-portfolio-page="seniors-graduates"] .page-hero {
  background:
    linear-gradient(90deg, rgba(10, 14, 32, .90), rgba(35, 28, 74, .40)),
    url("../images/portfolio/seniors-graduates/senior-01.jpg") center 40%/cover no-repeat !important;
}

/* Events / Parties: dark, lively, gold and burgundy. */
body[data-portfolio-page="events"] {
  --detail-heading: "Unbounded", "Space Grotesk", system-ui, sans-serif;
  --detail-accent: #f6c25b;
  --detail-ink: #fff5dc;
  --detail-panel: rgba(31, 8, 17, .90);
  --detail-line: rgba(246,194,91,.28);
  --detail-pill: #fff5dc;
  --detail-pill-ink: #210a12;
  background: radial-gradient(circle at 20% 0%, rgba(246,194,91,.24), transparent 32rem), linear-gradient(180deg, #160610, #2a0d1c) !important;
}
body[data-portfolio-page="events"] .page-hero {
  background:
    linear-gradient(90deg, rgba(16, 4, 10, .92), rgba(65, 14, 34, .42)),
    url("../images/portfolio/events/parties-events-addition-10.jpg") center 42%/cover no-repeat !important;
}

/* Weddings: white, elegant, soft, polished. */
body[data-portfolio-page="weddings"] {
  --detail-heading: "Fraunces", Georgia, serif;
  --detail-accent: #d6b98a;
  --detail-ink: #2b241a;
  --detail-panel: rgba(255, 251, 244, .94);
  --detail-line: rgba(191,163,122,.34);
  --detail-pill: #fffaf3;
  --detail-pill-ink: #2b241a;
  background: radial-gradient(circle at 12% 0%, rgba(214,185,138,.24), transparent 32rem), linear-gradient(180deg, #fffdf8, #efe4d4) !important;
}
body[data-portfolio-page="weddings"] .page-hero {
  background:
    linear-gradient(90deg, rgba(42, 33, 24, .62), rgba(255, 248, 239, .18)),
    url("../images/portfolio/weddings/wedding-01.jpg") center 35%/cover no-repeat !important;
}
body[data-portfolio-page="weddings"] .page-hero h1 {
  font-weight: 650 !important;
  letter-spacing: -.035em !important;
}
body[data-portfolio-page="weddings"] .gallery-item {
  border-radius: 34px !important;
}

/* Videography: neon editorial, darker, techy. */
body[data-portfolio-page="videography"] {
  --detail-heading: "Space Grotesk", "Unbounded", system-ui, sans-serif;
  --detail-accent: #a777ff;
  --detail-ink: #f4edff;
  --detail-panel: rgba(12, 8, 28, .90);
  --detail-line: rgba(167,119,255,.30);
  --detail-pill: #f4edff;
  --detail-pill-ink: #10091d;
  background: radial-gradient(circle at 78% 0%, rgba(167,119,255,.25), transparent 32rem), linear-gradient(180deg, #080512, #150c2b) !important;
}
body[data-portfolio-page="videography"] .page-hero {
  background:
    linear-gradient(90deg, rgba(7, 4, 16, .92), rgba(41, 16, 77, .40)),
    url("../images/portfolio/businesses-brands/brand-addition-19.jpg") center 43%/cover no-repeat !important;
}

/* Moodboard styling for the main Portfolio cards, so every section feels distinct before opening it. */
.portfolio-card[data-card] {
  border-width: 2px;
}

.portfolio-card[data-card] .portfolio-card-content h3 {
  font-family: var(--card-heading, Georgia, serif) !important;
}

.portfolio-card[data-card] .portfolio-card-content span,
.portfolio-card[data-card] .portfolio-card-content em {
  background: var(--card-pill, rgba(246,236,210,.92)) !important;
  color: var(--card-pill-ink, #07140d) !important;
}

.portfolio-card[data-card] .portfolio-card-content span {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
}

.portfolio-card[data-card="featured-work"] {
  --card-heading: "Fraunces", Georgia, serif;
  --card-pill: #f6d27b;
  --card-pill-ink: #14100a;
  border-color: rgba(246,210,123,.65);
}
.portfolio-card[data-card="businesses-brands"] {
  --card-heading: "Space Grotesk", system-ui, sans-serif;
  --card-pill: #66d7c4;
  --card-pill-ink: #061b1d;
  border-color: rgba(102,215,196,.62);
}
.portfolio-card[data-card="sports"] {
  --card-heading: "Unbounded", system-ui, sans-serif;
  --card-pill: #ff4c3b;
  --card-pill-ink: #fff6ef;
  border-color: rgba(255,76,59,.64);
}
.portfolio-card[data-card="families-portraits"] {
  --card-heading: "Fraunces", Georgia, serif;
  --card-pill: #f3ba72;
  --card-pill-ink: #2d1d10;
  border-color: rgba(243,186,114,.70);
}
.portfolio-card[data-card="maternity-baby"] {
  --card-heading: "Fraunces", Georgia, serif;
  --card-pill: #edb7bf;
  --card-pill-ink: #372326;
  border-color: rgba(237,183,191,.70);
}
.portfolio-card[data-card="seniors-graduates"] {
  --card-heading: "Unbounded", system-ui, sans-serif;
  --card-pill: #8fb8ff;
  --card-pill-ink: #111831;
  border-color: rgba(143,184,255,.70);
}
.portfolio-card[data-card="events"] {
  --card-heading: "Unbounded", system-ui, sans-serif;
  --card-pill: #f6c25b;
  --card-pill-ink: #210a12;
  border-color: rgba(246,194,91,.70);
}
.portfolio-card[data-card="weddings"] {
  --card-heading: "Fraunces", Georgia, serif;
  --card-pill: #fffaf3;
  --card-pill-ink: #2b241a;
  border-color: rgba(255,250,243,.86);
}
.portfolio-card[data-card="videography"] {
  --card-heading: "Space Grotesk", system-ui, sans-serif;
  --card-pill: #a777ff;
  --card-pill-ink: #10091d;
  border-color: rgba(167,119,255,.70);
}

.portfolio-card[data-card="weddings"]::after {
  background: linear-gradient(180deg, transparent 18%, rgba(43,36,26,.70)) !important;
}
.portfolio-card[data-card="sports"]::after {
  background: linear-gradient(180deg, transparent 18%, rgba(20,6,5,.90)) !important;
}
.portfolio-card[data-card="businesses-brands"]::after {
  background: linear-gradient(180deg, transparent 18%, rgba(4,24,26,.88)) !important;
}
.portfolio-card[data-card="events"]::after {
  background: linear-gradient(180deg, transparent 18%, rgba(34,5,16,.90)) !important;
}
.portfolio-card[data-card="videography"]::after {
  background: linear-gradient(180deg, transparent 18%, rgba(12,6,28,.92)) !important;
}

/* Service/pricing links retained from the last idea. */
.service-group-head {
  align-items: center;
}

.service-group-head > div {
  display: grid;
  gap: 10px;
}

.service-group-link,
.service-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
}

.service-group-link {
  color: #07140d;
  background: rgba(246,236,210,.92);
  padding: 9px 13px;
  font-size: 13px;
}

.service-link {
  margin-top: 14px;
  color: #07140d;
  background: linear-gradient(135deg, #e3bd65, #c46b3b);
  padding: 8px 12px;
  font-size: 13px;
}

.service-group-link:hover,
.service-link:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

/* iPhone-friendly polish stays in this complete ZIP. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 760px) {
  .header-inner,
  .hero-content,
  .container {
    width: calc(100% - 24px) !important;
  }

  .header-inner {
    min-height: 76px !important;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-mark {
    width: 54px !important;
    height: 54px !important;
    border-radius: 17px !important;
    flex: 0 0 auto;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 11px !important;
    line-height: 1.12;
    letter-spacing: .035em !important;
    overflow-wrap: anywhere;
  }

  .brand-copy span {
    display: none !important;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
  }

  .site-nav {
    left: 12px !important;
    right: 12px !important;
    top: 68px !important;
    max-height: calc(100svh - 92px);
    overflow-y: auto;
    border-radius: 20px !important;
  }

  .site-nav a {
    width: 100%;
    text-align: center;
    padding: 13px 14px !important;
  }

  .hero {
    min-height: 88svh !important;
    align-items: end;
  }

  .hero-content {
    padding: 98px 0 84px !important;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(36px, 11.8vw, 54px) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.01em !important;
    word-spacing: 0 !important;
  }

  .hero p,
  .page-hero p {
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  .hero-actions,
  .button-row,
  .detail-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 13px 16px !important;
    text-align: center;
  }

  .section {
    padding: 54px 0 !important;
  }

  .section.tight {
    padding: 38px 0 !important;
  }

  .section-head {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
    gap: 14px !important;
    margin-bottom: 22px !important;
  }

  .section-head h2,
  .service-group-head h2 {
    font-size: clamp(30px, 10vw, 42px) !important;
    line-height: 1.04 !important;
  }

  .panel {
    padding: 22px !important;
    border-radius: 22px !important;
  }

  .portfolio-grid,
  .process,
  .stat-strip,
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .portfolio-card {
    min-height: 285px !important;
    border-width: 4px !important;
    transform: none !important;
    border-radius: 24px !important;
  }

  .portfolio-card-content {
    inset: auto 16px 16px !important;
  }

  .portfolio-card-content h3 {
    font-size: 28px !important;
  }

  .process-card .process-image {
    height: 185px !important;
  }

  .service-group {
    border-radius: 22px !important;
    margin-bottom: 18px !important;
  }

  .service-group-head {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 22px !important;
    align-items: start !important;
  }

  .service-group-head p {
    justify-self: start;
  }

  .service-item {
    grid-template-columns: 1fr !important;
    padding: 20px !important;
    gap: 12px !important;
  }

  .service-item h3 {
    font-size: 20px !important;
  }

  .service-item p {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .service-item strong {
    text-align: left !important;
    font-size: 18px;
  }

  .service-link,
  .service-group-link {
    width: 100%;
    padding: 11px 13px;
  }

  .page-hero {
    padding: 70px 0 62px !important;
  }

  .gallery-item,
  .gallery-item:nth-child(5n+1) {
    min-height: 360px !important;
    grid-column: auto !important;
    grid-row: auto !important;
    border-radius: 22px !important;
  }

  .email-pill {
    display: grid !important;
    border-radius: 18px !important;
  }

  .site-footer {
    grid-template-columns: 1fr !important;
    padding: 30px 14px !important;
  }
}

@media (max-width: 420px) {
  .hero h1,
  .page-hero h1 {
    font-size: clamp(34px, 11vw, 48px) !important;
  }

  .portfolio-card {
    min-height: 260px !important;
  }

  .gallery-item,
  .gallery-item:nth-child(5n+1) {
    min-height: 320px !important;
  }
}

/* USER UPDATE: UNIFIED PORTFOLIO CARDS + MATERNITY PHOTOS */

/* Main page only: bring the guy-focused hero back without repeating him across every other page. */
body[data-page="home"] .hero {
  background:
    linear-gradient(90deg, rgba(3, 8, 5, .92) 0%, rgba(9, 20, 12, .68) 45%, rgba(9, 20, 12, .32) 100%),
    url("../images/portfolio/businesses-brands/brand-addition-13.jpg") center 42%/cover no-repeat !important;
}

/* Portfolio landing cards: one consistent color instead of mixed rainbow category colors. */
.portfolio-card[data-card],
.portfolio-card[data-card="featured-work"],
.portfolio-card[data-card="businesses-brands"],
.portfolio-card[data-card="sports"],
.portfolio-card[data-card="families-portraits"],
.portfolio-card[data-card="maternity-baby"],
.portfolio-card[data-card="seniors-graduates"],
.portfolio-card[data-card="events"],
.portfolio-card[data-card="weddings"],
.portfolio-card[data-card="videography"] {
  --card-heading: "Fraunces", Georgia, serif !important;
  --card-pill: #f0c86a !important;
  --card-pill-ink: #07140d !important;
  border-color: rgba(240, 200, 106, .72) !important;
}

.portfolio-card[data-card] .portfolio-card-content span,
.portfolio-card[data-card] .portfolio-card-content em {
  background: #f0c86a !important;
  color: #07140d !important;
  box-shadow: 0 10px 28px rgba(240, 200, 106, .22);
}

.portfolio-card[data-card]::after,
.portfolio-card[data-card="weddings"]::after,
.portfolio-card[data-card="sports"]::after,
.portfolio-card[data-card="businesses-brands"]::after,
.portfolio-card[data-card="events"]::after,
.portfolio-card[data-card="videography"]::after {
  background: linear-gradient(180deg, transparent 10%, rgba(3, 12, 7, .90)) !important;
}

/* Maternity & Baby gets a real newborn hero image now. */
body[data-portfolio-page="maternity-baby"] .page-hero {
  background:
    linear-gradient(90deg, rgba(43, 29, 31, .82), rgba(95, 70, 73, .30)),
    url("../images/portfolio/maternity-baby/boy-newborn-01.jpg") center 42%/cover no-repeat !important;
}

/* USER UPDATE: GREEN ABOUT + SOCIAL COMING SOON + HERO SLIDESHOW RESTORE */

/* Keep floating hero logo hidden. Header/footer logos remain untouched. */
.hero-logo-stamp {
  display: none !important;
}

/* Remove the temporary about photo block and keep the section clean/green for now. */
body[data-page="about"] .about-layout {
  grid-template-columns: 1fr !important;
  max-width: 1040px;
}

body[data-page="about"] .about-photo {
  display: none !important;
}

body[data-page="about"] .about-copy {
  background:
    radial-gradient(circle at 16% 0%, rgba(227,189,101,.12), transparent 25rem),
    linear-gradient(135deg, rgba(11, 34, 19, .98), rgba(5, 20, 12, .98)) !important;
  color: #f6ecd2 !important;
}

body[data-page="about"] .about-copy p,
body[data-page="about"] .about-copy .lead {
  color: rgba(246,236,210,.86) !important;
}

body[data-page="about"] .about-copy .lead {
  color: #f6ecd2 !important;
}

/* Page-specific hero slideshows using Grady portfolio photos. */
.hero,
.page-hero {
  overflow: hidden;
  isolation: isolate;
}

.hero.has-hero-slideshow,
.page-hero.has-hero-slideshow {
  background-image: linear-gradient(90deg, rgba(7,12,6,.92), rgba(7,12,6,.58)) !important;
  background-color: #07140d;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.06);
  animation: heroPhotoFade calc(var(--slide-count, 4) * 5s) infinite;
  animation-delay: calc(var(--i) * 5s);
}

.hero-slide:first-child {
  opacity: 1;
}

@keyframes heroPhotoFade {
  0% { opacity: 0; transform: scale(1.05); }
  5% { opacity: 1; }
  28% { opacity: 1; }
  36% { opacity: 0; transform: scale(1.12); }
  100% { opacity: 0; transform: scale(1.12); }
}

.hero.has-hero-slideshow::before,
.page-hero.has-hero-slideshow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 12, 7, .92) 0%, rgba(4, 12, 7, .68) 44%, rgba(4, 12, 7, .28) 100%),
    radial-gradient(circle at 75% 25%, rgba(227,189,101,.20), transparent 25rem);
}

.hero.has-hero-slideshow::after {
  z-index: 2;
}

.hero-content,
.page-hero .container {
  position: relative;
  z-index: 3;
}

.page-hero.has-hero-slideshow {
  min-height: 430px;
  display: grid;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  font-weight: 950;
  text-shadow: 0 8px 34px rgba(0,0,0,.42);
}

.hero p,
.page-hero p {
  font-weight: 760;
  color: rgba(255, 248, 232, .94);
  text-shadow: 0 4px 18px rgba(0,0,0,.38);
}

.contact-card.social-coming-soon,
.footer-soon {
  opacity: .72;
}

.footer-soon {
  color: rgba(246,236,210,.62);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(246,236,210,.16);
  border-radius: 999px;
  padding: 8px 12px;
}

@media (max-width: 680px) {
  .page-hero.has-hero-slideshow {
    min-height: 360px;
  }

  .hero-slide {
    animation-duration: calc(var(--slide-count, 4) * 6s);
    animation-delay: calc(var(--i) * 6s);
  }
}
