/* ============================================================
   ONE C PHOTOGRAPHY STUDIO — Main Stylesheet
   Fonts: Josefin Sans (headings) | Montserrat (body)
   ============================================================ */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --bg:        #F8F5F0;
  --bg2:       #F2EDE6;
  --bg3:       #EBE4DA;
  --white:     #FFFFFF;
  --ink:       #2C2825;
  --ink2:      #4A4440;
  --ink3:      #4e4945;
  --subw:      #f2f2f2;
  --subB:      #000000;
  --gold:      #c9a227;
  --gold2:     #c9a227;
  --gold3:     #E8D5BB;
  --accent:    #FDF9F4;
  --H: 'Josefin Sans', sans-serif;
  --B: 'Montserrat', sans-serif;
  --S: 'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--B);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp   { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }
@keyframes marquee  { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes floatY   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible       { opacity:1; transform:translateY(0); }
.reveal-left          { opacity:0; transform:translateX(-32px); transition:opacity .8s ease, transform .8s ease; }
.reveal-left.visible  { opacity:1; transform:translateX(0); }
.reveal-right         { opacity:0; transform:translateX(32px);  transition:opacity .8s ease, transform .8s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }

.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s}
.d4{transition-delay:.4s} .d5{transition-delay:.5s} .d6{transition-delay:.6s}

/* ── NAV ── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:200;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  transition: all .4s;
}
nav.scrolled {
  background: rgba(248,245,240,.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(200,169,126,.2);
}
.nav-logo {
  font-family: var(--H); font-size:20px; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase;
  color: var(--ink); text-decoration:none; line-height:1;
}
.nav-logo span {
  display:block; font-size:9px; font-weight:300;
  letter-spacing:.35em; color:var(--gold); margin-top:2px;
}
.nav-links { display:flex; gap:32px; list-style:none; }
.nav-links a {
  font-family: var(--H); font-size:11px; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase;
  color: var(--ink2); text-decoration:none;
  transition: color .3s; position:relative; padding-bottom:2px;
}
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:50%;
  transform:translateX(-50%); width:0; height:1.5px;
  background:var(--gold); transition:width .3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width:100%; }
.nav-links a:hover,
.nav-links a.active { color:var(--gold2); }
.nav-book {
  font-family:var(--H); font-size:10px; font-weight:700;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--white); background:var(--ink);
  border:none; padding:11px 24px; cursor:pointer; transition:all .3s;
}
.nav-book:hover { background:var(--gold2); }
.hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:4px;
}
.hamburger span { display:block; width:24px; height:1.5px; background:var(--ink); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display:none; position:fixed; top:72px; left:0; right:0;
  background:var(--accent); z-index:199;
  padding:32px; flex-direction:column; gap:20px;
  border-top:1px solid var(--bg3);
  box-shadow:0 12px 40px rgba(44,40,37,.08);
}
.mobile-nav.open { display:flex; }
.mobile-nav a {
  font-family:var(--H); font-size:13px; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--ink); text-decoration:none;
  padding:8px 0; border-bottom:1px solid var(--bg3);
}

/* ── SHARED SECTION ELEMENTS ── */
.sey {
  font-family:var(--H); font-size:10px; font-weight:600;
  letter-spacing:.32em; text-transform:uppercase; color:var(--gold);
  margin-bottom:12px; display:flex; align-items:center; gap:12px;
}
.sey::before { content:''; width:28px; height:1px; background:var(--gold); flex-shrink:0; }
.st {
  font-family:var(--H); font-size:clamp(26px,3.2vw,42px); font-weight:700;
  text-transform:uppercase; letter-spacing:.04em; color:var(--ink);
  line-height:1.1; margin-bottom:16px;
}
.st em {
  font-family:var(--S); font-style:italic; font-weight:300;
  text-transform:none; color:var(--gold2); font-size:1.12em;
}
.sb { font-size:13px; font-weight:400; color:var(--subB); line-height:1.95; letter-spacing:.02em; }
.gl { width:48px; height:1.5px; background:var(--gold); margin:20px 0; }

/* ── BUTTONS ── */
.btn-fill {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-family: var(--H);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #ffffff !important;
  background: #1f1f1f !important;
  border: none;
  padding: 15px 36px;
}

.btn-outline {
  color: #ffffff !important;
  border: 1.5px solid #ffffff !important;
}
.btn-fill::after {
  content:''; position:absolute; inset:0;
  background:var(--gold2); transform:scaleX(0); transform-origin:left; transition:transform .35s;
}
.btn-fill:hover::after { transform:scaleX(1); }
.btn-fill span { position:relative; z-index:1; }
.btn-outline {
  font-family:var(--H); font-size:10px; font-weight:700;
  letter-spacing:.24em; text-transform:uppercase;
  color:var(--ink); background:none; border:1.5px solid var(--ink);
  padding:14px 32px; cursor:pointer; transition:all .35s;
}
.btn-outline:hover { background:var(--ink); color:var(--white); }

/* ── PAGE HERO BANNER (non-home pages) ── */
.page-hero {
  position:relative; height:340px;
  display:flex; align-items:flex-end; overflow:hidden; margin-top:72px;
}
.page-hero img {
  
  object-position: top; position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; transition:transform 8s ease;
}
.page-hero:hover img { transform:scale(1.04); }
.page-hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(44,40,37,.72) 0%,rgba(44,40,37,.3) 60%,transparent 100%);
}
.page-hero-content { position:relative; z-index:2; padding:48px 60px; }
.page-hero-eyebrow {
  font-family:var(--H); font-size:14px; font-weight:600;
  letter-spacing:.32em; text-transform:uppercase; color:var(--gold2); margin-bottom:10px;
}
.page-hero-title {
  font-family:var(--H); font-size:clamp(36px,4.5vw,60px); font-weight:700;
  color:var(--white); line-height:1.05; letter-spacing:.02em; text-transform:uppercase;
}
.page-hero-title em {
  font-family:var(--S); font-style:italic; font-weight:600;
  text-transform:none; color:var(--gold2);
}

/* ── HOME HERO ── */
.home-hero {
  position:relative; min-height:100vh;
  /*display:flex; align-items:center;*/ overflow:hidden; margin-top:72px;
}
.home-hero-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.home-hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(236deg, #2c2825 0%, #2c28258c 45%, rgba(248, 245, 240, .08) 100%);
}
.home-hero-content{
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  width: 40%;
  max-width: 620px;
  z-index: 5;
}
.hero-tag {
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--H); font-size:12px; font-weight:700;
  letter-spacing:.32em; text-transform:uppercase; color:var(--gold2);
  margin-bottom:24px; animation:fadeUp .7s ease both;
}
.hero-tag::before { content:''; width:32px; height:1px; background:var(--gold); }
.home-hero h1 {
  font-family: var(--H);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #ffffff;   /* FIXED */
  margin-bottom: 20px;
  animation: fadeUp .8s ease .2s both;
}
.home-hero h1 em {
  display:block; font-family:var(--S); font-style:italic; font-weight:300;
  font-size:.75em; text-transform:none; color:var(--gold2); letter-spacing:.04em;
}
.hero-sub {
  font-size:13px; font-weight:300; color:var(--subw); line-height:1.9;
  letter-spacing:.04em; margin-bottom:10px; max-width:360px; margin-left: 0;   /* IMPORTANT */
  animation:fadeUp .8s ease .38s both;
}
.hero-tagline {
  font-family:var(--H); font-size:10px; font-weight:600;
  letter-spacing:.28em; text-transform:uppercase; color:var(--gold);
  margin-bottom:40px; animation:fadeUp .8s ease .48s both;
}
.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
}
.hero-scroll {
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  animation:floatY 2.4s ease infinite;
}
.hero-scroll span {
  font-family:var(--H); font-size:9px; font-weight:600;
  letter-spacing:.28em; text-transform:uppercase; color:var(--ink3);
}
.scroll-line { width:1px; height:48px; background:linear-gradient(to bottom,var(--gold),transparent); }
.hero-stats{
  display:flex;
  gap:50px;
  margin-top:55px;
  align-items:flex-start;
}
.hero-stat {
  position: relative;
  text-align: left;
}

.hero-stat:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-25px;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:55px;
  background:#B2905F;
}
.hero-stat { text-align:right; }
.hero-stat-num {
  font-family: var(--H);
  font-size: 36px;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1;
}
.hero-stat-label {
  color: rgba(255,255,255,0.8) !important;
}
/*.hero-stat-label { font-size:9px; font-weight:500; letter-spacing:.22em; text-transform:uppercase; color:var(--ink3); margin-top:2px; }

/* ── MARQUEE ── */
.marquee-wrap { background:var(--ink); padding:14px 0; overflow:hidden; white-space:nowrap; }
.marquee-inner { display:inline-flex; animation:marquee 28s linear infinite; }
.marquee-item {
  font-family:var(--H); font-size:10px; font-weight:600;
  letter-spacing:.28em; text-transform:uppercase;
  color:rgba(248,245,240,.45); padding:0 36px;
}
.marquee-item b { color:var(--gold); }

/* ── HOME ABOUT STRIP ── */
.home-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 600px;          /* fixed section height */
  overflow: hidden;
}

.home-about-visual {
  position: relative;
  height: 600px;          /* same height */
  overflow: hidden;
}

.home-about-visual img {
  width: 100%;
  height: 100%;           /* not 70% */
  object-fit: cover;
  display: block;
}
.home-about-visual:hover img { transform:scale(1.04); }
.home-about-badge {
  position:absolute; bottom:32px; right:-1px;
  background:var(--white); padding:24px 28px; border-left:3px solid var(--gold);
}
.home-about-badge strong { font-family:var(--H); font-size:32px; font-weight:700; color:var(--ink); display:block; line-height:1; }
.home-about-badge span { font-size:10px; font-weight:500; letter-spacing:.18em; text-transform:uppercase; color:var(--ink3); margin-top:4px; display:block; }
.home-about-text { padding:80px 64px; display:flex; flex-direction:column; justify-content:center; background:var(--accent); }
.signature { font-family:var(--S); font-style:italic; font-size:26px; font-weight:300; color:var(--gold2); margin-top:28px; line-height:1.3; }

/* ── FEATURED WORK ── */
.featured-work { padding:100px 60px; }
.featured-head { text-align:center; margin-bottom:60px; }
.featured-head .sey { justify-content:center; }
.featured-head .sey::before { display:none; }
.work-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr 1.4fr; gap:6px; margin-bottom:6px; }
.work-row2 { display:grid; grid-template-columns:1fr 1fr 1fr; gap:6px; margin-bottom:40px; }
.work-cell { position:relative; overflow:hidden; cursor:pointer; }
.work-cell img { width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.25,.46,.45,.94); display:block; }
.work-cell:hover img { transform:scale(1.08); }
.work-cell-overlay {
  position:absolute; inset:0; background:rgba(44,40,37,0);
  transition:background .4s; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:8px;
}
.work-cell:hover .work-cell-overlay { background:rgba(44,40,37,.42); }
.work-cell-label {
  font-family:var(--H); font-size:12px; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase; color:var(--white);
  opacity:0; transform:translateY(10px); transition:all .4s .05s;
}
.work-cell-sub { font-family:var(--S); font-style:italic; font-size:16px; color:var(--gold3); opacity:0; transform:translateY(10px); transition:all .4s .1s; }
.work-cell:hover .work-cell-label,
.work-cell:hover .work-cell-sub { opacity:1; transform:translateY(0); }

/* ── SERVICES ICONS ── */
.services-strip { padding:100px 60px; background:var(--bg2); }
.services-strip-head { text-align:center; margin-bottom:64px; }
.services-strip-head .sey { justify-content:center; }
.services-strip-head .sey::before { display:none; }
.services-icons { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.svc-icon-card {
  text-align:center; padding:40px 24px; background:var(--white);
  transition:all .4s; cursor:pointer; border-bottom:3px solid transparent;
}
.svc-icon-card:hover { transform:translateY(-6px); box-shadow:0 16px 48px rgba(44,40,37,.08); border-bottom-color:var(--gold); }
.svc-icon { font-size:40px; margin-bottom:20px; line-height:1; }
.svc-name { font-family:var(--H); font-size:12px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--ink); margin-bottom:12px; }
.svc-desc { font-size:12px; font-weight:400; color:var(--subB); line-height:1.85; }

/* ── PARALLAX QUOTE ── */
.parallax-quote { position:relative; height:420px; display:flex; align-items:center; justify-content:center; text-align:center; overflow:hidden; }
.parallax-quote img { object-position: top; position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.parallax-quote-overlay { position:absolute; inset:0; background:rgba(44,40,37,.62); }
.parallax-quote-content { position:relative; z-index:2; padding:0 60px; max-width:860px; }
.big-quote { font-family:var(--H); font-size:100px; color:var(--gold); opacity:.25; line-height:.6; font-weight:700; margin-bottom:-12px; }
.quote-text { font-family:var(--S); font-style:italic; font-size:clamp(22px,3vw,36px); font-weight:300; color:var(--white); line-height:1.5; margin-bottom:24px; }
.quote-author { font-family:var(--H); font-size:10px; font-weight:600; letter-spacing:.28em; text-transform:uppercase; color:var(--gold); }

/* ── DUAL LAYOUT (Dark + Image) ── */
.dual-layout { display:grid; grid-template-columns:1fr 1fr; }
.dual-left { position:relative; overflow:hidden; min-height:520px; }
.dual-left img { width:100%; height:100%; object-fit:cover; transition:transform .8s ease; }
.dual-left:hover img { transform:scale(1.04); }
.dual-right { background:var(--ink); padding:80px 64px; display:flex; flex-direction:column; justify-content:center; }
.dual-right .sey { color:var(--gold); }
.dual-right .st  { color:var(--white); }
.dual-right .sb  { color:rgba(242,237,230,.65); }
.process-steps { margin-top:36px; display:flex; flex-direction:column; }
.step-item { display:grid; grid-template-columns:48px 1fr; gap:16px; padding:18px 0; border-bottom:1px solid rgba(200,169,126,.15); align-items:start; }
.step-item:last-child { border-bottom:none; }
.step-num { font-family:var(--H); font-size:22px; font-weight:700; color:var(--gold); opacity:.5; line-height:1; }
.step-title { font-family:var(--H); font-size:11px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--white); margin-bottom:4px; }
.step-desc { font-size:12px; font-weight:400; color:rgba(242,237,230,.5); line-height:1.8; }

/* ── TESTIMONIALS ── */
.testimonials { padding:100px 60px; background:var(--bg2); }
.testimonials-head { text-align:center; margin-bottom:60px; }
.testimonials-head .sey { justify-content:center; }
.testimonials-head .sey::before { display:none; }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testi-card { background:var(--white); padding:40px 32px; transition:transform .4s, box-shadow .4s; }
.testi-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(44,40,37,.07); }
.testi-stars { display:flex; gap:4px; margin-bottom:20px; }
.star { color:var(--gold); font-size:14px; }
.testi-text { font-family:var(--B); font-style:italic; font-size:20px; font-weight:500; color:var(--ink); line-height:1.7; margin-bottom:24px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:40px; height:40px; border-radius:50%; object-fit:cover; }
.testi-name { font-family:var(--H); font-size:13px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--ink); }
.testi-event { font-size:11px; font-weight:500; color:var(--gold2); margin-top:2px; }

/* ── INSTAGRAM GRID ── */
.insta-section { padding:100px 60px 0; }
.insta-head { text-align:center; margin-bottom:48px; }
.insta-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:4px; }
.insta-cell { aspect-ratio:1; overflow:hidden; position:relative; cursor:pointer; }
.insta-cell img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease, filter .6s ease; }
.insta-cell:hover img { transform:scale(1.08); filter:brightness(.72); }
.insta-cell-overlay { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .4s; font-size:28px; color:var(--white); }
.insta-cell:hover .insta-cell-overlay { opacity:1; }

/* ── STATS ROW ── */
.stats-row { display:grid; grid-template-columns:repeat(3,1fr); background:var(--ink); }
.stat-block { padding:64px 40px; text-align:center; border-right:1px solid rgba(200,169,126,.12); }
.stat-block:last-child { border-right:none; }
.stat-num { font-family:var(--H); font-size:48px; font-weight:700; color:var(--white); line-height:1; }
.stat-unit { font-family:var(--H); font-size:26px; font-weight:700; color:var(--gold); }
.stat-label { font-family:var(--H); font-size:10px; font-weight:700; letter-spacing:.26em; text-transform:uppercase; color:rgba(242,237,230,.35); margin-top:8px; }

/* ── CTA BANNER ── */
.cta-banner { position:relative; height:440px; display:flex; align-items:center; justify-content:center; text-align:center; overflow:hidden; }
.cta-banner img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform 8s ease; }
.cta-banner:hover img { transform:scale(1.04); }
.cta-banner-overlay { position:absolute; inset:0; background:rgba(44,40,37,.58); }
.cta-banner-content { position:relative; z-index:2; padding:0 60px; }
.cta-title { font-family:var(--H); font-size:clamp(32px,4.5vw,56px); font-weight:700; text-transform:uppercase; letter-spacing:.04em; color:var(--white); line-height:1.08; margin-bottom:8px; }
.cta-title em { font-family:var(--S); font-style:italic; font-weight:300; text-transform:none; color:var(--gold3); font-size:1.12em; }
.cta-sub { font-size:13px; font-weight:300; color:rgba(242,237,230,.65); letter-spacing:.08em; margin-bottom:36px; }

/* ── ABOUT PAGE ── */
.about-intro { display:grid; height: 600px; grid-template-columns:1fr 1fr; min-height:580px; }
.about-intro-text { padding:80px 64px; display:flex; flex-direction:column; justify-content:center; }
.about-intro-visual { position:relative; overflow:hidden; }
.about-intro-visual img { width:100%; height:100%; object-fit:cover; transition:transform .8s ease; }
.about-intro-visual:hover img { transform:scale(1.04); }
.about-intro-tag { position:absolute; top:40px; left:-1px; background:var(--gold); padding:12px 24px 12px 20px; }
.about-intro-tag span { font-family:var(--H); font-size:10px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--white); }
.about-values { display:grid; grid-template-columns:repeat(3,1fr); background:var(--ink); }
.about-value { padding:60px 48px; border-right:1px solid rgba(200,169,126,.12); }
.about-value:last-child { border-right:none; }
.value-icon { font-size:32px; margin-bottom:18px; color:var(--gold); }
.value-title { font-family:var(--H); font-size:15px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--white); margin-bottom:12px; }
.value-body { font-size:12px; font-weight:400; color:rgba(242,237,230,.5); line-height:1.9; }
.about-story { padding:100px 60px; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-story-imgs { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.about-story-imgs img:first-child { aspect-ratio:3/4; object-fit:cover; width:100%; margin-top:40px; }
.about-story-imgs img:last-child  { aspect-ratio:3/4; object-fit:cover; width:100%; margin-top:-40px; }
.about-milestones { padding:0 60px 80px; display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--bg3); }
.milestone { background:var(--white); padding:48px 36px; text-align:center; }
.milestone-year  { font-family:var(--H); font-size:13px; font-weight:700; letter-spacing:.2em; color:var(--gold); margin-bottom:10px; }
.milestone-title { font-family:var(--H); font-size:14px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--ink); margin-bottom:8px; }
.milestone-desc  { font-size:12px; font-weight:400; color:var(--subB); line-height:1.8; }
.about-awards { padding:80px 60px; background:var(--bg2); }
.awards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:44px; }
.award-item { padding:28px; border:1px solid var(--bg3); background:var(--white); transition:all .4s; }
.award-item:hover { border-color:var(--gold); transform:translateY(-3px); }
.award-icon  { font-size:26px; margin-bottom:10px; }
.award-title { font-family:var(--H); font-size:14px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--ink); margin-bottom:6px; }
.award-org   { font-size:11px; font-weight:400; color:var(--subB); line-height: 1.9; }
.award-year  { font-family:var(--H); font-size:10px; font-weight:600; letter-spacing:.2em; color:var(--ink3); margin-top:6px; }
.team-section { padding:100px 60px; background:var(--accent); }
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; margin-top:52px; }
.team-img-wrap { position:relative; overflow:hidden; aspect-ratio:3/4; }
.team-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .7s ease, filter .5s ease; }
.team-card:hover .team-img-wrap img { transform:scale(1.05); filter:brightness(.88); }
.team-img-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(44,40,37,.7) 0%,transparent 50%); opacity:0; transition:opacity .4s; }
.team-card:hover .team-img-overlay { opacity:1; }
.team-info { padding:18px 4px 0; }
.team-name { font-family:var(--H); font-size:15px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--ink); }
.team-role { font-family:var(--S); font-style:italic; font-size:15px; color:var(--gold2); margin:4px 0; }
.team-bio  { font-size:12px; font-weight:300; color:var(--ink3); line-height:1.85; margin-top:6px; }

/* ── PORTFOLIO PAGE ── */
.portfolio-filters { display:flex; justify-content:center; gap:0; margin:48px 0 56px; flex-wrap:wrap; }
.filter-btn {
  font-family:var(--H); font-size:10px; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
  padding:13px 26px; background:var(--white); border:1px solid var(--bg3); border-right:none;
  color:var(--ink3); cursor:pointer; transition:all .3s;
}
.filter-btn:last-child { border-right:1px solid var(--bg3); }
.filter-btn.active,
.filter-btn:hover { background:var(--ink); color:var(--white); border-color:var(--ink); }
.portfolio-masonry { padding:0 60px 80px; columns:3; column-gap:12px; }
.port-item { break-inside:avoid; margin-bottom:12px; position:relative; overflow:hidden; cursor:pointer; }
.port-item img { width:100%; display:block; transition:transform .7s ease; }
.port-item:hover img { transform:scale(1.06); }
.port-overlay { position:absolute; inset:0; background:rgba(44,40,37,0); transition:background .4s; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px; }
.port-item:hover .port-overlay { background:rgba(44,40,37,.4); }
.port-label { font-family:var(--H); font-size:11px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--white); opacity:0; transform:translateY(8px); transition:all .4s; }
.port-sub   { font-family:var(--S); font-style:italic; font-size:15px; color:var(--gold3); opacity:0; transform:translateY(8px); transition:all .4s .06s; }
.port-item:hover .port-label,
.port-item:hover .port-sub { opacity:1; transform:translateY(0); }

/* ── SERVICES PAGE ── */
.services-intro { display:grid; grid-template-columns:1fr 1fr; gap:80px; padding:80px 60px; align-items:center; }
.services-rows  { padding:0 60px 40px; }
.svc-row { display:grid; grid-template-columns:60px 1fr 1fr auto; gap:24px; align-items:start; padding:44px 0; border-top:1px solid var(--bg3); transition:all .3s; }
.svc-row:last-child { border-bottom:1px solid var(--bg3); }
.svc-row:hover { background:var(--accent); margin:0 -60px; padding:44px 60px; }
.svc-row-num  { font-family:var(--H); font-size:20px; font-weight:700; color:var(--gold); letter-spacing:.06em; }
.svc-row-name { font-family:var(--H); font-size:20px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--ink); margin-bottom:8px; }
.svc-row-desc { font-size:12px; font-weight:400; color:var(--ink3); line-height:1.9; max-width:320px; }
.svc-includes { list-style:none; }
.svc-includes li { font-size:14px; font-weight:300; color:var(--subB); padding:3px 0; letter-spacing:.03em; }
.svc-includes li::before { content:"— "; color:var(--gold); }
.price-from { font-size:9px; font-weight:600; letter-spacing:.22em; text-transform:uppercase; color:var(--ink3); margin-bottom:4px; }
.price-amt  { font-family:var(--H); font-size:28px; font-weight:700; color:var(--ink); letter-spacing:-.01em; }
.price-note { font-size:11px; font-weight:300; color:var(--ink3); margin-top:4px; }
.svc-cta-strip { background:var(--ink); padding:60px; display:grid; grid-template-columns:1fr auto; gap:40px; align-items:center; }
.svc-cta-text { font-family:var(--S); font-style:italic; font-size:24px; font-weight:300; color:var(--bg); line-height:1.4; max-width:540px; }

/* ── CONTACT PAGE ── */
.contact-split { display:grid; grid-template-columns:1fr 1fr; }
.contact-info-panel { background:var(--ink); padding:80px 60px; display:flex; flex-direction:column; justify-content:space-between; }
.contact-info-panel .st { color:var(--white); }
.contact-info-panel .sb { color:rgba(242,237,230,.55); }
.contact-info-items { margin-top:44px; display:flex; flex-direction:column; }
.contact-info-item  { padding:20px 0; border-top:1px solid rgba(200,169,126,.14); }
.contact-info-label { font-family:var(--H); font-size:10px; font-weight:600; letter-spacing:.26em; text-transform:uppercase; color:var(--gold); margin-bottom:6px; }
.contact-info-value { font-size:16px; font-weight:300; color:var(--bg2); }
.contact-form-panel { padding:80px 60px; display:flex; flex-direction:column; justify-content:center; }
.form-eyebrow { font-family:var(--H); font-size:10px; font-weight:600; letter-spacing:.28em; text-transform:uppercase; color:var(--gold); margin-bottom:28px; display:flex; align-items:center; gap:10px; }
.form-eyebrow::before { content:''; width:24px; height:1px; background:var(--gold); }
.form-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-group { display:flex; flex-direction:column; margin-bottom:22px; }
.form-group label { font-family:var(--H); font-size:11px; font-weight:600; letter-spacing:.24em; text-transform:uppercase; color:var(--ink3); margin-bottom:8px; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family:var(--B); font-size:13px; font-weight:300; color:var(--ink);
  background:transparent; border:none; border-bottom:1.5px solid var(--bg3);
  padding:10px 0; outline:none; transition:border-color .3s;
  -webkit-appearance:none; border-radius:0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color:var(--gold); }
.form-group textarea { resize:none; height:88px; }
.form-note { font-size:11px; font-weight:300; color:var(--ink3); margin-top:12px; letter-spacing:.04em; }

/* ── FOOTER ── */
footer { background:var(--ink2); padding:64px 60px 0; }
.footer-top { display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:48px; padding-bottom:48px; border-bottom:1px solid rgba(200,169,126,.12); }
.footer-brand-name { font-family:var(--H); font-size:18px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--white); margin-bottom:4px; }
.footer-brand-sub  { font-size:9px; font-weight:500; letter-spacing:.3em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
.footer-tagline { font-size:12px; font-weight:300; color:rgba(242,237,230,.4); line-height:1.85; max-width:240px; }
.footer-col h4 { font-family:var(--H); font-size:9px; font-weight:700; letter-spacing:.26em; text-transform:uppercase; color:rgba(242,237,230,.3); margin-bottom:20px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col a { font-size:13px; font-weight:300; color:rgba(242,237,230,.5); text-decoration:none; transition:color .3s; }
.footer-col a:hover { color:var(--gold); }
.footer-bottom { padding:20px 0; display:flex; justify-content:space-between; align-items:center; }
.footer-copy { font-size:11px; font-weight:300; color:rgba(242,237,230,.22); letter-spacing:.08em; }
.footer-socials { display:flex; gap:20px; }
.footer-socials a { font-family:var(--H); font-size:9px; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:rgba(242,237,230,.3); text-decoration:none; transition:color .3s; }
.footer-socials a:hover { color:var(--gold); }

/* ── RESPONSIVE ── */
@media(max-width:960px){
  nav { padding:0 24px; }
  .nav-links, .nav-book { display:none; }
  .hamburger { display:flex; }
  .home-hero h1 { font-size:42px; }
  @media (max-width: 768px) {

   .home-hero-content{
    width: 90%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .hero-sub {
    font-size: 12px;
    max-width: 100%;
  }

  .hero-actions{
    justify-content:center;
  }


  .hero-stats{
    justify-content:center;
    flex-wrap:wrap;
  }


  .hero-stat-num {
    font-size: 24px;
  }

  .hero-stat-label {
    font-size: 8px;
  }
}
   .hero-stat{
    text-align:center;
  }
  .home-about {
    grid-template-columns: 1fr;   /* 2 columns → 1 column */
    height: auto;
  }

  .home-about-visual {
    height: 350px;  
  }

  .home-about-text {
    padding: 40px 30px;
  }

  .home-about, .about-intro, .dual-layout, .about-story,
  .services-intro, .contact-split { grid-template-columns:1fr; }
  .work-grid  { grid-template-columns:1fr 1fr; }
  .work-row2  { grid-template-columns:1fr 1fr; }
  .insta-grid { grid-template-columns:repeat(3,1fr); }
  .stats-row  { grid-template-columns:1fr 1fr; }
  .services-icons { grid-template-columns:1fr 1fr; gap:16px; }
  .testi-grid, .team-grid, .awards-grid { grid-template-columns:1fr; }
  .about-values { grid-template-columns:1fr; }
  .about-milestones { grid-template-columns:1fr 1fr; padding:0 24px 60px; }
  .featured-work, .services-strip, .testimonials,
  .insta-section, .team-section, .about-story,
  .about-awards, .services-rows, .services-intro,
  .contact-form-panel, .contact-info-panel { padding-left:24px; padding-right:24px; }
  .svc-row { grid-template-columns:1fr; gap:14px; }
  .svc-row:hover { margin:0; padding:44px 0; }
  .svc-cta-strip { padding:40px 24px; grid-template-columns:1fr; }
  footer { padding:44px 24px 0; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .footer-bottom { flex-direction:column; gap:12px; }
  .page-hero { height:240px; }
  .page-hero-content { padding:28px 24px; }
  .portfolio-masonry { columns:2; padding:0 24px 60px; }
  .home-about-text { padding:48px 24px; }
  .parallax-quote img { object-position: left;}
}


/* ============================================================
   CRITICAL FIX — Ensure content always visible
   ============================================================ */

/* Make reveal elements visible by default as fallback */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible       { opacity: 1; transform: translateY(0) !important; }
.reveal-left.visible  { opacity: 1; transform: translateX(0) !important; }
.reveal-right.visible { opacity: 1; transform: translateX(0) !important; }

/* Hero animations always play — no JS needed */
.hero-tag,
.home-hero h1,
.hero-sub,
.hero-tagline,
.hero-actions,
.hero-stats { opacity: 1 !important; }

/* Images: always show even without local files */
img { background: var(--bg2); }

/* Prevent invisible text due to missing web fonts fallback */
* { font-display: swap; }
