/* =========================================================
   CK Photo — Production Frontend
   ========================================================= */

:root{
  --bg:#0b0d10;
  --bg-soft:#101317;
  --bg-elev:#15191f;
  --graphite:#1a1f26;
  --graphite-2:#20262e;
  --line:rgba(255,255,255,0.08);
  --line-strong:rgba(255,255,255,0.14);
  --text:#eef2f5;
  --muted:#a4adb7;
  --muted-2:#c1c8cf;
  --white:rgba(255,255,255,0.92);
  --shadow:0 28px 70px rgba(0,0,0,0.34);
  --shadow-2:0 40px 100px rgba(0,0,0,0.44);
  --radius-xl:34px;
  --radius-lg:26px;
  --radius-md:20px;
  --radius-sm:14px;
  --shell:min(100% - 40px, 1680px);
  --shell-narrow:min(100% - 40px, 980px);
  --header-h:92px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  font-family:'Inter',sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 18%),
    radial-gradient(circle at 90% 8%, rgba(255,255,255,0.035), transparent 15%),
    linear-gradient(180deg, #090b0e 0%, #0d1014 45%, #131820 100%);
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button,input,textarea,select{font:inherit}
body.menu-open{overflow:hidden}

.grain{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:1;
  opacity:.045;
  mix-blend-mode:soft-light;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.05' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.shell{
  width:var(--shell);
  margin:0 auto;
  position:relative;
  z-index:2;
}
.narrow{ width:var(--shell-narrow); }

.site-header{
  position: fixed !important;
  top: 12px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  transform: none !important;
  transition: none !important;
}

.header-shell{
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  border-radius: 18px;
  background: rgba(8,10,13,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transform: none !important;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease !important;
}

.site-header.scrolled .header-shell{
  background: rgba(8,10,13,0.88);
  border-color: rgba(255,255,255,0.08);
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.brand-mark{
  width:50px;
  height:50px;
  border-radius:17px;
  display:grid;
  place-items:center;
  flex-shrink:0;
  border:1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.14), transparent 42%),
    linear-gradient(145deg, #161b22, #0d1015);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.07), 0 10px 24px rgba(0,0,0,0.22);
}
.brand-mark svg{
  width:22px;
  height:22px;
  stroke:var(--text);
}
.brand-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.brand-copy strong{
  font-size:.98rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  white-space:nowrap;
}
.brand-copy em{
  font-style:normal;
  color:var(--muted);
  font-size:.74rem;
  letter-spacing:.13em;
  text-transform:uppercase;
  margin-top:2px;
  white-space:nowrap;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.site-nav a{
  padding:12px 14px;
  border-radius:999px;
  color:rgba(238,242,245,0.84);
  font-size:.94rem;
  transition:background .25s ease, color .25s ease, transform .25s ease;
}
.site-nav a:hover,
.site-nav a.active{
  background:rgba(255,255,255,0.05);
  color:var(--text);
  transform:translateY(-1px);
}
.site-nav .nav-cta{
  padding-inline:18px;
  border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.04);
}

.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:none;
  border-radius:16px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  color:var(--text);
  place-items:center;
  cursor:pointer;
  flex-shrink:0;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after{
  content:"";
  display:block;
  width:18px;
  height:2px;
  border-radius:99px;
  background:currentColor;
  transition:transform .28s ease, opacity .28s ease;
  position:relative;
}
.menu-toggle::before{transform:translateY(-6px)}
.menu-toggle::after{transform:translateY(6px)}
.menu-toggle.active span{opacity:0}
.menu-toggle.active::before{transform:rotate(45deg) translateY(1px)}
.menu-toggle.active::after{transform:rotate(-45deg) translateY(-1px)}

.hero-fullscreen{
  min-height:100svh;
  position:relative;
  display:grid;
  align-items:end;
  overflow:hidden;
}
.hero-media{ position:absolute; inset:0; }
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.95) contrast(1.03) brightness(.78);
  transform:scale(1.015);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(7,9,12,.34) 0%, rgba(7,9,12,.28) 25%, rgba(7,9,12,.56) 70%, rgba(7,9,12,.86) 100%),
    radial-gradient(circle at 20% 35%, rgba(255,255,255,.08), transparent 18%);
}
.hero-content{ padding:calc(var(--header-h) + 90px) 0 72px; }
.hero-inner{ max-width:840px; }

.hero-kicker,
.section-label{
  margin:0 0 16px;
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:rgba(238,242,245,0.72);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.78rem;
}
.hero-kicker::before,
.section-label::before{
  content:"";
  width:44px;
  height:1px;
  background:rgba(255,255,255,0.24);
}

.hero-inner h1,
.page-title{
  margin:0;
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(4rem, 8vw, 7.6rem);
  line-height:.9;
  letter-spacing:-.04em;
  font-weight:600;
  text-wrap:balance;
}
.hero-text,
.page-copy,
.section-copy{
  margin:22px 0 0;
  max-width:740px;
  color:var(--muted-2);
  font-size:1.06rem;
  line-height:1.9;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:32px;
}
.btn{
  min-height:58px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  letter-spacing:.01em;
  border:1px solid rgba(255,255,255,0.12);
  transition:transform .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,0.2);
}
.btn-solid{
  background:linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-ghost{
  background:rgba(255,255,255,0.03);
  color:rgba(238,242,245,0.94);
}
.hero-scroll{
  position:absolute;
  left:50%;
  bottom:26px;
  transform:translateX(-50%);
  width:42px;
  height:62px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(7,9,12,.22);
  display:grid;
  place-items:center;
  z-index:3;
}
.hero-scroll span{
  width:4px;
  height:12px;
  border-radius:99px;
  background:rgba(255,255,255,.82);
  animation:scrollDot 1.4s infinite;
}
@keyframes scrollDot{
  0%{transform:translateY(-6px);opacity:.1}
  40%{opacity:1}
  100%{transform:translateY(8px);opacity:.1}
}

.section{
  padding:58px 0;
  position:relative;
  z-index:2;
}
.home-intro{padding-top:80px}
.section-heading{
  margin:0;
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.8rem, 4.8vw, 4.8rem);
  line-height:.95;
  letter-spacing:-.04em;
  font-weight:600;
  text-wrap:balance;
}

.editorial-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr .85fr;
  gap:18px;
}
.editorial-card{
  position:relative;
  min-height:620px;
  overflow:hidden;
  border-radius:var(--radius-xl);
  border:1px solid var(--line);
  background:#12161c;
  box-shadow:var(--shadow);
}
.editorial-card img,
.feature-media img,
.portfolio-item img,
.service-card img,
.about-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.editorial-card::after,
.feature-media::after,
.portfolio-item::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:48%;
  background:linear-gradient(180deg, transparent, rgba(6,8,10,.84));
  pointer-events:none;
}
.editorial-card span,
.portfolio-item figcaption{
  position:absolute;
  left:20px;
  bottom:18px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(8,10,14,.58);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  font-size:.76rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(239,242,245,.92);
}
.editorial-large{min-height:740px}

.minimal-split{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:40px;
  align-items:start;
  padding:44px 0 10px;
  border-top:1px solid rgba(255,255,255,.08);
}
.minimal-links{
  display:grid;
  gap:16px;
}
.minimal-links a{
  padding:20px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  transition:transform .25s ease;
}
.minimal-links a:hover{transform:translateX(4px)}
.minimal-links strong{
  display:block;
  font-size:1.12rem;
  margin-bottom:5px;
}
.minimal-links span{
  color:var(--muted);
  max-width:460px;
  line-height:1.75;
}

.site-footer{
  position:relative;
  z-index:2;
  padding:18px 0 42px;
}
.footer-shell{
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:.92rem;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.page-main{ padding-top:140px; }
.page-hero{ padding:56px 0 28px; }
.page-title{ font-size:clamp(3.2rem, 6vw, 5.8rem); }

.portfolio-masonry{
  columns:3 320px;
  column-gap:18px;
}
.portfolio-item{
  position:relative;
  break-inside:avoid;
  margin:0 0 18px;
  overflow:hidden;
  border-radius:var(--radius-xl);
  border:1px solid var(--line);
  background:#12161c;
  box-shadow:var(--shadow);
}
.portfolio-item img{
  width:100%;
  height:auto;
  min-height:320px;
}
.portfolio-item.tall img{min-height:620px}
.portfolio-item.medium img{min-height:460px}
.portfolio-item.short img{min-height:320px}

.feature-block{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:stretch;
}
.feature-copy,
.service-card,
.contact-card,
.contact-form-wrap,
.about-copy,
.process-card,
.review-card,
.stat-strip{
  border-radius:var(--radius-xl);
  border:1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.045), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.018));
  box-shadow:var(--shadow);
}
.feature-copy{
  padding:38px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:640px;
}
.feature-copy .section-copy{max-width:100%}
.feature-notes{
  display:grid;
  gap:16px;
  margin-top:34px;
}
.feature-notes div,
.process-steps article,
.contact-points div,
.about-meta div{
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  line-height:1.8;
  color:rgba(239,242,245,.88);
}
.feature-notes strong,
.process-steps strong,
.about-meta strong{
  display:block;
  margin-bottom:4px;
}
.feature-media{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-xl);
  border:1px solid var(--line);
  min-height:640px;
  box-shadow:var(--shadow);
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}
.service-card{ overflow:hidden; }
.service-card img{ height:320px; }
.service-body{ padding:28px; }
.service-body h2,
.about-copy h2,
.feature-copy h2,
.contact-card h2{
  margin:0 0 14px;
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem, 3vw, 3.2rem);
  line-height:.95;
  letter-spacing:-.04em;
  font-weight:600;
}
.service-body p,
.about-copy p,
.contact-card p,
.review-card p{
  margin:0;
  color:var(--muted-2);
  line-height:1.85;
}
.service-meta{
  display:grid;
  gap:12px;
  margin-top:20px;
}
.service-meta div{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(239,242,245,.86);
  line-height:1.7;
}
.service-meta span:last-child{
  color:var(--muted);
  text-align:right;
}

.about-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:18px;
}
.about-image{
  min-height:820px;
  overflow:hidden;
  border-radius:var(--radius-xl);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.about-copy{
  padding:38px;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.about-meta{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px 24px;
  margin-top:8px;
}
.stat-strip{
  padding:22px 26px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}
.stat-strip strong{
  display:block;
  font-size:1.35rem;
  margin-bottom:6px;
}
.stat-strip span{
  color:var(--muted);
  line-height:1.7;
  font-size:.94rem;
}

.reviews-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
}
.review-main,
.review-stack{
  display:grid;
  gap:18px;
}
.review-card{ padding:28px; }
.review-card blockquote{
  margin:0;
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem, 3vw, 3.4rem);
  line-height:.98;
  letter-spacing:-.05em;
}
.review-card footer{
  margin-top:22px;
  color:var(--muted);
  line-height:1.7;
}
.review-card.small p{
  margin-bottom:16px;
  color:rgba(239,242,245,.88);
}
.review-card.small strong{
  display:block;
  margin-bottom:3px;
}

.process-steps{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}
.process-card{
  padding:26px;
  min-height:260px;
}
.step-no{
  display:inline-block;
  margin-bottom:22px;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:rgba(239,242,245,.54);
}

.contact-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:18px;
}
.contact-card{
  padding:38px;
  min-height:640px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.contact-points{
  display:grid;
  gap:14px;
  margin-top:24px;
}
.contact-points div{
  display:flex;
  justify-content:space-between;
  gap:12px;
}
.contact-points span:last-child{
  color:var(--muted);
  text-align:right;
}
.contact-form-wrap{ padding:20px; }
.contact-form{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}
.field,
.field-full{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.field-full{grid-column:1 / -1}
label{
  font-size:.8rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(239,242,245,.62);
}
input, select, textarea{
  width:100%;
  min-height:58px;
  padding:0 18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(11,13,17,.84);
  color:var(--text);
  outline:none;
  transition:border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
textarea{
  min-height:160px;
  resize:vertical;
  padding:18px;
}
input:focus, select:focus, textarea:focus{
  border-color:rgba(255,255,255,.18);
  box-shadow:0 0 0 4px rgba(255,255,255,.05);
  background:rgba(11,13,17,.96);
}
.note{
  margin:14px 0 0;
  color:var(--muted);
  line-height:1.75;
  font-size:.92rem;
}

.shutter-flash{
  position:fixed;
  inset:0;
  background:#fff;
  opacity:0;
  pointer-events:none;
  z-index:2000;
}
.shutter-flash.play{ animation:flashIn .9s ease forwards; }
@keyframes flashIn{
  0%{opacity:0}
  16%{opacity:.96}
  38%{opacity:.22}
  100%{opacity:0}
}
.shutter-blades{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:1999;
  opacity:0;
}
.shutter-blades.play{opacity:1}
.shutter-blades span{
  position:absolute;
  left:50%;
  top:50%;
  width:120vmax;
  height:120vmax;
  background:linear-gradient(180deg, rgba(5,6,8,.96), rgba(7,9,12,.98));
  transform-origin:0 0;
  clip-path:polygon(0 0, 100% 0, 52% 28%);
  animation:bladeOpen 1.05s cubic-bezier(.2,.8,.2,1) forwards;
}
.shutter-blades span:nth-child(1){transform:rotate(0deg)}
.shutter-blades span:nth-child(2){transform:rotate(60deg)}
.shutter-blades span:nth-child(3){transform:rotate(120deg)}
.shutter-blades span:nth-child(4){transform:rotate(180deg)}
.shutter-blades span:nth-child(5){transform:rotate(240deg)}
.shutter-blades span:nth-child(6){transform:rotate(300deg)}
@keyframes bladeOpen{
  0%{clip-path:polygon(0 0, 100% 0, 52% 68%)}
  60%{clip-path:polygon(0 0, 100% 0, 52% 18%)}
  100%{clip-path:polygon(0 0, 100% 0, 52% 2%)}
}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .8s ease, transform .8s ease;
  will-change:opacity, transform;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width: 1180px){
  .editorial-grid,
  .feature-block,
  .about-layout,
  .reviews-grid,
  .contact-layout,
  .minimal-split{
    grid-template-columns:1fr;
  }
  .services-grid{ grid-template-columns:1fr; }
  .process-steps{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .stat-strip{ grid-template-columns:1fr; }
}

@media (max-width: 960px){
  :root{
    --shell:min(100% - 22px, 1680px);
    --shell-narrow:min(100% - 22px, 980px);
  }
  .menu-toggle{display:grid}
  .site-nav{
    display:none;
    position:fixed;
    left:11px;
    right:11px;
    top:94px;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:14px;
    border-radius:24px;
    background:rgba(10,12,15,.96);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(16px);
    box-shadow:0 24px 60px rgba(0,0,0,.34);
  }
  .site-nav.open{display:flex}
  .site-nav a{text-align:center;width:100%}
  .contact-form,
  .about-meta{ grid-template-columns:1fr; }
  .editorial-grid{ grid-template-columns:1fr; }
  .editorial-card,
  .editorial-large{ min-height:420px; }
}

@media (max-width: 720px){
  :root{ --header-h:78px; }
  .site-header{ inset:10px 0 auto; }
  .header-shell{
    min-height:var(--header-h);
    padding:14px 16px;
    border-radius:22px;
  }
  .brand-copy em{display:none}
  .hero-content{ padding:calc(var(--header-h) + 76px) 0 72px; }
  .hero-inner h1,
  .page-title{
    font-size:clamp(3rem, 15vw, 4.6rem);
    line-height:.93;
  }
  .section-heading{
    font-size:clamp(2.3rem, 10vw, 3.6rem);
  }
  .section{ padding:34px 0; }
  .feature-copy,
  .service-body,
  .about-copy,
  .contact-card,
  .contact-form-wrap,
  .process-card,
  .review-card{
    padding:24px;
  }
  .process-steps{ grid-template-columns:1fr; }
  .portfolio-masonry{ columns:1 280px; }
}

/* =========================================================
   HOME ALIGN / TEXT RHYTHM FIX
   ========================================================= */

.hero-inner{
  max-width: 760px;
}

.hero-inner h1{
  max-width: 11ch;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero-text{
  max-width: 620px;
  font-size: 1.02rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.78);
}

.hero-actions{
  margin-top: 30px;
}

.home-intro{
  padding-top: 68px;
}

.home-intro .narrow{
  max-width: 900px;
}

.home-intro .section-label{
  margin-bottom: 14px;
}

.home-intro .section-heading{
  max-width: 12ch;
  line-height: 0.98;
  margin-bottom: 0;
}

.home-intro .section-copy{
  max-width: 760px;
  margin-top: 20px;
  font-size: 1.02rem;
  line-height: 1.85;
}

.editorial-grid{
  align-items: stretch;
}

.editorial-card{
  min-height: 640px;
}

.editorial-large{
  min-height: 640px;
}

.editorial-card span{
  left: 22px;
  bottom: 22px;
}

.minimal-split{
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  padding: 52px 0 8px;
  align-items: start;
}

.minimal-split > div:first-child{
  max-width: 620px;
}

.minimal-split .section-label{
  margin-bottom: 14px;
}

.minimal-split .section-heading{
  max-width: 11ch;
  line-height: 0.98;
}

.minimal-split .section-copy{
  max-width: 560px;
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.84;
}

.minimal-links{
  gap: 0;
}

.minimal-links a{
  padding: 22px 0;
  min-height: 116px;
  align-items: center;
}

.minimal-links a > div{
  width: 100%;
  max-width: 500px;
}

.minimal-links strong{
  margin-bottom: 6px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.minimal-links span{
  display: block;
  max-width: 100%;
  font-size: 0.98rem;
  line-height: 1.7;
}

.site-footer{
  padding: 28px 0 42px;
}

.footer-shell{
  padding-top: 24px;
}

.site-footer .shell[style]{
  padding-top: 16px !important;
  margin-top: 18px !important;
}

.site-footer .shell[style] div{
  line-height: 1.7;
}

/* =========================================================
   BETTER DESKTOP BALANCE
   ========================================================= */

@media (min-width: 1181px){
  .home-intro .narrow{
    margin-left: 0;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1180px){
  .hero-inner{
    max-width: 700px;
  }

  .hero-inner h1{
    max-width: 12ch;
  }

  .home-intro .section-heading,
  .minimal-split .section-heading{
    max-width: 13ch;
  }

  .minimal-split{
    gap: 34px;
    padding-top: 44px;
  }

  .minimal-links a{
    min-height: unset;
    padding: 20px 0;
    align-items: flex-start;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px){
  .hero-inner{
    max-width: 100%;
  }

  .hero-inner h1{
    max-width: 9ch;
    font-size: clamp(2.8rem, 13vw, 4.2rem);
    line-height: 0.96;
  }

  .hero-text{
    max-width: 100%;
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .home-intro{
    padding-top: 50px;
  }

  .home-intro .section-heading,
  .minimal-split .section-heading{
    max-width: 100%;
    line-height: 1.02;
  }

  .home-intro .section-copy,
  .minimal-split .section-copy{
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.78;
  }

  .editorial-card,
  .editorial-large{
    min-height: 390px;
  }

  .minimal-split{
    gap: 20px;
    padding-top: 34px;
  }

  .minimal-links a{
    padding: 18px 0;
  }

  .minimal-links strong{
    font-size: 1rem;
  }

  .minimal-links span{
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .site-footer{
    padding-top: 18px;
  }

  .footer-shell{
    justify-content: center;
    text-align: center;
  }

  .footer-links{
    justify-content: center;
  }
}

/* ================= NAVBAR FIX ================= */

.header-shell{
  min-height:72px;
  padding:12px 18px;
  border-radius:18px;

  background:rgba(8,10,13,0.75);
  backdrop-filter:blur(24px);

  border:1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.site-nav a{
  font-size:0.9rem;
  color:rgba(255,255,255,0.65);
  padding:10px 12px;
}

.site-nav a:hover{
  color:#fff;
  background:transparent;
}

.site-nav .nav-cta{
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  font-weight:600;
}

.site-nav .nav-cta:hover{
  background:rgba(255,255,255,0.12);
}

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

.hero-inner{
  max-width:680px;
}

.hero-inner h1{
  max-width:9ch;
  line-height:0.92;
  letter-spacing:-0.045em;
}

.hero-text{
  max-width:520px;
  font-size:0.98rem;
  line-height:1.7;
  color:rgba(255,255,255,0.7);
}

/* ================= GRID FIX ================= */

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

.editorial-card{
  height:520px;
  border-radius:24px;
  overflow:hidden;
}

.editorial-large{
  height:520px;
}

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

/* ================= SPLIT FIX ================= */

.minimal-split{
  grid-template-columns:1fr 1fr;
  gap:56px;
}

.minimal-split .section-heading{
  font-size:clamp(2.6rem,4vw,4rem);
  max-width:10ch;
  line-height:1;
}

.minimal-split .section-copy{
  max-width:480px;
  font-size:0.98rem;
}

.minimal-links a{
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.minimal-links strong{
  font-size:1rem;
}

.minimal-links span{
  font-size:0.92rem;
  color:rgba(255,255,255,0.6);
}

/* ================= EXTRA POLISH ================= */

.editorial-card:hover img{
  transform:scale(1.04);
  transition:transform .6s ease;
}

.home-intro .narrow{
  max-width: 980px;
  margin: 0 auto;
}

.home-intro .section-label,
.home-intro .section-heading,
.home-intro .section-copy{
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px){
  :root{ --header-h:78px; }

  .site-header{
    top: 8px !important;
    left: 0 !important;
    right: 0 !important;
    inset: auto !important;
  }

  .header-shell{
    min-height: var(--header-h);
    padding: 14px 16px;
    border-radius: 22px;
  }

  .brand-copy em{display:none}
  .hero-content{ padding:calc(var(--header-h) + 76px) 0 72px; }
  .hero-inner h1,
  .page-title{
    font-size:clamp(3rem, 15vw, 4.6rem);
    line-height:.93;
  }
  .section-heading{
    font-size:clamp(2.3rem, 10vw, 3.6rem);
  }
  .section{ padding:34px 0; }
  .feature-copy,
  .service-body,
  .about-copy,
  .contact-card,
  .contact-form-wrap,
  .process-card,
  .review-card{
    padding:24px;
  }
  .process-steps{ grid-template-columns:1fr; }
  .portfolio-masonry{ columns:1 280px; }
}

html body .site-header{
  position: fixed !important;
  top: 12px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  inset: auto !important;
  transform: none !important;
  translate: none !important;
  will-change: auto !important;
  z-index: 9999 !important;
}

html body .site-header.scrolled{
  position: fixed !important;
  top: 12px !important;
  transform: none !important;
}

html body .header-shell{
  transform: none !important;
}