:root {
  --ag-bg: #e2eceb;
  --ag-paper: #f9e3d6;
  --ag-paper-alt: #f4f0ee;
  --ag-ink: #252525;
  --ag-muted: #5f5f5f;
  --ag-line: #c4d18b;
  --ag-accent: #ebbcc6;
  --ag-accent-strong: #7d9920;
  --ag-radius: 14px;
  --ag-max: 1920px;
  --ag-gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  color: var(--ag-ink);
  font: 400 16px/1.58 "Poppins", "Nunito", "Trebuchet MS", sans-serif;
  background: var(--ag-bg);
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ag-ink);
  line-height: 1.1;
  font-family: "Playfair Display", "Fraunces", Georgia, serif;
}

p, ul, ol { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.ag-container {
  width: min(var(--ag-max), calc(100% - (var(--ag-gutter) * 2)));
  margin: 0 auto;
}

.cny2-container {
  width: min(var(--ag-max), calc(100% - (var(--ag-gutter) * 2)));
  margin: 0 auto;
}

.cny2-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ag-bg);
  border-bottom: 1px solid var(--ag-line);
  transition: background-color .2s ease, border-color .2s ease;
}
.cny2-topbar.is-scrolled {
  background: rgba(226, 236, 235, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cny2-topbar-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cny2-brand img {
  display: block;
  max-width: 150px;
  width: 100%;
  height: auto;
}
.cny2-nav { margin-left: auto; }
.cny2-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cny2-menu li { margin: 0; }
.cny2-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ag-ink);
  font-size: 14px;
  font-weight: 700;
  transition: background-color .2s ease, color .2s ease;
}
.cny2-menu a:hover {
  background: var(--ag-accent);
  color: var(--ag-ink);
}
.cny2-menu .ag-my-list-link { gap: 8px; }
.cny2-menu .ag-my-list-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ag-accent);
  color: var(--ag-ink);
  font-size: 12px;
  font-weight: 800;
}
.cny2-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--ag-line);
  background: var(--ag-paper-alt);
  padding: 9px 8px;
  cursor: pointer;
}
.cny2-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ag-ink);
  border-radius: 999px;
  transition: transform .25s ease, opacity .2s ease;
}
.cny2-menu-toggle span + span { margin-top: 6px; }
.cny2-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
  z-index: 110;
}

.cny2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 18px;
  background: var(--ag-accent);
  color: var(--ag-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}
.cny2-btn,
.cny2-btn:link,
.cny2-btn:visited,
.cny2-btn:hover,
.cny2-btn:focus,
.cny2-btn:active,
.cny2-btn span,
.cny2-btn:visited span,
.cny2-btn:hover span,
.cny2-btn:focus span,
.cny2-btn:active span {
  color: var(--ag-ink) !important;
}
.cny2-btn span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap !important;
  flex: 0 0 auto;
}
.cny2-btn img,
.cny2-btn-contact img {
  width: 18px !important;
  min-width: 18px;
  max-width: 18px !important;
  height: 18px !important;
  min-height: 18px;
  max-height: 18px !important;
  object-fit: contain;
  display: block;
  flex: 0 0 18px;
}
.cny2-btn-main {
  background: var(--ag-accent);
  border-color: var(--ag-accent);
}
.cny2-btn-main:hover {
  background: var(--ag-line);
  border-color: var(--ag-line);
  transform: translateY(-1px);
}
.cny2-btn-soft {
  background: var(--ag-paper);
  border-color: transparent;
}
.cny2-btn-soft:hover {
  background: var(--ag-line);
  border-color: var(--ag-line);
  transform: translateY(-1px);
}
.cny2-topbar .cny2-btn-contact { margin-left: 6px; }

.ag-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ag-bg);
  border-bottom: 1px solid var(--ag-line);
  transition: background-color .2s ease;
}
.ag-header.is-scrolled {
  background: rgba(226, 236, 235, .78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ag-header-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ag-logo img {
  max-width: 150px;
  width: 100%;
  height: auto;
}

.ag-menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ag-line);
  border-radius: 10px;
  background: var(--ag-paper-alt);
  padding: 9px 8px;
  cursor: pointer;
}
.ag-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--ag-ink);
  transition: transform .25s ease, opacity .2s ease;
}
.ag-menu-toggle span + span { margin-top: 6px; }

.ag-nav { margin-left: auto; }
.ag-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ag-menu li { margin: 0; }
.ag-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: background-color .2s ease, color .2s ease;
}
.ag-menu a:hover { background: var(--ag-accent); color: var(--ag-ink); }
.ag-menu .ag-my-list-link { gap: 8px; }
.ag-my-list-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ag-accent);
  color: var(--ag-ink);
  font-size: 12px;
  font-weight: 800;
}

.ag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 18px;
  background: var(--ag-accent);
  color: var(--ag-ink);
  font-size: 14px;
  font-weight: 800;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.ag-btn,
.ag-btn:link,
.ag-btn:visited,
.ag-btn:hover,
.ag-btn:focus,
.ag-btn:active,
.ag-btn span,
.ag-btn:visited span,
.ag-btn:hover span,
.ag-btn:focus span,
.ag-btn:active span {
  color: var(--ag-ink) !important;
}
.ag-btn:hover { background: var(--ag-line); transform: translateY(-1px); }
.ag-btn-outline {
  background: var(--ag-paper);
  border-color: var(--ag-line);
}
.ag-btn-whats { margin-left: 8px; }
.cny2-gooey-wrap {
  position: relative;
  display: inline-block;
  vertical-align: top;
  isolation: isolate;
  overflow: visible;
  filter: url('#cny2-goo');
  -webkit-filter: url('#cny2-goo');
}
.cny2-gooey-wrap > [data-gooey] {
  position: relative;
  z-index: 1;
}

.ag-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.ag-main { min-height: 60vh; }
.ag-section { padding: clamp(40px, 6vw, 74px) 0; }
.ag-section-head h2 { font-size: clamp(30px, 4.2vw, 52px); }
.ag-section-head p { margin-top: 10px; color: var(--ag-muted); font-size: 1.08rem; line-height: 1.42; }
.ag-section-alt {
  background: rgba(249, 227, 214, .45);
  border-top: 1px solid var(--ag-line);
  border-bottom: 1px solid var(--ag-line);
}
.ag-kicker {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 800;
  color: #3f4746;
}
.ag-lead { color: var(--ag-muted); font-size: 1.1rem; }
.ag-hero-cta { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; }

.ag-card-grid,
.ag-post-grid,
.ag-grid-3,
.ag-grid-4 {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}
.ag-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ag-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ag-card,
.ag-post-card,
.ag-local-box,
.ag-widget,
.hc1-card,
.hc2-card,
.dg-card {
  background: var(--ag-paper-alt);
  border: 1px solid var(--ag-line);
  border-radius: var(--ag-radius);
}
.ag-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ag-card-media img { width: 100%; height: 180px; object-fit: cover; }
.ag-card-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.ag-card-body h3,
.ag-post-card h3,
.ag-local-box h3,
.ag-widget-title,
.hc1-card h3,
.hc2-card h3,
.dg-card h2 { font-family: "Fraunces", Georgia, serif; }
.ag-card-body p,
.ag-post-card p,
.ag-local-box p,
.ag-widget p,
.hc1-card p,
.hc2-card p,
.dg-card p,
.dg-card li { color: var(--ag-muted); }
.ag-card-body a:last-child,
.ag-post-card a,
.ag-local-box a { color: var(--ag-accent-strong); font-weight: 700; }

.ag-layout-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 18px;
}
.ag-content {
  background: var(--ag-paper-alt);
  border: 1px solid var(--ag-line);
  border-radius: var(--ag-radius);
  padding: 18px;
}
.ag-content h1 { font-size: clamp(34px, 5vw, 56px); }
.ag-content h2 { margin-top: 18px; font-size: clamp(24px, 3vw, 36px); }
.ag-content p,
.ag-content li { color: var(--ag-muted); }
.ag-content > * + * { margin-top: 12px; }
.ag-breadcrumbs { color: var(--ag-muted); font-size: 14px; }
.ag-breadcrumbs a { color: var(--ag-accent-strong); }
.ag-page-visual img { width: 100%; height: clamp(220px, 35vw, 360px); object-fit: cover; border-radius: 12px; }
.ag-meta { color: var(--ag-muted); font-size: 14px; }
.ag-sidebar { display: grid; gap: 12px; align-content: start; }
.ag-widget { padding: 16px; }
.ag-content-full { max-width: none; }

.ag-inner-hero {
  position: relative;
  min-height: clamp(420px, 58vw, 620px);
  display: grid;
  align-items: center;
}
.ag-inner-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ag-inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 18, 18, .76) 0%, rgba(18, 18, 18, .56) 36%, rgba(18, 18, 18, .22) 66%, rgba(18, 18, 18, .08) 100%);
}
.ag-inner-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: clamp(40px, 6vw, 84px) 0;
}
.ag-inner-hero-content > * { max-width: 820px; }
.ag-inner-hero-content .ag-kicker { color: #f9e3d6; }
.ag-inner-hero-content h1 {
  margin-top: 12px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: .92;
  color: #fff;
}
.ag-inner-hero-lead {
  margin-top: 14px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.24;
  color: #f8ece3;
}
.ag-inner-hero-content .ag-hero-cta { margin-top: 24px; }

.ag-related-carousel.owl-carousel { display: block; }
.ag-related-carousel.owl-carousel .owl-stage { display: flex; }
.ag-related-carousel.owl-carousel .owl-item { display: flex; }
.ag-related-carousel.owl-carousel .owl-item .ag-card { width: 100%; }
.ag-related-carousel.owl-carousel .owl-nav {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.ag-related-carousel.owl-carousel .owl-nav button.owl-prev,
.ag-related-carousel.owl-carousel .owl-nav button.owl-next {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--ag-line);
  background: var(--ag-paper);
  color: var(--ag-ink);
  transition: background-color .2s ease, border-color .2s ease;
}
.ag-related-carousel.owl-carousel .owl-nav button.owl-prev:hover,
.ag-related-carousel.owl-carousel .owl-nav button.owl-next:hover {
  background: var(--ag-line);
  border-color: var(--ag-line);
}

.ag-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ag-metrics-grid article {
  background: var(--ag-paper-alt);
  border: 1px solid var(--ag-line);
  border-radius: var(--ag-radius);
  padding: 22px 18px;
  text-align: center;
}
.ag-metrics-grid strong {
  display: block;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: .95;
  font-family: "Playfair Display", "Fraunces", Georgia, serif;
}
.ag-metrics-grid span {
  display: block;
  margin-top: 14px;
  color: var(--ag-muted);
}

.ag-steps-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ag-steps-grid article {
  background: var(--ag-paper-alt);
  border: 1px solid var(--ag-line);
  border-radius: var(--ag-radius);
  padding: 20px 18px;
}
.ag-steps-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--ag-accent);
  color: var(--ag-ink);
  font-weight: 800;
}
.ag-steps-grid h3 {
  margin-top: 12px;
  font-size: clamp(23px, 2.8vw, 31px);
}
.ag-steps-grid p {
  margin-top: 10px;
  color: var(--ag-muted);
  line-height: 1.44;
}

.ag-faq-grid {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}
.ag-faq-grid details {
  background: var(--ag-paper-alt);
  border: 1px solid var(--ag-line);
  border-radius: var(--ag-radius);
  padding: 14px 16px;
}
.ag-faq-grid summary {
  cursor: pointer;
  font-weight: 800;
}
.ag-faq-grid details p {
  margin-top: 10px;
  color: var(--ag-muted);
  line-height: 1.45;
}

.ag-local-hero,
.ag-local-mix {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: 16px;
  align-items: center;
}
.ag-local-copy,
.ag-local-media,
.ag-local-mix > div,
.ag-map-section,
.ag-local-final-cta,
.hc1-wrap,
.hc2-wrap,
.hc3-wrap,
.dg-hero-wrap,
.dg-next-wrap {
  background: var(--ag-paper-alt);
  border: 1px solid var(--ag-line);
  border-radius: var(--ag-radius);
  padding: clamp(18px, 3vw, 30px);
}
.ag-local-media img,
.ag-local-mix-images img { width: 100%; border-radius: 12px; border: 1px solid var(--ag-line); }
.ag-local-info-row { margin-top: 16px; display: grid; gap: 8px; }
.ag-local-info-row span { background: var(--ag-paper); border: 1px solid var(--ag-line); border-radius: 999px; padding: 6px 10px; font-size: 14px; }
.ag-local-3col { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.ag-local-box { padding: 16px; }
.ag-local-box h3 + p { margin-top: 8px; }
.ag-local-box p + a { margin-top: 10px; display: inline-flex; }
.ag-local-mix-images { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
.ag-local-mix-images img:first-child { grid-column: 1 / -1; height: 220px; object-fit: cover; }
.ag-map-section iframe { width: 100%; border: 0; border-radius: 12px; min-height: 300px; margin-top: 12px; }
.ag-local-final-cta { text-align: center; }
.ag-local-final-cta h2 + p { margin-top: 10px; color: var(--ag-muted); }
.ag-local-final-cta .ag-btn { margin-top: 16px; }

.hc1-hero, .hc1-grid-section, .hc1-strip,
.hc2-hero, .hc2-intents, .hc2-columns,
.hc3-shell,
.dg-hero, .dg-grid-wrap, .dg-next { padding: clamp(26px, 4vw, 42px) 0; }
.hc1-wrap h1,
.hc2-wrap h1,
.hc3-wrap h1,
.dg-hero-wrap h1 { font-size: clamp(36px, 5vw, 58px); }
.hc1-wrap p,
.hc2-wrap p,
.hc3-wrap p,
.dg-hero-wrap p { color: var(--ag-muted); }
.hc1-cta { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.hc1-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.hc1-card { padding: 16px; display: grid; gap: 8px; }
.hc1-strip-wrap { background: var(--ag-paper); border: 1px solid var(--ag-line); border-radius: 999px; padding: 10px 14px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.hc2-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.hc2-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.hc2-card { padding: 16px; display: grid; gap: 8px; }
.hc2-col-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hc2-col-wrap article { background: var(--ag-paper-alt); border: 1px solid var(--ag-line); border-radius: var(--ag-radius); padding: 16px; }
.hc2-col-wrap ul { margin: 8px 0 0; padding-left: 18px; }
.hc2-col-wrap li + li { margin-top: 6px; }
.hc2-col-wrap a { color: var(--ag-accent-strong); }

.hc3-wrap { text-align: center; }
.hc3-wrap header p { letter-spacing: .08em; font-size: 12px; font-weight: 800; text-transform: uppercase; color: var(--ag-muted); }
.hc3-actions { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.hc3-actions a { padding: 10px 14px; border-radius: 999px; border: 1px solid var(--ag-line); background: var(--ag-paper); font-weight: 700; }
.hc3-note { margin-top: 16px; display: grid; gap: 6px; color: var(--ag-muted); }

.dg-hero-wrap,
.dg-next-wrap { text-align: center; }
.dg-eyebrow { letter-spacing: .08em; text-transform: uppercase; font-size: 12px; font-weight: 800; color: var(--ag-muted); }
.dg-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.dg-card { padding: 16px; display: grid; gap: 8px; }
.dg-card > header span { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--ag-muted); font-weight: 800; }
.dg-card ul { margin: 4px 0 0; padding-left: 18px; }
.dg-swatches { margin-top: 4px; display: flex; gap: 8px; }
.dg-swatches i { width: 22px; height: 22px; border-radius: 999px; border: 1px solid var(--ag-line); }
.dg-style-1 .dg-swatches i:nth-child(1) { background: #f9e3d6; }
.dg-style-1 .dg-swatches i:nth-child(2) { background: #ebbcc6; }
.dg-style-1 .dg-swatches i:nth-child(3) { background: #c4d18b; }
.dg-style-1 .dg-swatches i:nth-child(4) { background: #7d9920; }
.dg-style-2 .dg-swatches i:nth-child(1) { background: #f4f0ee; }
.dg-style-2 .dg-swatches i:nth-child(2) { background: #e2eceb; }
.dg-style-2 .dg-swatches i:nth-child(3) { background: #9ab3b0; }
.dg-style-2 .dg-swatches i:nth-child(4) { background: #252525; }
.dg-style-3 .dg-swatches i:nth-child(1) { background: #d8c5ae; }
.dg-style-3 .dg-swatches i:nth-child(2) { background: #7d5a50; }
.dg-style-3 .dg-swatches i:nth-child(3) { background: #e9dac1; }
.dg-style-3 .dg-swatches i:nth-child(4) { background: #252525; }
.dg-style-4 .dg-swatches i:nth-child(1) { background: #ebbcc6; }
.dg-style-4 .dg-swatches i:nth-child(2) { background: #d37d62; }
.dg-style-4 .dg-swatches i:nth-child(3) { background: #7d9920; }
.dg-style-4 .dg-swatches i:nth-child(4) { background: #34443f; }
.dg-style-5 .dg-swatches i:nth-child(1) { background: #111; }
.dg-style-5 .dg-swatches i:nth-child(2) { background: #555; }
.dg-style-5 .dg-swatches i:nth-child(3) { background: #bbb; }
.dg-style-5 .dg-swatches i:nth-child(4) { background: #fff; }
.dg-style-6 .dg-swatches i:nth-child(1) { background: #d7e2d3; }
.dg-style-6 .dg-swatches i:nth-child(2) { background: #efe4d1; }
.dg-style-6 .dg-swatches i:nth-child(3) { background: #b0a087; }
.dg-style-6 .dg-swatches i:nth-child(4) { background: #6f6d60; }
.dg-next-links { margin-top: 14px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

.ag-footer {
  background: var(--ag-paper);
  border-top: 1px solid var(--ag-line);
}
.ag-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
  padding: clamp(26px, 4vw, 40px) 0;
}
.ag-footer h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  margin-bottom: 8px;
}
.ag-footer p,
.ag-footer-menu a { color: var(--ag-muted); }
.ag-footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.ag-footer-menu a:hover { color: var(--ag-accent-strong); }
.ag-footer-bottom {
  border-top: 1px solid var(--ag-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 12px 0 18px;
}

@media (max-width: 1180px) {
  .ag-grid-4,
  .hc1-grid,
  .hc2-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ag-grid-3,
  .dg-grid,
  .ag-local-3col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ag-layout-page,
  .ag-local-hero,
  .ag-local-mix,
  .ag-footer-grid { grid-template-columns: 1fr; }
  .ag-metrics-grid,
  .ag-steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .cny2-topbar-inner { min-height: 76px; }
  .cny2-menu-toggle { display: inline-block; margin-left: auto; }
  .cny2-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: min(340px, 86vw);
    margin: 0;
    padding: 94px 16px 20px;
    background: var(--ag-paper-alt);
    border-right: 1px solid var(--ag-line);
    transform: translateX(-102%);
    transition: transform .28s ease;
    z-index: 120;
    overflow-y: auto;
  }
  .cny2-menu { flex-direction: column; align-items: stretch; gap: 8px; }
  .cny2-menu a {
    justify-content: flex-start;
    min-height: 44px;
    border: 1px solid var(--ag-line);
    background: var(--ag-paper);
  }
  .cny2-menu .ag-my-list-link { justify-content: space-between; }
  .cny2-topbar .cny2-btn-contact { display: none; }
  .cny2-topbar.is-menu-open .cny2-nav { transform: translateX(0); }
  .cny2-topbar.is-menu-open .cny2-menu-overlay {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  .cny2-topbar.is-menu-open .cny2-menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .cny2-topbar.is-menu-open .cny2-menu-toggle span:nth-child(2) { opacity: 0; }
  .cny2-topbar.is-menu-open .cny2-menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  body.cny2-menu-open { overflow: hidden; }

  .ag-menu-toggle { display: inline-block; }
  .ag-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: min(340px, 86vw);
    margin: 0;
    padding: 96px 16px 20px;
    background: var(--ag-paper-alt);
    border-right: 1px solid var(--ag-line);
    transform: translateX(-102%);
    transition: transform .28s ease;
    z-index: 120;
    overflow-y: auto;
  }
  .ag-menu { flex-direction: column; align-items: stretch; }
  .ag-menu a {
    justify-content: flex-start;
    min-height: 44px;
    border: 1px solid var(--ag-line);
    background: var(--ag-paper);
  }
  .ag-menu .ag-my-list-link {
    justify-content: space-between;
  }
  .ag-btn-whats { display: none; }

  .ag-header.is-menu-open .ag-nav { transform: translateX(0); }
  .ag-header.is-menu-open .ag-nav-overlay {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  .ag-header.is-menu-open .ag-menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .ag-header.is-menu-open .ag-menu-toggle span:nth-child(2) { opacity: 0; }
  .ag-header.is-menu-open .ag-menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  body.ag-menu-open { overflow: hidden; }
}

@media (max-width: 720px) {
  .ag-grid-4,
  .ag-grid-3,
  .dg-grid,
  .ag-local-3col,
  .hc1-grid,
  .hc2-cards,
  .hc2-col-wrap { grid-template-columns: 1fr; }
  .ag-metrics-grid,
  .ag-steps-grid { grid-template-columns: 1fr; }
  .ag-inner-hero { min-height: 460px; }
  .ag-header-wrap { min-height: 76px; }
  .ag-footer-bottom { flex-direction: column; align-items: flex-start; }
}
