:root {
  --brand: #b45309;
  --brand-ink: #1c1917;
  --brand-muted: #57534e;
  --brand-paper: #faf7f2;
  --brand-card: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--brand-ink);
  background: var(--brand-paper);
  line-height: 1.6;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.site-header {
  background: var(--brand-header, var(--brand-card));
  border-bottom: 1px solid rgba(231, 229, 228, 0.9);
}

.site-header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-ink);
  text-decoration: none;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  min-width: 0;
}

.brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand:hover { text-decoration: none; color: var(--brand); }

.brand-logo {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-fallback {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #e7e5e4;
  border-radius: 6px;
  background: #fff;
  padding: 0.55rem;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--brand-ink);
  border-radius: 2px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brand-muted);
}

.nav a { color: inherit; }
.nav a:hover { color: var(--brand); }

.site-nav-actions {
  margin-left: auto;
}

.nav-sep {
  color: #d6d3d1;
  font-weight: 400;
}

.nav-main-site {
  white-space: nowrap;
}

.consult-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(28, 25, 23, 0.12);
}

.consult-btn:hover {
  filter: brightness(1.05);
  text-decoration: none;
  color: #fff;
}

body.consult-modal-open { overflow: hidden; }

.consult-modal[hidden] { display: none !important; }

.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.consult-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.55);
}

.consult-modal-dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(26rem, 100%);
  max-height: min(90vh, 40rem);
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  padding: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
}

.consult-modal-header {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.1rem 1.15rem 0.85rem;
  border-bottom: 1px solid #e7e5e4;
  background: #fff;
}

.consult-modal-close {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  color: #78716c;
  cursor: pointer;
  padding: 0;
  margin-top: -0.15rem;
}

.consult-modal-title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--brand-ink);
}

.consult-form {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1 1 auto;
}

.consult-form-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 1rem 1.15rem;
  -webkit-overflow-scrolling: touch;
}

.consult-form-footer {
  flex: 0 0 auto;
  padding: 0.85rem 1.15rem 1.1rem;
  border-top: 1px solid #e7e5e4;
  background: #fff;
}

.consult-step-heading {
  margin: 0 0 0.85rem;
  font-size: 1.1rem;
  text-align: center;
  color: var(--brand-ink);
}

.consult-form-image {
  margin: 0 0 1rem;
  border-radius: 6px;
  overflow: hidden;
  max-height: 9rem;
}

.consult-form-image img {
  display: block;
  width: 100%;
  height: 9rem;
  object-fit: cover;
}

.consult-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-ink);
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  font: inherit;
  font-weight: 400;
  padding: 0.55rem 0.65rem;
  border: 1px solid #d6d3d1;
  border-radius: 6px;
  background: #fff;
  width: 100%;
}

.consult-disclaimer {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--brand-muted);
  line-height: 1.45;
}

.consult-form-status {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
}

.consult-form-status.is-success { color: #166534; }
.consult-form-status.is-error { color: #b91c1c; }

.consult-form-actions {
  display: flex;
  gap: 0.65rem;
}

.consult-form-actions .consult-btn {
  flex: 1;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
}

.consult-form-actions .consult-btn[hidden] {
  display: none !important;
}

.consult-subpage[hidden] {
  display: none !important;
}

.consult-btn-secondary {
  background: #e7e5e4;
  color: #1c1917;
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

.consult-btn-secondary:hover {
  filter: brightness(0.97);
  color: #1c1917;
}

.post-consult-cta {
  display: block;
  margin: 2.25rem 0 0.5rem;
  padding: 1.75rem 1.35rem;
  border: 1px solid color-mix(in srgb, var(--brand) 28%, #e7e5e4);
  border-radius: 10px;
  background: color-mix(in srgb, var(--brand) 8%, #fff);
  text-align: center;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
}

.post-consult-heading {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.25;
  color: var(--brand-ink);
}

.post-consult-heading-btn {
  display: inline;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.post-consult-heading-btn:hover {
  color: var(--brand);
  text-decoration: underline;
}

.post-consult-copy {
  margin: 0 0 1.15rem;
  color: var(--brand-muted);
  font-size: 1.05rem;
}

.post-consult-btn {
  font-size: 0.88rem;
  padding: 0.85rem 1.25rem;
  white-space: normal;
}

.site-footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer a:hover { color: var(--brand); }

.wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1rem 3.5rem;
}

.section-title {
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--brand-ink);
}

.section-rule {
  height: 3px;
  width: 100%;
  max-width: 72rem;
  margin: 0 0 1.5rem;
  background: linear-gradient(90deg, var(--brand), transparent);
}

.blog-slider {
  position: relative;
  margin: 0 0 2rem;
  overflow: hidden;
  background: #e7e5e4;
}

.blog-slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
}

.blog-slide {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.blog-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.blog-slide:hover { text-decoration: none; }

.blog-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.blog-slider--fade .blog-slide {
  transform: none;
}

.blog-slider--slide .blog-slide,
.blog-slider--slide-up .blog-slide {
  opacity: 0;
  visibility: hidden;
  transition: none;
}

.blog-slider--slide .blog-slide {
  transform: translateX(100%);
}
.blog-slider--slide .blog-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: transform 0.65s ease;
  z-index: 2;
}
.blog-slider--slide .blog-slide.is-out-left,
.blog-slider--slide .blog-slide.is-out-right {
  opacity: 1;
  visibility: visible;
  transition: transform 0.65s ease;
  z-index: 1;
}
.blog-slider--slide .blog-slide.is-out-left {
  transform: translateX(-100%);
}
.blog-slider--slide .blog-slide.is-out-right {
  transform: translateX(100%);
}
.blog-slider--slide .blog-slide.is-active.is-from-left {
  transition: none;
  transform: translateX(-100%);
}
.blog-slider--slide .blog-slide.is-active.is-from-right {
  transition: none;
  transform: translateX(100%);
}

.blog-slider--slide-up .blog-slide {
  transform: translateY(100%);
}
.blog-slider--slide-up .blog-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: transform 0.65s ease;
  z-index: 2;
}
.blog-slider--slide-up .blog-slide.is-out-left,
.blog-slider--slide-up .blog-slide.is-out-right {
  opacity: 1;
  visibility: visible;
  transform: translateY(-100%);
  transition: transform 0.65s ease;
  z-index: 1;
}
.blog-slider--slide-up .blog-slide.is-active.is-from-left,
.blog-slider--slide-up .blog-slide.is-active.is-from-right {
  transition: none;
  transform: translateY(100%);
}

.blog-slider--zoom .blog-slide {
  transform: scale(1.08);
  opacity: 0;
}
.blog-slider--zoom .blog-slide.is-active {
  transform: scale(1);
  opacity: 1;
}

.blog-slider--cut .blog-slide {
  transition: none;
  transform: none;
}

.blog-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(transparent, rgba(28, 25, 23, 0.72));
  color: #fff;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
}

.blog-slide-heading {
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  line-height: 1.25;
}

.blog-slide-sub {
  margin-top: 0.3rem;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  opacity: 0.92;
}

.blog-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.blog-slider-btn.prev { left: 0.6rem; }
.blog-slider-btn.next { right: 0.6rem; }

.blog-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.6rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  z-index: 2;
}

.blog-slider-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
  padding: 0;
  cursor: pointer;
}

.blog-slider-dot.is-active { background: #fff; }

.shorts-section {
  margin: 2rem 0 2.5rem;
}

.shorts-lead {
  margin: -0.5rem 0 1.15rem;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 0.95rem;
  color: var(--brand-muted);
}

.shorts-reel {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  padding: 0.15rem 0.15rem 0.85rem;
  margin: 0 -0.15rem;
  scrollbar-width: thin;
  cursor: grab;
  will-change: scroll-position;
}

.shorts-reel.is-dragging,
.shorts-reel.is-coasting {
  scroll-snap-type: none;
  cursor: grabbing;
  user-select: none;
}

.shorts-reel:active {
  cursor: grabbing;
}

.shorts-reel:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.shorts-card {
  flex: 0 0 min(42vw, 220px);
  scroll-snap-align: start;
  min-width: 160px;
  max-width: 240px;
  touch-action: pan-x;
}

.shorts-media {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #1c1917;
  overflow: hidden;
  border: 1px solid rgba(231, 229, 228, 0.85);
  touch-action: pan-x;
  user-select: none;
  -webkit-user-select: none;
}

.shorts-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #292524;
  pointer-events: none;
}

.shorts-play {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background: rgba(28, 25, 23, 0.28);
  color: #fff;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  touch-action: pan-x;
  -webkit-tap-highlight-color: transparent;
}

.shorts-reel.is-dragging .shorts-play,
.shorts-reel.is-coasting .shorts-play {
  pointer-events: none;
}

.shorts-play::before {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231c1917'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 55% 50%;
  background-size: 1.35rem;
}

.shorts-media.is-playing .shorts-play {
  display: none;
}

.shorts-mute {
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  z-index: 2;
  border: 0;
  border-radius: 4px;
  padding: 0.3rem 0.45rem;
  font-family: system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(28, 25, 23, 0.72);
  color: #fff;
  cursor: pointer;
  touch-action: manipulation;
}

.shorts-mute[hidden] {
  display: none !important;
}

.shorts-mute[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.9);
  color: #1c1917;
}

.shorts-caption {
  margin: 0.55rem 0 0;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--brand-ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 720px) {
  .shorts-card {
    flex-basis: 200px;
  }
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .card-grid.cols-recent { grid-template-columns: repeat(3, 1fr); }
}

.post-card {
  background: var(--brand-card);
  box-shadow: 0 1px 2px rgba(28, 25, 23, 0.06);
  border: 1px solid rgba(231, 229, 228, 0.85);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-card-media {
  aspect-ratio: 96 / 75;
  background: #e7e5e4;
  overflow: hidden;
}

.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.post-card:hover .post-card-media img {
  transform: scale(1.03);
}

.post-card-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  background: linear-gradient(145deg, var(--brand), #292524);
}

.post-card-body {
  padding: 0.85rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card-date {
  margin: 0;
  font-family: system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

.post-card-title {
  margin: 0.5rem 0 0;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.15rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--brand-ink);
}

.post-card-title a { color: inherit; }
.post-card-title a:hover { color: var(--brand); text-decoration: none; }

.post-card-rule {
  margin-top: 0.75rem;
  width: 3rem;
  height: 1px;
  background: var(--brand);
}

.post-card-excerpt {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--brand-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cta {
  display: block;
  width: 100%;
  margin: 2rem 0;
  text-align: center;
  text-decoration: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.cta:hover { text-decoration: none; }

.cta-inner {
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1.1rem 1rem;
  word-break: break-word;
}

.cta-primary .cta-inner {
  background: var(--brand);
  color: #fff;
  font-size: clamp(1rem, 3.2vw, 1.65rem);
}

.cta-secondary .cta-inner {
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
  font-size: clamp(0.95rem, 2.8vw, 1.4rem);
}

button.cta.consult-btn {
  text-transform: none;
  letter-spacing: 0;
  box-shadow: none;
  white-space: normal;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

.designer-embed {
  width: 100%;
  height: min(70vh, 1200px);
  min-height: 420px;
  margin: 1.25rem 0 2rem;
  border: 1px solid #e7e5e4;
  background: #fff;
  overflow: hidden;
}

.designer-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.article-meta {
  font-family: system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--brand-muted);
}

.article-title {
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
}

.prose { font-size: 1.05rem; overflow-wrap: break-word; }
.prose h2, .prose h3 {
  font-family: system-ui, sans-serif;
  margin-top: 2rem;
}
.prose p { margin: 0 0 1rem; }
.prose img { border-radius: 4px; margin: 1rem 0; }
.prose ul, .prose ol { margin: 0 0 1rem; padding-left: 1.4rem; }
.prose li { margin: 0.25rem 0; }
.prose table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  margin: 1.5rem 0 2rem;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--brand-ink);
  background: var(--brand-card);
  border: 1px solid color-mix(in srgb, var(--brand) 32%, #e5e7eb);
}
.prose thead { display: table-header-group; }
.prose tbody { display: table-row-group; }
.prose tr { display: table-row; }
.prose th,
.prose td {
  display: table-cell;
  border: 1px solid color-mix(in srgb, var(--brand) 32%, #e5e7eb);
  padding: 0.85rem 1.1rem;
  text-align: left;
  vertical-align: middle;
  overflow-wrap: break-word;
  background: var(--brand-card);
  font-weight: 400;
}
.prose th {
  background: color-mix(in srgb, var(--brand) 16%, #fff);
  font-weight: 700;
  color: var(--brand-ink);
  border-color: color-mix(in srgb, var(--brand) 40%, #e5e7eb);
}

.site-footer {
  border-top: 1px solid #e7e5e4;
  padding: 1.5rem 1rem 2.5rem;
  text-align: center;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--brand-muted);
}

.narrow { max-width: 56rem; margin-left: auto; margin-right: auto; overflow-x: auto; }

.post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 2rem 0 0.5rem; }
.article-byline-sep { margin: 0 0.35rem; }
.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 2rem 0 0;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 0.95rem;
}
.blog-pagination a { text-decoration: none; color: var(--brand); }
.blog-pagination a:hover { text-decoration: underline; }
.blog-pagination-current { font-weight: 700; color: var(--brand-ink); }
.blog-pagination-sep { color: #a8a29e; }
.blog-pagination-prev { margin-right: 0.15rem; }
.blog-pagination-next { margin-left: 0.15rem; }

[data-recent-posts].is-loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.post-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border: 1px solid color-mix(in srgb, var(--brand) 40%, #e5e7eb);
  border-radius: 999px;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--brand);
  text-decoration: none;
  transition: background 0.15s;
}
.post-tag:hover { background: color-mix(in srgb, var(--brand) 10%, #fff); text-decoration: none; }

.error-box {
  text-align: center;
  padding: 4rem 1rem;
  font-family: system-ui, sans-serif;
}

@media (max-width: 719px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e7e5e4;
    padding-top: 0.5rem;
  }

  .nav.is-open { display: flex; }

  .nav a,
  .nav .consult-btn {
    padding: 0.7rem 0.15rem;
    border-bottom: 1px solid #f5f5f4;
  }

  .nav .consult-btn {
    width: 100%;
    margin-top: 0.35rem;
    border-bottom: 0;
  }

  .nav-sep { display: none; }

  .blog-slider-track,
  .blog-slide img { aspect-ratio: 16 / 10; }

  .blog-slider-track { aspect-ratio: 16 / 10; }

  .blog-slide-caption {
    padding: 0.85rem 0.95rem 1.35rem;
  }

  .blog-slider-btn {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }

  .designer-embed {
    height: 70vh;
    min-height: 360px;
  }

  .cta { margin: 1.5rem 0; }
}

@media (max-width: 420px) {
  .brand-logo,
  .brand-fallback {
    width: 2.6rem;
    height: 2.6rem;
  }

  .designer-embed {
    min-height: 300px;
  }
}
