/* ==========================================================================
   HAUSKRAFT KITCHEN — Stylesheet
   A quiet, architectural, editorial design system for a premium
   European kitchen brand. Built with plain CSS, no frameworks.
   ========================================================================== */

:root{
  /* ---- Palette ---- */
  --grey:        #F3F0E9;   /* warm light grey — primary background */
  --grey-deep:   #E9E4D8;   /* one step darker, for section separation */
  --charcoal:    #2E2B27;   /* soft near-black for text on light */
  --black:       #14120F;   /* deep black — dark sections */
  --black-2:     #1B1815;   /* slightly lifted black, for cards on black */
  --white:       #FFFFFF;
  --gold:        #A8874F;   /* muted brass/gold accent — used sparingly */
  --gold-soft:   rgba(168,135,79,.35);
  --line:        rgba(46,43,39,.12);
  --line-dark:   rgba(255,255,255,.12);

  /* ---- Type ---- */
  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'Jaldi', Arial, sans-serif;

  /* ---- Motion ---- */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur-s: .35s;
  --dur-m: .7s;
  --dur-l: 1.4s;

  /* ---- Layout ---- */
  --container: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --header-h: 96px;
}

/* ---- Reset ---- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--grey);
  color: var(--charcoal);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; cursor: pointer; }
h1,h2,h3,h4{ font-family: var(--display); font-weight: 700; margin: 0; }
p{ margin: 0; }
section{ position: relative; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

:focus-visible{
  outline: 1.5px solid var(--gold);
  outline-offset: 3px;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow{
  font-family: var(--body);
  font-size: 19px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 18px;
}

.section-head{
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head h2{
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: .002em;
}
.section-head p{
  margin-top: 20px;
  font-size: 17px;
  color: rgba(46,43,39,.72);
  max-width: 46ch;
}
.section-head.on-dark p{ color: rgba(255,255,255,.68); }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 13.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all var(--dur-s) var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--charcoal);
  color: var(--white);
}
.btn-primary:hover{ background: var(--black); transform: translateY(-2px); }
.btn-ghost{
  border-color: currentColor;
  background: transparent;
}
.btn-ghost:hover{ background: var(--charcoal); color: var(--white); }
.btn-gold{
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover{ background: #8f7140; transform: translateY(-2px); }
.btn svg{ width: 15px; height: 15px; transition: transform var(--dur-s) var(--ease); }
.btn:hover svg{ transform: translateX(4px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background var(--dur-m) var(--ease), border-color var(--dur-m) var(--ease), height var(--dur-m) var(--ease);
}
.site-header .container{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  position: relative;
}
.site-header.is-scrolled{
  height: 78px;
  background: rgba(243,240,233,.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--line);
}
.site-header.is-scrolled .logo,
.site-header.is-scrolled .nav-link{ color: var(--charcoal); }

.nav-primary,
.nav-secondary{
  display:flex;
  align-items:center;
  gap:clamp(18px, 2.4vw, 40px);
}

.nav-primary{
  justify-content:flex-start;
}

.nav-secondary{
  justify-content:flex-end;
}
.nav-secondary{ justify-content: flex-end; }
.nav-link{
  position: relative;
  font-size: 13.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 0;
  transition: color var(--dur-s) var(--ease);
}
.nav-link::after{
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-m) var(--ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after{ transform: scaleX(1); transform-origin: left; }

.logo-link{
  grid-column:2;
  justify-self:center;
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo-link img{
  width:250px;
  height:auto;
  max-width:none;
  display:block;
    filter:brightness(1.35) contrast(1.15);

}

.header-cta{
  display:none;
}

@media (min-width:1180px){
  .header-cta{
    position:absolute;
    display:inline-flex;
    right:0;
    top:50%;
    transform:translateY(-50%);
    margin:0;
    padding:14px 24px;
    font-size:12px;
    white-space:nowrap;
  }
}

/* Hamburger (mobile) */
.hamburger{
  display: none;
  position: relative;
  width: 26px; height: 18px;
  background: none;
  border: none;
  padding: 0;
  z-index: 20;
}
.hamburger span{
  position: absolute;
  left: 0; right: 0;
  height: 1.4px;
  background: currentColor;
  transition: all var(--dur-s) var(--ease);
}
.hamburger span:nth-child(1){ top: 0; }
.hamburger span:nth-child(2){ top: 8px; }
.hamburger span:nth-child(3){ top: 16px; }
.hamburger.is-open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity: 0; }
.hamburger.is-open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px){
  .nav-primary, .nav-secondary{ display: none; }
  .hamburger{ display: block; color: var(--white); }
  .site-header.is-scrolled .hamburger{ color: var(--charcoal); }
  .site-header .container{ grid-template-columns: auto 1fr auto; }
}

/* Mobile menu overlay */
.mobile-menu{
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform var(--dur-m) var(--ease);
}
.mobile-menu.is-open{ transform: translateY(0); }
.mobile-menu a{
  font-family: var(--display);
  font-size: 32px;
  color: var(--white);
  letter-spacing: .01em;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.mobile-menu.is-open a{ opacity: 1; transform: translateY(0); }
.mobile-menu a:nth-child(1){ transition-delay: .05s; }
.mobile-menu a:nth-child(2){ transition-delay: .1s; }
.mobile-menu a:nth-child(3){ transition-delay: .15s; }
.mobile-menu a:nth-child(4){ transition-delay: .2s; }
.mobile-menu a:nth-child(5){ transition-delay: .25s; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-media .hero-poster{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
.hero-media .hero-poster{
  background-size: cover;
  background-position: center 42%;
}
@keyframes heroZoom{
  from{ transform: scale(1); }
  to{ transform: scale(1.08); }
}
.hero-overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,18,15,.55) 0%, rgba(20,18,15,.32) 32%, rgba(20,18,15,.5) 78%, rgba(20,18,15,.78) 100%);
  z-index: 1;
}
.hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 6vh;
  color: var(--white);
}
.hero-content .inner{
  max-width: 780px;
  margin-left: clamp(0px, 3vw, 40px);
}
.hero-eyebrow{
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .3s forwards;
}
.hero h1{
  font-size: clamp(48px, 8vw, 104px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: .001em;
}
.hero h1 .line{
  display: block;
  overflow: hidden;
}
.hero h1 .line span{
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: fadeUp 1s var(--ease) forwards;
}
.hero h1 .line:nth-child(1) span{
    animation-delay: .45s;
    color: #ffffff;
}

.hero h1 .line:nth-child(2) span{
    animation-delay: .62s;
    font-style: italic;
    color: rgba(255,255,255,.95);
}
.hero-sub{
  margin-top: 30px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,.86);
  max-width: 40ch;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .9s forwards;
}
.hero-sub b{ font-weight: 700; color: var(--white); }
.hero-actions{
  margin-top: 44px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.1s forwards;
}
@keyframes fadeUp{
  from{ opacity: 0; transform: translateY(22px); }
  to{ opacity: 1; transform: translateY(0); }
}
.hero h1 .line span{ animation-name: fadeUpLine; }
@keyframes fadeUpLine{
  from{ opacity: 0; transform: translateY(100%); }
  to{ opacity: 1; transform: translateY(0); }
}

.hero-foot{
  position: absolute;
  left: 0; right: 0; bottom: 34px;
  z-index: 2;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: rgba(255,255,255,.75);
}
.scroll-cue{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.scroll-cue .stick{
  width: 1px; height: 34px;
  background: rgba(255,255,255,.4);
  position: relative;
  overflow: hidden;
}
.scroll-cue .stick::after{
  content: '';
  position: absolute;
  top: -100%; left: 0; right: 0; height: 100%;
  background: var(--gold);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine{
  0%{ top: -100%; }
  60%{ top: 100%; }
  100%{ top: 100%; }
}
.slide-indicator{
  display: flex;
  gap: 8px;
}
.slide-indicator span{
  width: 22px; height: 2px;
  background: rgba(255,255,255,.35);
}
.slide-indicator span.is-active{ background: var(--gold); }

/* ==========================================================================
   REVEAL ANIMATION (Intersection Observer driven)
   ========================================================================== */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible{ transition-delay: .1s; }
.reveal-delay-2.is-visible{ transition-delay: .2s; }
.reveal-delay-3.is-visible{ transition-delay: .3s; }
.reveal-delay-4.is-visible{ transition-delay: .4s; }

/* ==========================================================================
   STYLES INTRO + CARDS
   ========================================================================== */
.styles-section{
  padding: 140px 0 120px;
}
.styles-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}
.styles-head .section-head{ margin-bottom: 0; }
.styles-nav{
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.arrow-btn{
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-s) var(--ease);
}
.arrow-btn svg{ width: 18px; height: 18px; }
.arrow-btn:hover{ background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }
.arrow-btn:disabled{ opacity: .3; pointer-events: none; }

.kitchen-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: clamp(18px, 2vw, 32px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.kitchen-track::-webkit-scrollbar{ display: none; }
@media (min-width: 900px){
  .kitchen-track{ grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); overflow: visible; }
}

.kitchen-card{
  scroll-snap-align: start;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: clamp(400px, 52vw, 560px);
  background: var(--charcoal);
  isolation: isolate;
}
.kitchen-card img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.kitchen-card:hover img{ transform: scale(1.08); }
.kitchen-card::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0) 40%, rgba(20,18,15,.86) 100%);
  transition: opacity var(--dur-m) var(--ease);
}
.kitchen-card-body{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 30px 26px;
  color: var(--white);
  transform: translateY(8px);
  transition: transform var(--dur-m) var(--ease);
}
.kitchen-card:hover .kitchen-card-body{ transform: translateY(0); }
.kitchen-card .kc-index{
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.kitchen-card h3{
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}
.kitchen-card p{
  font-size: 14.5px;
  color: rgba(255,255,255,.72);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all var(--dur-m) var(--ease);
}
.kitchen-card:hover p{ max-height: 80px; opacity: 1; margin-top: 4px; }
.kitchen-card:hover, .kitchen-card:focus-within{ transform: translateY(-6px); }
.kitchen-card{ transition: transform var(--dur-m) var(--ease), box-shadow var(--dur-m) var(--ease); }
.kitchen-card:hover{ box-shadow: 0 30px 60px -20px rgba(20,18,15,.4); }

/* ==========================================================================
   PROJECTS (dark)
   ========================================================================== */
.projects-section{
  background: var(--black);
  color: var(--white);
  padding: 70px 0 120px;
}

/* ===========================
   PROJECT INTRO
=========================== */

.projects-intro{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:clamp(60px,8vw,120px);
  align-items:end;
  margin-bottom:70px;
}

.projects-intro-left{
  max-width:760px;
}

.projects-intro-left .eyebrow{
  display:block;
  margin-bottom:22px;
}

.projects-intro-left h2{
  margin:0;
  font-size:clamp(54px,5vw,82px);
  line-height:.95;
  color:var(--white);
}

.projects-intro-right{
  align-self:end;
  max-width:460px;
}

.projects-intro-right p{
  margin:0 0 26px;
  color:rgba(255,255,255,.72);
  font-size:22px;
  line-height:1.8;
}

.projects-intro-link{
  display:inline-flex;
  align-items:center;
  gap:10px;

  color:var(--gold);

  font-size:13px;
  letter-spacing:.16em;
  text-transform:uppercase;

  transition:.3s;
}

.projects-intro-link span{
  transition:.3s;
}

.projects-intro-link:hover{
  color:#fff;
}

.projects-intro-link:hover span{
  transform:translateX(6px);
}

/* Mobile */

@media (max-width:900px){

  .projects-intro{
      grid-template-columns:1fr;
      gap:28px;
      margin-bottom:45px;
  }

  .projects-intro-right{
      max-width:100%;
  }

  .projects-intro-right p{
      font-size:16px;
  }

}
.projects-slider{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(78%, 620px);
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin: 0 calc(var(--gutter) * -1);
  padding: 0 var(--gutter) 10px;
}
.projects-slider::-webkit-scrollbar{ display: none; }
@media (min-width: 780px){
  .projects-slider{ grid-auto-columns: minmax(420px, 560px); }
}

.project-card{
  scroll-snap-align: start;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 62vh;
  min-height: 420px;
  max-height: 620px;
  isolation: isolate;
}
.project-card img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.project-card:hover img{ transform: scale(1.07); }
.project-card::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,18,15,.92) 0%, rgba(20,18,15,.1) 55%, rgba(20,18,15,.1) 100%);
}
.project-body{
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 32px;
}
.project-loc{
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.project-body h3{ font-size: 30px; color: var(--white); }

.projects-foot{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-section{ padding: 140px 0; }
.why-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.why-card{
  background: var(--grey);
  padding: 48px 34px;
  transition: background var(--dur-m) var(--ease);
}
.why-card:hover{ background: var(--white); }
.why-icon{
  width: 46px; height: 46px;
  margin-bottom: 30px;
  color: var(--gold);
  transition: transform var(--dur-m) var(--ease);
}
.why-card:hover .why-icon{ transform: translateY(-4px); }
.why-card h3{
  font-size: 23px;
  margin-bottom: 12px;
}
.why-card p{
  font-size: 15px;
  color: rgba(46,43,39,.7);
}

/* ==========================================================================
   REVIEWS (dark, glass)
   ========================================================================== */
.reviews-section{
  background: var(--black);
  color: var(--white);
  padding: 140px 0;
}
.reviews-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.review-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 40px 34px;
  transition: transform var(--dur-m) var(--ease), border-color var(--dur-m) var(--ease);
}
.review-card:hover{ transform: translateY(-6px); border-color: var(--gold-soft); }
.stars{
  display: flex;
  gap: 5px;
  margin-bottom: 24px;
}
.stars svg{ width: 16px; height: 16px; fill: var(--gold); }
.review-quote{
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 400;
  color: rgba(255,255,255,.92);
}
.review-attr{
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
}
.review-attr .name{ color: var(--white); font-weight: 700; }
.review-attr .dot{ width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

/* ==========================================================================
   CONSULTATION
   ========================================================================== */
.consult-section{ padding: 140px 0; }
.consult-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.consult-col{ padding: 60px 44px; }
.consult-col--left{ background: var(--charcoal); color: var(--white); }
.consult-col--left h2{ font-size: clamp(30px,3.2vw,42px); line-height: 1.16; }
.consult-col--left p{ margin-top: 18px; color: rgba(255,255,255,.7); font-size: 15.5px; max-width: 32ch; }
.consult-col--left .btn{ margin-top: 36px; }
.consult-col--mid{ background: var(--white); border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.consult-item{ margin-bottom: 28px; }
.consult-item .label{
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 8px;
}
.consult-item .value{ font-size: 18px; font-family: var(--display); }
.consult-col--right{ position: relative; min-height: 320px; padding: 0; }
.consult-col--right img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 980px){
  .consult-grid{ grid-template-columns: 1fr; }
  .consult-col--mid{ border-left: none; border-right: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .consult-col--right{ min-height: 260px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{
  background: var(--white);
  padding-top: 100px;
}
.footer-top{
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}
.footer-brand{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.footer-brand .logo1-link{
  display:flex;
  justify-content:flex-start;
  align-items:center;
  width:100%;
}

.footer-brand .logo1-link img{
  width:240px;
  height:auto;
  display:block;
}

.footer-brand p{
  margin-top:22px;
  font-size: 16px;
  color:rgba(46,43,39,.65);
  max-width:30ch;
}

.footer-col h4{
  font-size: 17px;
  letter-spacing: .16em;
   font-weight:900;
  text-transform: uppercase;
  color: #9d5d03;
  margin-bottom: 22px;
}
.footer-col ul li{ margin-bottom: 13px; }
.footer-col a{
  font-size: 16px;
  color: var(--charcoal);
  transition: color var(--dur-s) var(--ease), padding var(--dur-s) var(--ease);
}
.footer-col a:hover{ color: var(--gold); padding-left: 4px; }

.footer-cta{
  margin: 64px 0;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 10px;
  padding: 56px clamp(28px, 6vw, 72px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-cta h3{ font-size: clamp(26px, 3vw, 36px); max-width: 16ch; }

.footer-bottom{
  padding: 30px 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(46,43,39,.55);
}
.footer-bottom nav{ display: flex; gap: 24px; }

@media (max-width: 900px){
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-top{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   RESPONSIVE — global tweaks
   ========================================================================== */
@media (max-width: 1180px){
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px){
  .styles-head{ flex-direction: column; align-items: flex-start; gap: 24px; }
  .styles-section, .projects-section, .why-section, .reviews-section, .consult-section{ padding-top: 96px; padding-bottom: 96px; }
}
@media (max-width: 640px){
  .why-grid{ grid-template-columns: 1fr; }
  .footer-cta{ flex-direction: column; align-items: flex-start; }
}

/* Lazy-load fade */
img[loading="lazy"]{
  background: var(--grey-deep);
}
