:root {
  color-scheme: light;
  --bg: #f7f5f1;
  --surface: #ffffff;
  --surface-soft: #f1ede5;
  --ink: #211b16;
  --muted: #716a63;
  --line: #ded4c6;
  --primary: #886d49;
  --primary-dark: #665033;
  --primary-soft: #eadfce;
  --accent: #1c514f;
  --shadow: 0 18px 45px rgba(33, 27, 22, 0.1);
  --radius: 8px;
  --content: min(1420px, calc(100vw - 48px));
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --fs-h1: clamp(3rem, 4vw, 3.5rem);
  --fs-h2: clamp(2rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.5rem, 2vw, 1.75rem);
  --fs-h4: clamp(1.125rem, 1.4vw, 1.25rem);
  --fs-body: 1rem;
  --fs-body-2: 0.875rem;
  --fs-small: 0.8125rem;
  --lh-heading: 1.25;
  --lh-body: 1.6;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--lh-body);
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  letter-spacing: 0;
  line-height: var(--lh-heading);
}

h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 600;
}

h4,
h5 {
  font-size: var(--fs-h4);
  font-weight: 600;
}

p {
  margin: 0;
  max-width: 72ch;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 72px;
  padding: 10px max(18px, calc((100vw - 1420px) / 2));
  background: var(--primary);
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #f5e8d0;
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-small);
}

.main-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.main-nav {
  justify-content: flex-end;
  gap: 18px;
  font-size: var(--fs-body-2);
  font-weight: 600;
}

.main-nav a {
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #f6ddb3;
  outline: none;
}

.header-actions {
  gap: 10px;
}

.icon-button {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
}

.icon-button:hover,
.icon-button:focus-visible {
  background: #f6ddb3;
  color: var(--primary-dark);
  outline: none;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.top-search {
  display: flex;
  align-items: center;
  gap: 9px;
  width: min(220px, 22vw);
  height: 44px;
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: var(--muted);
}

.top-search svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.top-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.hero-banner {
  width: 100%;
  height: clamp(330px, 38vw, 720px);
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-filter-section {
  position: relative;
  z-index: 3;
  width: var(--content);
  margin: -34px auto 0;
}

.quick-filter-card {
  display: grid;
  grid-template-columns:
    minmax(160px, 0.72fr) minmax(230px, 1fr) minmax(190px, 0.8fr)
    minmax(320px, 1.45fr) auto auto;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(33, 27, 22, 0.12);
}

.quick-filter-field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 68px;
  border-right: 1px solid var(--line);
  padding: 0 16px;
  background: #fff;
}

.quick-filter-field svg {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  color: var(--primary);
}

.quick-filter-field input,
.quick-filter-field select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: var(--fs-body-2);
  font-weight: 500;
}

.quick-filter-field select {
  cursor: pointer;
}

.service-field {
  min-width: 0;
}

.quick-filter-button,
.quick-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 68px;
  border: 0;
  padding: 0 22px;
  font-weight: 700;
  white-space: nowrap;
}

.quick-filter-button {
  background: var(--primary);
  color: #fff;
}

.quick-filter-button:hover,
.quick-filter-button:focus-visible {
  background: var(--primary-dark);
  outline: none;
}

.quick-contact {
  background: #fff;
  color: var(--primary);
}

.quick-contact:hover,
.quick-contact:focus-visible {
  color: var(--primary-dark);
  outline: none;
}

.quick-filter-button svg,
.quick-contact svg {
  width: 19px;
  height: 19px;
}

.hot-services-panel {
  padding: 34px 0 10px;
}

.hot-services-panel .section-heading {
  margin-bottom: 18px;
}

.hot-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hot-service-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(33, 27, 22, 0.06);
}

.hot-service-top {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.hot-service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.hot-service-icon svg {
  width: 22px;
  height: 22px;
}

.hot-service-top span:not(.hot-service-icon) {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hot-service-card h3 {
  font-size: var(--fs-h4);
}

.hot-service-card p {
  color: var(--muted);
}

.hot-service-meta {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: var(--fs-body-2);
}

.hot-service-meta span,
.hot-service-meta strong {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.hot-service-meta svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--primary);
}

.find-section,
.news-section,
.about-section,
.detail-page {
  width: var(--content);
  margin: 0 auto;
}

.find-section {
  padding: 34px 0 64px;
  background: var(--surface);
}

.find-section h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.section-heading {
  display: grid;
  gap: 9px;
  margin-bottom: 28px;
}

.section-heading.centered {
  justify-items: center;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.section-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: var(--fs-body);
}

.section-heading.centered p {
  width: 100%;
}

.title-divider {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 8px;
}

.title-divider::before,
.title-divider::after {
  content: "";
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--primary);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.segmented,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.segmented button,
.chip-row button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 20px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 600;
}

.chip-row button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.segmented button:hover,
.segmented button:focus-visible,
.chip-row button:hover,
.chip-row button:focus-visible,
.segmented button.is-active,
.chip-row button.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  outline: none;
}

.chip-row svg {
  width: 17px;
  height: 17px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 28px;
}

.project-card {
  min-width: 0;
  background: var(--surface);
}

.project-card figure {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-body {
  display: grid;
  justify-items: center;
  gap: 11px;
  padding: 18px 8px 0;
  text-align: center;
}

.project-heading span {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.project-body p {
  color: var(--muted);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.project-meta span,
.store-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 10px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: var(--fs-small);
  font-weight: 600;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.project-actions.wide {
  justify-content: flex-start;
  margin-top: 18px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 600;
  white-space: nowrap;
}

.primary-action {
  background: var(--primary);
  color: #fff;
}

.secondary-action {
  background: #fff;
  color: var(--primary);
}

.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  outline: none;
}

.primary-action svg,
.secondary-action svg {
  width: 17px;
  height: 17px;
}

.news-section {
  padding: 54px 0 66px;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 40px;
}

.news-list.compact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-radius: var(--radius);
}

.news-item:hover h3,
.news-item:focus-visible h3 {
  color: var(--primary);
}

.news-item img {
  width: 112px;
  height: 76px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--surface-soft);
}

.news-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.news-item h3 {
  font-size: var(--fs-h4);
  letter-spacing: 0.02em;
  line-height: var(--lh-heading);
  text-transform: uppercase;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.about-section p:last-child {
  color: var(--muted);
  font-size: var(--fs-body);
}

.news-page,
.article-page {
  width: var(--content);
  margin: 0 auto;
}

.news-page-hero {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 70px 0 46px;
  text-align: center;
}

.news-page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: var(--fs-body);
}

.news-directory {
  padding: 0 0 72px;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card-large {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(33, 27, 22, 0.06);
}

.news-card-large:hover,
.news-card-large:focus-visible {
  border-color: var(--primary);
  outline: none;
}

.news-card-large figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-soft);
}

.news-card-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.news-card-large:hover img {
  transform: scale(1.035);
}

.news-card-large > div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.news-card-large span {
  color: var(--primary);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.news-card-large h3 {
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.news-card-large p {
  color: var(--muted);
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-tags small {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 10px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: var(--fs-small);
  font-weight: 600;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 32px;
  align-items: center;
  padding: 24px 0 34px;
}

.article-hero h1 {
  font-size: var(--fs-h1);
}

.article-hero > div {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.article-hero h1 {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.article-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: var(--fs-body);
}

.article-hero figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  min-width: 0;
  padding-bottom: 72px;
}

.article-body,
.related-news {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(33, 27, 22, 0.06);
}

.article-body {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(24px, 4vw, 44px);
}

.article-body p {
  color: var(--muted);
  font-size: var(--fs-body);
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.related-news {
  align-self: start;
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 24px;
}

.related-news h2 {
  font-size: var(--fs-h3);
}

.related-news > p:not(.eyebrow) {
  color: var(--muted);
}

.related-item {
  display: grid;
  gap: 5px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.related-item span {
  color: var(--primary);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.related-item strong {
  line-height: 1.25;
  font-weight: 600;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  padding: 48px max(24px, calc((100vw - 1420px) / 2));
  background: #dedede;
  color: var(--ink);
}

.site-footer h3 {
  margin-bottom: 16px;
  font-size: var(--fs-h4);
}

.site-footer h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--primary);
}

.site-footer ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  display: flex;
  gap: 9px;
  align-items: center;
}

.site-footer svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  color: var(--primary);
}

.site-footer p {
  max-width: 540px;
  color: var(--muted);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 28px 0;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--ink);
}

.breadcrumb span,
.breadcrumb a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.breadcrumb svg {
  width: 17px;
  height: 17px;
  color: var(--primary);
}

.detail-page {
  padding-bottom: 64px;
}

.detail-hero,
.store-hero figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.detail-hero {
  height: clamp(360px, 46vw, 620px);
}

.detail-hero img,
.store-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 27, 22, 0.05), rgba(33, 27, 22, 0.68));
}

.detail-hero figcaption {
  position: absolute;
  right: 32px;
  bottom: 34px;
  left: 32px;
  z-index: 1;
  color: #fff;
}

.detail-hero span {
  display: block;
  margin-bottom: 8px;
  color: #f3dfbd;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 22px;
  margin-top: 22px;
}

.detail-panel,
.store-hero,
.store-directory {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  box-shadow: 0 12px 34px rgba(33, 27, 22, 0.06);
}

.detail-panel.full {
  grid-column: 1 / -1;
}

.detail-panel > p {
  color: var(--muted);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.info-grid div {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--bg);
}

.info-grid strong {
  font-size: var(--fs-small);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.info-grid span,
.guide-list {
  color: var(--muted);
}

.guide-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.guide-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.guide-list svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--primary);
}

.store-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-width: 0;
  margin-bottom: 26px;
}

.store-hero > div {
  min-width: 0;
}

.store-hero figure {
  aspect-ratio: 16 / 10;
}

.store-hero p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--muted);
}

.store-directory .chip-row {
  justify-content: flex-start;
}

.projects-filter-panel {
  margin-top: 24px;
  margin-bottom: 24px;
}

.projects-filter-panel .directory-filter-grid {
  margin: 0;
}

.projects-directory {
  padding: 16px 0 70px;
}

.projects-directory h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.directory-filter-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.75fr) minmax(170px, 0.85fr) minmax(220px, 1fr) minmax(280px, 1.3fr);
  gap: 10px;
  margin: 18px 0;
}

.store-filter-grid {
  grid-template-columns:
    minmax(140px, 0.7fr) minmax(160px, 0.75fr) minmax(210px, 1fr)
    minmax(170px, 0.78fr) minmax(260px, 1.2fr);
}

.directory-filter-grid .quick-filter-field {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.filter-summary {
  margin: -12px 0 18px;
  color: var(--muted);
  font-size: var(--fs-body-2);
}

.near-filter-grid {
  grid-template-columns: minmax(170px, 0.7fr) minmax(190px, 0.75fr) minmax(280px, 1.4fr);
}

.store-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 720px);
  min-height: 52px;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--bg);
}

.store-search svg {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  color: var(--primary);
}

.store-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.store-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface);
}

.store-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.store-icon {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
}

.store-icon svg {
  width: 21px;
  height: 21px;
}

.store-card p {
  color: var(--muted);
}

.store-card-actions {
  margin-top: 2px;
}

.meta-list {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: var(--fs-body-2);
}

.meta-list span {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.meta-list svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--primary);
}

.no-results {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}

.store-detail-page {
  width: var(--content);
  margin: 0 auto;
}

.store-profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
}

.store-profile-hero > div:first-child {
  display: grid;
  gap: 15px;
  min-width: 0;
}

.store-profile-hero h1 {
  overflow-wrap: anywhere;
}

.store-profile-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: var(--fs-body);
}

.store-rating-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.store-rating-line strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: var(--fs-h4);
}

.store-rating-line span,
.review-item span {
  color: var(--primary);
  font-weight: 600;
}

.store-rating-line .is-filled,
.review-item .is-filled {
  color: #c28b2c;
}

.store-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(120px, 0.6fr);
  gap: 10px;
  min-width: 0;
}

.store-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--surface-soft);
}

.store-gallery .gallery-main {
  aspect-ratio: 16 / 11;
}

.store-gallery > div {
  display: grid;
  gap: 10px;
}

.store-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 18px;
  padding-bottom: 70px;
}

.store-profile-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  box-shadow: 0 12px 34px rgba(33, 27, 22, 0.06);
}

.store-profile-panel p:not(.eyebrow) {
  color: var(--muted);
}

.store-info-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.store-info-list div {
  display: grid;
  grid-template-columns: 22px 120px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.store-info-list svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--primary);
}

.store-info-list strong {
  font-size: var(--fs-small);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.store-info-list span {
  color: var(--muted);
}

.map-panel,
.review-panel {
  grid-column: 1 / -1;
}

.map-panel iframe {
  width: 100%;
  height: 360px;
  margin-top: 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.review-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.review-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 600;
}

.review-form label.full {
  grid-column: 1 / -1;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--bg);
  color: var(--ink);
  outline: 0;
}

.review-form textarea {
  resize: vertical;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(136, 109, 73, 0.13);
}

.review-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.review-item {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--bg);
}

.review-item p {
  color: var(--muted);
}

.near-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 24px;
  align-items: stretch;
  min-width: 0;
  margin-bottom: 24px;
}

.near-hero > div,
.near-hero > aside {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  box-shadow: 0 12px 34px rgba(33, 27, 22, 0.06);
}

.near-hero > div {
  display: grid;
  gap: 14px;
  align-content: center;
}

.near-hero > div p:not(.eyebrow) {
  color: var(--muted);
}

.near-hero > aside {
  display: grid;
  gap: 12px;
  align-content: center;
}

.near-hero > aside svg {
  width: 42px;
  height: 42px;
  color: var(--primary);
}

.near-hero > aside strong {
  font-size: var(--fs-h4);
}

.near-hero > aside span {
  color: var(--muted);
}

.nearest-project-panel {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.nearest-project-panel[hidden] {
  display: none;
}

.nearest-project-panel small {
  color: var(--primary);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nearest-project-panel b {
  font-size: var(--fs-h4);
  line-height: var(--lh-heading);
}

.nearest-project-panel .project-actions {
  margin-top: 6px;
}

.contact-page {
  padding-bottom: 68px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: 22px;
  margin-bottom: 22px;
}

.contact-hero > div,
.contact-hero > aside,
.contact-panel,
.contact-form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(33, 27, 22, 0.06);
}

.contact-hero > div {
  display: grid;
  gap: 15px;
  align-content: center;
  min-width: 0;
  padding: clamp(24px, 4vw, 44px);
}

.contact-hero > div p:not(.eyebrow) {
  color: var(--muted);
}

.contact-hero > aside {
  display: grid;
  gap: 14px;
  align-content: center;
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
}

.contact-hero > aside span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.contact-hero > aside svg,
.contact-panel > svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.contact-panel {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 22px;
}

.contact-panel h2 {
  font-size: var(--fs-h4);
}

.contact-panel p {
  color: var(--muted);
}

.contact-form-panel {
  padding: clamp(22px, 3vw, 34px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 600;
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--bg);
  color: var(--ink);
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(136, 109, 73, 0.13);
}

.cms-page {
  width: var(--content);
  margin: 0 auto;
  padding-bottom: 72px;
}

.cms-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.4fr);
  gap: 22px;
  padding: 34px 0 22px;
}

.cms-hero > div,
.cms-hero > aside,
.cms-connect-panel,
.cms-workspace,
.cms-list-panel,
.cms-editor-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(33, 27, 22, 0.06);
}

.cms-hero > div {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: clamp(24px, 4vw, 44px);
}

.cms-hero h1 {
  font-size: var(--fs-h1);
}

.cms-hero p:not(.eyebrow) {
  color: var(--muted);
}

.cms-hero > aside {
  display: grid;
  gap: 12px;
  align-content: center;
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
}

.cms-hero > aside svg {
  width: 42px;
  height: 42px;
  color: var(--primary);
}

.cms-hero > aside strong {
  font-size: var(--fs-h4);
  line-height: var(--lh-heading);
}

.cms-hero > aside span,
.cms-connect-panel p,
.cms-editor-form small,
.cms-status,
.cms-empty,
.cms-item-list button span {
  color: var(--muted);
}

.cms-connect-panel {
  padding: clamp(22px, 3vw, 34px);
  margin-bottom: 22px;
}

.cms-connect-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.cms-connect-form label,
.cms-editor-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--muted);
  font-weight: 600;
}

.cms-connect-form .full,
.cms-editor-form .full {
  grid-column: 1 / -1;
}

.cms-connect-form input,
.cms-editor-form input,
.cms-editor-form select,
.cms-editor-form textarea,
.cms-search input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--bg);
  color: var(--ink);
  outline: 0;
}

.cms-editor-form textarea {
  resize: vertical;
}

.cms-connect-form input:focus,
.cms-editor-form input:focus,
.cms-editor-form select:focus,
.cms-editor-form textarea:focus,
.cms-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(136, 109, 73, 0.13);
}

.cms-connect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cms-status {
  min-height: 24px;
  margin-top: 16px;
  font-size: var(--fs-body-2);
  font-weight: 600;
}

.cms-status.success {
  color: #2d6a4f;
}

.cms-status.error {
  color: #a33b2f;
}

.cms-status.loading {
  color: var(--primary);
}

.cms-workspace {
  padding: clamp(18px, 2vw, 24px);
}

.cms-toolbar {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cms-toolbar h2 {
  font-size: var(--fs-h2);
}

.cms-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.file-action {
  cursor: pointer;
}

.primary-action.is-dirty {
  background: var(--accent);
  border-color: var(--accent);
}

.danger-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid #a33b2f;
  border-radius: 999px;
  padding: 0 18px;
  background: #fff;
  color: #a33b2f;
  font-weight: 600;
  white-space: nowrap;
}

.danger-action:hover,
.danger-action:focus-visible {
  background: #a33b2f;
  color: #fff;
  outline: none;
}

.danger-action svg {
  width: 17px;
  height: 17px;
}

.cms-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.cms-stats article {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--bg);
}

.cms-stats svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.cms-stats strong {
  font-size: var(--fs-h3);
  line-height: 1;
}

.cms-stats span {
  color: var(--muted);
  font-size: var(--fs-body-2);
}

.cms-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.cms-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 18px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}

.cms-tabs button.is-active,
.cms-tabs button:hover,
.cms-tabs button:focus-visible {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  outline: none;
}

.cms-tabs svg {
  width: 17px;
  height: 17px;
}

.cms-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.cms-list-panel,
.cms-editor-panel {
  min-width: 0;
  padding: 18px;
}

.cms-list-head {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.cms-search {
  position: relative;
  display: block;
}

.cms-search svg {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: var(--primary);
}

.cms-search input {
  padding-left: 42px;
}

.cms-item-list {
  display: grid;
  gap: 8px;
  max-height: 680px;
  overflow: auto;
  padding-right: 4px;
}

.cms-item-list button {
  display: grid;
  gap: 4px;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.cms-item-list button:hover,
.cms-item-list button:focus-visible,
.cms-item-list button.is-active {
  border-color: var(--primary);
  background: var(--primary-soft);
  outline: none;
}

.cms-item-list button strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cms-item-list button span {
  font-size: var(--fs-small);
}

.cms-editor-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.cms-editor-head > div:first-child {
  min-width: 0;
}

.cms-editor-head > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cms-editor-head h3 {
  overflow-wrap: anywhere;
}

.cms-editor-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cms-editor-form span {
  color: var(--ink);
}

.cms-editor-form small {
  font-size: var(--fs-small);
  font-weight: 400;
}

.cms-empty {
  display: grid;
  gap: 8px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--bg);
  text-align: center;
}

.editor-empty {
  place-items: center;
  min-height: 280px;
}

.editor-empty svg {
  width: 38px;
  height: 38px;
  color: var(--primary);
}

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .main-nav {
    justify-content: center;
  }

  .top-search {
    width: min(420px, calc(100vw - 48px));
  }

  .project-grid,
  .news-list,
  .news-card-grid,
  .store-grid,
  .hot-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-filter-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-filter-field,
  .quick-filter-button,
  .quick-contact {
    min-height: 58px;
  }

  .quick-filter-button,
  .quick-contact {
    border-top: 1px solid var(--line);
  }

  .detail-content,
  .store-hero,
  .near-hero,
  .contact-hero,
  .contact-grid,
  .cms-hero,
  .cms-layout,
  .store-profile-hero,
  .store-profile-grid,
  .article-hero,
  .article-layout,
  .about-section {
    grid-template-columns: 1fr;
  }

  .directory-filter-grid,
  .near-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cms-connect-form,
  .cms-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cms-toolbar,
  .cms-editor-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .cms-toolbar-actions,
  .cms-editor-head > div:last-child {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --content: min(calc(100vw - 28px), 480px);
    --fs-h1: clamp(2rem, 9vw, 2.25rem);
    --fs-h2: clamp(1.5rem, 7vw, 1.75rem);
    --fs-h3: clamp(1.25rem, 5.8vw, 1.375rem);
    --fs-h4: 1.125rem;
    --fs-body: 1rem;
    --fs-body-2: 0.875rem;
    --fs-small: 0.75rem;
  }

  .topbar {
    position: static;
    padding: 14px;
  }

  .find-section,
  .news-section,
  .about-section,
  .detail-page,
  .news-page,
  .store-detail-page,
  .cms-page {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .near-hero,
  .near-hero > div,
  .near-hero > aside,
  .store-hero,
  .store-directory {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .near-hero h1,
  .near-hero p:not(.eyebrow),
  .near-hero > aside span,
  .store-directory h2,
  .store-directory .section-heading p {
    max-width: calc(100vw - 110px);
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    width: 100%;
    gap: 10px 14px;
    font-size: 0.8125rem;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .top-search {
    width: 100%;
  }

  .store-search {
    border-radius: var(--radius);
  }

  .store-profile-hero {
    gap: 20px;
  }

  .store-profile-hero h1 {
    max-width: calc(100vw - 42px);
    font-size: var(--fs-h1);
    line-height: var(--lh-heading);
  }

  .store-profile-hero p:not(.eyebrow) {
    width: min(100%, calc(100vw - 96px));
  }

  .store-profile-panel p:not(.eyebrow) {
    width: min(100%, calc(100vw - 96px));
  }

  .store-detail-page .store-profile-hero p:not(.eyebrow),
  .store-detail-page .store-profile-panel p:not(.eyebrow),
  .store-detail-page .store-profile-panel span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .store-gallery {
    grid-template-columns: 1fr;
  }

  .store-gallery > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .store-info-list div,
  .review-form,
  .contact-form,
  .cms-connect-form,
  .cms-editor-form,
  .cms-stats,
  .directory-filter-grid,
  .near-filter-grid {
    grid-template-columns: 1fr;
  }

  .contact-form label.full {
    grid-column: auto;
  }

  .review-form label.full {
    grid-column: auto;
  }

  .cms-connect-form .full,
  .cms-editor-form .full {
    grid-column: auto;
  }

  .cms-toolbar-actions,
  .cms-editor-head > div:last-child,
  .cms-connect-actions {
    width: 100%;
  }

  .cms-toolbar-actions .primary-action,
  .cms-toolbar-actions .secondary-action,
  .cms-toolbar-actions .file-action,
  .cms-editor-head .primary-action,
  .cms-editor-head .secondary-action,
  .cms-editor-head .danger-action,
  .cms-connect-actions .primary-action,
  .cms-connect-actions .secondary-action {
    width: 100%;
  }

  .cms-tabs button {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }

  .cms-item-list {
    max-height: 420px;
  }

  .map-panel iframe {
    height: 280px;
  }

  .hero-banner {
    height: 250px;
  }

  .quick-filter-section {
    margin-top: 16px;
  }

  .quick-filter-card {
    grid-template-columns: 1fr;
  }

  .quick-filter-field {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-filter-button,
  .quick-contact {
    width: 100%;
    min-height: 54px;
  }

  .hot-services-panel {
    padding-top: 28px;
  }

  .find-section {
    padding: 28px 0 48px;
  }

  .find-section h1 {
    font-size: var(--fs-h1);
  }

  .section-heading.centered p {
    max-width: 320px;
  }

  .segmented button,
  .chip-row button {
    flex: 1 1 calc(50% - 10px);
    padding-inline: 10px;
  }

  .project-grid,
  .news-list,
  .news-list.compact-list,
  .news-card-grid,
  .store-grid,
  .hot-service-grid,
  .site-footer,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .news-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
  }

  .news-item img {
    width: 88px;
    height: 66px;
  }

  .news-page-hero {
    padding: 44px 0 34px;
  }

  .article-hero {
    padding-top: 18px;
  }

  .article-page,
  .article-hero,
  .article-layout,
  .article-body,
  .related-news {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .article-hero h1 {
    max-width: calc(100vw - 80px);
    font-size: var(--fs-h2);
    line-height: var(--lh-heading);
    word-break: break-word;
  }

  .article-hero p:not(.eyebrow),
  .article-body p {
    max-width: 100%;
    font-size: var(--fs-body);
  }

  .article-hero p:not(.eyebrow) {
    width: calc(100vw - 80px);
  }

  .article-body p {
    width: calc(100vw - 118px);
  }

  .article-hero .news-tags {
    width: calc(100vw - 80px);
  }

  .news-tags small {
    max-width: 100%;
    white-space: normal;
  }

  .article-layout {
    padding-bottom: 48px;
  }

  .project-actions,
  .project-actions.wide {
    width: 100%;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .detail-hero {
    height: 330px;
  }

  .detail-hero figcaption {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }
}
