:root {
  --bg: #f6f1e9;
  --bg-soft: #fbf8f4;
  --surface: rgba(255,255,255,0.78);
  --surface-strong: #ffffff;
  --text: #121212;
  --muted: #5f5b55;
  --accent: #c8a06b;
  --accent-deep: #a98555;
  --line: rgba(18,18,18,0.08);
  --shadow: 0 20px 60px rgba(18, 18, 18, 0.08);
  --radius: 24px;
  --radius-small: 18px;
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200,160,107,0.18), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(200,160,107,0.12), transparent 22%),
    linear-gradient(180deg, #fbf8f4 0%, #f5efe7 100%);
}

a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1,h2,h3 { margin: 0; }
.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}
.topbar {
  background: #111111;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}
.topbar-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(251,248,244,0.82);
  border-bottom: 1px solid rgba(18,18,18,0.05);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 88px;
}
.logo {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.logo-accent { color: var(--accent-deep); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  color: #2c2c2c;
}
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #d8b88c);
  box-shadow: 0 10px 30px rgba(200,160,107,0.24);
  color: #fff;
}
.btn-secondary {
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(18,18,18,0.12);
}
.btn-dark {
  background: #111;
  color: #fff;
}
.hero {
  padding: 48px 0 36px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 28px;
  align-items: center;
}
.hero-copy {
  padding: 36px 0;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-deep);
}
.hero h1 {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 10ch;
}
.lead {
  margin-top: 22px;
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  color: #3a3733;
  font-weight: 500;
}
.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-points span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(200,160,107,0.16);
}
.hero-visual {
  position: relative;
  min-height: 670px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(243,235,224,0.88));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(200,160,107,0.12), transparent 26%);
}
.card-shadow { box-shadow: 0 18px 45px rgba(18,18,18,0.12); }
.showcase { position: absolute; }
.poster {
  top: 52px; left: 100px;
  width: 220px; height: 310px;
  background: #efe7dc;
  border-radius: 8px;
  padding: 18px;
}
.poster-head { font-weight: 800; font-size: 26px; line-height: 1; max-width: 7ch; }
.poster-building {
  margin-top: 18px;
  height: 180px;
  border-radius: 6px;
  background: linear-gradient(160deg, #86abc5 0%, #d7e6ee 45%, #7f8e99 46%, #d9d5cc 46.5%, #ece6dc 100%);
  position: relative;
  overflow: hidden;
}
.poster-building::before {
  content: "";
  position: absolute;
  inset: 45px 16px 18px 16px;
  background: linear-gradient(135deg, #e4e0d8 0%, #9cb8cc 30%, #2e556e 30%, #24465a 64%, #d9d6cf 65%, #c8c3ba 100%);
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%, 0 40%);
}
.poster-foot { position: absolute; bottom: 14px; right: 18px; font-size: 12px; font-weight: 700; }
.brochure {
  left: 260px; top: 240px;
  width: 280px; height: 190px;
  display: flex;
  transform: rotate(-8deg);
  border-radius: 10px;
  overflow: hidden;
}
.brochure-page {
  flex: 1;
  background: #fff;
  position: relative;
}
.brochure-left {
  padding: 20px;
  background: linear-gradient(180deg, #ffffff, #efeae3);
}
.brochure-left h3 { font-size: 28px; line-height: 1.05; max-width: 6ch; }
.brochure-right { background: linear-gradient(145deg, #ffffff 0%, #e7ddd1 70%); }
.bag {
  right: 180px; top: 160px;
  width: 160px; height: 205px;
  background: linear-gradient(180deg, #d9c1a2, #c5a274);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800;
  color: #111;
}
.bag-handle {
  position: absolute; top: -28px; width: 34px; height: 46px;
  border: 4px solid #423934; border-bottom: 0; border-radius: 999px 999px 0 0;
}
.bag-handle.left { left: 34px; }
.bag-handle.right { right: 34px; }
.banner {
  right: 34px; top: 84px;
  width: 170px; height: 390px;
  background: #111;
  border-radius: 10px;
}
.banner::before, .banner::after {
  content: "";
  position: absolute; bottom: 0;
  width: 110px; height: 110px;
  background: #c6a06e;
  border-radius: 100px 100px 0 0;
}
.banner::before { left: -20px; }
.banner::after { right: -40px; opacity: 0.38; }
.banner-inner {
  position: absolute; inset: 26px 18px 18px; color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
}
.banner-inner strong { font-size: 36px; line-height: 0.95; max-width: 5ch; }
.cards {
  left: 332px; bottom: 72px;
  width: 150px; height: 72px;
  background: linear-gradient(135deg, #fff, #e5d8c6);
  border-radius: 14px;
}
.package {
  left: 470px; top: 395px;
  width: 120px; height: 84px;
  background: linear-gradient(160deg, #d0ad7d, #b68c5f);
  border-radius: 8px;
  display: grid; place-items: center;
  font-weight: 700;
}
.plant {
  position: absolute;
  right: 18px; bottom: 24px;
  width: 96px; height: 130px;
  border-radius: 0 0 48px 48px;
  background: linear-gradient(180deg, transparent 0 52%, #b9a491 52% 100%);
}
.plant::before, .plant::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, #4f6f46, #2f4a2c);
  border-radius: 100px 100px 0 100px;
}
.plant::before {
  width: 60px; height: 100px; left: 8px; top: 8px; transform: rotate(-25deg);
}
.plant::after {
  width: 70px; height: 110px; right: 2px; top: 0; transform: rotate(24deg) scaleX(-1);
}
section { padding: 32px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.section-head h2,
.process-copy h2,
.cta-grid h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 11ch;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.service-card,
.project-card,
.step-card,
.process-cta,
.contact-box {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.service-card {
  padding: 26px;
}
.service-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: rgba(200,160,107,0.16);
  color: var(--accent-deep);
  font-size: 22px; font-weight: 700;
}
.service-card h3 { margin-top: 18px; font-size: 20px; letter-spacing: -0.03em; }
.service-card p,
.project-card p,
.step-card p,
.process-cta p,
.cta-grid p,
.benefit-grid p { margin-top: 12px; color: var(--muted); line-height: 1.65; }
.service-card a,
.project-card a { display: inline-block; margin-top: 18px; font-weight: 600; color: var(--accent-deep); }
.benefits { padding-top: 20px; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.benefit-grid article {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.54);
  border: 1px solid rgba(18,18,18,0.06);
}
.benefit-icon {
  width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: 18px;
  background: rgba(200,160,107,0.18);
  color: var(--accent-deep);
  font-size: 24px;
}
.benefit-grid h3 { margin-top: 16px; font-size: 21px; letter-spacing: -0.03em; }
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.project-card { overflow: hidden; padding: 14px; }
.project-image {
  height: 190px;
  border-radius: 18px;
  margin-bottom: 14px;
}
.facade { background: linear-gradient(140deg, #2d3d4a 0, #4e6f88 34%, #d7e5ed 35%, #9fc3d9 36%, #1d2022 62%, #4f4b48 100%); }
.brochure-shot { background: linear-gradient(135deg, #d9c3a3, #ffffff 30%, #f2ece4 45%, #b49366 100%); }
.packaging { background: linear-gradient(135deg, #f5efe7 0, #dcc3a1 35%, #c7a06f 70%, #9f7751 100%); }
.expo { background: linear-gradient(145deg, #52483f, #141414 30%, #c7a06f 31%, #efe8df 100%); }
.project-card span {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  font-weight: 700;
}
.project-card h3 { margin-top: 10px; font-size: 22px; letter-spacing: -0.03em; }
.process-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
  align-items: start;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step-card { padding: 24px; }
.step-card strong {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #d8b88c);
  color: white;
  font-size: 18px;
}
.step-card h3 { margin-top: 16px; font-size: 20px; letter-spacing: -0.03em; }
.process-cta { padding: 26px; }
.rocket {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 20px;
  background: rgba(200,160,107,0.18);
  font-size: 30px;
}
.process-cta h3 { margin-top: 16px; font-size: 30px; line-height: 1.02; letter-spacing: -0.04em; }
.process-cta .btn { margin-top: 18px; width: 100%; }
.cta-band {
  padding-top: 40px;
  padding-bottom: 56px;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(228,212,190,0.8), rgba(248,242,235,0.9));
  border: 1px solid rgba(18,18,18,0.06);
  box-shadow: var(--shadow);
}
.contact-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}
.contact-box {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}
.contact-box span { color: var(--muted); font-size: 15px; }
.contact-box strong { margin-top: 8px; font-size: 22px; letter-spacing: -0.03em; }
.contact-button { min-height: 120px; border-radius: 24px; font-size: 18px; }
.site-footer {
  border-top: 1px solid rgba(18,18,18,0.08);
  background: rgba(255,255,255,0.3);
}
.footer-inner {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: var(--muted);
}

@media (max-width: 1200px) {
  .hero-grid,
  .cta-grid,
  .process-wrap { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { min-height: 620px; }
}

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .main-nav,
  .nav-cta {
    display: none;
  }
  .main-nav.open {
    display: flex;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 88px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .topbar-inner,
  .footer-inner { flex-direction: column; justify-content: center; padding: 10px 0; text-align: center; }
  .topbar-contact { justify-content: center; }
  .hero { padding-top: 24px; }
  .hero-visual { min-height: 520px; }
  .poster { left: 38px; width: 185px; height: 270px; }
  .brochure { left: 180px; top: 250px; width: 230px; height: 160px; }
  .bag { right: 130px; width: 130px; height: 176px; font-size: 22px; }
  .banner { right: 22px; width: 136px; height: 320px; }
  .banner-inner strong { font-size: 28px; }
  .cards { left: 240px; bottom: 54px; width: 122px; }
  .package { left: 370px; top: 372px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .logo { font-size: 32px; }
  .service-grid,
  .benefit-grid,
  .project-grid,
  .step-grid,
  .contact-boxes { grid-template-columns: 1fr; }
  .section-head.split { align-items: start; }
  .hero h1 { max-width: 8ch; }
  .hero-visual { min-height: 430px; }
  .poster { left: 18px; top: 22px; width: 130px; height: 190px; padding: 12px; }
  .poster-head { font-size: 17px; }
  .poster-building { height: 108px; }
  .brochure { left: 92px; top: 220px; width: 170px; height: 115px; }
  .brochure-left h3 { font-size: 17px; }
  .bag { right: 90px; top: 106px; width: 96px; height: 128px; font-size: 13px; }
  .bag-handle { width: 22px; height: 28px; top: -18px; border-width: 3px; }
  .banner { right: 14px; top: 44px; width: 82px; height: 215px; }
  .banner-inner { inset: 14px 10px 10px; }
  .banner-inner strong { font-size: 16px; }
  .cards { left: 112px; bottom: 40px; width: 84px; height: 44px; }
  .package { left: 220px; top: 292px; width: 74px; height: 52px; font-size: 10px; }
  .plant { width: 62px; height: 92px; right: 10px; bottom: 18px; }
  .cta-grid { padding: 22px; }
}
