
:root {
  --brand: #F05A28;
  --brand-deep: #D44512;
  --brand-soft: #FF8A5C;
  --ink: #1A1614;
  --muted: #6A5F56;
  --paper: #FFFAF6;
  --sand: #F6EBE2;
  --line: rgba(26, 22, 20, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
  --font-display: "Outfit", sans-serif;
  --font-body: "Manrope", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; background: none; cursor: pointer; color: inherit; }

.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--brand-soft));
  z-index: 1000;
}
.loader {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--brand);
  display: grid; place-items: center;
  transition: clip-path 0.9s var(--ease);
}
.loader.is-done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.loader__mark {
  width: min(160px, 40vw);
  filter: brightness(0) invert(1);
  animation: rise 0.8s var(--ease) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.1rem, 4vw, 2.5rem);
  transition: background 0.35s, box-shadow 0.35s;
}
.nav.is-solid, .nav.is-open {
  background: rgba(255,250,246,0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 0.55rem; }
.nav__logo { height: 42px; border-radius: 8px; }
.nav__name {
  font-family: var(--font-display);
  font-weight: 750; letter-spacing: -0.02em; font-size: 1.05rem;
}
.nav__links { display: flex; gap: 1.35rem; align-items: center; list-style: none; }
.nav__links a { font-size: 0.94rem; font-weight: 650; opacity: 0.82; }
.nav__links a:hover, .nav__links a.is-active { opacity: 1; color: var(--brand); }
.nav__cta {
  background: var(--brand) !important; color: #fff !important; opacity: 1 !important;
  padding: 0.6rem 1.05rem; border-radius: 999px; font-weight: 700;
}
.nav__cta:hover { background: var(--brand-deep) !important; color: #fff !important; }
.nav__burger {
  display: none; width: 42px; height: 42px; place-items: center;
  border: 1px solid var(--line); border-radius: 10px;
}
.nav__burger span {
  display: block; width: 17px; height: 2px; background: var(--ink); position: relative;
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 2px; background: var(--ink);
}
.nav__burger span::before { top: -5px; }
.nav__burger span::after { top: 5px; }

.wrap { width: min(1120px, calc(100% - 2.2rem)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.76rem; font-weight: 750;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand);
}
.eyebrow::before { content: ""; width: 16px; height: 2px; background: var(--brand); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.85rem 1.25rem; border-radius: 999px;
  font-weight: 700; font-size: 0.94rem;
  transition: transform 0.3s var(--ease), background 0.25s, border-color 0.25s;
}
.btn--fill {
  background: var(--brand); color: #fff;
  box-shadow: 0 12px 28px rgba(240,90,40,0.24);
}
.btn--fill:hover { background: var(--brand-deep); transform: translateY(-2px); }
.btn--ghost { border: 1.5px solid rgba(26,22,20,0.16); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }

.page-hero {
  padding: calc(var(--nav-h) + 2.8rem) 0 2.4rem;
  background:
    radial-gradient(ellipse 55% 60% at 85% 0%, rgba(240,90,40,0.12), transparent 60%),
    linear-gradient(180deg, #FFFCF9, var(--sand));
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 750; letter-spacing: -0.03em; line-height: 1.08;
  margin: 0.4rem 0 0.75rem;
}
.page-hero p { color: var(--muted); max-width: 38rem; font-size: 1.05rem; }
.crumbs-nav {
  display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center;
  font-size: 0.88rem; color: var(--muted); margin-bottom: 0.8rem;
}
.crumbs-nav a:hover { color: var(--brand); }
.crumbs-nav span { opacity: 0.45; }

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--sand { background: var(--sand); }
.section--ink { background: var(--ink); color: #fff; }
.section__head { max-width: 36rem; margin-bottom: 2rem; }
.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 750; letter-spacing: -0.02em; margin: 0.4rem 0 0.6rem;
}
.section__head p { color: var(--muted); }
.section--ink .section__head p { color: rgba(255,255,255,0.65); }

.grid-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.grid-prods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ccard, .pcard {
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, #fff, #f8f0e8);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
}
.ccard:hover, .pcard:hover {
  transform: translateY(-3px);
  border-color: rgba(240,90,40,0.4);
  box-shadow: 0 16px 36px rgba(26,22,20,0.08);
}
.ccard__visual, .pcard__visual {
  aspect-ratio: 16/11;
  background:
    radial-gradient(circle at 50% 40%, rgba(240,90,40,0.12), transparent 55%),
    linear-gradient(160deg, #fff8f3, #ebe2d8);
  overflow: hidden;
}
.ccard__visual img, .pcard__visual img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.ccard__body, .pcard__body { padding: 1.15rem 1.2rem 1.3rem; }
.ccard h3, .pcard h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700; letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
}
.ccard p, .pcard p { color: var(--muted); font-size: 0.9rem; }
.ccard__meta, .pcard__code {
  display: inline-block; margin-top: 0.7rem;
  font-size: 0.78rem; font-weight: 750; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--brand);
}
.pcard__code { margin-top: 0; margin-bottom: 0.35rem; }

.ph {
  width: 100%; height: 100%;
  display: grid; place-items: center; text-align: center;
  color: rgba(26,22,20,0.28);
  font-family: var(--font-display); font-weight: 750;
  letter-spacing: -0.02em;
  min-height: 160px;
}
.ph small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.78rem; margin-top: 0.35rem; color: var(--muted); }
.ph--soft { font-size: 1.05rem; padding: 1rem; }

.detail {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2rem; align-items: start;
}
.detail__visual {
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #fff8f3, #ebe2d8);
  aspect-ratio: 4/3;
  display: grid; place-items: center;
}
.detail__visual img { width: 100%; height: 100%; object-fit: cover; }
.detail__code {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand);
}
.detail h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 750; letter-spacing: -0.02em; line-height: 1.12;
  margin: 0.4rem 0 0.9rem;
}
.detail__desc { color: var(--muted); margin-bottom: 1.4rem; }
.specs {
  display: grid; gap: 0.65rem; margin-bottom: 1.5rem;
}
.spec {
  display: grid; grid-template-columns: 9rem 1fr; gap: 0.75rem;
  padding: 0.85rem 1rem; border-radius: 14px;
  background: #fff; border: 1px solid var(--line);
}
.spec strong { font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.about-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: start;
}
.about-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 750; letter-spacing: -0.02em; margin: 0.35rem 0 0.8rem;
}
.about-grid p { color: var(--muted); margin-bottom: 1rem; }
.values { display: grid; gap: 0.75rem; }
.value {
  padding: 1rem 1.1rem; border-radius: 16px;
  background: #fff; border: 1px solid var(--line);
}
.value strong {
  display: block; font-family: var(--font-display);
  margin-bottom: 0.2rem;
}
.value span { color: var(--muted); font-size: 0.92rem; }

.firm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.firm {
  display: grid;
  grid-template-columns: minmax(140px, 38%) 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color 0.25s, transform 0.3s var(--ease);
}
.firm:hover {
  border-color: rgba(240,90,40,0.35);
  transform: translateY(-2px);
}
.firm__logo {
  min-height: 72px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(26,22,20,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}
.firm__logo.is-dark {
  background: #111;
  border-color: #111;
}
.firm__logo.is-wide {
  min-height: 78px;
  padding: 0.45rem 0.55rem;
}
.firm__logo.is-plus {
  background: linear-gradient(180deg, #fff, #f7f3ef);
  border-color: rgba(26,22,20,0.14);
}
.firm__logo img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.firm__logo.is-wide img { max-height: 58px; }
.firm__logo.is-plus img {
  max-height: 58px;
  width: 100%;
  transform: scale(1.06);
}
.firm h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.25rem;
}
.firm p { color: var(--muted); font-size: 0.9rem; }

.map-block {
  margin-top: 1.6rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.map-block__head {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end;
  gap: 0.8rem; padding: 1.2rem 1.35rem 1rem;
}
.map-block__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 750; letter-spacing: -0.02em; margin: 0.3rem 0 0.35rem;
}
.map-block__head p { color: var(--muted); max-width: 36rem; font-size: 0.95rem; }
.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 280px;
  background: var(--sand);
}
.map-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.contact-box {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 1.8rem;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse 45% 70% at 100% 0%, rgba(240,90,40,0.14), transparent 55%),
    linear-gradient(145deg, #fff, #f8efe7);
}
.contact-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 750; letter-spacing: -0.02em; line-height: 1.1;
  margin: 0.4rem 0 0.75rem;
}
.contact-box > div > p { color: var(--muted); margin-bottom: 1.1rem; }
.contact-list { display: grid; gap: 0.7rem; margin-bottom: 1.2rem; }
.contact-list a, .contact-list span {
  display: block; font-weight: 650;
}
.contact-list a:hover { color: var(--brand); }
.form { display: grid; gap: 0.7rem; }
.form label {
  display: grid; gap: 0.28rem;
  font-size: 0.76rem; font-weight: 750;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted);
}
.form input, .form textarea, .form select {
  width: 100%;
  border: 1.5px solid rgba(26,22,20,0.12);
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  outline: none;
}
.form input:focus, .form textarea:focus, .form select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(240,90,40,0.12);
}
.form textarea { min-height: 110px; resize: vertical; }
.form__note { font-size: 0.85rem; color: var(--muted); }

.cta-band {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 1.2rem; padding: 1.6rem 1.8rem; border-radius: 22px;
  background: var(--brand); color: #fff;
}
.cta-band h3 {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 750; letter-spacing: -0.02em;
}
.cta-band p { opacity: 0.9; margin-top: 0.25rem; }
.cta-band .btn--ghost {
  border-color: rgba(255,255,255,0.55); color: #fff;
}
.cta-band .btn--ghost:hover { background: #fff; color: var(--brand); border-color: #fff; }

.footer {
  padding: 2.4rem 0 1.4rem;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer__grid {
  display: grid; grid-template-columns: 1.1fr 1.6fr; gap: 2rem;
  margin-bottom: 1.8rem;
}
.footer__brand { display: flex; gap: 0.85rem; align-items: flex-start; }
.footer__brand img { height: 48px; border-radius: 10px; }
.footer__brand strong {
  font-family: var(--font-display); font-size: 1.1rem; display: block;
}
.footer__brand p { color: var(--muted); font-size: 0.9rem; margin-top: 0.2rem; }
.footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.footer__cols h4 {
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.65rem;
}
.footer__cols a, .footer__cols span {
  display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.35rem;
}
.footer__cols a:hover { color: var(--brand); }
.footer__bottom {
  padding-top: 1.1rem; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.86rem;
}

@media (max-width: 960px) {
  .grid-cats, .grid-prods, .detail, .about-grid, .contact-box, .footer__grid, .footer__cols, .firm-grid {
    grid-template-columns: 1fr;
  }
  .firm { grid-template-columns: 1fr; }
  .firm__logo { min-height: 68px; }
  .map-frame { aspect-ratio: 4 / 3; }
  .nav__links { display: none; }
  .nav__burger { display: grid; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,250,246,0.98);
    padding: 1rem 1.3rem 1.3rem; gap: 0.85rem;
    border-bottom: 1px solid var(--line);
  }
  .spec { grid-template-columns: 1fr; }
}

/* v3.2 product images */
.detail__visual img,
.pcard__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
