:root {
  --ink: #17202a;
  --body: #36404a;
  --muted: #68727c;
  --line: #e1dbd0;
  --paper: #fbfaf7;
  --warm: #f3eee6;
  --sage: #66765d;
  --sage-dark: #475841;
  --wine: #91424a;
  --wine-dark: #6f2f36;
  --gold: #b99a61;
  --blue: #2f5f73;
  --shadow: 0 20px 48px rgba(23, 32, 42, 0.1);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: "Noto Sans KR", "Malgun Gothic", "Apple SD Gothic Neo", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.utility-bar {
  background: #111821;
  color: #e9eef2;
  font-size: 13px;
}

.utility-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.utility-inner span {
  color: #c9d4dc;
}

.utility-inner strong {
  color: #fff;
}

.utility-inner a {
  color: #f4d6d1;
  font-weight: 700;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-120%);
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(225, 219, 208, 0.86);
  backdrop-filter: blur(16px);
}

.clone-hero {
  min-height: calc(100vh - 120px);
  background:
    radial-gradient(circle at 78% 22%, rgba(145, 66, 74, 0.09), transparent 32%),
    linear-gradient(90deg, #fbfaf7 0%, #f4eee5 100%);
  border-bottom: 1px solid var(--line);
}

.clone-hero-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.72fr);
  gap: 58px;
  align-items: center;
  padding: 58px 0;
}

.clone-copy h1 {
  max-width: 720px;
  font-size: 66px;
  font-weight: 900;
  line-height: 1.08;
}

.clone-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #47515d;
  font-size: 20px;
  line-height: 1.8;
}

.clone-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.88fr);
  grid-template-rows: 260px 170px 120px;
  gap: 12px;
  align-self: stretch;
  max-height: 590px;
}

.clone-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e6dfd4;
  box-shadow: 0 18px 46px rgba(23, 32, 42, 0.12);
}

.clone-photo.large {
  grid-row: span 3;
}

.clone-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clone-photo.compact img {
  object-position: center 38%;
}

.clone-contact {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(23, 32, 42, 0.1);
}

.clone-contact span {
  color: var(--wine);
  font-size: 13px;
  font-weight: 850;
}

.clone-contact strong {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.1;
}

.clone-contact small {
  color: var(--muted);
  line-height: 1.45;
}

.clone-points {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.point-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.point-strip article {
  min-height: 132px;
  padding: 28px;
  background: #fff;
}

.point-strip span {
  color: var(--gold);
  font-weight: 900;
}

.point-strip strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 22px;
}

.point-strip p {
  margin: 8px 0 0;
  color: var(--muted);
}

.clone-intro {
  padding: 92px 0;
  background: #111821;
  color: #dce6eb;
}

.clone-intro h2 {
  max-width: 840px;
  color: #fff;
  font-size: 46px;
  line-height: 1.22;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: rgba(255, 255, 255, 0.14);
}

.intro-grid article {
  padding: 30px;
  background: #18222d;
}

.intro-grid strong {
  display: block;
  color: #fff;
  font-size: 48px;
  line-height: 1;
}

.intro-grid span {
  display: block;
  margin-top: 12px;
  color: #c9d4dc;
}

.care-index {
  background: #f6f1e9;
}

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

.clone-menu-card {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  border-color: #ddd2c3;
  box-shadow: none;
  display: block;
  padding: 0 0 22px;
  background: #fff;
}

.clone-menu-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.clone-menu-card:hover::after {
  transform: scaleX(1);
}

.clone-card-media {
  position: relative;
  display: block;
  height: 148px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(102, 118, 93, 0.2), rgba(185, 154, 97, 0.16)),
    #e8e1d8;
}

.clone-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 33, 0), rgba(17, 24, 33, 0.22));
}

.clone-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 220ms ease;
}

.clone-menu-card:hover .clone-card-media img {
  transform: scale(1.055);
}

.clone-menu-card > span:not(.clone-card-media),
.clone-menu-card > strong,
.clone-menu-card > p {
  margin-left: 20px;
  margin-right: 20px;
}

.clone-menu-card > span:not(.clone-card-media) {
  display: inline-flex;
  margin-top: 18px;
  color: var(--wine);
}

.clone-menu-card > strong {
  display: block;
  align-self: auto;
  margin-top: 10px;
}

.clone-menu-card > p {
  margin-top: 12px;
  margin-bottom: 0;
}

.mini-map-line {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 1px;
  background: rgba(23, 32, 42, 0.18);
  box-shadow: 0 -24px 0 rgba(23, 32, 42, 0.12), 0 24px 0 rgba(23, 32, 42, 0.12);
}

.mini-map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(145, 66, 74, 0.24);
}

.clone-detail-hero {
  background:
    linear-gradient(90deg, #fbfaf7 0%, #f4eee5 100%);
}

.clone-summary-section {
  background: #fff;
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(145, 66, 74, 0.45);
  border-radius: 50%;
  color: var(--wine);
  font-weight: 800;
  background: #fff;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 2px;
  flex: 1;
}

.nav-link,
.dropdown-panel a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active,
.dropdown-panel a:hover,
.dropdown-panel a.is-active {
  background: #efe6dc;
  color: var(--wine-dark);
}

.nav-group {
  position: relative;
  display: flex;
}

.dropdown-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: 188px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-group.is-open .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-panel a {
  min-height: 38px;
  justify-content: space-between;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.quick-rail {
  position: fixed;
  right: 18px;
  top: 172px;
  z-index: 80;
  width: 112px;
  display: grid;
  gap: 8px;
}

.quick-rail a {
  display: grid;
  gap: 2px;
  min-height: 72px;
  padding: 12px 10px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(225, 219, 208, 0.92);
  box-shadow: 0 10px 28px rgba(23, 32, 42, 0.08);
}

.quick-rail span {
  color: var(--muted);
  font-size: 12px;
}

.quick-rail strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.page-shell {
  min-height: 72vh;
}

.hero,
.detail-hero,
.location-hero {
  background:
    linear-gradient(105deg, rgba(251, 250, 247, 0.94), rgba(243, 238, 230, 0.9)),
    var(--warm);
}

.hero-inner,
.section-inner,
.detail-inner,
.location-inner,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.74fr);
  gap: 52px;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: 70px 0 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: 0;
}

.hero h1,
.detail-title {
  max-width: 720px;
  font-size: 54px;
  font-weight: 850;
}

.hero-lead,
.detail-lead,
.location-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #46515b;
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #d8d0c4;
}

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

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
}

.mosaic-tile {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 6px;
  background: #e6dfd4;
}

.mosaic-tile.large {
  grid-row: span 2;
}

.mosaic-tile.wide {
  grid-column: span 2;
}

.mosaic-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 32, 42, 0), rgba(23, 32, 42, 0.34));
}

.mosaic-tile span {
  position: absolute;
  left: 12px;
  bottom: 10px;
  z-index: 1;
  color: #fff;
  font-weight: 850;
}

.hero-stamp {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.hero-stamp span {
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: #f1eadf;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: 34px;
}

.section-head p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

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

.page-card,
.info-card,
.symptom-card,
.flow-card,
.editable-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(23, 32, 42, 0.06);
}

.page-card {
  display: grid;
  min-height: 186px;
  padding: 22px;
}

.page-card span {
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
}

.page-card strong {
  align-self: end;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.24;
}

.page-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.page-card:hover {
  border-color: rgba(145, 66, 74, 0.36);
  transform: translateY(-2px);
  transition: transform 160ms ease, border-color 160ms ease;
}

.detail-hero {
  border-bottom: 1px solid var(--line);
}

.detail-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.76fr);
  gap: 46px;
  align-items: center;
  padding: 64px 0;
}

.detail-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #e6dfd4;
}

.detail-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag-row span {
  padding: 7px 10px;
  border: 1px solid rgba(145, 66, 74, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--wine-dark);
  font-size: 13px;
  font-weight: 700;
}

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

.info-card {
  padding: 20px;
}

.info-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.info-card strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.info-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  gap: 36px;
  align-items: start;
}

.copy-panel {
  padding-right: 20px;
}

.copy-panel h2,
.related-panel h2,
.flow-section h2 {
  font-size: 32px;
}

.copy-panel p {
  margin: 16px 0 0;
  color: #4a545f;
  font-size: 18px;
}

.copy-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.copy-list li {
  position: relative;
  padding-left: 20px;
}

.copy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

.symptom-grid,
.flow-grid {
  display: grid;
  gap: 12px;
}

.symptom-card,
.flow-card {
  padding: 18px;
}

.symptom-card strong,
.flow-card strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
}

.symptom-card p,
.flow-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.related-grid .page-card {
  min-height: 150px;
}

.flow-section {
  background: var(--ink);
  color: #e8edf1;
}

.flow-section h2,
.flow-section .eyebrow,
.flow-card strong {
  color: #fff;
}

.flow-section .section-head p {
  color: #bdc8cf;
}

.flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flow-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.flow-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 850;
}

.flow-card p {
  color: #cbd5da;
}

.cta-band {
  padding: 60px 0;
  background: #fff;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff, #f6eee8);
}

.cta-box h2 {
  font-size: 28px;
}

.cta-box p {
  margin: 10px 0 0;
  color: var(--muted);
}

.location-inner {
  padding: 64px 0;
}

.location-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.76fr);
  gap: 42px;
  align-items: stretch;
}

.map-card {
  min-height: 430px;
  padding: 30px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(102, 118, 93, 0.18), rgba(185, 154, 97, 0.16)),
    #fff;
  border: 1px solid var(--line);
  display: grid;
  align-content: end;
  gap: 16px;
}

.map-lines {
  display: grid;
  gap: 10px;
  opacity: 0.9;
}

.map-lines span {
  display: block;
  height: 1px;
  background: rgba(23, 32, 42, 0.18);
}

.pin-card {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.pin-card strong {
  color: var(--ink);
  font-size: 22px;
}

.pin-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.editable-card {
  padding: 24px;
}

.editable-card header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.editable-card h3 {
  font-size: 24px;
}

.edit-pill {
  display: none;
}

.editable-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.editable-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee8de;
}

.editable-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.editable-card b {
  color: var(--ink);
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 0 70px;
  color: #cbd5da;
}

footer.site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  background: #121922;
}

.site-footer strong {
  color: #fff;
  font-size: 20px;
}

.site-footer p {
  margin: 6px 0 0;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1180px) {
  .quick-rail {
    display: none;
  }
}

@media (max-width: 980px) {
  .utility-inner {
    width: min(100% - 28px, 1180px);
    min-height: 38px;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
  }

  .header-inner {
    width: min(100% - 28px, 1180px);
    min-height: 68px;
  }

  .brand strong {
    font-size: 18px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    padding: 14px;
    background: rgba(251, 250, 247, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 6px;
  }

  .nav-link {
    min-height: 46px;
    white-space: normal;
  }

  .nav-group {
    display: grid;
  }

  .dropdown-panel {
    position: static;
    width: auto;
    margin: 0 0 4px 14px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: #fff;
  }

  .hero-inner,
  .clone-hero-inner,
  .detail-inner,
  .content-split,
  .location-hero-grid {
    grid-template-columns: 1fr;
  }

  .clone-hero,
  .clone-hero-inner {
    min-height: auto;
  }

  .clone-copy h1 {
    font-size: 50px;
  }

  .clone-visual {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 130px;
    max-height: none;
  }

  .clone-photo.large {
    grid-row: span 2;
  }

  .clone-contact {
    grid-column: span 2;
  }

  .point-strip,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 52px;
  }

  .hero h1,
  .detail-title {
    font-size: 42px;
  }

  .hero-media {
    min-height: 360px;
  }

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

  .clone-card-media {
    height: 178px;
  }

  .quick-summary,
  .related-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .utility-bar {
    display: none;
  }

  .hero-inner,
  .clone-hero-inner,
  .section-inner,
  .detail-inner,
  .location-inner {
    width: calc(100% - 28px);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero h1,
  .clone-copy h1,
  .detail-title {
    font-size: 34px;
  }

  .clone-hero-inner {
    gap: 30px;
    padding: 42px 0 48px;
  }

  .clone-copy p {
    font-size: 16px;
  }

  .clone-visual {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 144px 96px;
    gap: 8px;
  }

  .clone-contact {
    grid-column: span 2;
    padding: 16px;
  }

  .clone-contact strong {
    font-size: 22px;
  }

  .clone-intro {
    padding: 58px 0;
  }

  .clone-intro h2 {
    font-size: 30px;
  }

  .intro-grid article,
  .point-strip article {
    padding: 22px;
  }

  .intro-grid strong {
    font-size: 38px;
  }

  .hero-lead,
  .detail-lead,
  .location-lead,
  .copy-panel p {
    font-size: 16px;
  }

  .section {
    padding: 54px 0;
  }

  .section-head {
    display: grid;
    margin-bottom: 22px;
  }

  .section-head h2,
  .copy-panel h2,
  .related-panel h2,
  .flow-section h2 {
    font-size: 27px;
  }

  .card-grid,
  .clone-card-grid,
  .flow-grid,
  .editable-grid {
    grid-template-columns: 1fr;
  }

  .clone-menu-card {
    min-height: 0;
  }

  .clone-card-media {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .hero-media {
    min-height: 290px;
  }

  .detail-inner,
  .location-inner {
    padding: 44px 0;
  }

  .editable-card li {
    display: grid;
    gap: 4px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 86px;
  }

  .hero-mosaic .hero-stamp,
  .mobile-action-bar {
    display: none;
  }
}
