:root {
  --bg-cream: #F5F3EE;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F5F3EE;
  --bg-card: #FAFAF8;
  --bg-dark: #1A2A1A;
  --accent: #1B4332;
  --accent-soft: #2D6A4F;
  --accent-deep: #1B4332;
  --gold: #C8A951;
  --gold-soft: #D4B76A;
  --text-primary: #0D0D0D;
  --text-heading: #1B4332;
  --text-body: #4A4A4A;
  --text-secondary: #7A7A7A;
  --silver: #CBCBCB;
  --white: #FFFFFF;
  --border: rgba(13,13,13,0.08);
  --border-strong: rgba(13,13,13,0.12);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{background:var(--bg-primary);color:var(--text-primary);font-family:'Jost',sans-serif;font-weight:300;overflow-x:hidden;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}

/* Performance: GPU-accelerate animated elements */
.hero-title-line span,
.hero-tagline,
.hero-recent,
.hero-img-secondary,
.svc-card::after,
.port-grid-img img{
  will-change:transform;
}



/* ── NAV ── */
nav{position:fixed;top:0;left:0;right:0;z-index:1000;padding:20px 64px;display:flex;align-items:center;justify-content:space-between;background:rgba(255,255,255,.75);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);transition:all .4s ease;}
nav.scrolled{background:rgba(255,255,255,.97);backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);padding:12px 64px;box-shadow:0 1px 0 var(--border);border-bottom:1px solid var(--border);}
.nav-brand{display:flex;align-items:center;gap:14px;text-decoration:none;}
.nav-logo{height:80px;width:auto;object-fit:contain;transition:height .3s ease;}
nav.scrolled .nav-logo{height:60px;}
.nav-wordmark{display:flex;flex-direction:column;line-height:1;}
.nav-name{font-family:'Cormorant Garamond',serif;font-size:24px;font-weight:600;color:var(--text-primary);letter-spacing:.04em;}
.nav-sub{font-size:10px;letter-spacing:.42em;color:var(--accent);text-transform:uppercase;margin-top:3px;}
.nav-links{display:flex;gap:40px;list-style:none;}
.nav-links a{color:var(--text-body);text-decoration:none;font-size:16px;letter-spacing:.06em;transition:color .3s;position:relative;font-weight:400;}
.nav-links a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--accent);transition:width .35s ease;}
.nav-links a:hover{color:var(--accent);}
.nav-links a:hover::after{width:100%;}
.nav-cta{font-size:15px;letter-spacing:.08em;color:var(--white);background:var(--accent);padding:14px 32px;text-decoration:none;position:relative;overflow:hidden;transition:all .4s ease;border-radius:2px;font-weight:400;}
.nav-cta:hover{background:var(--accent-soft);transform:translateY(-1px);box-shadow:0 6px 20px rgba(27,67,50,0.25);}

/* ── HERO ── */
.hero{
  min-height:100vh;
  position:relative;
  padding:100px 64px 80px;
  overflow:hidden;
  background:var(--bg-primary);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:48px;
  align-items:start;
  max-width:1400px;
  margin:0 auto;
  min-height:calc(100vh - 220px);
}
.hero-left{position:relative;}
.hero-img-main{width:58%;aspect-ratio:4/5;overflow:hidden;margin-left:auto;margin-right:0;position:relative;z-index:2;}
.hero-img-main img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s ease;}
.hero-img-main:hover img{transform:scale(1.03);}
.hero-title{font-family:'DM Serif Display','Cormorant Garamond',serif;font-size:clamp(72px,8.5vw,130px);font-weight:400;line-height:0.9;letter-spacing:-.03em;color:var(--text-primary);margin-top:-20px;position:relative;z-index:3;pointer-events:none;text-shadow: 2px 2px 0 var(--bg-primary), -2px -2px 0 var(--bg-primary), 2px -2px 0 var(--bg-primary), -2px 2px 0 var(--bg-primary), 0px 4px 20px rgba(255,255,255,0.6);}
.hero-title-line{display:block;overflow:hidden;padding-bottom:16px;margin-bottom:-16px;}
.hero-title-line span{display:inline-block;transform:translateY(110%);position:relative;}
.hero-title-line:last-child span::after{content:'';position:absolute;bottom:0;left:6px;width:120px;height:4px;background:var(--gold);border-radius:2px;}
.hero-tagline{font-family:'Cormorant Garamond',serif;font-size:clamp(20px,2vw,28px);font-style:italic;font-weight:500;color:var(--text-secondary);margin-top:24px;line-height:1.4;opacity:0;transform:translateY(20px);}
.hero-right{display:flex;flex-direction:column;gap:32px;padding-top:20px;}
.hero-recent{opacity:0;transform:translateY(20px);}
.hero-recent-label{font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:var(--text-secondary);margin-bottom:16px;font-weight:400;}
.hero-recent-heading{font-family:'Cormorant Garamond',serif;font-size:clamp(24px,2.5vw,34px);font-weight:500;line-height:1.2;color:var(--text-primary);margin-bottom:28px;max-width:380px;}
.hero-view-btn{display:inline-flex;align-items:center;gap:12px;padding:14px 32px;border:1.5px solid var(--text-primary);color:var(--text-primary);text-decoration:none;font-size:11px;letter-spacing:.18em;text-transform:uppercase;font-weight:400;transition:all .35s ease;}
.hero-view-btn:hover{background:var(--accent);color:var(--white);border-color:var(--accent);}
.hero-view-btn svg{transition:transform .3s ease;}
.hero-view-btn:hover svg{transform:translateX(4px);}
.hero-img-secondary{width:100%;aspect-ratio:4/3;overflow:hidden;opacity:0;transform:translateY(20px);}
.hero-img-secondary img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s ease;}
.hero-img-secondary:hover img{transform:scale(1.03);}

/* ── PARTNER BRANDS MARQUEE ── */
.brands-section{padding:48px 0;background:var(--bg-cream);border-top:1px solid var(--border);border-bottom:1px solid var(--border);overflow:hidden;}
.brands-label{text-align:center;font-size:13px;letter-spacing:.4em;text-transform:uppercase;color:var(--text-heading);margin-bottom:28px;font-weight:500;}
.brands-marquee{overflow:hidden;position:relative;}
.brands-marquee::before,.brands-marquee::after{content:'';position:absolute;top:0;bottom:0;width:80px;z-index:2;pointer-events:none;}
.brands-marquee::before{left:0;background:linear-gradient(to right,var(--bg-cream),transparent);}
.brands-marquee::after{right:0;background:linear-gradient(to left,var(--bg-cream),transparent);}
.brands-track{display:flex;gap:56px;animation:brandsScroll 30s linear infinite;width:max-content;align-items:center;}
.brand-item{display:flex;flex-direction:column;align-items:center;gap:10px;flex-shrink:0;}
.brand-item img{height:60px;width:auto;object-fit:contain;filter:grayscale(100%) opacity(0.7);transition:filter .3s ease;}
.brand-item:hover img{filter:grayscale(0%) opacity(1);}
.brand-item span{font-size:12px;letter-spacing:.1em;color:var(--text-body);text-transform:uppercase;white-space:nowrap;font-weight:400;}
@keyframes brandsScroll{to{transform:translateX(-50%);}}

/* ── SHARED ── */
.section-tag{font-size:10px;letter-spacing:.52em;color:var(--accent-soft);text-transform:uppercase;margin-bottom:18px;display:flex;align-items:center;gap:14px;}
.section-tag::before{content:'';width:28px;height:1px;background:var(--accent-soft);}
.section-h2{font-family:'Cormorant Garamond',serif;font-size:clamp(36px,4vw,60px);font-weight:300;line-height:1.08;color:var(--text-heading);}
.section-h2 em{color:var(--accent);font-style:italic;}
.body-text{color:var(--text-body);font-size:18px;line-height:1.8;}

/* ── ABOUT ── */
.about{
  padding:80px 64px;
  background:var(--bg-cream);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
  align-items:center;
}
.about-images{
  position:relative;
  min-height:520px;
}
.about-img-top{
  position:absolute;
  top:0;
  left:0;
  width:55%;
  aspect-ratio:3/4;
  overflow:hidden;
  border-radius:6px;
  box-shadow:var(--shadow-lg);
  z-index:2;
}
.about-img-top img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.about-img-top:hover img{transform:scale(1.04);}
.about-img-bottom{
  position:absolute;
  bottom:0;
  right:0;
  width:60%;
  aspect-ratio:4/3;
  overflow:hidden;
  border-radius:6px;
  box-shadow:var(--shadow-lg);
  z-index:1;
}
.about-img-bottom img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.about-img-bottom:hover img{transform:scale(1.04);}
.about-text{display:flex;flex-direction:column;gap:22px;}
.about-heading-wrap{display:flex;align-items:center;gap:16px;}
.about-accent-circle{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--gold);
  flex-shrink:0;
}
.about-h2{
  font-family:'DM Serif Display','Cormorant Garamond',serif;
  font-size:clamp(40px,4.5vw,60px);
  font-weight:400;
  color:var(--text-heading);
  line-height:1;
}
.about-quote{
  font-family:'Cormorant Garamond',serif;
  font-size:20px;
  font-style:italic;
  font-weight:500;
  color:var(--text-heading);
  line-height:1.5;
  padding:0;
  border:none;
  margin:8px 0;
}
.about-body{
  color:var(--text-body);
  font-size:18px;
  line-height:1.8;
}
.about-read-more{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:14px 32px;
  border:1.5px solid var(--text-primary);
  color:var(--text-primary);
  text-decoration:none;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:400;
  transition:all .35s ease;
  align-self:flex-start;
  margin-top:8px;
}
.about-read-more:hover{
  background:var(--accent);
  color:var(--white);
  border-color:var(--accent);
}
.about-read-more svg{transition:transform .3s ease;}
.about-read-more:hover svg{transform:translateX(4px);}
.stats-row{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;padding-top:36px;border-top:1px solid var(--border-strong);margin-top:16px;}
.stat-n{font-family:'DM Serif Display','Cormorant Garamond',serif;font-size:48px;font-weight:400;color:var(--accent);line-height:1;}
.stat-l{font-size:9.5px;letter-spacing:.26em;color:var(--text-secondary);text-transform:uppercase;margin-top:5px;}

/* ── SERVICES ── */
.services{padding:144px 64px;background:var(--bg-dark);position:relative;overflow:hidden;}
.services .section-tag{color:var(--gold-soft);}
.services .section-tag::before{background:var(--gold-soft);}
.services .section-h2{color:var(--white);}
.services .section-h2 em{color:var(--gold-soft);}
.services .body-text{color:rgba(255,255,255,.5);}
.services-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:72px;position:relative;z-index:2;}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.07);position:relative;z-index:2;}
.svc-card{
  background:var(--bg-dark);
  padding:52px 40px;
  position:relative;
  overflow:hidden;
  transition:background .4s ease;
  border:none;
}
.svc-card::after{
  content:'';
  position:absolute;
  bottom:0;left:0;
  width:0;height:2px;
  background:var(--gold);
  transition:width .5s cubic-bezier(0.2,0.8,0.2,1);
}
.svc-card:hover{background:rgba(255,255,255,.03);}
.svc-card:hover::after{width:100%;}
.svc-n{font-family:'Cormorant Garamond',serif;font-size:11px;font-weight:400;color:var(--gold-soft);letter-spacing:.32em;line-height:1;margin-bottom:40px;position:relative;z-index:2;}
.svc-ico{width:36px;height:36px;margin-bottom:24px;transition:transform .4s ease;position:relative;z-index:2;}
.svc-card .svc-ico{stroke:rgba(255,255,255,.35) !important;}
.svc-card:hover .svc-ico{transform:translateY(-4px);stroke:var(--gold-soft) !important;}
.svc-h{font-family:'Cormorant Garamond',serif;font-size:23px;font-weight:400;margin-bottom:16px;color:var(--white);transition:color .3s;position:relative;z-index:2;}
.svc-card:hover .svc-h{color:var(--gold-soft);}
.svc-p{color:rgba(255, 255, 255, 0.55);font-size:16px;line-height:1.7;margin-bottom:36px;position:relative;z-index:2;}
.svc-link{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,.4);text-decoration:none;font-size:10px;letter-spacing:.26em;text-transform:uppercase;transition:color .3s;position:relative;z-index:2;}
.svc-link:hover{color:var(--gold-soft);}
.svc-link svg{transition:transform .3s;}
.svc-link:hover svg{transform:translateX(4px);}

/* ── PORTFOLIO (Magazine Update) ── */
.portfolio{
  padding:120px 64px;
  background:var(--bg-primary);
}
.port-head-center{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:56px;
  border-bottom:1px solid var(--border);
  padding-bottom:28px;
}
.port-title{
  font-family:'DM Serif Display','Cormorant Garamond',serif;
  font-size:clamp(32px,3.5vw,48px);
  font-weight:400;
  color:var(--text-heading);
  margin-bottom:0;
}
.port-subtitle{
  font-size:13px;
  color:var(--text-secondary);
  letter-spacing:.12em;
  text-transform:uppercase;
  align-self:flex-end;
  padding-bottom:4px;
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.port-grid-item {
  cursor: pointer;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transform: translateZ(0); 
}

.port-item-inner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5; 
}

.port-grid-img {
  width: 100%;
  height: 100%;
}

.port-grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), filter 0.8s ease; 
  filter: brightness(0.9);
}

.port-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  opacity: 0.7;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.port-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  transform: translateY(24px);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.port-item-cat {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.port-grid-name {
  font-family: 'DM Serif Display', 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.port-item-arrow {
  position: absolute;
  right: 32px;
  bottom: 40px;
  color: var(--gold-soft);
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── PORTFOLIO HOVER STATES ── */
.port-grid-item:hover .port-grid-img img {
  transform: scale(1.08);
  filter: brightness(1);
}
.port-grid-item:hover .port-item-overlay {
  opacity: 0.95;
}
.port-grid-item:hover .port-item-content {
  transform: translateY(0);
}
.port-grid-item:hover .port-item-cat {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.port-grid-item:hover .port-item-arrow {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.15s;
}

.port-cta{
  text-align:center;
  margin-top:52px;
}
.view-all-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:14px 36px;
  border:1.5px solid var(--text-primary);
  color:var(--text-primary);
  text-decoration:none;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:400;
  transition:all .35s ease;
}
.view-all-btn:hover{
  background:var(--accent);
  color:var(--white);
  border-color:var(--accent);
}
.view-all-btn svg{transition:transform .3s ease;}
.view-all-btn:hover svg{transform:translateX(4px);}

/* ── PROCESS ── */
.process{padding:144px 64px;background:var(--bg-primary);}
.process-head{text-align:center;max-width:580px;margin:0 auto 88px;}
.process-head .section-tag{justify-content:center;}
.process-head .section-tag::before{display:none;}
.process-steps{display:grid;grid-template-columns:repeat(4,1fr);position:relative;}
.process-line{position:absolute;top:27px;left:12%;right:12%;height:1px;background:linear-gradient(to right,transparent,var(--accent-soft),transparent);opacity:.35;}
.process-line-fill{position:absolute;top:0;left:0;height:100%;width:0%;background:linear-gradient(to right,var(--gold),var(--accent-soft),var(--accent));}

.proc-step {
  padding: 0 28px;
  text-align: center;
  opacity: 0.3; 
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 2;
}

.proc-step.active {
  opacity: 1;
  transform: translateY(0);
}

.proc-dot {
  width: 54px;
  height: 54px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  background: var(--bg-primary);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.proc-dot svg {
  width: 22px;
  height: 22px;
  stroke: var(--text-secondary); 
  fill: none;
  transition: stroke 0.5s ease;
}

.proc-step.active .proc-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 8px rgba(27, 67, 50, 0.08); 
  transform: scale(1.15);
}

.proc-step.active .proc-dot svg {
  stroke: var(--white);
}

.proc-num {
  font-size: 10px;
  letter-spacing: .32em;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color 0.4s ease;
}

.proc-step.active .proc-num {
  color: var(--gold);
  font-weight: 500;
}

.proc-h{font-family:'Cormorant Garamond',serif;font-size:22px;margin-bottom:12px;color:var(--text-heading);}
.proc-p{font-size:16px;line-height:1.7;color:var(--text-body);}

/* ── TESTIMONIALS ── */
.testimonials{
  padding:120px 64px;
  background:var(--bg-cream);
}
.test-head-new{
  text-align:center;
  margin-bottom:56px;
}
.test-head-new .section-tag{
  color:var(--accent-soft);
  justify-content:center;
}
.test-head-new .section-tag::before{display:none;}
.test-title{
  font-family:'DM Serif Display','Cormorant Garamond',serif;
  font-size:clamp(32px,4vw,52px);
  font-weight:400;
  color:var(--text-heading);
  line-height:1.1;
}
.test-carousel{
  position:relative;
  max-width:1200px;
  margin:0 auto;
  overflow:hidden;
}
.test-page{
  display:none;
  opacity:0;
  transform:translateX(30px);
  transition:opacity .5s ease, transform .5s ease;
  position:absolute;
  width:100%;
}
.test-page.active{
  display:grid;
  opacity:1;
  transform:translateX(0);
  position:relative;
}
.test-page.exit-left{
  display:grid;
  opacity:0;
  transform:translateX(-30px);
  position:absolute;
}
.test-page.exit-right{
  display:grid;
  opacity:0;
  transform:translateX(30px);
  position:absolute;
}
.test-cards{
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.test-card{
  background:var(--white);
  border-radius:10px;
  padding:48px 36px 40px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:320px;
  box-shadow:0 2px 16px rgba(0,0,0,0.03);
  transition:box-shadow .4s ease, transform .4s ease;
}
.test-card:hover{
  box-shadow:0 12px 40px rgba(0,0,0,0.07);
  transform:translateY(-4px);
}
.test-card-quote{
  font-size:17px;
  line-height:1.8;
  color:var(--text-body);
  margin-bottom:32px;
}
.test-card-author{display:flex;flex-direction:column;}
.test-card-name{
  font-family:'DM Serif Display','Cormorant Garamond',serif;
  font-size:22px;
  font-weight:400;
  color:var(--text-heading);
  margin-bottom:4px;
}
.test-card-role{
  font-size:12px;
  letter-spacing:.12em;
  color:var(--accent-soft);
}
.test-dots-row{
  display:flex;
  gap:10px;
  justify-content:center;
  align-items:center;
  margin-top:48px;
}
.test-arrow{
  background:transparent;
  border:1.5px solid var(--border-strong);
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:var(--text-body);
  transition:all .3s ease;
}
.test-arrow:hover{
  border-color:var(--accent);
  color:var(--accent);
  background:rgba(27,67,50,0.05);
}
.test-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--border-strong);
  cursor:pointer;
  transition:all .3s ease;
}
.test-dot.active{
  background:var(--accent);
}

/* ── CONTACT ── */
.contact{padding:144px 64px;background:var(--bg-dark);display:grid;grid-template-columns:1fr 1fr;gap:100px;color:var(--white);}
.contact .section-tag{color:var(--gold-soft);}
.contact .section-tag::before{background:var(--gold-soft);}
.contact .section-h2{color:var(--white);}
.contact .section-h2 em{color:var(--gold-soft);}
.contact .body-text{color:rgba(255,255,255,.55);}
.c-info{display:flex;flex-direction:column;}
.c-info .section-h2{margin-bottom:26px;}
.c-info .body-text{margin-bottom:52px;}
.ci-item{margin-bottom:36px;}
.ci-label{font-size:9.5px;letter-spacing:.38em;color:var(--gold-soft);text-transform:uppercase;margin-bottom:7px;}
.ci-val{font-family:'Cormorant Garamond',serif;font-size:20px;color:var(--white);}
.c-social{display:flex;gap:18px;margin-top:44px;}
.s-link{width:52px;height:52px;border:1.5px solid rgba(255,255,255,.2);border-radius:50%;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.7);text-decoration:none;transition:all .35s ease;}
.s-link:hover{border-color:var(--gold-soft);color:var(--gold-soft);background:rgba(200,169,81,0.1);transform:translateY(-3px);box-shadow:0 6px 20px rgba(200,169,81,0.15);}
.s-link svg{width:22px;height:22px;}
.c-form .fg{margin-bottom:26px;}
.c-form .fg label{display:block;font-size:9.5px;letter-spacing:.32em;color:rgba(255,255,255,.45);text-transform:uppercase;margin-bottom:10px;}
.c-form .fg input,.c-form .fg textarea,.c-form .fg select{width:100%;background:transparent;border:none;border-bottom:1px solid rgba(255,255,255,.15);padding:11px 0;color:var(--white);font-family:'Jost',sans-serif;font-size:14.5px;font-weight:300;outline:none;transition:border-color .3s;-webkit-appearance:none;appearance:none;}
.c-form .fg select option{background:var(--bg-dark);}
.c-form .fg input:focus,.c-form .fg textarea:focus,.c-form .fg select:focus{border-color:var(--gold-soft);}
.c-form .fg textarea{height:120px;resize:vertical;}
.btn-submit{width:100%;background:var(--gold);color:var(--bg-dark);padding:18px;border:none;font-family:'Jost',sans-serif;font-size:11px;letter-spacing:.32em;text-transform:uppercase;font-weight:600;cursor:pointer;transition:all .3s ease;margin-top:12px;border-radius:2px;}
.btn-submit:hover{background:var(--gold-soft);transform:translateY(-2px);box-shadow:0 8px 30px rgba(200,169,81,.3);}

/* ── FOOTER ── */
/* ── FOOTER ── */
footer {
  padding: 56px 64px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--bg-cream);
}
.foot-brand {
  font-family: 'DM Serif Display', 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--text-heading);
}
.foot-tag {
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: .18em;
  margin-top: 6px;
}
.foot-right {
  font-size: 11.5px;
  color: var(--text-secondary);
  text-align: right;
  line-height: 1.9;
}
.foot-right a {
  color: var(--accent);
  text-decoration: none;
  transition: color .3s;
}
.foot-right a:hover {
  color: var(--accent-deep);
}

/* ── REVEAL ── */
.reveal{opacity:0;transform:translateY(36px);transition:opacity .7s ease,transform .7s ease;}
.reveal.vis{opacity:1;transform:translateY(0);}
.d1{transition-delay:.1s;}.d2{transition-delay:.2s;}.d3{transition-delay:.3s;}.d4{transition-delay:.4s;}

/* ── SMOOTH BTN ── */
.btn-primary{background:var(--accent);color:var(--white);padding:16px 48px;text-decoration:none;font-size:10.5px;letter-spacing:.32em;text-transform:uppercase;font-weight:500;transition:all .35s ease;}
.btn-primary span{position:relative;z-index:1;}
.btn-primary:hover{background:var(--accent-soft);box-shadow:0 6px 24px rgba(27,67,50,.2);transform:translateY(-2px);}

/* ── MOBILE MENU STYLES (DARK LUXURY THEME) ── */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-heading);
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 42, 26, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-close-btn {
  position: absolute;
  top: 32px;
  right: 32px;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: transform 0.3s;
}

.mobile-close-btn:hover {
  transform: scale(1.1) rotate(90deg);
  color: var(--gold-soft);
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.mobile-nav-list a {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-nav-list a:hover {
  color: var(--gold-soft);
}

.mobile-nav-cta {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Jost', sans-serif !important;
  font-size: 14px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold) !important;
  color: var(--bg-dark) !important;
  padding: 14px 32px;
  border-radius: 2px;
  font-weight: 500;
}

/* ── RESPONSIVE LAYOUT FIXES ── */
@media(max-width: 1024px) {
  nav { padding: 20px 32px; }
  nav.scrolled { padding: 14px 32px; }
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn { display: block; }

  .hero { padding: 120px 32px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-left, .hero-right { padding-top: 0; }
  .hero-title { font-size: clamp(56px, 12vw, 90px); margin-top: -30px; }
  .hero-img-main { width: 85%; margin: 0 auto; }

  .about { padding: 96px 32px; grid-template-columns: 1fr; gap: 60px; }
  .services, .portfolio, .process, .testimonials, .contact { padding: 96px 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .port-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-line { display: none; }
  .test-cards { grid-template-columns: 1fr; gap: 24px; }
  .contact { grid-template-columns: 1fr; gap: 60px; }
  footer { padding: 40px 32px; }
}

@media(max-width: 768px) {
  .hero-grid { display: flex; flex-direction: column; }
  .hero-title { margin-top: 0; font-size: clamp(48px, 14vw, 72px); text-align: center; }
  .hero-tagline { text-align: center; }
  .hero-img-main { width: 100%; aspect-ratio: 4/3; margin: 32px 0; }
  .hero-recent { text-align: center; display: flex; flex-direction: column; align-items: center; }

  .c-form .fg input,
  .c-form .fg textarea,
  .c-form .fg select { font-size: 16px; }

  .port-item-overlay { opacity: 0.85; }
  .port-item-content { transform: translateY(0); }
  .port-item-cat { opacity: 1; transform: translateY(0); }
  .port-item-arrow { opacity: 1; transform: translateX(0); }

  /* Fix Services & Portfolio Headers Crashing */
  .services-head, .port-head-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .services-head .body-text {
    max-width: 100% !important;
  }
  .port-subtitle {
    align-self: center;
    text-align: center;
    padding-bottom: 0;
  }

  /* Fix the Squished Navbar */
  nav {
    padding: 12px 16px;
    overflow: hidden;
    max-width: 100vw;
  }
  nav.scrolled {
    padding: 10px 16px;
  }
  .nav-brand {
    gap: 8px;
    min-width: 0;
    flex: 1;
    overflow: hidden;
  }
  .nav-logo {
    height: 40px;
    flex-shrink: 0;
  }
  .nav-wordmark {
    min-width: 0;
    overflow: hidden;
  }
  .nav-name {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-sub {
    letter-spacing: 0.15em;
    font-size: 7.5px;
  }
  .mobile-menu-btn {
    flex-shrink: 0;
    margin-left: 8px;
  }

  /* 1. About Images: Side-by-Side (50/50 split) */
  .about-images {
    min-height: auto;
    display: flex;
    flex-direction: row;
    gap: 16px;
  }
  .about-img-top, .about-img-bottom {
    position: relative;
    width: 50%;
    aspect-ratio: 4/5;
  }

  /* 2. Two-column compact grid for mobile */
  .services-grid,
  .port-grid,
  .process-steps {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .test-page.active {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* 3. Size the Cards to fit within the grid */
  .svc-card,
  .port-grid-item,
  .proc-step,
  .test-card {
    width: 100%;
    min-width: 0;
  }

  .svc-card {
    padding: 20px 16px;
  }
  .svc-h { font-size: 16px; }
  .svc-p { font-size: 13px; margin-bottom: 16px; }
  .svc-ico { width: 28px; height: 28px; margin-bottom: 12px; }
  .svc-n { margin-bottom: 20px; }

  .port-item-inner { aspect-ratio: 3/4; }
  .port-grid-name { font-size: 16px; }
  .port-item-content { padding: 20px 16px; }
  .port-item-arrow { right: 16px; bottom: 20px; }

  .proc-step { padding: 16px; text-align: left; }
  .proc-dot { width: 40px; height: 40px; margin: 0 0 12px 0; }
  .proc-dot svg { width: 16px; height: 16px; }
  .proc-h { font-size: 16px; margin-bottom: 8px; }
  .proc-p { font-size: 13px; }

  .test-card { padding: 20px 16px; min-height: auto; }
  .test-card-quote { font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
  .test-card-name { font-size: 16px; }
  .test-card-role { font-size: 10px; }

  /* Fix Process step internal alignment for the swipe view */
  .proc-step {
    padding: 24px;
    background: var(--bg-cream);
    border-radius: 8px;
    text-align: left;
  }
  .proc-dot {
    margin: 0 0 20px 0;
  }

  /* Stats row - 2 columns instead of 1 */
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: left;
  }

  .about-read-more { align-self: center; }
  .about-quote { text-align: center; }
}

@media(max-width: 480px) {
  .hero, .about, .services, .portfolio, .process, .testimonials, .contact { padding: 80px 24px; }
  .about-h2 { font-size: 40px; text-align: center; }
  .about-heading-wrap { justify-content: center; }
  .section-h2, .test-title, .port-title { font-size: 36px; text-align: center; }
  .section-tag { justify-content: center; }
  .section-tag::before { display: none; }
  .body-text, .about-body { text-align: center; }
  footer { flex-direction: column; text-align: center; justify-content: center; }
  .foot-right { text-align: center; margin-top: 24px; }
}

/* ── GALLERY SHOWCASE PAGE ── */
.gallery-page-container {
  padding: 120px 24px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-header-section {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-page-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(40px, 6vw, 64px);
  color: var(--text-heading);
  line-height: 1.1;
  margin-bottom: 16px;
}

.gallery-page-subtitle {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}

.gallery-filters-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.gallery-filter-btn {
  background: transparent;
  border: 1px solid var(--border-strong);
  padding: 10px 24px;
  border-radius: 40px;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.showcase-masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
  align-items: stretch;
}

.showcase-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: transform, opacity;
  box-shadow: var(--shadow-sm);
}

.showcase-item img,
.showcase-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-item:hover img,
.showcase-item:hover video {
  transform: scale(1.05);
}

.showcase-item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.showcase-item:hover .showcase-item-overlay {
  opacity: 1;
}

.showcase-item-category {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-play-hint {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.2);
  transition: opacity 0.3s ease;
}

.showcase-item:hover .video-play-hint {
  opacity: 0;
}

@media (max-width: 768px) {
  .showcase-masonry-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(180px, auto);
    gap: 10px;
  }
}

/* ── LIGHTBOX MODAL (GALLERY) ── */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 32px;
  right: 40px;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  z-index: 10;
  transition: transform 0.3s ease, color 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.1);
  color: var(--gold-soft);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  background: var(--bg-primary);
}

.lightbox-caption {
  margin-top: 24px;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.2s;
}

.lightbox-modal.active .lightbox-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── PRINT STYLES ── */
.print-banner {
  display: none;
}

@media print {
  .print-banner {
    display: block;
    text-align: center;
    padding: 20px;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
  }
  .print-banner p {
    margin: 4px 0;
    font-size: 14px;
    color: #1B4332;
  }
  .print-banner a {
    color: #1B4332;
    text-decoration: underline;
  }

  /* Hide elements not needed in PDF */
  nav,
  .mobile-menu-overlay,
  .mobile-menu-btn,
  .nav-cta,
  .btn-submit,
  .c-form,
  .marquee-bar,
  footer .foot-right a {
    display: none !important;
  }

  /* Ensure images print */
  img, video {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  /* Remove animations */
  * {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  section {
    page-break-inside: avoid;
  }
}