:root {
  --ink: #120f0b;
  --muted: #786f62;
  --paper: #fbf6ee;
  --paper-2: #f2eadf;
  --cream: #fffaf2;
  --line: rgba(18, 15, 11, .12);
  --gold: #c99d61;
  --gold-2: #efcf98;
  --dark: #0f0d0a;
  --dark-2: #1b1711;
  --shadow: 0 26px 70px rgba(18, 15, 11, .16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 157, 97, .16), transparent 34rem),
    linear-gradient(180deg, var(--paper), #fff 42%, var(--paper));
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
::selection { background: var(--gold); color: #fff; }

.container { width: var(--container); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
.section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 74px);
  line-height: .95;
  letter-spacing: -.05em;
}
.section-copy {
  margin: 20px 0 0;
  color: var(--muted);
  max-width: 680px;
  font-size: 17px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: #fff; box-shadow: 0 18px 40px rgba(18,15,11,.22); }
.btn-primary:hover { background: #000; }
.btn-ghost { border-color: rgba(255,255,255,.38); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); }
.btn-outline { border-color: rgba(18,15,11,.18); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
}
.nav-shell {
  width: var(--container);
  margin-inline: auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px 14px 12px 22px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(15, 13, 10, .46);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  pointer-events: auto;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.site-header.is-scrolled .nav-shell {
  background: rgba(15, 13, 10, .82);
  border-color: rgba(255,255,255,.12);
}
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo img { width: 142px; height: auto; filter: brightness(0) invert(1); }
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.12); color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.icon-btn:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.menu-toggle { display: none; }

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  background: rgba(15,13,10,.64);
  backdrop-filter: blur(8px);
}
.mobile-drawer.is-open { display: block; }
.drawer-panel {
  margin: 14px;
  margin-left: auto;
  width: min(370px, calc(100% - 28px));
  min-height: calc(100vh - 28px);
  padding: 24px;
  border-radius: 28px;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.drawer-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-head img { width: 140px; }
.drawer-links { display: grid; gap: 10px; margin-top: 34px; }
.drawer-links a { padding: 18px; border-radius: 18px; background: #fff; font-weight: 800; }
.drawer-links a:hover { background: var(--ink); color: #fff; }
.close-btn { color: var(--ink); border-color: var(--line); background: #fff; }

.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 128px 0 58px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,13,10,.92), rgba(15,13,10,.48) 48%, rgba(15,13,10,.2)),
    linear-gradient(0deg, rgba(15,13,10,.74), rgba(15,13,10,.1) 34%, transparent),
    url('../../static/picture/slider-01.jpg') center/cover no-repeat;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  width: 58vw;
  height: 58vw;
  right: -20vw;
  top: -24vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,157,97,.28), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .58fr);
  align-items: end;
  gap: 38px;
}
.hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 9vw, 132px);
  line-height: .86;
  letter-spacing: -.07em;
}
.hero-text {
  margin: 26px 0 0;
  max-width: 600px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.6vw, 21px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  padding: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.hero-card img {
  aspect-ratio: 4/5;
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
}
.card-caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(15,13,10,.64);
  backdrop-filter: blur(12px);
}
.card-caption b { display: block; font-size: 20px; }
.card-caption span { color: rgba(255,255,255,.7); font-size: 14px; }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 36px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: rgba(255,255,255,.72);
}
.scroll-cue::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: scrollDot 1.7s infinite;
}
@keyframes scrollDot { 0%, 100% { transform: translateY(-12px); opacity: .25; } 50% { transform: translateY(10px); opacity: 1; } }

.section { padding: clamp(82px, 10vw, 138px) 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 42px;
}
.section-head .section-copy { max-width: 460px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-xl);
  background: var(--dark);
  color: #fff;
  box-shadow: 0 22px 55px rgba(18,15,11,.12);
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,13,10,.86), transparent 62%), var(--image) center/cover no-repeat;
  transition: transform .5s ease;
}
.product-card:hover::before { transform: scale(1.06); }
.product-card > * { position: relative; z-index: 1; }
.product-card small { color: var(--gold-2); font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.product-card h3 { margin: 12px 0 8px; font-size: 28px; line-height: 1.05; }
.product-card p { margin: 0; color: rgba(255,255,255,.72); }

.story-band {
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
}
.story-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,13,10,.78), rgba(15,13,10,.18)), url('../../static/image/parr-02.jpg') center/cover no-repeat;
  opacity: .88;
}
.story-content {
  position: relative;
  z-index: 1;
  max-width: 770px;
  padding: clamp(46px, 8vw, 92px);
}
.story-content .section-copy { color: rgba(255,255,255,.72); }

.showcase { background: linear-gradient(180deg, transparent, rgba(242,234,223,.72)); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #ddd;
  box-shadow: 0 18px 45px rgba(18,15,11,.09);
}
.gallery-item:nth-child(2n) { margin-top: 34px; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1.08) contrast(1.04); }
.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-weight: 850;
  font-size: 13px;
  transform: translateY(18px);
  opacity: 0;
  transition: .3s ease;
}
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}
.split-media {
  position: relative;
  min-height: 640px;
}
.photo-stack {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.photo-stack img { width: 100%; height: 100%; object-fit: cover; }
.photo-stack.one { left: 0; top: 0; width: 64%; height: 78%; }
.photo-stack.two { right: 0; bottom: 0; width: 56%; height: 68%; border: 10px solid var(--paper); }
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.feature {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.66);
}
.feature b { display: block; margin-bottom: 6px; }
.feature span { color: var(--muted); font-size: 14px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}
.stat {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  color: #fff;
}
.stat strong { display: block; font-size: clamp(30px, 4vw, 52px); line-height: 1; }
.stat span { color: rgba(255,255,255,.68); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }

.quote-card {
  margin-top: 50px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}
.quote-card img { width: 54px; }
.quote-card blockquote { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(25px, 3vw, 42px); line-height: 1.12; }
.quote-card cite { display: block; margin-top: 18px; color: var(--muted); font-style: normal; font-weight: 800; }

.cta {
  padding: clamp(76px, 10vw, 120px) 0;
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,13,10,.96), rgba(15,13,10,.66)),
    url('../../static/picture/slider-02.jpg') center/cover no-repeat;
  opacity: .92;
}
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.cta .section-copy { color: rgba(255,255,255,.72); }

.site-footer {
  background: #090806;
  color: #fff;
  padding: 70px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .9fr;
  gap: 44px;
}
.footer-logo { width: 160px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-grid h4 { margin: 0 0 18px; letter-spacing: .12em; text-transform: uppercase; font-size: 13px; color: var(--gold-2); }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.68); }
.footer-links { display: grid; gap: 10px; }
.newsletter {
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}
.newsletter input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; color: #fff; padding: 0 12px; }
.newsletter input::placeholder { color: rgba(255,255,255,.48); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.48);
  font-size: 13px;
}

.page-hero {
  padding: 166px 0 78px;
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,13,10,.9), rgba(15,13,10,.28)), var(--hero-img) center/cover no-repeat;
  opacity: .92;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 840px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(54px, 9vw, 112px); line-height: .92; letter-spacing: -.07em; }
.page-hero p { max-width: 640px; color: rgba(255,255,255,.76); font-size: 19px; }
.page-card {
  margin-top: -46px;
  position: relative;
  z-index: 2;
}
.content-card {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 38px;
  background: #fff;
  box-shadow: var(--shadow);
}
.content-card .portrait img { width: 100%; height: 100%; min-height: 640px; object-fit: cover; }
.content-body { padding: clamp(34px, 6vw, 72px); }
.content-body h2 { margin: 0 0 20px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 5vw, 64px); line-height: 1; letter-spacing: -.05em; }
.content-body p { color: var(--muted); }
.contact-pill {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.contact-pill span, .contact-pill a {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(9,8,6,.78);
  backdrop-filter: blur(12px);
}
.search-overlay.is-open { display: grid; }
.search-box {
  width: min(760px, 100%);
  padding: 26px;
  border-radius: 30px;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.search-row { display: flex; gap: 10px; }
.search-row input {
  flex: 1;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: 0;
  background: #fff;
}
.search-note { margin: 14px 4px 0; color: var(--muted); font-size: 14px; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  transition: .25s ease;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-links, .nav-actions .btn { display: none; }
  .menu-toggle { display: grid; }
  .nav-shell { grid-template-columns: auto auto; justify-content: space-between; }
  .hero-grid, .split, .content-card, .cta-inner, .footer-grid { grid-template-columns: 1fr; }
  .hero { align-items: center; padding-bottom: 74px; }
  .hero-card { max-width: 430px; }
  .product-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .split-media { min-height: 560px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .content-card .portrait img { min-height: 420px; }
}

@media (max-width: 640px) {
  :root { --container: min(100% - 28px, 1180px); }
  .site-header { top: 10px; }
  .nav-shell { min-height: 64px; padding: 10px 10px 10px 16px; }
  .logo img { width: 116px; }
  .hero { padding-top: 106px; }
  .hero-grid { gap: 26px; }
  .hero-actions, .search-row, .newsletter, .footer-bottom { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .section-head { display: block; }
  .gallery-grid { gap: 10px; }
  .gallery-item { border-radius: 18px; }
  .gallery-item:nth-child(2n) { margin-top: 18px; }
  .feature-list, .stats { grid-template-columns: 1fr; }
  .split-media { min-height: 470px; }
  .photo-stack.one { width: 72%; height: 72%; }
  .photo-stack.two { width: 62%; height: 58%; border-width: 7px; }
  .quote-card { grid-template-columns: 1fr; }
  .story-band { border-radius: 28px; }
  .page-hero { padding-top: 138px; }
  .content-body { padding: 28px; }
  .newsletter { border-radius: 24px; }
}


/* Complete-page additions */
.cards-grid,
.blog-grid,
.team-grid,
.pricing-grid,
.search-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mini-card,
.article-card,
.team-card,
.price-card,
.contact-panel,
.contact-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 18px 45px rgba(18,15,11,.08);
}
.mini-card {
  display: block;
  padding: 26px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.mini-card:hover { transform: translateY(-4px); background: var(--ink); color: #fff; }
.mini-card b { display: block; font-size: 22px; margin-bottom: 8px; }
.mini-card span { color: var(--muted); }
.mini-card:hover span { color: rgba(255,255,255,.72); }
.pricing-grid { grid-template-columns: 1fr; }
.price-card {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 0;
  overflow: hidden;
}
.price-card img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; }
.price-card div { padding: clamp(26px, 5vw, 48px); }
.price-card small,
.article-card small,
.team-card small { color: var(--gold); font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.price-card h3,
.article-card h3,
.team-card h3 { margin: 10px 0; font-size: clamp(26px, 4vw, 42px); line-height: 1.03; letter-spacing: -.04em; }
.price-card p,
.article-card p,
.team-card p { color: var(--muted); }
.price-card strong { display: block; margin: 18px 0; font-size: 28px; }
.gallery-page-grid .gallery-item:nth-child(2n) { margin-top: 0; }
.faq-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 28px;
  align-items: start;
}
.faq-aside {
  position: sticky;
  top: 120px;
}
.faq-aside img {
  width: 100%;
  border-radius: 32px;
  margin-bottom: 26px;
  box-shadow: var(--shadow);
}
.faq-list { display: grid; gap: 14px; }
.faq-list details { padding: 24px 26px; }
.faq-list summary { cursor: pointer; font-size: 21px; font-weight: 850; }
.faq-list p { margin: 14px 0 0; color: var(--muted); }
.team-card,
.article-card { overflow: hidden; }
.team-card img,
.article-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.team-card div,
.article-card div { padding: 24px; }
.text-link { display: inline-flex; margin-top: 8px; font-weight: 900; color: var(--ink); border-bottom: 1px solid currentColor; }
.contact-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 24px;
  align-items: start;
}
.contact-panel,
.contact-form { padding: clamp(28px, 5vw, 46px); }
.contact-list { display: grid; gap: 12px; margin-top: 30px; }
.contact-list a { display: block; padding: 18px; border-radius: 20px; background: #fff; border: 1px solid var(--line); }
.contact-list b { display: block; }
.contact-list span { color: var(--muted); }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-weight: 850; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  outline: 0;
  background: #fff;
  color: var(--ink);
}
.contact-form textarea { resize: vertical; }
.form-note { margin: 0; color: var(--muted); font-size: 14px; }
.search-page .search-row { margin-bottom: 24px; }
.article-layout .content-card { grid-template-columns: .82fr 1.18fr; }
.notfound-hero { min-height: 80svh; display: flex; align-items: center; }
@media (max-width: 980px) {
  .cards-grid,
  .blog-grid,
  .team-grid,
  .search-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card,
  .faq-layout,
  .contact-grid,
  .article-layout .content-card { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
}
@media (max-width: 640px) {
  .cards-grid,
  .blog-grid,
  .team-grid,
  .search-results { grid-template-columns: 1fr; }
  .price-card img { min-height: 240px; }
}
