:root {
  --primary: #FEC601;
  --cta: #F8F32B;
  --orange: #EA7317;
  --orange-strong: #F45D01;
  --gold: #F5D547;
  --dark: #171717;
  --text: #292929;
  --muted: #6B6B67;
  --light: #FFF9D9;
  --bg: #FFFFFF;
  --soft: #F8F7F2;
  --warm: #A67C52;
  --border: #E6E2D8;
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230,226,216,.8);
}
.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; position: relative; }
.brand { display: inline-flex; align-items: center; line-height: 0; }
.brand img { display: block; width: 122px; height: auto; max-height: 43px; object-fit: contain; object-position: left center; }
.desktop-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: var(--orange-strong); }
.language-button { border: 0; background: transparent; cursor: pointer; color: var(--dark); font-weight: 600; padding: 8px; }
.language-button span { margin-left: 3px; color: var(--muted); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 23px; height: 2px; background: var(--dark); margin: 5px 0; }

.mobile-menu { display: none; }

.hero {
  min-height: 100svh; padding-top: 76px; position: relative; overflow: hidden;
  background: var(--soft); display: flex; align-items: center; justify-content: center;
}
.hero-bg { position: absolute; inset: 76px 0 0; z-index: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg img {
  width: min(1180px, 100%); height: 100%; object-fit: contain; object-position: center;
  opacity: .22; filter: saturate(.8) contrast(.95);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(248,247,242,.55), rgba(248,247,242,.84));
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: auto -10% -35% -10%; height: 60%;
  background: radial-gradient(circle at 50% 10%, rgba(254,198,1,.18), transparent 56%);
  pointer-events: none; z-index: 1;
}
.hero-content { position: relative; z-index: 3; display: flex; align-items: center; justify-content: center; width: 100%; padding-top: 40px; padding-bottom: 145px; }
.hero-copy { position: relative; z-index: 4; width: min(820px, 100%); text-align: center; }
.eyebrow { color: var(--orange-strong); font-size: 11px; letter-spacing: .16em; font-weight: 800; margin-bottom: 14px; }
.hero-card {
  display: inline-block; width: min(820px, 100%); padding: 38px 48px 40px;
  background: rgba(176, 137, 91, .20);
  border: 1px solid rgba(141, 105, 66, .16);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 55px rgba(70,50,30,.08);
}
.hero h1 {
  margin: 0 auto; color: var(--dark); max-width: 780px;
  font-size: clamp(42px, 5.7vw, 72px); line-height: 1.02; letter-spacing: -.055em; font-weight: 800;
}
.hero h1 span { color: var(--primary); }
.hero-lead {
  margin: 23px 0 4px; color: var(--dark); font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3; font-weight: 500;
}
.hero-subtitle {
  margin: 0 auto 28px; max-width: 650px; color: #4F4A43;
  font-size: clamp(13px, 1.35vw, 16px); line-height: 1.45; font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 48px; padding: 0 21px; border-radius: 11px; font-weight: 600; font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--dark); background: var(--cta); box-shadow: 0 10px 24px rgba(254,198,1,.25); }
.btn-primary:hover { background: var(--primary); }
.btn-secondary { background: white; border: 1px solid rgba(23,23,23,.12); color: var(--dark); }
.btn-secondary:hover { box-shadow: 0 8px 22px rgba(15,15,15,.08); }

.hero-stats {
  position: absolute; z-index: 5; left: 50%; bottom: 58px; transform: translateX(-50%);
  display: grid; grid-template-columns: repeat(4, 1fr); max-width: 900px;
  background: rgba(255,255,255,.82); border: 1px solid rgba(230,226,216,.9);
  border-radius: 15px; backdrop-filter: blur(10px); overflow: hidden;
}
.stat { min-width: 0; padding: 14px 18px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--dark); font-size: 18px; line-height: 1.2; font-weight: 700; }
.stat span { display: block; color: var(--muted); font-size: 10px; margin-top: 4px; white-space: nowrap; }

.scroll-hint {
  position: absolute; bottom: 19px; left: 50%; transform: translateX(-50%); z-index: 5;
  font-size: 9px; font-weight: 700; letter-spacing: .15em; color: #817A70;
}
.scroll-hint span { margin-left: 7px; color: var(--orange-strong); font-size: 14px; }

.brick-field { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.brick {
  position: absolute; top: -60px; border-radius: 3px; opacity: .65;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.08), 0 8px 13px rgba(15,15,15,.08);
  animation: fall linear forwards;
}
.brick::before {
  content: ""; position: absolute; left: 50%; top: -7px; transform: translateX(-50%);
  width: 10px; height: 10px; border-radius: 50%; background: inherit;
  box-shadow: 0 0 0 1px rgba(0,0,0,.07);
}
@keyframes fall {
  0% { transform: translate3d(0,0,0) rotate(0deg); opacity: 0; }
  10% { opacity: .65; }
  80% { opacity: .65; }
  100% { transform: translate3d(var(--drift), 110vh, 0) rotate(var(--rotation)); opacity: 0; }
}

.section { padding: 115px 0; }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading.left { margin-bottom: 0; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2 { color: var(--dark); font-size: clamp(35px, 4.4vw, 57px); line-height: 1.05; letter-spacing: -.05em; margin: 0 0 18px; font-weight: 700; }
.section-heading p { color: var(--muted); font-size: 17px; max-width: 650px; margin: 0; }

.services { background: white; }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.service-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px 29px; min-height: 265px; background: white; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(254,198,1,.65); box-shadow: 0 18px 40px rgba(30,25,15,.07); }
.service-number { color: var(--orange-strong); font-size: 12px; font-weight: 800; }
.service-card h3 { color: var(--dark); font-size: 18px; line-height: 1.2; margin: 33px 0 12px; font-weight: 600; }
.service-card p { color: var(--muted); font-size: 14px; margin: 0; }
.flexible-note { margin-top: 25px; display: flex; align-items: center; gap: 13px; padding: 18px 20px; background: var(--light); border-radius: 13px; }
.flexible-note strong { color: var(--dark); }
.flexible-note span { color: var(--muted); }

.more-than { background: var(--soft); }
.two-column { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: center; }
.application-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.application-grid article { padding: 28px; border-radius: var(--radius); background: white; border: 1px solid var(--border); }
.application-grid span { color: var(--orange-strong); font-size: 12px; font-weight: 800; }
.application-grid h3 { color: var(--dark); margin: 20px 0 7px; font-size: 19px; font-weight: 600; }
.application-grid p { color: var(--muted); font-size: 14px; margin: 0; }

.process { background: white; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-grid article { padding: 0 25px; border-left: 1px solid var(--border); }
.process-grid article:first-child { border-left: 0; padding-left: 0; }
.process-grid .process-number { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--light); color: var(--orange-strong); font-weight: 800; }
.process-grid h3 { color: var(--dark); font-size: 18px; line-height: 1.2; margin: 18px 0 10px; font-weight: 600; }
.process-grid p { color: var(--muted); font-size: 14px; margin: 0; }
.process-image { height: 185px; margin-bottom: 20px; border-radius: 14px; background: var(--soft); display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid var(--border); }
.process-image img { width: 100%; height: 100%; object-fit: contain; display: block; }

.why { background: var(--dark); color: white; }
.why .eyebrow { color: var(--primary); }
.why .section-heading h2 { color: white; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.why-grid article { padding: 30px 25px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.why-grid h3 { margin: 0 0 11px; font-size: 19px; font-weight: 600; }
.why-grid p { color: #C9C4B8; margin: 0; font-size: 14px; }

.projects { background: white; }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.project-card { overflow: hidden; border-radius: 20px; background: white; border: 1px solid var(--border); }
.project-large { grid-row: span 2; }
.project-image { min-height: 260px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: var(--soft); }
.project-large .project-image { min-height: 540px; }
.project-image img { width: 100%; height: 100%; max-height: 540px; object-fit: contain; display: block; }
.project-info { padding: 22px 24px 25px; }
.project-info > span { color: var(--orange-strong); font-size: 10px; letter-spacing: .12em; font-weight: 800; }
.project-info h3 { color: var(--dark); margin: 10px 0 7px; font-size: 22px; letter-spacing: -.025em; font-weight: 600; }
.project-info p { color: var(--muted); margin: 0; font-size: 14px; }

.contact { background: var(--soft); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.contact-email { margin-top: 38px; }
.contact-email span { display: block; text-transform: uppercase; color: #8A8174; font-size: 10px; letter-spacing: .13em; font-weight: 800; margin-bottom: 6px; }
.contact-email a { color: var(--orange-strong); font-weight: 600; }
.project-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 30px; border-radius: 20px; background: white; border: 1px solid var(--border); }
.project-form label { color: var(--dark); font-size: 12px; font-weight: 600; }
.project-form label:nth-of-type(5), .project-form label:nth-of-type(6), .form-button, .form-note { grid-column: 1 / -1; }
.project-form input, .project-form select, .project-form textarea {
  width: 100%; margin-top: 7px; border: 1px solid var(--border); border-radius: 9px; padding: 12px 13px; outline: none; color: var(--text); background: white;
}
.project-form textarea { resize: vertical; }
.project-form input:focus, .project-form select:focus, .project-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(254,198,1,.14); }
.form-button { border: 0; cursor: pointer; }
.form-note { color: #8A8174; font-size: 11px; margin: -5px 0 0; }

.site-footer { background: #171717; color: white; padding: 55px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 50px; padding-bottom: 45px; }
.footer-brand img { width: 122px; filter: none; }
.footer-grid p { color: #C5C0B7; max-width: 350px; font-size: 14px; }
.footer-links { display: grid; gap: 8px; align-content: start; font-size: 14px; }
.footer-links a:hover { color: var(--primary); }
.footer-contact span { display: block; color: #9E978C; font-size: 10px; letter-spacing: .13em; font-weight: 800; margin-bottom: 7px; }
.footer-contact a { color: #E8E4DB; font-size: 14px; }
.footer-bottom { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; color: #8D877D; font-size: 11px; }

@media (max-width: 1050px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 35px 0; }
  .process-grid article:nth-child(3) { border-left: 0; padding-left: 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .nav-wrap { height: 68px; }
  .site-header { background: rgba(255,255,255,.97); }
  .brand { position: absolute; left: 50%; transform: translateX(-50%); }
  .brand img { width: 112px; max-height: 38px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .mobile-menu {
    display: grid; max-height: 0; overflow: hidden; padding: 0 16px;
    background: white; transition: max-height .25s ease, padding .25s ease;
  }
  .mobile-menu.open { max-height: 330px; padding: 10px 16px 20px; }
  .mobile-menu a { padding: 13px 8px; border-bottom: 1px solid var(--border); font-weight: 600; }
  .mobile-language { padding: 14px 8px 5px; color: var(--muted); font-size: 13px; }

  /* Mobile Hero: no fixed-height text container, so the headline can never be clipped. */
  .hero { min-height: auto; padding-top: 68px; padding-bottom: 0; display: block; }
  .hero-bg { inset: 68px 0 0; align-items: flex-start; padding-top: 30px; }
  .hero-bg img { width: 125%; height: 390px; object-fit: contain; opacity: .18; }
  .hero-overlay { inset: 68px 0 0; background: linear-gradient(180deg, rgba(248,247,242,.62), rgba(248,247,242,.94) 65%); }
  .hero-content { padding: 58px 0 32px; min-height: 0; }
  .hero-copy { width: 100%; }
  .eyebrow { font-size: 10px; margin-bottom: 11px; }
  .hero-card { width: 100%; padding: 27px 19px 28px; border-radius: 18px; }
  .hero h1 { font-size: clamp(36px, 11vw, 52px); line-height: 1.03; letter-spacing: -.045em; }
  .hero-lead { font-size: 17px; margin-top: 19px; }
  .hero-subtitle { font-size: 13px; margin-bottom: 23px; }
  .hero-actions .btn { width: 100%; }
  .hero-stats {
    position: relative; left: auto; bottom: auto; transform: none; width: calc(100% - 32px);
    margin: 4px auto 28px; grid-template-columns: repeat(2, 1fr); border-radius: 14px;
  }
  .stat { padding: 12px 8px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .stat strong { font-size: 16px; }
  .stat span { font-size: 9px; white-space: normal; line-height: 1.3; }
  .scroll-hint { display: none; }
  .brick-field { opacity: .55; }

  .section { padding: 80px 0; }
  .section-heading { margin-bottom: 35px; }
  .section-heading h2 { font-size: 38px; }
  .section-heading p { font-size: 15px; }
  .service-grid, .application-grid, .why-grid, .project-grid, .contact-grid, .two-column { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .service-card { min-height: auto; }
  .flexible-note { align-items: flex-start; flex-direction: column; gap: 3px; }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-grid article, .process-grid article:nth-child(3) { border-left: 0; border-top: 1px solid var(--border); padding: 25px 0; }
  .process-grid article:first-child { border-top: 0; padding-top: 0; }
  .process-image { height: 210px; }
  .project-large { grid-row: auto; }
  .project-large .project-image { min-height: 290px; }
  .project-image { min-height: 230px; }
  .project-image img { max-height: 330px; }
  .contact-grid { gap: 40px; }
  .project-form { grid-template-columns: 1fr; padding: 22px; }
  .project-form label:nth-of-type(5), .project-form label:nth-of-type(6), .form-button, .form-note { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { gap: 15px; flex-direction: column; }
}

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