* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
.site {
  min-height: 100vh;
  background: #FDFCF8;
  color: #1F2933;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 248, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #eadfce;
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  background: #1F2933;
  color: #C9A45C;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 22px;
}
.brand-name { font-size: 22px; font-weight: 800; line-height: 1; }
.brand-sub { margin-top: 5px; font-size: 11px; letter-spacing: 0.22em; color: #7b6a4b; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 32px; color: #47515c; font-size: 14px; font-weight: 600; }
.nav a:hover { color: #1F2933; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}
.btn-primary { background: #1F2933; color: #FDFCF8; }
.btn-primary:hover { background: #2b3744; transform: translateY(-1px); }
.btn-secondary { background: rgba(255,255,255,0.65); color: #1F2933; border-color: rgba(201,164,92,0.65); }
.btn-secondary:hover { background: #EFE7DA; transform: translateY(-1px); }
.mobile-toggle { display: none; }
.mobile-label { display: none; cursor: pointer; border: 1px solid #eadfce; border-radius: 14px; padding: 9px 12px; font-size: 22px; }
.mobile-menu { display: none; }
.hero { position: relative; overflow: hidden; padding: 90px 0 95px; }
.hero::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(201,164,92,0.16);
  filter: blur(34px);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(74,90,63,0.10);
  filter: blur(34px);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201,164,92,0.45);
  background: rgba(255,255,255,0.72);
  color: #6d5d3f;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(31,41,51,0.06);
}
.hero h1 { margin: 24px 0 0; font-size: clamp(44px, 6vw, 76px); line-height: 0.96; letter-spacing: -0.055em; max-width: 780px; }
.hero p { margin: 26px 0 0; max-width: 670px; color: #5b6570; font-size: 18px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 42px; max-width: 560px; }
.trust-item { background: rgba(255,255,255,0.72); border: 1px solid #eadfce; border-radius: 22px; padding: 16px; text-align: center; font-size: 14px; font-weight: 800; }
.carousel { position: relative; border: 1px solid #e8decd; background: white; border-radius: 34px; padding: 12px; box-shadow: 0 30px 70px rgba(31,41,51,0.12); overflow: hidden; }
.carousel input { display: none; }
.carousel-window { overflow: hidden; border-radius: 26px; }
.carousel-track { width: 300%; display: flex; transition: transform 0.55s ease; }
.slide { width: 33.3333%; height: 560px; position: relative; flex: 0 0 33.3333%; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
#hero-slide-1:checked ~ .carousel-window .carousel-track { transform: translateX(0); }
#hero-slide-2:checked ~ .carousel-window .carousel-track { transform: translateX(-33.3333%); }
#hero-slide-3:checked ~ .carousel-window .carousel-track { transform: translateX(-66.6666%); }
.slide-caption { position: absolute; left: 22px; right: 22px; bottom: 22px; background: rgba(31,41,51,0.91); color: white; border-radius: 26px; padding: 22px; backdrop-filter: blur(12px); }
.caption-small { color: #C9A45C; font-size: 14px; font-weight: 700; }
.caption-title { font-size: 22px; font-weight: 800; margin-top: 6px; }
.caption-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.caption-tags span { background: rgba(255,255,255,0.12); border-radius: 999px; padding: 6px 11px; font-size: 13px; color: rgba(255,255,255,0.82); }
.carousel-dots { position: absolute; right: 28px; top: 28px; display: flex; gap: 9px; z-index: 2; }
.carousel-dots label { width: 13px; height: 13px; border-radius: 999px; background: rgba(255,255,255,0.56); border: 1px solid rgba(255,255,255,0.7); cursor: pointer; }
#hero-slide-1:checked ~ .carousel-dots label:nth-child(1),
#hero-slide-2:checked ~ .carousel-dots label:nth-child(2),
#hero-slide-3:checked ~ .carousel-dots label:nth-child(3) { background: #C9A45C; }
.section { padding: 86px 0; }
.section-title-wrap { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 34px; }
.kicker { color: #F97316; font-size: 13px; font-weight: 950; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 10px; }
h2 { margin: 0; font-size: clamp(36px, 4.6vw, 62px); line-height: 1; letter-spacing: -0.055em; }
.section-desc { margin: 0; max-width: 470px; color: #5E6676; line-height: 1.7; font-size: 17px; }
.about-panel { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 22px; }
.about-photo { min-height: 480px; border-radius: 38px; background: url("https://images.unsplash.com/photo-1600607687644-c7171b42498f?auto=format&fit=crop&w=1200&q=80") center/cover; box-shadow: 0 24px 70px rgba(23,32,51,0.10); }
.about-content { border-radius: 38px; background: white; border: 1px solid rgba(23,32,51,0.08); padding: 36px; display: grid; align-content: center; box-shadow: 0 20px 55px rgba(23,32,51,0.06); }
.about-content p { color: #5E6676; line-height: 1.75; font-size: 18px; margin: 16px 0 0; }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 30px; }
.value { background: #FBFAF6; border: 1px solid rgba(23,32,51,0.07); border-radius: 22px; padding: 18px; }
.value strong { display: block; margin-bottom: 7px; }
.value span { color: #7B8496; font-size: 14px; line-height: 1.55; }
.package-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.package-card { background: white; border: 1px solid rgba(23,32,51,0.08); border-radius: 34px; padding: 24px; box-shadow: 0 16px 42px rgba(23,32,51,0.06); transition: 0.22s ease; position: relative; overflow: hidden; }
.package-card:hover { transform: translateY(-5px); }
.package-card.featured { box-shadow: 0 20px 60px rgba(249,115,22,0.18); border-color: rgba(249,115,22,0.22); }
.soft-bg { position: absolute; top: -40px; right: -40px; width: 150px; height: 150px; border-radius: 50%; opacity: 0.95; }
.package-content { position: relative; z-index: 1; }
.package-top { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
.package-name { font-size: 30px; font-weight: 950; letter-spacing: -0.055em; }
.tag { padding: 7px 10px; border-radius: 999px; color: white; font-size: 11px; font-weight: 900; }
.package-sub { font-weight: 900; margin-top: 6px; }
.package-ideal { color: #5E6676; line-height: 1.55; font-size: 14px; margin: 16px 0 20px; min-height: 44px; }
.check-list { display: grid; gap: 11px; }
.check-item { display: flex; gap: 9px; color: #3F4756; font-size: 14px; align-items: start; }
.check-dot { width: 19px; height: 19px; border-radius: 50%; color: white; display: grid; place-items: center; flex: 0 0 19px; font-size: 12px; font-weight: 900; }
.accordion-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 24px; margin-top: 28px; }
.service-intro { background: #172033; color: white; border-radius: 36px; padding: 36px; min-height: 430px; display: flex; flex-direction: column; justify-content: space-between; }
.service-intro h3 { margin: 0; font-size: 42px; letter-spacing: -0.055em; line-height: 1; }
.service-intro p { color: rgba(255,255,255,0.72); line-height: 1.7; font-size: 17px; }
.service-bubbles { display: flex; flex-wrap: wrap; gap: 9px; }
.service-bubbles span { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; padding: 8px 11px; font-size: 12px; font-weight: 800; }
.accordions { display: grid; gap: 12px; }
details { background: white; border: 1px solid rgba(23,32,51,0.08); border-radius: 24px; padding: 0 22px; box-shadow: 0 12px 32px rgba(23,32,51,0.04); }
summary { padding: 20px 0; cursor: pointer; list-style: none; font-weight: 900; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; width: 30px; height: 30px; border-radius: 50%; background: #FFF7ED; color: #F97316; display: grid; place-items: center; font-size: 20px; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 0 22px; color: #5E6676; line-height: 1.7; }
.project-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card { background: white; border: 1px solid rgba(23,32,51,0.08); border-radius: 34px; overflow: hidden; box-shadow: 0 16px 42px rgba(23,32,51,0.06); transition: 0.22s ease; }
.project-card:hover { transform: translateY(-5px); }
.project-img { height: 300px; overflow: hidden; }
.project-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: 0.55s ease; }
.project-card:hover img { transform: scale(1.05); }
.project-info { padding: 22px; }
.project-info span { color: #F97316; font-weight: 900; font-size: 13px; }
.project-info h3 { margin: 8px 0 6px; font-size: 26px; letter-spacing: -0.045em; }
.project-info p { margin: 0; color: #7B8496; }
.process-section { background: #1F2933; color: white; }
.section-label { color: #C9A45C; font-size: 13px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 14px; }
.center { text-align: center; }
.process-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 44px; }
.process-card { border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); border-radius: 26px; padding: 22px; min-height: 145px; }
.process-num { color: #C9A45C; font-weight: 900; margin-bottom: 36px; }
.process-name { font-size: 18px; font-weight: 800; }
.parallax-cta { min-height: 440px; display: flex; align-items: center; background-image: linear-gradient(rgba(31,41,51,0.72), rgba(31,41,51,0.72)), url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1600&q=80"); background-size: cover; background-position: center; background-attachment: fixed; color: white; }
.parallax-box { max-width: 760px; }
.parallax-box h2 { margin: 0; font-size: clamp(38px, 5vw, 64px); line-height: 1; letter-spacing: -0.045em; }
.parallax-box p { color: rgba(255,255,255,0.78); font-size: 18px; line-height: 1.8; margin: 22px 0 32px; }
.contact-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; background: #EFE7DA; border-radius: 40px; padding: 28px; }
.contact-info { background: #1F2933; color: white; border-radius: 32px; padding: 34px; }
.contact-info h2 { margin: 0; font-size: 42px; line-height: 1.05; letter-spacing: -0.04em; }
.contact-info p { color: rgba(255,255,255,0.75); line-height: 1.7; margin: 22px 0 30px; }
.contact-line { display: flex; gap: 12px; align-items: center; margin-top: 16px; color: rgba(255,255,255,0.92); }
.gold { color: #C9A45C; }
.form { display: grid; gap: 14px; background: white; border-radius: 32px; padding: 28px; box-shadow: 0 10px 26px rgba(31,41,51,0.04); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, select, textarea { width: 100%; border: 1px solid #eadfce; border-radius: 18px; padding: 15px 16px; font: inherit; outline: none; background: white; color: #1F2933; }
input:focus, select:focus, textarea:focus { border-color: #C9A45C; }
textarea { min-height: 126px; resize: vertical; }
.footer { border-top: 1px solid #e8decd; padding: 36px 0; color: #65707a; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer-logo { color: #1F2933; font-size: 20px; font-weight: 900; margin-bottom: 6px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
@media (max-width: 980px) {
  .mobile-label { display: block; }
  .nav, .header-actions { display: none; }
  .mobile-toggle:checked ~ .mobile-menu { display: grid; }
  .mobile-menu { display: none; gap: 16px; padding: 18px 0 24px; border-top: 1px solid #eadfce; }
  .mobile-menu a { font-weight: 700; }
  .hero-grid, .about-panel, .accordion-layout, .contact-wrap { grid-template-columns: 1fr; }
  .package-grid, .project-row { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .slide { height: 480px; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { padding: 62px 0 70px; }
  .trust-row, .package-grid, .project-row, .process-grid, .form-row, .values { grid-template-columns: 1fr; }
  .slide { height: 430px; }
  .contact-wrap { padding: 14px; border-radius: 28px; }
  .contact-info, .form { border-radius: 24px; padding: 24px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .parallax-cta { background-attachment: scroll; }
  .section-title-wrap { flex-direction: column; align-items: flex-start; }
  .about-photo { min-height: 360px; }
}
