:root {
  --bg: #f4efe8;
  --bg-soft: #fbf8f4;
  --bg-deep: #181310;
  --panel: rgba(255, 252, 248, 0.78);
  --panel-strong: rgba(255, 252, 248, 0.88);
  --ink: #1d1814;
  --muted: #675f57;
  --line: rgba(93, 75, 57, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --wood: #be9168;
  --stone: #d8cec1;
  --sand: #ede3d7;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(29, 19, 11, 0.12);
  --shadow-soft: 0 16px 38px rgba(38, 26, 16, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fcfaf7 0%, #f6f0e9 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
.container { width: min(1200px, calc(100% - 44px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(248, 243, 237, 0.68);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav a,
.footer-links a,
.contact-meta a { transition: opacity .2s ease, transform .2s ease; }
.nav a:hover,
.footer-links a:hover,
.contact-meta a:hover { opacity: .72; }

.phone-link {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--bg-deep);
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(100deg, rgba(16, 13, 10, 0.78) 0%, rgba(20, 16, 12, 0.56) 38%, rgba(20, 16, 12, 0.24) 72%, rgba(20, 16, 12, 0.12) 100%), url('images/kitchen-hero.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(244,239,232,0) 0%, rgba(244,239,232,0.92) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 18%, rgba(255,255,255,0.16), transparent 24%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 360px);
  gap: 28px;
  align-items: end;
  padding: 88px 0 110px;
}

.glass-panel {
  background: var(--panel);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.26);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 40px;
  border-radius: 32px;
}

.hero-aside {
  padding: 26px;
  border-radius: 28px;
  align-self: stretch;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

.eyebrow { color: rgba(255,255,255,0.8); }
.section-label { color: var(--muted); }

h1, h2, h3 {
  font-family: 'Manrope', sans-serif;
  line-height: 1.08;
  margin: 0;
}

h1 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.8rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 13ch;
}

h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.hero-text {
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin: 22px 0 30px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #eee2d2 100%);
  color: var(--bg-deep);
}
.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.07);
}
.btn-full { width: 100%; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-meta span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.94);
  font-size: 0.92rem;
}

.hero-stat + .hero-stat {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(91, 71, 51, 0.14);
}

.hero-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.hero-stat span,
.intro-card p,
.section-head p,
.service-card p,
.material-panel p,
.material-item p,
.process-item p,
.quote-card span,
.contact-copy p,
.footer-wrap p,
.contact-form input,
.contact-form textarea,
.contact-meta,
.footer-links {
  color: var(--muted);
}

.section { padding: 104px 0; }

.intro-band { padding-top: 24px; }

.intro-grid,
.section-head,
.material-grid,
.process-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  gap: 28px;
}

.intro-grid,
.section-head,
.testimonial-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
}

.intro-card {
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(246,239,230,0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.services-section { background: transparent; }
.align-end { align-items: end; }

.services-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  gap: 22px;
}

.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,244,238,0.96));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.feature-card {
  background: linear-gradient(180deg, #1f1915 0%, #342a23 100%);
  border-color: rgba(255,255,255,0.06);
}

.feature-card h3,
.feature-card p,
.feature-card .card-index { color: rgba(255,255,255,0.92); }

.card-index {
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 800;
  color: var(--wood);
  letter-spacing: 0.08em;
}

.showcase-section {
  background: linear-gradient(180deg, #efe7dd 0%, #f8f4ee 100%);
}

.gallery-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 290px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(15,12,9,0.48) 100%);
}

.gallery-item figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.gallery-large {
  grid-row: 1 / span 2;
  min-height: 600px;
}

.gallery-item.wide {
  grid-column: 2 / span 2;
}

.material-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}

.dark-panel {
  background: linear-gradient(180deg, #1c1612 0%, #2c241e 100%);
  color: var(--white);
  padding: 36px;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.dark-panel .section-label,
.dark-panel p { color: rgba(255,255,255,0.74); }
.dark-panel h2 { color: var(--white); }

.material-list {
  display: grid;
  gap: 18px;
}

.material-item,
.process-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.material-item:first-child,
.process-item:first-child { border-top: none; padding-top: 0; }

.material-item span,
.process-item span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ede2d5;
  color: var(--bg-deep);
  font-weight: 800;
}

.process-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.process-list { display: grid; gap: 18px; }

.testimonial-section {
  background: linear-gradient(180deg, #f9f5ef 0%, #f4ede4 100%);
}

.quote-card {
  margin: 0;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,236,228,0.94));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.quote-card p {
  margin: 0 0 18px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.2rem, 2.3vw, 1.7rem);
  line-height: 1.4;
  color: var(--ink);
}

.contact-section {
  background: linear-gradient(180deg, #f4ede4 0%, #fbf8f3 100%);
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-form {
  padding: 28px;
  border-radius: 30px;
  background: var(--panel-strong);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
  font: inherit;
  margin-bottom: 14px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 22px;
  font-weight: 600;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  background: #fbf8f4;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .hero-grid,
  .intro-grid,
  .section-head,
  .services-grid,
  .gallery-grid,
  .material-grid,
  .process-grid,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-large,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .nav-wrap { flex-wrap: wrap; }
  .phone-link { width: 100%; text-align: center; }
  .hero { min-height: auto; }
  .hero-copy,
  .hero-aside,
  .dark-panel,
  .contact-form,
  .quote-card,
  .intro-card,
  .service-card { padding: 24px; }
  .section { padding: 76px 0; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1200px); }
  h1 { max-width: 9.8ch; }
  .material-item,
  .process-item { grid-template-columns: 54px 1fr; }
}
