/* Kitchen Konnections landing converted from layout/index.html. */
/* ─────────────────────────────────────────
   TOKENS — Marfa-inspired neutral palette
───────────────────────────────────────── */
:root{
  --white:#FFFFFF;
  --bg:#F7F5F1;
  --off:#EFECE5;
  --ink:#1A1A1A;
  --text:#2B2B2B;
  --mid:#6E6A62;
  --soft:#9A958B;
  --rule:rgba(26,26,26,.09);
  --rule-strong:rgba(26,26,26,.18);
  --accent:#3D5A47;
  --accent-dark:#2A4032;
  --serif:'Cormorant Garamond',Georgia,serif;
  --mono:'DM Mono',monospace;
  --body:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  --ease:cubic-bezier(.22,1,.36,1);
  --dur:.65s;
  --max:1440px;
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;font-size:16px;scroll-padding-top:88px;}
body{background:var(--white);color:var(--text);font-family:var(--body);font-weight:400;line-height:1.6;overflow-x:hidden;-webkit-font-smoothing:antialiased;}
img{display:block;max-width:100%;height:auto;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit;}

/* ─────────────────────────────────────────
   UTILITY
───────────────────────────────────────── */
.eyebrow{font-family:var(--mono);font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:var(--mid);}
.h-display{font-family:var(--serif);font-weight:300;line-height:1.05;letter-spacing:-.01em;color:var(--ink);}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--body);font-size:13px;font-weight:500;letter-spacing:.04em;
  padding:16px 32px;border-radius:2px;
  transition:all .3s var(--ease);
  white-space:nowrap;
}
.btn svg{width:14px;height:14px;flex-shrink:0;transition:transform .3s var(--ease);}
.btn:hover svg{transform:translateX(4px);}
.btn-dark{background:var(--ink);color:var(--white);}
.btn-dark:hover{background:var(--accent);}
.btn-light{background:var(--white);color:var(--ink);}
.btn-light:hover{background:var(--bg);}
.btn-outline-light{background:transparent;color:var(--white);border:1px solid rgba(255,255,255,.7);}
.btn-outline-light:hover{background:var(--white);color:var(--ink);}
.btn-outline{background:transparent;color:var(--ink);border:1px solid var(--rule-strong);}
.btn-outline:hover{border-color:var(--ink);background:var(--ink);color:var(--white);}
.btn-accent{background:var(--accent);color:#fff;}
.btn-accent:hover{background:var(--accent-dark);}

.container{max-width:var(--max);margin:0 auto;padding:0 48px;}
.section{padding:120px 0;}
.section-sm{padding:80px 0;}

/* ─────────────────────────────────────────
   MENU TRIGGER (hamburger pill)
───────────────────────────────────────── */
.menu-trigger{
  display:inline-flex;align-items:center;gap:10px;
  height:44px;padding:0 20px;
  border-radius:999px;
  font-family:var(--body);font-size:12px;font-weight:500;letter-spacing:.08em;
  text-transform:uppercase;
  transition:background .3s var(--ease),color .3s var(--ease),border-color .3s var(--ease);
  border:1px solid transparent;
}
.menu-trigger__icon{
  display:flex;flex-direction:column;gap:4px;
  width:16px;
}
.menu-trigger__icon span{
  display:block;height:1.5px;background:currentColor;width:100%;
  transition:transform .3s var(--ease);
}
.menu-trigger__icon span:nth-child(2){width:70%;}

/* ─────────────────────────────────────────
   MENU OVERLAY — contained panel (Marfa style)
───────────────────────────────────────── */
.menu-overlay{
  position:fixed;inset:0;z-index:9000;
  background:rgba(18,16,12,.55);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  display:flex;align-items:stretch;justify-content:center;
  padding:14px;
  opacity:0;pointer-events:none;
  transition:opacity .4s var(--ease);
}
.menu-overlay.is-open{opacity:1;pointer-events:auto;}
body.menu-open{overflow:hidden;}

.menu-panel{
  width:100%;
  max-width:1640px;
  background:#FBFAF7;
  display:grid;
  grid-template-columns:1.2fr 1.5fr 1fr;
  position:relative;
  border-radius:4px;
  overflow:hidden;
  transform:translateY(16px) scale(.99);
  transition:transform .55s var(--ease);
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}
.menu-overlay.is-open .menu-panel{transform:translateY(0) scale(1);}

.menu-overlay__close{
  position:absolute;top:28px;left:36px;
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  background:transparent;
  z-index:10;
  transition:transform .3s;
}
.menu-overlay__close:hover{transform:rotate(90deg);}
.menu-overlay__close svg{width:22px;height:22px;stroke:var(--ink);stroke-width:1.5;}

/* ── LEFT: links list */
.menu-list{
  padding:120px 48px 48px 48px;
  overflow-y:auto;
  display:flex;flex-direction:column;gap:0;
  border-right:1px solid var(--rule);
}
.menu-list__item{
  border-bottom:1px solid var(--rule);
}
.menu-list__item:first-child{border-top:1px solid var(--rule);}
.menu-list__item a{
  display:flex;align-items:center;justify-content:space-between;
  padding:22px 4px;
  font-family:var(--body);
  font-size:clamp(22px,2vw,30px);
  font-weight:600;letter-spacing:-.01em;
  color:var(--ink);
  transition:color .25s,padding .35s var(--ease);
}
.menu-list__item a:hover{color:var(--accent);padding-left:18px;}
.menu-list__item .chev{
  font-family:var(--serif);font-size:1.2em;font-weight:300;
  color:var(--soft);
  transition:transform .3s var(--ease),color .25s;
}
.menu-list__item a:hover .chev{transform:translateX(4px);color:var(--accent);}

/* ── CENTER: brand + photo */
.menu-overlay__center{
  padding:48px;
  display:flex;flex-direction:column;align-items:center;
  gap:32px;
  border-right:1px solid var(--rule);
}
.menu-overlay__brand{
  display:flex;align-items:center;justify-content:center;
  padding:8px 0 16px;
}
.menu-overlay__brand img{height:48px;width:auto;}
.menu-overlay__photo{
  flex:1;width:100%;
  border-radius:36px;
  overflow:hidden;
  background:var(--bg);
  position:relative;
  max-height:calc(100vh - 220px);
}
.menu-overlay__photo img{
  width:100%;height:100%;object-fit:cover;
}

/* ── RIGHT: aside panel */
.menu-overlay__aside{
  background:#EFECE5;
  padding:32px;
  display:flex;flex-direction:column;gap:24px;
  position:relative;
}
.aside-head{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;flex-wrap:wrap;
}
.aside-office{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--ink);
  border-bottom:1px solid var(--ink);
  padding:4px 0;
  transition:color .2s,border-color .2s;
}
.aside-office:hover{color:var(--accent);border-bottom-color:var(--accent);}
.aside-office svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:1.7;}
.aside-cta{
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--ink);color:#fff;
  border-radius:999px;
  padding:14px 24px;
  font-family:var(--body);font-size:12px;font-weight:600;letter-spacing:.08em;
  text-transform:uppercase;
  transition:background .25s;
}
.aside-cta:hover{background:var(--accent);}

.aside-card{
  background:#F6F4EE;
  border-radius:16px;
  padding:24px;
  display:flex;flex-direction:column;gap:14px;
  flex:1;
}
.aside-card__img{
  height:200px;
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  display:flex;align-items:center;justify-content:center;
}
.aside-card__img img{
  width:100%;height:100%;object-fit:cover;
}
.aside-card h4{
  font-family:var(--serif);
  font-size:24px;font-weight:400;line-height:1.2;
  color:var(--ink);
}
.aside-card a.aside-card__link{
  font-family:var(--mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--ink);
  display:inline-flex;align-items:center;gap:8px;
  border-bottom:1px solid var(--ink);
  padding:4px 0;align-self:flex-start;
  transition:color .2s,border-color .2s;
}
.aside-card a.aside-card__link:hover{color:var(--accent);border-bottom-color:var(--accent);}

.aside-foot{
  border-top:1px solid rgba(26,26,26,.18);
  padding-top:20px;
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;
}
.aside-foot__label{
  font-family:var(--mono);font-size:10px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--mid);max-width:180px;line-height:1.5;
}
.aside-foot__icons{display:flex;gap:8px;}
.aside-foot__ic{
  width:42px;height:42px;
  border-radius:50%;
  background:rgba(255,255,255,.7);
  display:flex;align-items:center;justify-content:center;
  transition:background .25s,transform .25s;
}
.aside-foot__ic:hover{background:var(--accent);transform:translateY(-2px);}
.aside-foot__ic svg{width:16px;height:16px;fill:none;stroke:var(--ink);stroke-width:1.7;}
.aside-foot__ic:hover svg{stroke:#fff;}

/* menu responsive */
@media(max-width:1100px){
  .menu-panel{grid-template-columns:1fr 1fr;}
  .menu-overlay__center{display:none;}
}
@media(max-width:760px){
  .menu-overlay{padding:8px;}
  .menu-panel{grid-template-columns:1fr;overflow-y:auto;}
  .menu-overlay__aside{order:2;}
  .menu-list{padding:88px 24px 32px;}
  .menu-list__item a{font-size:22px;padding:18px 4px;}
  .menu-overlay__close{top:18px;left:20px;}
}

/* ─────────────────────────────────────────
   NAV — fixed, transparent → glass on scroll
───────────────────────────────────────── */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:300;
  height:88px;
  background:transparent;
  border-bottom:1px solid transparent;
  transition:background .4s var(--ease),border-color .4s var(--ease),backdrop-filter .4s var(--ease);
}
.nav__inner{
  width:100%;max-width:none;margin:0;
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;
  height:100%;padding:0 48px;gap:24px;
}
.nav__left{
  justify-self:start;
  display:flex;align-items:center;gap:40px;
  min-width:0;
}
.nav__links{
  display:flex;align-items:center;gap:34px;
  min-width:0;
}
.nav__links a{
  font-family:var(--body);font-size:15px;font-weight:700;line-height:1;
  letter-spacing:.01em;text-transform:uppercase;color:#fff;
  white-space:nowrap;
  transition:color .4s var(--ease),opacity .25s;
}
.nav__links a:hover{opacity:.7;}
.nav__brand{justify-self:center;display:flex;align-items:center;}
.nav__brand img{
  height:44px;width:auto;
  filter:brightness(0) invert(1);
  transition:filter .4s var(--ease);
}
.nav__right{
  justify-self:end;
  display:flex;align-items:center;gap:14px;
}
.nav__phone{
  font-family:var(--body);font-size:13px;font-weight:500;letter-spacing:.04em;
  color:#fff;
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 4px;
  transition:color .4s var(--ease),opacity .25s;
}
.nav__phone svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:1.7;}
.nav__phone:hover{opacity:.7;}

/* Transparent state (over hero) */
.nav .menu-trigger{
  background:rgba(255,255,255,.12);
  color:#fff;
  border-color:rgba(255,255,255,.35);
  border-radius:999px;
  padding:0 20px;
  backdrop-filter:blur(8px);
}
.nav .menu-trigger__icon{width:16px;gap:4px;}
.nav .menu-trigger__text{display:inline;}
.nav .menu-trigger:hover{
  background:rgba(255,255,255,.24);
  border-color:rgba(255,255,255,.6);
  opacity:1;
}

/* Scrolled state — glass white */
.nav.is-scrolled{
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(22px) saturate(1.1);
  border-bottom-color:var(--rule);
}
.nav.is-scrolled .nav__brand img{filter:none;}
.nav.is-scrolled .nav__phone{color:var(--ink);}
.nav.is-scrolled .nav__links a{color:var(--ink);}
.nav.is-scrolled .menu-trigger{
  background:var(--ink);
  color:#fff;
  border-color:var(--ink);
}
.nav.is-scrolled .menu-trigger:hover{background:var(--accent);border-color:var(--accent);color:#fff;}

/* ─────────────────────────────────────────
   HERO — fullscreen carousel
───────────────────────────────────────── */
.hero{
  position:relative;
  height:100vh;
  min-height:640px;
  width:100%;
  overflow:hidden;
  background:var(--ink);
}
.hero__slides{
  position:absolute;inset:0;
}
.hero__slide{
  position:absolute;inset:0;
  opacity:0;
  transition:opacity 1.2s var(--ease);
  pointer-events:none;
}
.hero__slide.is-active{opacity:1;pointer-events:auto;}
.hero__slide::after{
  content:'';position:absolute;inset:0;
  background:
    linear-gradient(110deg,rgba(0,0,0,.62) 0%,rgba(0,0,0,.38) 30%,rgba(0,0,0,.12) 55%,rgba(0,0,0,0) 78%),
    linear-gradient(180deg,rgba(0,0,0,.34) 0%,rgba(0,0,0,0) 18%,rgba(0,0,0,0) 65%,rgba(0,0,0,.5) 100%);
  pointer-events:none;
}
.hero__slide img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  transform:scale(1.04);
  transition:transform 8s var(--ease);
}
.hero__slide.is-active img{transform:scale(1);}

.hero__content{
  position:absolute;
  left:0;right:0;bottom:0;
  z-index:2;
  padding:0 48px 64px;
  color:#fff;
}
.hero__inner{
  max-width:var(--max);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr auto;
  gap:48px;
  align-items:end;
}
.hero__kicker{
  font-family:var(--mono);
  font-size:11px;letter-spacing:.24em;text-transform:uppercase;
  color:rgba(255,255,255,.85);
  margin-bottom:24px;
  display:flex;align-items:center;gap:14px;
}
.hero__kicker::before{content:'';width:32px;height:1px;background:rgba(255,255,255,.6);}
.hero__h1{
  font-family:var(--serif);
  font-size:clamp(48px,6.4vw,108px);
  font-weight:300;line-height:.98;
  letter-spacing:-.02em;
  color:#fff;
  margin-bottom:32px;
  max-width:1000px;
  text-shadow:0 2px 24px rgba(0,0,0,.22);
}
.hero__h1 em{font-style:italic;color:#E8DDC9;}
.hero__sub{
  font-size:15px;line-height:1.7;
  color:rgba(255,255,255,.88);
  max-width:480px;margin-bottom:40px;
  text-shadow:0 1px 12px rgba(0,0,0,.3);
}
.hero__acts{display:flex;gap:14px;flex-wrap:wrap;}

.hero__meta{
  display:flex;flex-direction:column;gap:18px;
  align-items:flex-end;
  text-align:right;
}
.hero__loc{
  font-family:var(--mono);
  font-size:11px;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(255,255,255,.72);
}
.hero__counter{
  font-family:var(--serif);
  font-size:32px;font-weight:300;
  color:#fff;line-height:1;
  display:flex;align-items:baseline;gap:6px;
}
.hero__counter span{color:rgba(255,255,255,.5);font-size:18px;}

.hero__nav{
  position:absolute;
  right:48px;top:50%;
  transform:translateY(-50%);
  z-index:3;
  display:flex;flex-direction:column;gap:14px;
}
.hero__dot{
  width:10px;height:10px;border-radius:50%;
  border:1px solid rgba(255,255,255,.6);
  background:transparent;
  cursor:pointer;transition:all .3s var(--ease);
  padding:0;
}
.hero__dot.is-active{background:#fff;border-color:#fff;transform:scale(1.2);}

.hero__arrows{
  position:absolute;
  left:48px;bottom:64px;
  z-index:3;
  display:flex;gap:8px;
}
.hero__arrow{
  width:48px;height:48px;
  border:1px solid rgba(255,255,255,.4);
  background:rgba(0,0,0,.18);
  backdrop-filter:blur(6px);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  transition:all .25s;
  border-radius:2px;
}
.hero__arrow svg{width:16px;height:16px;stroke:#fff;}
.hero__arrow:hover{background:#fff;}
.hero__arrow:hover svg{stroke:var(--ink);}

.hero__scroll{
  position:absolute;
  left:50%;bottom:32px;
  transform:translateX(-50%);
  z-index:3;
  font-family:var(--mono);
  font-size:10px;letter-spacing:.24em;text-transform:uppercase;
  color:rgba(255,255,255,.6);
  display:flex;flex-direction:column;align-items:center;gap:10px;
}
.hero__scroll-line{
  width:1px;height:32px;
  background:linear-gradient(180deg,rgba(255,255,255,.6),transparent);
  animation:scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse{
  0%,100%{transform:scaleY(.5);transform-origin:top;opacity:.5;}
  50%{transform:scaleY(1);opacity:1;}
}

/* ─────────────────────────────────────────
   VALUE PROP — Why Choose Us (6 pillars)
───────────────────────────────────────── */
.why{
  background:var(--bg);
  padding:120px 0;
}
.why__head{
  max-width:var(--max);margin:0 auto;padding:0 48px;
  display:grid;grid-template-columns:1fr 1.4fr;gap:80px;
  margin-bottom:80px;align-items:end;
}
.why__head h2{
  font-family:var(--serif);
  font-size:clamp(40px,4.4vw,72px);
  font-weight:300;line-height:1;
  letter-spacing:-.02em;
}
.why__head h2 em{font-style:italic;color:var(--accent);}
.why__head p{font-size:16px;color:var(--mid);line-height:1.8;max-width:520px;}
.why__grid{
  max-width:var(--max);margin:0 auto;padding:0 48px;
  display:grid;grid-template-columns:repeat(3,1fr);gap:0;
  border-top:1px solid var(--rule);
  border-left:1px solid var(--rule);
}
.why__cell{
  padding:48px 40px;
  border-right:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
  background:var(--bg);
  transition:background .3s;
  position:relative;
}
.why__cell:hover{background:var(--white);}
.why__icon{
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  background:var(--white);
  border:1px solid var(--rule);
  border-radius:50%;
  margin-bottom:24px;
}
.why__icon svg{width:20px;height:20px;stroke:var(--accent);fill:none;stroke-width:1.5;}
.why__num{
  position:absolute;top:32px;right:32px;
  font-family:var(--mono);font-size:11px;
  color:var(--soft);letter-spacing:.1em;
}
.why__cell h3{
  font-family:var(--serif);
  font-size:24px;font-weight:400;
  margin-bottom:12px;color:var(--ink);
}
.why__cell p{font-size:14px;color:var(--mid);line-height:1.75;}

/* ─────────────────────────────────────────
   CATEGORIES — tabs (Kitchen / Bath / Closets)
───────────────────────────────────────── */
.cats{padding:120px 0;}
.cats__head{
  max-width:var(--max);margin:0 auto;padding:0 48px;
  text-align:center;margin-bottom:48px;
}
.cats__eyebrow{margin-bottom:18px;display:block;}
.cats__head h2{
  font-family:var(--serif);
  font-size:clamp(40px,4.4vw,72px);
  font-weight:300;line-height:1;
  letter-spacing:-.02em;margin-bottom:20px;
}
.cats__head h2 em{font-style:italic;color:var(--accent);}
.cats__head p{font-size:16px;color:var(--mid);max-width:580px;margin:0 auto;line-height:1.8;}

.cats__tabs{
  display:flex;justify-content:center;gap:0;
  margin-bottom:64px;
  border-bottom:1px solid var(--rule);
}
.cats__tab{
  font-family:var(--body);
  font-size:14px;font-weight:500;letter-spacing:.04em;
  padding:18px 36px;
  color:var(--mid);
  border-bottom:2px solid transparent;
  margin-bottom:-1px;
  transition:all .25s;
}
.cats__tab:hover{color:var(--ink);}
.cats__tab.is-active{color:var(--ink);border-bottom-color:var(--accent);}

.cats__panels{
  max-width:var(--max);margin:0 auto;padding:0 48px;
}
.cats__panel{display:none;}
.cats__panel.is-active{display:block;animation:fadeIn .4s var(--ease);}
@keyframes fadeIn{from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:none;}}
.cats__grid{
  display:grid;grid-template-columns:1.6fr 1fr;
  grid-template-rows:repeat(2,minmax(0,1fr));
  gap:32px;
  align-items:stretch;
  aspect-ratio:2.35/1;
}
.cats__main{
  position:relative;
  grid-row:1 / -1;
  overflow:hidden;
  border-radius:2px;
  min-height:0;
}
.cats__main img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .8s var(--ease);
}
.cats__main:hover img{transform:scale(1.04);}
.cats__main-cap{
  position:absolute;left:32px;bottom:32px;
  background:rgba(255,255,255,.95);
  padding:20px 24px;
  max-width:340px;
}
.cats__main-cap h3{
  font-family:var(--serif);font-size:24px;font-weight:400;
  margin-bottom:8px;color:var(--ink);
}
.cats__main-cap p{font-size:13px;color:var(--mid);margin-bottom:14px;}
.cats__main-cap a{
  font-family:var(--mono);font-size:11px;letter-spacing:.16em;
  text-transform:uppercase;color:var(--accent);
  display:inline-flex;align-items:center;gap:8px;
}
.cats__side{
  display:grid;
  grid-row:1 / -1;
  grid-template-rows:repeat(2,minmax(0,1fr));
  gap:32px;
  height:100%;
  min-height:0;
}
.cats__sub{
  position:relative;overflow:hidden;border-radius:2px;
  cursor:pointer;
  height:100%;
  min-height:0;
}
.cats__sub img{
  width:100%;height:100%;object-fit:cover;
  object-position:center;
  transition:transform .8s var(--ease);
}
.cats__sub:hover img{transform:scale(1.05);}
.cats__sub-cap{
  position:absolute;left:24px;bottom:24px;right:24px;
  color:#fff;
}
.cats__sub::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 50%,rgba(0,0,0,.6) 100%);
  z-index:1;
}
.cats__sub-cap{z-index:2;}
.cats__sub-cap h4{
  font-family:var(--serif);font-size:20px;font-weight:400;margin-bottom:4px;
}
.cats__sub-cap p{font-size:12px;opacity:.85;}

/* ─────────────────────────────────────────
   SAMPLES GALLERY — 90+ samples grid
───────────────────────────────────────── */
.samples{
  background:var(--ink);
  color:#fff;
  padding:120px 0;
  overflow:hidden;
}
.samples__head{
  max-width:var(--max);margin:0 auto;padding:0 48px 64px;
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:end;
}
.samples__head .eyebrow{color:rgba(255,255,255,.5);}
.samples__head h2{
  font-family:var(--serif);
  font-size:clamp(40px,4.4vw,72px);
  font-weight:300;line-height:1;color:#fff;
  letter-spacing:-.02em;
}
.samples__head h2 em{font-style:italic;color:#C9B98A;}
.samples__head p{font-size:15px;color:rgba(255,255,255,.6);max-width:480px;line-height:1.8;}

.samples__marquee{
  display:flex;gap:18px;
  padding-left:48px;
  overflow:hidden;
}
.samples__track{
  display:flex;gap:18px;
  animation:marquee 50s linear infinite;
  flex-shrink:0;
}
@keyframes marquee{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
.samples__item{
  flex:0 0 280px;
  aspect-ratio:1/1.15;
  overflow:hidden;
  position:relative;
  background:rgba(255,255,255,.04);
}
.samples__link{
  display:block;
  width:100%;
  height:100%;
  cursor:zoom-in;
}
.samples__item img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--ease);}
.samples__item:hover img{transform:scale(1.06);}
.samples__cta{
  max-width:var(--max);margin:64px auto 0;padding:0 48px;
  text-align:center;
}

/* ─────────────────────────────────────────
   ABOUT — image left + text right
───────────────────────────────────────── */
.about{padding:120px 0;background:var(--bg);}
.about__inner{
  max-width:var(--max);margin:0 auto;padding:0 48px;
  display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;
}
.about__img{
  position:relative;aspect-ratio:4/5;overflow:hidden;
}
.about__img img{width:100%;height:100%;object-fit:cover;transition:transform 1s var(--ease);}
.about__img:hover img{transform:scale(1.04);}
.about__badge{
  position:absolute;top:32px;left:32px;
  background:var(--white);padding:24px 28px;
  border-radius:2px;
  display:flex;flex-direction:column;gap:4px;
}
.about__badge strong{
  font-family:var(--serif);font-size:42px;font-weight:300;color:var(--ink);line-height:1;
}
.about__badge span{
  font-family:var(--mono);font-size:10px;letter-spacing:.16em;
  text-transform:uppercase;color:var(--mid);
}
.about__text h2{
  font-family:var(--serif);
  font-size:clamp(40px,4vw,64px);
  font-weight:300;line-height:1.04;letter-spacing:-.02em;
  margin:18px 0 28px;
}
.about__text h2 em{font-style:italic;color:var(--accent);}
.about__text p{font-size:15px;color:var(--mid);line-height:1.85;margin-bottom:20px;}
.about__list{margin:36px 0;display:flex;flex-direction:column;gap:0;}
.about__list li{
  display:flex;align-items:flex-start;gap:14px;
  padding:16px 0;border-top:1px solid var(--rule);
  font-size:14px;color:var(--text);
}
.about__list li:last-child{border-bottom:1px solid var(--rule);}
.about__list svg{
  width:16px;height:16px;flex-shrink:0;margin-top:2px;
  fill:none;stroke:var(--accent);stroke-width:2;
}

/* ─────────────────────────────────────────
   NUMBERS strip
───────────────────────────────────────── */
.numbers{
  background:var(--ink);color:#fff;
  padding:80px 0;
}
.numbers__inner{
  max-width:var(--max);margin:0 auto;padding:0 48px;
  display:grid;grid-template-columns:repeat(4,1fr);gap:48px;
}
.num-cell{text-align:center;}
.num-cell__n{
  font-family:var(--serif);font-size:72px;font-weight:300;
  line-height:1;color:#fff;margin-bottom:12px;
  letter-spacing:-.02em;
}
.num-cell__n span{color:#C9B98A;}
.num-cell__l{
  font-family:var(--mono);font-size:11px;letter-spacing:.18em;
  text-transform:uppercase;color:rgba(255,255,255,.5);
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials{padding:120px 0;}
.test__head{
  max-width:var(--max);margin:0 auto;padding:0 48px;
  display:flex;align-items:end;justify-content:space-between;
  flex-wrap:wrap;gap:32px;margin-bottom:64px;
}
.test__head h2{
  font-family:var(--serif);
  font-size:clamp(40px,4.4vw,72px);
  font-weight:300;line-height:1;letter-spacing:-.02em;
}
.test__head h2 em{font-style:italic;color:var(--accent);}
.g-badge{
  display:inline-flex;align-items:center;gap:14px;
  padding:14px 22px;border:1px solid var(--rule);
  background:var(--bg);border-radius:2px;
}
.g-badge__score{font-family:var(--serif);font-size:36px;font-weight:300;line-height:1;}
.g-badge__r{display:flex;flex-direction:column;gap:2px;}
.g-badge__stars{color:#F5B731;letter-spacing:3px;font-size:13px;}
.g-badge__src{font-family:var(--mono);font-size:10px;color:var(--mid);letter-spacing:.1em;}
.tgrid{
  max-width:var(--max);margin:0 auto;padding:0 48px;
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
}
.tc{
  padding:36px 32px;
  background:var(--bg);
  border-radius:2px;
  display:flex;flex-direction:column;
  position:relative;
}
.tc__quote{
  font-family:var(--serif);font-size:48px;line-height:1;
  color:var(--accent);opacity:.25;
  margin-bottom:8px;
}
.tc__stars{color:#F5B731;font-size:13px;letter-spacing:3px;margin-bottom:20px;}
.tc__text{
  font-size:15px;line-height:1.7;color:var(--text);
  margin-bottom:28px;flex:1;
}
.tc__foot{
  display:flex;align-items:center;gap:14px;
  padding-top:20px;border-top:1px solid var(--rule);
}
.tc__av{
  width:42px;height:42px;border-radius:50%;
  background:var(--white);border:1px solid var(--rule);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--serif);font-size:18px;color:var(--accent);flex-shrink:0;
}
.tc__name{font-size:13px;font-weight:600;color:var(--ink);margin-bottom:2px;}
.tc__src{font-family:var(--mono);font-size:10px;color:var(--mid);letter-spacing:.08em;}

/* ─────────────────────────────────────────
   FINAL CTA — Get free design
───────────────────────────────────────── */
.cta{
  position:relative;
  padding:140px 0;
  overflow:hidden;
  color:#fff;
  background:#1a1a1a;
}
.cta__bg{
  position:absolute;inset:0;
  background-image:url('https://kitchenkonnections.shop/wp-content/uploads/2024/07/c00f44c230.jpg');
  background-size:cover;background-position:center;
  opacity:.35;
}
.cta__inner{
  max-width:var(--max);margin:0 auto;padding:0 48px;
  position:relative;z-index:1;
  text-align:center;
}
.cta .eyebrow{color:rgba(255,255,255,.6);margin-bottom:22px;display:block;}
.cta h2{
  font-family:var(--serif);
  font-size:clamp(48px,5.4vw,88px);
  font-weight:300;line-height:1;color:#fff;
  letter-spacing:-.02em;margin-bottom:24px;
}
.cta h2 em{font-style:italic;color:#E8DDC9;}
.cta p{
  font-size:17px;color:rgba(255,255,255,.78);
  max-width:560px;margin:0 auto 44px;line-height:1.75;
}
.cta__acts{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact{padding:120px 0;background:var(--bg);}
.contact__inner{
  max-width:var(--max);margin:0 auto;padding:0 48px;
  display:grid;grid-template-columns:1fr 1fr;gap:64px;
}
.contact__form h2{
  font-family:var(--serif);
  font-size:clamp(40px,4vw,64px);
  font-weight:300;line-height:1.05;letter-spacing:-.02em;
  margin:18px 0 16px;
}
.contact__form h2 em{font-style:italic;color:var(--accent);}
.contact__form .sub{font-size:15px;color:var(--mid);margin-bottom:40px;line-height:1.75;max-width:460px;}
.form{display:flex;flex-direction:column;gap:14px;}
.contact__form .wpcf7{margin:0;}
.kk-contact-form .hidden-fields-container{display:none;}
.kk-contact-form p{margin:0;}
.kk-contact-form .ff p{display:flex;flex-direction:column;min-height:100%;}
.kk-contact-form .wpcf7-form-control-wrap{display:block;width:100%;}
.kk-contact-form .wpcf7-not-valid-tip{font-size:12px;color:#b54747;padding:0 16px 10px;}
.kk-contact-form .form-submit p{display:flex;align-items:center;gap:18px;flex-wrap:wrap;}
.kk-contact-form .form-submit br{display:none;}
.kk-contact-form .wpcf7-response-output{
  margin:18px 0 0!important;padding:12px 14px!important;
  border:1px solid var(--rule)!important;
  font-size:13px;line-height:1.5;color:var(--text);background:var(--white);
}
.kk-contact-form .btn:disabled,
.kk-contact-form .btn.is-loading{
  cursor:wait;opacity:.82;pointer-events:none;
}
.kk-contact-form .btn.is-loading{gap:10px;}
.kk-btn-spinner{
  width:14px;height:14px;border-radius:50%;
  border:2px solid rgba(255,255,255,.35);
  border-top-color:currentColor;
  animation:kkSpin .7s linear infinite;
}
@keyframes kkSpin{to{transform:rotate(360deg);}}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.ff{display:flex;flex-direction:column;background:var(--white);border:1px solid var(--rule);border-radius:2px;transition:border-color .2s;}
.ff label{font-family:var(--mono);font-size:10px;letter-spacing:.14em;text-transform:uppercase;color:var(--mid);padding:12px 16px 0;}
.ff input,.ff textarea,.ff select{
  background:transparent;border:none;outline:none;
  padding:6px 16px 14px;
  font-family:var(--body);font-size:14px;color:var(--ink);resize:none;
}
.ff input::placeholder,.ff textarea::placeholder{color:var(--soft);}
.ff:focus-within{border-color:var(--accent);}
.ff textarea{min-height:120px;}
.ff select{-webkit-appearance:none;cursor:pointer;}
.form-submit{margin-top:20px;display:flex;align-items:center;gap:18px;flex-wrap:wrap;}
.form-note{font-family:var(--mono);font-size:10px;letter-spacing:.1em;color:var(--mid);}

.contact__info{display:flex;flex-direction:column;gap:0;}
.ci{padding:24px 0;border-bottom:1px solid var(--rule);}
.ci:first-child{padding-top:46px;border-top:1px solid var(--rule);}
.ci h4{
  font-family:var(--mono);font-size:10px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--accent);margin-bottom:10px;
}
.ci a,.ci p{font-size:15px;color:var(--text);line-height:1.7;display:block;transition:color .2s;}
.ci a:hover{color:var(--accent);}
.soc-links{display:flex;gap:10px;margin-top:8px;}
.soc-links .soc-link{
  display:inline-flex;align-items:center;justify-content:center;
  width:42px;height:42px;
  border-radius:50%;
  background:var(--white);
  border:1px solid var(--rule);
  line-height:1;padding:0;
  transition:background .25s,transform .25s,border-color .25s;
}
.soc-links .soc-link svg{
  display:block;
  width:16px;height:16px;
  fill:none;stroke:var(--ink);stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round;
  transition:stroke .25s;
}
.soc-links .soc-link:hover{background:var(--accent);border-color:var(--accent);transform:translateY(-2px);}
.soc-links .soc-link:hover svg{stroke:#fff;}

/* ─────────────────────────────────────────
   CERTIFICATIONS
───────────────────────────────────────── */
.certs{
  padding:64px 0;background:var(--bg);
  border-top:1px solid var(--rule);
}
.certs__inner{
  max-width:var(--max);margin:0 auto;padding:0 48px;
  display:flex;align-items:center;gap:64px;flex-wrap:wrap;
}
.certs__label{
  font-family:var(--mono);font-size:11px;letter-spacing:.2em;
  text-transform:uppercase;color:var(--mid);flex-shrink:0;
}
.certs__imgs{display:flex;align-items:center;gap:48px;flex-wrap:wrap;}
.cert-logo{height:48px;width:auto;object-fit:contain;opacity:.7;transition:opacity .25s;filter:grayscale(1);}
.cert-logo:hover{opacity:1;filter:none;}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer{background:var(--ink);color:rgba(255,255,255,.7);}
.footer__top{
  max-width:var(--max);margin:0 auto;padding:80px 48px 64px;
  display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:48px;
}
.fc img{height:40px;width:auto;margin-bottom:24px;filter:brightness(0) invert(1);}
.fc__tagline{font-size:14px;color:rgba(255,255,255,.5);line-height:1.8;max-width:340px;margin-bottom:24px;}
.fc h5{
  font-family:var(--mono);font-size:11px;letter-spacing:.2em;
  text-transform:uppercase;color:rgba(255,255,255,.4);margin-bottom:22px;
}
.fc ul{display:flex;flex-direction:column;gap:12px;}
.fc ul li a{font-size:14px;color:rgba(255,255,255,.6);transition:color .2s;}
.fc ul li a:hover{color:#fff;}
.footer__bot{
  border-top:1px solid rgba(255,255,255,.08);
  padding:24px 48px;
  max-width:var(--max);margin:0 auto;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:12px;
  font-family:var(--mono);font-size:11px;letter-spacing:.1em;
  color:rgba(255,255,255,.4);
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.r{opacity:0;transform:translateY(24px);transition:opacity var(--dur) var(--ease),transform var(--dur) var(--ease);}
.r.on{opacity:1;transform:none;}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media(max-width:1100px){
  .container,.nav__inner,.why__head,.why__grid,.cats__head,.cats__panels,
  .samples__head,.samples__cta,.about__inner,.numbers__inner,
  .test__head,.tgrid,.cta__inner,.contact__inner,.certs__inner,
  .footer__top,.footer__bot,.hero__content{
    padding-left:32px;padding-right:32px;
  }
  .why__grid{grid-template-columns:repeat(2,1fr);}
  .footer__top{grid-template-columns:1fr 1fr;}
}
@media(max-width:900px){
  .section,.why,.cats,.samples,.about,.testimonials,.cta,.contact{padding:80px 0;}
  .nav__links{display:none;}
  .why__head,.about__inner,.contact__inner{grid-template-columns:1fr;gap:32px;}
  .cats__grid{grid-template-columns:1fr;grid-template-rows:auto;aspect-ratio:auto;}
  .cats__main{grid-row:auto;aspect-ratio:4/3;}
  .cats__side{grid-row:auto;grid-template-rows:auto;grid-template-columns:1fr 1fr;height:auto;}
  .cats__sub{height:auto;aspect-ratio:16/10;}
  .tgrid{grid-template-columns:1fr;}
  .numbers__inner{grid-template-columns:repeat(2,1fr);gap:32px;}
  .num-cell__n{font-size:56px;}
  .hero__nav{right:24px;}
  .hero__arrows{left:24px;bottom:32px;}
  .hero__inner{grid-template-columns:1fr;}
  .hero__meta{align-items:flex-start;text-align:left;}
  .hero__content{padding-bottom:120px;}
}
@media(max-width:640px){
  .nav__inner{padding:0 20px;gap:12px;}
  .nav__brand img{height:38px;}
  .nav__phone span,.nav__phone{font-size:0;padding:8px;}
  .nav__phone svg{width:18px;height:18px;}
  .menu-trigger{padding:0 14px;height:40px;}
  .why__grid{grid-template-columns:1fr;}
  .footer__top{grid-template-columns:1fr;}
  .cats__side{grid-template-columns:1fr;}
  .cats__tabs{overflow-x:auto;justify-content:flex-start;}
  .cats__tab{padding:14px 22px;flex-shrink:0;}
  .form-row{grid-template-columns:1fr;}
  .hero__h1{font-size:44px;}
  .container,.hero__content,.why__head,.why__grid,.cats__head,.cats__panels,
  .samples__head,.about__inner,
  .numbers__inner,.test__head,.tgrid,.cta__inner,.contact__inner,.certs__inner,
  .footer__top,.footer__bot{padding-left:20px;padding-right:20px;}
}

/* ─────────────────────────────────────────
   MOBILE POLISH (overrides only — desktop untouched)
───────────────────────────────────────── */
@media(max-width:640px){
  /* NAV */
  .nav{height:68px;}
  .nav__inner{padding:0 16px;gap:8px;}
  .nav__brand img{height:32px;}
  .menu-trigger{height:38px;padding:0 14px;font-size:11px;letter-spacing:.06em;gap:8px;}
  .menu-trigger__icon{width:14px;}

  /* HERO */
  .hero{min-height:560px;}
  .hero__content{padding:0 20px 110px;}
  .hero__inner{gap:24px;}
  .hero__kicker{font-size:10px;letter-spacing:.18em;margin-bottom:18px;gap:10px;}
  .hero__kicker::before{width:20px;}
  .hero__h1{font-size:40px;line-height:1.04;margin-bottom:22px;letter-spacing:-.015em;}
  .hero__sub{font-size:14px;line-height:1.6;margin-bottom:26px;max-width:none;}
  .hero__acts{gap:10px;}
  .hero__acts .btn{padding:13px 20px;font-size:12px;flex:1;min-width:0;}
  .hero__loc{font-size:10px;letter-spacing:.14em;}
  .hero__counter{font-size:22px;}
  .hero__counter span{font-size:14px;}
  .hero__meta{gap:8px;}
  .hero__nav{display:none;}
  .hero__arrows{left:20px;bottom:24px;gap:6px;}
  .hero__arrow{width:38px;height:38px;}
  .hero__arrow svg{width:14px;height:14px;}
  .hero__scroll{display:none;}

  /* GLOBAL HEADINGS */
  .why__head h2,.cats__head h2,.samples__head h2,.test__head h2,
  .pop__head h2,.process__head h2,.about__text h2,.contact__form h2{
    font-size:36px;line-height:1.05;letter-spacing:-.015em;
  }
  .cta h2{font-size:42px;line-height:1.02;}

  /* WHY */
  .why{padding:72px 0;}
  .why__head{margin-bottom:40px;gap:20px;}
  .why__head p{font-size:14px;line-height:1.7;}
  .why__cell{padding:32px 24px;}
  .why__cell h3{font-size:21px;}
  .why__cell p{font-size:13px;}
  .why__num{top:24px;right:24px;font-size:10px;}

  /* CATEGORIES */
  .cats{padding:72px 0;}
  .cats__head{margin-bottom:36px;}
  .cats__head p{font-size:14px;line-height:1.7;}
  .cats__tabs{padding-left:20px;padding-right:20px;margin-left:-20px;margin-right:-20px;width:calc(100% + 40px);margin-bottom:40px;}
  .cats__tab{padding:14px 18px;font-size:13px;}
  .cats__main{aspect-ratio:4/3.4;}
  .cats__main-cap{left:14px;right:14px;bottom:14px;padding:16px 18px;max-width:none;}
  .cats__main-cap h3{font-size:19px;margin-bottom:6px;}
  .cats__main-cap p{font-size:12px;line-height:1.55;margin-bottom:10px;}
  .cats__main-cap a{font-size:10px;}
  .cats__side{gap:14px;}
  .cats__sub{aspect-ratio:16/10;}
  .cats__sub-cap{left:16px;right:16px;bottom:14px;}
  .cats__sub-cap h4{font-size:17px;}
  .cats__sub-cap p{font-size:11px;}

  /* INSPIRATION */
  .samples{padding:72px 0;}
  .samples__head{padding-bottom:40px;gap:20px;display:flex;flex-direction:column;}
  .samples__head p{font-size:14px;line-height:1.7;}
  .samples__marquee{padding-left:20px;}
  .samples__item{flex:0 0 200px;}
  .samples__cta{margin-top:40px;}

  /* ABOUT */
  .about{padding:72px 0;}
  .about__inner{gap:36px;}
  .about__img{aspect-ratio:4/4.6;}
  .about__badge{top:16px;left:16px;padding:16px 18px;}
  .about__badge strong{font-size:30px;}
  .about__badge span{font-size:9px;letter-spacing:.12em;}
  .about__text p{font-size:14px;line-height:1.75;}
  .about__list{margin:24px 0;}
  .about__list li{padding:13px 0;font-size:13px;gap:10px;}

  /* NUMBERS */
  .numbers{padding:56px 0;}
  .numbers__inner{gap:28px 16px;}
  .num-cell__n{font-size:44px;}
  .num-cell__l{font-size:9.5px;letter-spacing:.14em;}

  /* TESTIMONIALS */
  .testimonials{padding:72px 0;}
  .test__head{margin-bottom:36px;gap:20px;}
  .g-badge{padding:12px 16px;}
  .g-badge__score{font-size:30px;}
  .tgrid{gap:14px;}
  .tc{padding:28px 24px;}
  .tc__text{font-size:14px;line-height:1.65;}
  .tc__quote{font-size:36px;}

  /* CTA */
  .cta{padding:88px 0;}
  .cta p{font-size:15px;line-height:1.65;margin-bottom:32px;}
  .cta__acts{gap:10px;}
  .cta__acts .btn{flex:1;min-width:0;}

  /* CONTACT */
  .contact{padding:72px 0;}
  .contact__inner{gap:40px;}
  .contact__form .sub{font-size:14px;margin-bottom:30px;}
  .ff input,.ff textarea,.ff select{font-size:14px;}
  .form-submit{flex-direction:column;align-items:flex-start;gap:12px;}
  .form-submit .btn{width:100%;}
  .ci{padding:20px 0;}
  .ci a,.ci p{font-size:14px;}
  .ci:first-child{padding-top:32px;}

  /* CERTS */
  .certs{padding:36px 0;}
  .certs__inner{gap:20px;justify-content:center;text-align:center;}
  .certs__imgs{gap:24px;justify-content:center;}
  .cert-logo{height:34px;}

  /* FOOTER */
  .footer__top{padding:56px 20px 36px;gap:32px;}
  .fc{padding:0;}
  .fc h5{margin-bottom:14px;}
  .fc ul{gap:8px;}
  .fc ul li a{font-size:13px;}
  .footer__bot{
    flex-direction:column;align-items:flex-start;
    padding:18px 20px;gap:6px;font-size:10px;
  }

  /* MENU OVERLAY (full-screen on phone) */
  .menu-overlay{padding:0;}
  .menu-panel{border-radius:0;box-shadow:none;}
  .menu-list{padding:80px 24px 24px;}
  .menu-list__item a{font-size:20px;padding:18px 0;}
  .menu-overlay__close{top:14px;left:16px;width:40px;height:40px;}
  .menu-overlay__close svg{width:20px;height:20px;}
  .menu-overlay__aside{padding:24px 20px;gap:18px;}
  .aside-head{flex-direction:column;align-items:flex-start;gap:12px;}
  .aside-cta{width:100%;}
  .aside-card{padding:20px;}
  .aside-card__img{height:140px;}
  .aside-card h4{font-size:18px;}
  .aside-foot{flex-direction:column;align-items:flex-start;gap:14px;}
  .aside-foot__icons{gap:8px;}
}

@media(max-width:380px){
  .hero__h1{font-size:34px;}
  .hero__acts{flex-direction:column;align-items:stretch;}
  .hero__acts .btn{width:100%;}
  .why__head h2,.cats__head h2,.samples__head h2,.test__head h2,
  .about__text h2,.contact__form h2{font-size:30px;}
  .cta h2{font-size:36px;}
  .num-cell__n{font-size:38px;}
  .menu-trigger > span:not(.menu-trigger__icon){display:none;}
  .menu-trigger{padding:0 11px;}
}

/* Internal WordPress pages */
.kk-inner-site{
  background:var(--bg);
}
.kk-inner-main{
  background:var(--bg);
}
.kk-inner-hero{
  min-height:520px;
  padding:168px 48px 88px;
  display:flex;
  align-items:flex-end;
  position:relative;
  isolation:isolate;
  background:var(--ink);
  overflow:hidden;
}
.kk-inner-hero::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:-2;
  background-image:var(--kk-inner-hero);
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.kk-inner-hero::after{
  content:'';
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(110deg,rgba(0,0,0,.66),rgba(0,0,0,.28) 52%,rgba(0,0,0,.12)),
    linear-gradient(180deg,rgba(0,0,0,.2),rgba(0,0,0,.48));
}
.kk-inner-hero__content{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  color:#fff;
}
.kk-inner-hero .eyebrow{
  color:rgba(255,255,255,.74);
}
.kk-inner-hero h1{
  max-width:980px;
  margin:18px 0 24px;
  font-family:var(--serif);
  font-size:clamp(48px,6vw,92px);
  font-weight:300;
  line-height:.98;
  letter-spacing:-.01em;
  color:#fff;
}
.kk-inner-hero p{
  max-width:640px;
  margin:0;
  font-size:17px;
  line-height:1.75;
  color:rgba(255,255,255,.84);
}
.kk-page{
  padding:96px 48px 112px;
}
.kk-page__inner{
  max-width:var(--max);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:80px;
  align-items:start;
}
.kk-page__content{
  max-width:840px;
  color:var(--text);
  font-size:17px;
  line-height:1.86;
}
.kk-page__content > *:first-child{
  margin-top:0;
}
.kk-page__content > *:last-child{
  margin-bottom:0;
}
.kk-page__content p{
  margin:0 0 26px;
}
.kk-page__content h2,
.kk-page__content h3,
.kk-page__content h4{
  margin:48px 0 18px;
  font-family:var(--serif);
  font-weight:400;
  line-height:1.12;
  color:var(--ink);
}
.kk-page__content h2{font-size:clamp(34px,3.4vw,54px);}
.kk-page__content h3{font-size:32px;}
.kk-page__content h4{font-size:24px;}
.kk-page__content ul,
.kk-page__content ol{
  margin:0 0 28px 22px;
}
.kk-page__content ul{
  list-style:disc;
}
.kk-page__content ol{
  list-style:decimal;
}
.kk-page__content li{
  padding-left:6px;
  margin-bottom:10px;
}
.kk-page__content a{
  color:var(--accent);
  border-bottom:1px solid rgba(61,90,71,.32);
}
.kk-page__content img{
  border-radius:4px;
  margin:34px 0;
}
.kk-page__aside{
  position:sticky;
  top:116px;
}
.kk-side-card{
  padding:32px;
  background:var(--white);
  border:1px solid var(--rule);
  border-radius:4px;
  box-shadow:0 20px 60px rgba(26,26,26,.07);
}
.kk-side-card h2{
  margin:18px 0 14px;
  font-family:var(--serif);
  font-size:34px;
  font-weight:400;
  line-height:1.08;
  color:var(--ink);
}
.kk-side-card p{
  margin:0 0 24px;
  font-size:14px;
  line-height:1.75;
  color:var(--mid);
}
.kk-side-card .btn{
  width:100%;
}
.kk-side-card__phone{
  display:block;
  margin-top:18px;
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.14em;
  text-align:center;
  text-transform:uppercase;
  color:var(--ink);
}

@media(max-width:980px){
  .kk-inner-hero{
    min-height:460px;
    padding:144px 28px 72px;
  }
  .kk-page{
    padding:72px 28px 88px;
  }
  .kk-page__inner{
    grid-template-columns:1fr;
    gap:48px;
  }
  .kk-page__content{
    max-width:none;
  }
  .kk-page__aside{
    position:static;
  }
}

@media(max-width:640px){
  .kk-inner-hero{
    min-height:420px;
    padding:124px 20px 56px;
  }
  .kk-inner-hero h1{
    font-size:40px;
    line-height:1;
  }
  .kk-inner-hero p{
    font-size:14px;
    line-height:1.7;
  }
  .kk-page{
    padding:56px 20px 72px;
  }
  .kk-page__content{
    font-size:15px;
    line-height:1.78;
  }
  .kk-page__content p{
    margin-bottom:22px;
  }
  .kk-page__content h2{font-size:32px;}
  .kk-page__content h3{font-size:26px;}
  .kk-side-card{
    padding:26px 22px;
  }
  .kk-side-card h2{
    font-size:28px;
  }
}

/* Centered internal pages without hero */
.kk-inner-site .nav{
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(22px) saturate(1.1);
  border-bottom-color:var(--rule);
}
.kk-inner-site .nav__brand img{
  filter:none;
}
.kk-inner-site .nav__phone,
.kk-inner-site .nav__links a{
  color:var(--ink);
}
.kk-inner-site .nav .menu-trigger{
  background:var(--ink);
  color:#fff;
  border-color:var(--ink);
}
.kk-inner-site .nav .menu-trigger:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
}
.kk-inner-site .kk-inner-main{
  min-height:60vh;
  background:
    linear-gradient(180deg,var(--bg) 0%,#fff 42%,var(--bg) 100%);
}
.kk-page-head{
  padding:168px 28px 46px;
  text-align:center;
}
.kk-page-head__inner{
  max-width:860px;
  margin:0 auto;
}
.kk-page-head h1{
  margin:18px auto 22px;
  font-family:var(--serif);
  font-size:clamp(46px,5.8vw,84px);
  font-weight:300;
  line-height:1;
  color:var(--ink);
}
.kk-page-head p{
  max-width:660px;
  margin:0 auto;
  color:var(--mid);
  font-size:16px;
  line-height:1.78;
}
.kk-inner-site .kk-page{
  padding:34px 28px 76px;
}
.kk-inner-site .kk-page__inner{
  width:100%;
  max-width:920px;
  margin:0 auto;
  display:block;
}
.kk-inner-site .kk-page__content{
  max-width:none;
  margin:0 auto;
  padding:58px 64px;
  background:rgba(255,255,255,.82);
  border-top:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
  box-shadow:0 28px 90px rgba(26,26,26,.06);
}
.kk-inner-site .kk-page__content::before{
  content:'';
  display:block;
  width:56px;
  height:1px;
  margin:0 auto 34px;
  background:var(--accent);
}
.kk-inner-site .kk-page__content p{
  text-align:left;
}
.kk-inner-site .kk-page__content p:first-of-type{
  font-size:19px;
  line-height:1.8;
  color:var(--ink);
}
.kk-page-cta{
  padding:0 28px 104px;
}
.kk-page-cta__inner{
  max-width:920px;
  margin:0 auto;
  padding:48px;
  text-align:center;
  background:var(--off);
  border:1px solid var(--rule);
}
.kk-page-cta h2{
  margin:16px 0 14px;
  font-family:var(--serif);
  font-size:clamp(34px,3.8vw,56px);
  font-weight:300;
  line-height:1.04;
  color:var(--ink);
}
.kk-page-cta p{
  max-width:560px;
  margin:0 auto 28px;
  color:var(--mid);
  font-size:15px;
  line-height:1.76;
}
.kk-page-cta__actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

@media(max-width:760px){
  .kk-page-head{
    padding:130px 20px 34px;
  }
  .kk-page-head h1{
    font-size:40px;
  }
  .kk-page-head p{
    font-size:14px;
  }
  .kk-inner-site .kk-page{
    padding:24px 20px 56px;
  }
  .kk-inner-site .kk-page__content{
    padding:40px 24px;
  }
  .kk-inner-site .kk-page__content p:first-of-type{
    font-size:16px;
  }
  .kk-page-cta{
    padding:0 20px 76px;
  }
  .kk-page-cta__inner{
    padding:36px 24px;
  }
  .kk-page-cta__actions .btn{
    width:100%;
  }
}

/* Service-style internal layout */
.kk-breadcrumb{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:0 0 18px;
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--soft);
}
.kk-breadcrumb a{
  color:var(--mid);
  transition:color .25s var(--ease);
}
.kk-breadcrumb a:hover{
  color:var(--accent);
}
.kk-breadcrumb span::before{
  content:'/';
  margin-right:10px;
  color:var(--soft);
}
.kk-page-cover{
  margin:0 0 30px;
  overflow:hidden;
  background:var(--off);
}
.kk-page-cover img{
  width:100%;
  aspect-ratio:16/9;
  height:auto;
  max-height:520px;
  object-fit:cover;
  display:block;
}
.kk-inner-site .kk-page__content{
  box-shadow:none;
  border:1px solid var(--rule);
}
.kk-page-highlights{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  margin-top:34px;
  background:var(--rule);
  border:1px solid var(--rule);
}
.kk-page-highlight{
  min-height:210px;
  padding:30px 28px;
  background:var(--white);
}
.kk-page-highlight span{
  display:block;
  margin-bottom:30px;
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.14em;
  color:var(--soft);
}
.kk-page-highlight h3{
  margin:0 0 12px;
  font-family:var(--serif);
  font-size:25px;
  font-weight:400;
  line-height:1.12;
  color:var(--ink);
}
.kk-page-highlight p{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:var(--mid);
}

@media(max-width:980px){
  .kk-page-cover img{
    max-height:420px;
  }
  .kk-page-highlights{
    grid-template-columns:1fr;
  }
  .kk-page-highlight{
    min-height:0;
  }
}

@media(max-width:640px){
  .kk-breadcrumb{
    flex-wrap:wrap;
    font-size:10px;
    line-height:1.5;
  }
  .kk-page-cover{
    margin-bottom:22px;
  }
  .kk-page-cover img{
    aspect-ratio:4/3;
    max-height:none;
  }
  .kk-page-highlights{
    margin-top:18px;
  }
  .kk-page-highlight{
    padding:24px 22px;
  }
}

/* Screenshot-style internal page cover */
.kk-inner-site .kk-page-head{
  text-align:left;
}
.kk-inner-site .kk-page-head__inner{
  max-width:920px;
}
.kk-inner-site .kk-breadcrumb{
  justify-content:flex-start;
}
.kk-inner-site .kk-page-head h1{
  margin:0 0 16px;
  font-family:var(--body);
  font-size:clamp(34px,3.8vw,48px);
  font-weight:600;
  line-height:1;
  letter-spacing:0;
  text-transform:uppercase;
}
.kk-inner-site .kk-page-head p{
  max-width:760px;
  margin:0;
}
.kk-inner-site .kk-page-cover{
  margin:0 0 24px;
}
.kk-inner-site .kk-page-cover img{
  width:100%;
  aspect-ratio:16/9;
  max-height:520px;
  object-fit:cover;
}

@media(max-width:640px){
  .kk-inner-site .kk-page-head h1{
    font-size:32px;
  }
  .kk-inner-site .kk-page-cover img{
    aspect-ratio:4/3;
  }
}

/* Pre-fabricated cabinets catalog */
.kk-cabinets-page .kk-inner-main{
  background:var(--white);
}
.kk-cabinets-hero{
  padding:148px 28px 0;
  background:var(--white);
}
.kk-cabinets-hero__inner{
  max-width:1180px;
  margin:0 auto;
}
.kk-cabinets-page .kk-breadcrumb{
  justify-content:flex-start;
  margin-bottom:28px;
}
.kk-cabinets-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:48px;
  align-items:end;
  padding-bottom:34px;
  border-bottom:1px solid var(--rule);
}
.kk-cabinets-title .eyebrow{
  display:block;
  margin-bottom:14px;
}
.kk-cabinets-title h1{
  margin:0 0 18px;
  font-family:var(--body);
  font-size:54px;
  font-weight:700;
  line-height:1;
  letter-spacing:0;
  text-transform:uppercase;
  color:var(--ink);
}
.kk-cabinets-title p{
  max-width:760px;
  margin:0;
  font-size:18px;
  line-height:1.76;
  color:var(--mid);
}
.kk-cabinets-estimate{
  padding-left:30px;
  border-left:1px solid var(--rule);
}
.kk-cabinets-estimate span{
  display:block;
  margin-bottom:10px;
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--soft);
}
.kk-cabinets-estimate h2{
  margin:0 0 22px;
  font-family:var(--serif);
  font-size:34px;
  font-weight:300;
  line-height:1.05;
  color:var(--ink);
}
.kk-cabinets-intro{
  padding:36px 28px 20px;
}
.kk-cabinets-intro__inner{
  max-width:920px;
  margin:0 auto;
}
.kk-cabinets-copy{
  text-align:center;
}
.kk-cabinets-copy p{
  margin:0 auto 18px;
  font-size:18px;
  line-height:1.82;
  color:var(--mid);
}
.kk-cabinets-copy > *:last-child{
  margin-bottom:0;
}
.kk-cabinets-gallery-section{
  padding:34px 28px 110px;
}
.kk-cabinets-gallery-head{
  max-width:1180px;
  margin:0 auto 26px;
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  border-bottom:1px solid var(--rule);
  padding-bottom:18px;
}
.kk-cabinets-gallery-head h2{
  margin:0;
  font-family:var(--body);
  font-size:36px;
  font-weight:700;
  line-height:1;
  letter-spacing:0;
  text-transform:uppercase;
  color:var(--ink);
}
.kk-cabinet-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:28px 24px;
}
.kk-cabinet-card{
  margin:0;
  overflow:hidden;
  background:var(--off);
}
.kk-cabinet-card a{
  display:block;
  outline-offset:4px;
}
.kk-cabinet-card img{
  width:100%;
  aspect-ratio:5/8;
  object-fit:cover;
  transition:transform .45s var(--ease);
}
.kk-cabinet-card:hover img{
  transform:scale(1.025);
}
.kk-cabinets-cta{
  padding:0 28px 104px;
}
.kk-cabinets-cta__inner{
  max-width:1180px;
  margin:0 auto;
  padding:48px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:36px;
  align-items:center;
  background:var(--off);
  border:1px solid var(--rule);
}
.kk-cabinets-cta h2{
  margin:12px 0 14px;
  font-family:var(--serif);
  font-size:46px;
  font-weight:300;
  line-height:1.04;
  color:var(--ink);
}
.kk-cabinets-cta p{
  max-width:650px;
  margin:0;
  font-size:15px;
  line-height:1.76;
  color:var(--mid);
}
.kk-cabinets-cta__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

@media(max-width:1060px){
  .kk-cabinets-hero__grid{
    grid-template-columns:1fr;
    gap:28px;
  }
  .kk-cabinets-estimate{
    padding-left:0;
    border-left:0;
    max-width:430px;
  }
  .kk-cabinet-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .kk-cabinets-cta__inner{
    grid-template-columns:1fr;
  }
  .kk-cabinets-cta__actions{
    justify-content:flex-start;
  }
}

@media(max-width:760px){
  .kk-cabinets-hero{
    padding:130px 20px 0;
  }
  .kk-cabinets-hero__grid{
    padding-bottom:28px;
  }
  .kk-cabinets-title h1{
    font-size:36px;
  }
  .kk-cabinets-title p,
  .kk-cabinets-copy p{
    font-size:16px;
  }
  .kk-cabinets-intro{
    padding:30px 20px 16px;
  }
  .kk-cabinets-gallery-section{
    padding:28px 20px 76px;
  }
  .kk-cabinets-gallery-head{
    display:block;
  }
  .kk-cabinets-gallery-head .eyebrow{
    display:block;
    margin-bottom:12px;
  }
  .kk-cabinets-gallery-head h2{
    font-size:32px;
  }
  .kk-cabinet-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
  }
  .kk-cabinets-cta{
    padding:0 20px 76px;
  }
  .kk-cabinets-cta__inner{
    padding:34px 24px;
  }
  .kk-cabinets-cta h2{
    font-size:34px;
  }
  .kk-cabinets-cta__actions .btn{
    width:100%;
  }
}

@media(max-width:460px){
  .kk-cabinet-grid{
    grid-template-columns:1fr;
  }
}

/* Kitchen layouts page */
.kk-layouts-page .kk-inner-main{
  background:var(--white);
}
.kk-layouts-hero{
  padding:148px 28px 0;
  background:var(--white);
}
.kk-layouts-hero__inner{
  max-width:1180px;
  margin:0 auto;
}
.kk-layouts-page .kk-breadcrumb{
  justify-content:flex-start;
  margin-bottom:28px;
}
.kk-layouts-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:48px;
  align-items:end;
  padding-bottom:34px;
  border-bottom:1px solid var(--rule);
}
.kk-layouts-title .eyebrow{
  display:block;
  margin-bottom:14px;
}
.kk-layouts-title h1{
  margin:0 0 18px;
  font-family:var(--body);
  font-size:54px;
  font-weight:700;
  line-height:1;
  letter-spacing:0;
  text-transform:uppercase;
  color:var(--ink);
}
.kk-layouts-title p{
  max-width:760px;
  margin:0;
  font-size:18px;
  line-height:1.76;
  color:var(--mid);
}
.kk-layouts-estimate{
  padding-left:30px;
  border-left:1px solid var(--rule);
}
.kk-layouts-estimate span{
  display:block;
  margin-bottom:10px;
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--soft);
}
.kk-layouts-estimate h2{
  margin:0 0 22px;
  font-family:var(--serif);
  font-size:34px;
  font-weight:300;
  line-height:1.05;
  color:var(--ink);
}
.kk-layouts-intro{
  padding:36px 28px 18px;
}
.kk-layouts-intro__inner{
  max-width:920px;
  margin:0 auto;
}
.kk-layouts-copy{
  text-align:center;
}
.kk-layouts-copy p{
  margin:0 auto 18px;
  font-size:18px;
  line-height:1.82;
  color:var(--mid);
}
.kk-layouts-copy > *:last-child{
  margin-bottom:0;
}
.kk-layouts-list{
  padding:42px 28px 104px;
}
.kk-layouts-list__inner{
  max-width:1180px;
  margin:0 auto;
}
.kk-layouts-list__head{
  margin-bottom:18px;
  padding-bottom:18px;
  border-bottom:1px solid var(--rule);
}
.kk-layouts-list__head .eyebrow{
  display:block;
  margin-bottom:12px;
}
.kk-layouts-list__head h2{
  margin:0;
  font-family:var(--body);
  font-size:36px;
  font-weight:700;
  line-height:1;
  letter-spacing:0;
  text-transform:uppercase;
  color:var(--ink);
}
.kk-layout-card{
  display:grid;
  grid-template-columns:minmax(0,570px) minmax(0,1fr);
  gap:56px;
  align-items:center;
  padding:44px 0;
  border-bottom:1px solid var(--rule);
}
.kk-layout-card.is-reverse{
  grid-template-columns:minmax(0,1fr) minmax(0,570px);
}
.kk-layout-card.is-reverse .kk-layout-card__media{
  order:2;
}
.kk-layout-card.is-reverse .kk-layout-card__content{
  order:1;
}
.kk-layout-card__media{
  margin:0;
  background:var(--white);
  border:1px solid var(--rule);
}
.kk-layout-card__media img{
  width:100%;
  aspect-ratio:19/15;
  object-fit:contain;
}
.kk-layout-card__content span{
  display:block;
  margin-bottom:22px;
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.14em;
  color:var(--soft);
}
.kk-layout-card__content h3{
  margin:0 0 16px;
  font-family:var(--serif);
  font-size:42px;
  font-weight:300;
  line-height:1.06;
  color:var(--ink);
}
.kk-layout-card__content p{
  max-width:480px;
  margin:0;
  font-size:16px;
  line-height:1.78;
  color:var(--mid);
}
.kk-layout-card.is-reverse .kk-layout-card__content p{
  max-width:520px;
}
.kk-layouts-cta{
  padding:0 28px 104px;
}
.kk-layouts-cta__inner{
  max-width:1180px;
  margin:0 auto;
  padding:48px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:36px;
  align-items:center;
  background:var(--off);
  border:1px solid var(--rule);
}
.kk-layouts-cta h2{
  margin:12px 0 14px;
  font-family:var(--serif);
  font-size:46px;
  font-weight:300;
  line-height:1.04;
  color:var(--ink);
}
.kk-layouts-cta p{
  max-width:650px;
  margin:0;
  font-size:15px;
  line-height:1.76;
  color:var(--mid);
}
.kk-layouts-cta__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

@media(max-width:1060px){
  .kk-layouts-hero__grid{
    grid-template-columns:1fr;
    gap:28px;
  }
  .kk-layouts-estimate{
    padding-left:0;
    border-left:0;
    max-width:430px;
  }
  .kk-layout-card,
  .kk-layout-card.is-reverse{
    grid-template-columns:1fr;
    gap:26px;
  }
  .kk-layout-card.is-reverse .kk-layout-card__media,
  .kk-layout-card.is-reverse .kk-layout-card__content{
    order:initial;
  }
  .kk-layout-card__content p{
    max-width:720px;
  }
  .kk-layouts-cta__inner{
    grid-template-columns:1fr;
  }
  .kk-layouts-cta__actions{
    justify-content:flex-start;
  }
}

@media(max-width:760px){
  .kk-layouts-hero{
    padding:130px 20px 0;
  }
  .kk-layouts-hero__grid{
    padding-bottom:28px;
  }
  .kk-layouts-title h1{
    font-size:36px;
  }
  .kk-layouts-title p,
  .kk-layouts-copy p{
    font-size:16px;
  }
  .kk-layouts-intro{
    padding:30px 20px 14px;
  }
  .kk-layouts-list{
    padding:28px 20px 76px;
  }
  .kk-layouts-list__head h2{
    font-size:32px;
  }
  .kk-layout-card{
    padding:30px 0;
  }
  .kk-layout-card__content span{
    margin-bottom:14px;
  }
  .kk-layout-card__content h3{
    font-size:34px;
  }
  .kk-layout-card__content p{
    font-size:15px;
  }
  .kk-layouts-cta{
    padding:0 20px 76px;
  }
  .kk-layouts-cta__inner{
    padding:34px 24px;
  }
  .kk-layouts-cta h2{
    font-size:34px;
  }
  .kk-layouts-cta__actions .btn{
    width:100%;
  }
}

