:root{
  --bg:#111214;
  --bg-soft:#17181c;
  --panel:#1c1b1b;
  --gold:#c9a96e;
  --gold-dark:#a9854b;
  --text:#f3eee6;
  --muted:#c8beb0;
  --line:rgba(201,169,110,.16);
  --shadow:0 18px 50px rgba(0,0,0,.28);
  --max:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  color:var(--text);
  font-family:Arial, Helvetica, sans-serif;
  background:
    linear-gradient(rgba(8,8,10,.78), rgba(8,8,10,.84)),
    url("images/texture-dark.jpg") center top / cover fixed no-repeat;
}

h1,h2,h3,strong,.brand strong{
  font-family:Georgia, "Times New Roman", serif;
}

img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
.container{width:min(calc(100% - 32px), var(--max));margin:0 auto}

.top-strip{
  text-align:center;
  padding:10px 14px;
  font-size:.82rem;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:#f0e4d0;
  background:linear-gradient(90deg, rgba(201,169,110,.18), rgba(201,169,110,.04), rgba(201,169,110,.18));
  border-bottom:1px solid rgba(255,255,255,.08);
}

.site-header{
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:blur(12px);
  background:rgba(12,12,14,.44);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.brand{display:flex;align-items:center;gap:14px}
.brand img{width:160px;height:160px;object-fit:contain}
.brand strong{display:block;font-size:1.35rem}
.brand span{
  display:block;
  font-size:.78rem;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:var(--muted)
}

.nav-links{display:flex;align-items:center;gap:26px}
.nav-links a{color:#ece8e1}
.nav-links a:hover{color:var(--gold)}

.nav-cta{
  padding:12px 18px;
  border:1px solid rgba(201,169,110,.4);
  border-radius:999px;
}

.menu-toggle{
  display:none;
  background:none;
  border:none;
  color:#fff;
  font-size:1.8rem;
  cursor:pointer;
}

.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(8,8,10,.88) 0%, rgba(8,8,10,.62) 46%, rgba(8,8,10,.22) 100%),
    url("images/hero-kitchen.jpg") right center/cover no-repeat;
  z-index:-1;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.10)),
    url("images/texture-dark.jpg") center/cover no-repeat;
  mix-blend-mode:multiply;
  opacity:.72;
  z-index:-1;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:28px;
  align-items:center;
  padding:84px 0;
}

.eyebrow{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:2.5px;
  font-size:.84rem;
  margin-bottom:14px;
}

.hero h1{
  margin:0;
  font-size:clamp(2.8rem, 6vw, 5.4rem);
  line-height:.96;
  max-width:760px;
}

.hero h1 span{
  color:var(--gold);
}

.lead{
  max-width:720px;
  font-size:1.18rem;
  line-height:1.8;
  color:rgba(255,255,255,.88);
  margin:22px 0 0;
}

.hero-actions,.text-block .btn{margin-top:30px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:4px;
  font-weight:700;
  border:1px solid transparent;
  transition:.2s ease;
  box-shadow:var(--shadow);
}

.btn:hover{transform:translateY(-2px)}

.btn-primary{
  background:linear-gradient(180deg, #dbc08d, var(--gold-dark));
  color:#18140d
}

.btn-secondary{
  background:rgba(15,15,18,.62);
  border-color:rgba(255,255,255,.14);
  color:#fff
}

.hero-highlights{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:34px;
  max-width:700px;
}

.hero-highlights div{
  background:rgba(20,20,22,.28);
  border:1px solid rgba(255,255,255,.06);
  border-radius:4px;
  padding:16px 18px;
}

.hero-highlights strong{display:block;font-size:1.05rem;margin-bottom:4px}
.hero-highlights span{color:var(--muted);font-size:.95rem}

.hero-panel{display:flex;justify-content:flex-end}

.panel-card{
  width:min(100%,420px);
  background:rgba(18,18,20,.36);
  border:1px solid rgba(255,255,255,.08);
  border-radius:4px;
  padding:30px;
  box-shadow:var(--shadow);
}

.panel-label{
  margin:0 0 10px;
  color:var(--gold);
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:.82rem
}

.panel-card h2{
  margin:0 0 18px;
  font-size:2rem;
  line-height:1.15
}

.panel-card ul{
  padding-left:18px;
  line-height:1.9;
  color:#ece7dd
}

.text-link{color:var(--gold);font-weight:700}

.stats{
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.10);
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  padding:22px 0;
}

.stats-grid div{
  background:rgba(18,18,18,.22);
  border:1px solid rgba(255,255,255,.05);
  border-radius:4px;
  padding:18px;
  box-shadow:var(--shadow);
}

.stats-grid strong{
  display:block;
  font-size:1.3rem;
  color:var(--gold)
}

.stats-grid span{color:var(--muted)}

.section{
  padding:96px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:transparent;
}

.section-heading{
  text-align:center;
  max-width:800px;
  margin:0 auto 40px;
}

.section-heading h2,
.text-block h2,
.contact-card h2{
  margin:0;
  font-size:clamp(2rem, 4vw, 3.4rem);
  line-height:1.06
}

.split{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:34px;
  align-items:center;
}

.reverse{grid-template-columns:1.05fr .95fr}

.media-card,.contact-card,.form-card,.service-card,.project-card{
  background:rgba(17,17,19,.26);
  border:1px solid rgba(255,255,255,.08);
  border-radius:4px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.media-card{padding:40px}
.media-card img{max-height:420px;object-fit:contain;margin:auto}

.text-block p{
  font-size:1.06rem;
  line-height:1.85;
  color:#e5dfd5
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:28px;
}
.card-grid .service-card{
  grid-column: span 2;
}
/* Center the last two cards by starting them in col 2 and col 4 */
.card-grid .service-card:nth-child(4){
  grid-column: 2 / 4;
}
.card-grid .service-card:nth-child(5){
  grid-column: 4 / 6;
}

.service-card img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}

.service-copy{padding:22px}
.service-copy h3{margin:0 0 10px;font-size:1.45rem}
.service-copy p{margin:0;color:#d7d0c5;line-height:1.75}

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

.project-card img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover
}

.project-card figcaption{
  padding:16px 18px;
  color:var(--gold);
  font-weight:700
}

.feature-list{
  margin:22px 0 0;
  padding-left:20px;
  color:#e5dfd5;
  line-height:1.9
}

.contact-wrap{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:22px;
  align-items:stretch
}

.contact-card,.form-card{padding:30px}

.contact-lines{
  display:grid;
  gap:12px;
  margin-top:24px
}

.contact-lines a{
  font-size:1.12rem;
  color:#fff
}

.form-card{
  display:grid;
  gap:14px
}

.form-card input,
.form-card select,
.form-card textarea{
  width:100%;
  padding:15px 16px;
  border-radius:4px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(12,12,12,.42);
  color:#fff;
  font:inherit
}

.form-card textarea{
  min-height:140px;
  resize:vertical
}

.site-footer{
  padding:44px 16px 70px;
  text-align:center;
  color:#d6cec1;
  background:transparent;
}

.site-footer img{
  width:360px;
  margin:0 auto 20px;
  opacity:0.35;
  filter:brightness(1.4) saturate(0.4)
}

.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0)
}

@media (max-width:1100px){
  .hero-grid,.split,.reverse,.contact-wrap{
    grid-template-columns:1fr
  }

  .hero-panel{justify-content:flex-start}

  .card-grid{grid-template-columns:repeat(4,1fr);gap:20px}
  .card-grid .service-card{grid-column:span 2}
  .card-grid .service-card:nth-child(4){grid-column:1/3}
  .card-grid .service-card:nth-child(5){grid-column:3/5}
  .project-grid,.stats-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:800px){
  .menu-toggle{display:block}

  .nav{
    padding:12px 0;
    flex-wrap:wrap
  }

  .nav-links{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:flex-start;
    padding:8px 0 14px
  }

  .nav-links.open{display:flex}

  .hero{min-height:auto}
  .hero-grid{padding:66px 0}

  .hero-highlights,.project-grid,.stats-grid{
    grid-template-columns:1fr
  }
  .card-grid{grid-template-columns:1fr}
  .card-grid .service-card,
  .card-grid .service-card:nth-child(4),
  .card-grid .service-card:nth-child(5){grid-column:1 / -1}

  .media-card{padding:28px}
}