:root {
  --ink: #202327;
  --muted: #667078;
  --line: rgba(24, 35, 42, .12);
  --paper: #fff;
  --soft: #f6f7f5;
  --brand: #355c52;
  --brand-deep: #24423b;
  --accent: #d28b45;
  --shadow: 0 18px 50px rgba(30, 40, 45, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.site-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 54px;
  padding: 7px max(18px, calc((100% - 1140px) / 2));
}
.site-name {
  color: var(--brand-deep);
  font-size: clamp(14px, 3.5vw, 18px);
  font-weight: 800;
  letter-spacing: .02em;
}
.site-expiry {
  color: #cc2d2d;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.site-nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 0 max(14px, calc((100% - 1148px) / 2)) 8px;
  scrollbar-width: none;
}
.site-nav::-webkit-scrollbar { display: none; }
.site-nav a {
  flex: 0 0 auto;
  padding: 6px 11px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.site-nav a.active { color: #fff; background: var(--brand); }

.section { padding: 72px 18px; }
.section.soft { background: var(--soft); }
.container { width: min(100%, 1104px); margin: 0 auto; }
.eyebrow {
  margin: 0 0 7px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 8vw, 66px);
  line-height: 1.14;
  letter-spacing: -.04em;
}
h2 {
  margin-bottom: 10px;
  color: var(--brand-deep);
  font-size: clamp(27px, 6vw, 43px);
  line-height: 1.25;
  letter-spacing: -.035em;
}
h3 { margin-bottom: 8px; font-size: 20px; line-height: 1.4; }
.lead { color: var(--muted); font-size: 16px; }
.note { color: var(--muted); font-size: 12px; }
.section-head { max-width: 680px; margin-bottom: 28px; }

.hero {
  overflow: hidden;
  padding: 34px 18px 46px;
  background: linear-gradient(135deg, var(--soft), #fff);
}
.hero-grid {
  display: grid;
  align-items: center;
  gap: 26px;
  width: min(100%, 1104px);
  margin: 0 auto;
}
.hero-copy { position: relative; z-index: 1; }
.hero-copy .lead { max-width: 660px; }
.hero-art {
  overflow: hidden;
  width: 100%;
  min-width: 0;
  min-height: 246px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero-art img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 0; padding: 0; list-style: none; }
.hero-tags li {
  padding: 7px 12px;
  color: var(--brand-deep);
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(20, 50, 50, .14);
  transition: transform .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.secondary { color: var(--brand-deep); background: #fff; border: 1px solid var(--line); box-shadow: none; }
.btn.line { background: #06c755; }
.btn.accent { color: #1e2529; background: var(--accent); }

.grid { display: grid; gap: 16px; }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid.two { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card {
  overflow: hidden;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(35, 45, 50, .06);
}
.card p:last-child { margin-bottom: 0; }
.metric { color: var(--brand); font-size: 34px; font-weight: 900; line-height: 1; }
.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: #fff;
  background: var(--brand);
  border-radius: 13px;
  font-size: 20px;
  font-weight: 900;
}

.filters, .form-grid {
  display: grid;
  gap: 12px;
  padding: 15px;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
label { display: grid; gap: 6px; color: var(--brand-deep); font-size: 13px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
textarea { min-height: 100px; resize: vertical; }
.result-line { margin: 0 0 14px; color: var(--muted); font-size: 13px; font-weight: 800; }

.gallery { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.gallery-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(33, 42, 45, .06);
}
.gallery-visual {
  position: relative;
  display: grid;
  place-items: end start;
  min-height: 148px;
  padding: 15px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
}
.gallery-visual::after {
  position: absolute;
  right: -18px;
  bottom: -36px;
  width: 140px;
  height: 140px;
  content: "";
  background: rgba(255,255,255,.12);
  border-radius: 36px;
  transform: rotate(25deg);
}
.gallery-visual strong { position: relative; z-index: 1; font-size: 17px; }
.gallery-body { padding: 15px; }
.gallery-body p { margin: 0; color: var(--muted); font-size: 13px; }
.pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.pill { padding: 3px 8px; color: var(--brand-deep); background: var(--soft); border-radius: 999px; font-size: 11px; font-weight: 800; }
.hidden { display: none !important; }

.page-hero {
  padding: 46px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
}
.page-hero .eyebrow { color: var(--accent); }
.page-hero h1 { margin-bottom: 10px; font-size: clamp(32px, 7vw, 52px); }
.page-hero .lead { max-width: 720px; color: rgba(255,255,255,.82); }
.mini-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.info-list { display: grid; gap: 0; margin: 0; }
.info-list div { display: grid; grid-template-columns: 105px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.info-list dt { color: var(--brand-deep); font-size: 13px; font-weight: 900; }
.info-list dd { margin: 0; color: var(--muted); font-size: 14px; }
.price-list { display: grid; gap: 10px; }
.price-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.price-item strong { color: var(--brand); }
.cta-band { padding: 26px 20px; color: #fff; background: var(--brand-deep); border-radius: var(--radius); }
.cta-band h2 { color: #fff; font-size: clamp(24px, 5vw, 34px); }
.cta-band p { color: rgba(255,255,255,.8); }
.visual-note { margin-top: 10px; color: var(--muted); font-size: 12px; }
.photo-hero { background-position: center; background-size: cover; }
.photo-hero img { object-position: center; }

@media (max-width: 759px) {
  .hero-grid, .hero-copy, .hero-art { min-width: 0; }
  .hero-art { max-width: 100%; }
}

.mock-box {
  padding: 18px;
  background: linear-gradient(145deg, #fff, var(--soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.mock-result {
  display: none;
  padding: 15px;
  margin-top: 14px;
  color: var(--brand-deep);
  background: #fff;
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  white-space: pre-line;
}
.mock-result.show { display: block; }
.loading { color: var(--accent); font-weight: 900; }

.toast {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 80;
  max-width: calc(100% - 32px);
  padding: 13px 16px;
  color: #fff;
  background: #24353b;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(150%);
  transition: transform .28s ease;
}
.toast.show { transform: translateY(0); }

.contact-wrap { display: grid; gap: 18px; }
.qr-card { display: grid; place-items: center; padding: 20px; text-align: center; }
.qr-card img { width: 150px; height: 150px; margin-bottom: 12px; border-radius: 6px; }
.qr-card p { margin-bottom: 0; }

.site-footer { padding: 24px 18px 34px; color: #e5eeeb; background: var(--brand-deep); text-align: center; }
.site-footer p { margin: 0 0 12px; font-size: 12px; }
.site-footer a:not(.btn) { text-decoration: underline; }

@media (max-width: 520px) {
  .site-top { flex-wrap: wrap; gap: 0; padding-bottom: 5px; }
  .site-name { flex-basis: 100%; }
  .site-expiry { margin-left: auto; font-size: 11px; }
}

@media (min-width: 760px) {
  .site-top { min-height: 60px; }
  .site-nav { justify-content: flex-end; padding-bottom: 7px; }
  .hero { padding: 56px 28px 64px; }
  .hero-grid { grid-template-columns: 1.02fr .98fr; gap: 42px; }
  .hero-art { min-height: 380px; }
  .section { padding: 92px 28px; }
  .filters { grid-template-columns: repeat(4, 1fr); align-items: end; }
  .form-grid.two-cols { grid-template-columns: repeat(2, 1fr); }
  .span-full { grid-column: 1 / -1; }
  .contact-wrap { grid-template-columns: 1.4fr .6fr; align-items: start; }
}
