:root {
  --paper: #f5efe3;
  --paper-2: #efe5d2;
  --ink: #2d2922;
  --muted: #776f64;
  --gold: #d1a94e;
  --gold-dark: #997234;
  --white: #fffdf8;
  --shadow: 0 18px 48px rgba(45, 41, 34, 0.14);
  --soft-border: rgba(153, 114, 52, 0.22);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 3%, rgba(218, 207, 184, 0.95) 0 18rem, transparent 18.1rem),
    radial-gradient(circle at 92% 48%, rgba(236, 226, 206, 0.95) 0 21rem, transparent 21.1rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.toolbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px clamp(14px, 3vw, 42px);
  background: rgba(245, 239, 227, 0.86);
  border-bottom: 1px solid rgba(153, 114, 52, 0.18);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.brand-dot {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 5px 16px rgba(153, 114, 52, 0.26);
  font-size: 13px;
}
.page-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}
.page-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.page-nav a:hover,
.page-nav a:focus-visible,
.page-nav a.active {
  color: var(--ink);
  background: rgba(209, 169, 78, 0.20);
}
.page-nav .nav-cta {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 7px 18px rgba(153, 114, 52, 0.2);
}
main {
  width: min(100%, 1760px);
  margin: 0 auto;
  padding: clamp(12px, 2vw, 34px);
}
.brochure-section {
  scroll-margin-top: 84px;
  margin: 0 auto clamp(18px, 4vw, 58px);
}
.page-frame {
  position: relative;
  width: min(100%, 1440px);
  margin: 0 auto;
  border-radius: clamp(12px, 2vw, 28px);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(153, 114, 52, 0.16);
}
.page-frame img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}
.contact-frame { isolation: isolate; }
.contact-overlay {
  position: absolute;
  left: 6.55%;
  top: 43.8%;
  width: 31.05%;
  height: 36.5%;
  z-index: 3;
  font-family: inherit;
}
.hp,
.field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.field { position: absolute; left: 0; width: 100%; margin: 0; }
.field-name { top: 0; }
.field-contact { top: 20.3%; }
.field-unit { top: 40.6%; }
.field input,
.field select {
  width: 100%;
  min-height: 46px;
  height: clamp(34px, 4.3vw, 58px);
  padding: 0 22px;
  border: 0;
  outline: none;
  background: rgba(255, 253, 248, 0.54);
  color: var(--ink);
  border-radius: 999px;
  font-size: clamp(12px, 1.25vw, 18px);
  font-weight: 600;
  appearance: none;
}
.field input::placeholder { color: rgba(119, 111, 100, 0.78); opacity: 1; }
.field input:focus,
.field select:focus {
  box-shadow: 0 0 0 3px rgba(209, 169, 78, 0.22), inset 0 0 0 1px rgba(153, 114, 52, 0.20);
  background: rgba(255, 253, 248, 0.86);
}
.consent {
  position: absolute;
  top: 59.7%;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: clamp(9px, 0.9vw, 13px);
  line-height: 1.25;
}
.consent input { margin-top: 1px; accent-color: var(--gold-dark); }
.send-button {
  position: absolute;
  top: 72%;
  left: 0;
  min-width: 52%;
  border: 0;
  border-radius: 999px;
  padding: clamp(10px, 1.3vw, 15px) clamp(16px, 2vw, 28px);
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow: 0 9px 18px rgba(153, 114, 52, 0.26);
  cursor: pointer;
}
.send-button:hover,
.send-button:focus-visible { transform: translateY(-1px); filter: saturate(1.05); }
.zoom-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(45, 41, 34, .22);
  cursor: pointer;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(45, 41, 34, 0.86);
}
.lightbox[aria-hidden="false"] { display: grid; }
.lightbox img {
  max-width: min(96vw, 1800px);
  max-height: 92vh;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
}
.lightbox-close {
  position: fixed;
  top: 16px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 32px;
  cursor: pointer;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 28px clamp(18px, 3vw, 42px) 42px;
  color: var(--muted);
  font-size: 14px;
}
.footer-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.footer a { color: var(--gold-dark); font-weight: 800; text-decoration: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 980px) {
  .toolbar { align-items: flex-start; flex-direction: column; }
  .page-nav { justify-content: flex-start; }
  .page-nav a { font-size: 12px; padding: 7px 9px; }
  main { padding: 10px; }
  .brochure-section { scroll-margin-top: 144px; }
}
@media (max-width: 640px) {
  body { background: var(--paper); }
  .page-frame { border-radius: 14px; }
  .contact-overlay {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    padding: 18px;
    background: #fffaf0;
    border-top: 1px solid var(--soft-border);
  }
  .field,
  .consent,
  .send-button { position: static; display: flex; width: 100%; margin: 0 0 12px; }
  .field { flex-direction: column; gap: 6px; }
  .field span {
    position: static;
    width: auto;
    height: auto;
    clip-path: none;
    overflow: visible;
    white-space: normal;
    color: var(--ink);
    font-weight: 800;
    font-size: 13px;
  }
  .field input,
  .field select {
    height: 48px;
    border: 1px solid rgba(153, 114, 52, 0.24);
    background: #fffdf8;
    font-size: 15px;
  }
  .consent { font-size: 12px; }
  .send-button { justify-content: center; padding: 14px 22px; }
  .zoom-toggle { width: 44px; height: 44px; font-size: 24px; }
  .footer { flex-direction: column; align-items: flex-start; }
}
