:root {
  --bg: #141313;
  --panel: #1c1b1b;
  --panel-soft: #201f1f;
  --panel-strong: #2a2a2a;
  --panel-hard: #0e0e0e;
  --text: #e5e2e1;
  --muted: #dac2b0;
  --line: rgba(84, 68, 54, 0.2);
  --line-strong: rgba(255, 184, 118, 0.18);
  --primary: #ffb876;
  --primary-deep: #e88e2e;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  --radius: 2px;
  --shell: min(1360px, calc(100vw - 2rem));
  --font-body: "IBM Plex Sans", sans-serif;
  --font-display: "Sora", sans-serif;
  --font-meta: "IBM Plex Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-main {
  overflow: clip;
}

.section {
  padding: 7rem 0;
}

.section--panel {
  background: var(--panel);
}

.section--contact {
  background: var(--panel-hard);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
}

.topbar {
  padding-top: 1rem;
  transition: padding 320ms ease, background 320ms ease, border-color 320ms ease,
    box-shadow 320ms ease;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 1rem;
  width: min(calc(100vw - 3.5rem), 1280px);
  min-height: 94px;
  padding: 0 1.65rem;
  background: rgba(20, 19, 19, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 184, 118, 0.12);
  border-radius: 20px;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.38);
  transition: width 380ms ease, min-height 320ms ease, padding 320ms ease,
    border-radius 320ms ease, background 320ms ease, border-color 320ms ease,
    box-shadow 320ms ease, transform 320ms ease;
}

.site-header.is-sticky .topbar {
  padding-top: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 9, 9, 0.9),
    rgba(9, 9, 9, 0.35) 78%,
    rgba(9, 9, 9, 0)
  );
}

.site-header.is-sticky .topbar__inner {
  width: min(calc(100vw - 1.4rem), 1460px);
  min-height: 72px;
  padding: 0 1.15rem;
  background: rgba(14, 14, 14, 0.92);
  border-color: rgba(255, 184, 118, 0.08);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
}

.brand,
.nav-link,
.button,
.section-number,
.footer-title,
.content-kicker {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: 220px;
  object-fit: contain;
  transition: height 320ms ease, max-width 320ms ease, transform 320ms ease;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: gap 320ms ease;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: gap 320ms ease;
}

.nav-item {
  position: relative;
}

.nav-item__row {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: color 180ms ease, font-size 320ms ease, letter-spacing 320ms ease;
}

.nav-link:hover,
.nav-item:hover > .nav-item__row > .nav-link,
.nav-item:focus-within > .nav-item__row > .nav-link {
  color: var(--text);
}

.submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.submenu-toggle .material-symbols-outlined {
  font-size: 1.15rem;
  transition: transform 220ms ease;
}

.nav-item:hover > .nav-item__row > .submenu-toggle,
.nav-item:focus-within > .nav-item__row > .submenu-toggle,
.nav-item.is-open > .nav-item__row > .submenu-toggle {
  color: var(--text);
}

.nav-item.is-open > .nav-item__row > .submenu-toggle .material-symbols-outlined {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 1rem);
  left: -1rem;
  min-width: 240px;
  margin: 0;
  padding: 0.9rem;
  list-style: none;
  background: rgba(14, 14, 14, 0.98);
  border: 1px solid rgba(255, 184, 118, 0.1);
  border-radius: 18px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-item:hover > .nav-submenu,
.nav-item:focus-within > .nav-submenu,
.nav-item.is-open > .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu .nav-item {
  width: 100%;
}

.nav-submenu .nav-item + .nav-item {
  margin-top: 0.25rem;
}

.nav-submenu .nav-item__row {
  justify-content: space-between;
  gap: 0.8rem;
}

.nav-submenu .nav-link {
  width: 100%;
  padding: 0.7rem 0.8rem;
  font-size: 0.66rem;
  border-radius: 12px;
  background: transparent;
}

.nav-submenu .nav-link:hover,
.nav-submenu .nav-item:hover > .nav-item__row > .nav-link,
.nav-submenu .nav-item:focus-within > .nav-item__row > .nav-link {
  background: rgba(255, 184, 118, 0.08);
  color: var(--primary);
}

.nav-submenu .nav-submenu {
  top: -0.9rem;
  left: calc(100% + 0.8rem);
}

.site-header.is-sticky .brand-logo {
  height: 34px;
  max-width: 188px;
}

.site-header.is-sticky .topbar__actions,
.site-header.is-sticky .nav-menu {
  gap: 1.05rem;
}

.site-header.is-sticky .nav-link {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.footer-logo {
  display: block;
  width: auto;
  height: 54px;
  max-width: 240px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #4b2700;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(232, 142, 46, 0.24);
}

.button--large {
  padding: 1.15rem 2rem;
  font-size: 0.82rem;
}

.button--small {
  padding: 0.85rem 1.2rem;
}

.site-header.is-sticky .button--small {
  padding: 0.72rem 1rem;
}

.button--ghost {
  background: var(--panel-strong);
  color: var(--primary);
  border: 1px solid var(--line-strong);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 9.25rem 0 5.8rem;
  display: flex;
  align-items: center;
  overflow: clip;
}

.hero-backdrop,
.hero-backdrop__overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background-position: center;
  background-size: cover;
  opacity: 0.24;
  filter: grayscale(100%) saturate(0.7);
}

.hero-backdrop__overlay {
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 184, 118, 0.08), transparent 0 24%),
    linear-gradient(90deg, rgba(12, 11, 11, 0.975) 0%, rgba(16, 15, 15, 0.94) 40%, rgba(16, 15, 15, 0.64) 74%, rgba(16, 15, 15, 0.48) 100%);
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-section::before {
  top: 8.15rem;
  left: clamp(1rem, 4vw, 3.4rem);
  width: clamp(180px, 21vw, 320px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 184, 118, 0.55), transparent);
}

.hero-section::after {
  right: clamp(1.2rem, 5vw, 5rem);
  bottom: 5rem;
  width: clamp(120px, 15vw, 210px);
  height: clamp(120px, 15vw, 210px);
  border: 1px solid rgba(255, 184, 118, 0.12);
  border-radius: 24px;
  transform: rotate(8deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.96fr);
  gap: clamp(3rem, 5vw, 5.5rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  max-width: 760px;
  padding: 1.25rem 1rem 1.7rem 0;
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(220px, 32vw, 420px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 184, 118, 0.42), transparent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  padding: 0.88rem 1.12rem;
  border: 1px solid rgba(255, 184, 118, 0.1);
  border-left: 4px solid var(--primary);
  background: linear-gradient(90deg, rgba(255, 184, 118, 0.12), rgba(255, 184, 118, 0.04));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  color: var(--primary);
  font-family: var(--font-meta);
  font-size: 0.73rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-copy h1,
.section-heading h2,
.feature-list h2,
.contact-map h2,
.content-block__copy h2,
.article-single h1,
.post-listing__item h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: none;
  font-size: clamp(2.25rem, 4.2vw, 3.65rem);
  line-height: 0.92;
}

.hero-line {
  display: block;
}

.hero-line + .hero-line {
  margin-top: 0.06em;
}

.hero-copy h1 span,
.feature-list h2 span {
  color: var(--primary);
  display: inline-block;
}

.hero-copy p,
.section-heading p,
.feature-item p,
.contact-map p,
.footer-copy,
.content-rich,
.article-single .content-rich,
.post-listing__item p {
  color: var(--muted);
}

.hero-copy p {
  max-width: 32.5rem;
  margin: 1.55rem 0 2.35rem;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.82;
  color: #dfcec0;
}

.hero-visual {
  position: relative;
  padding: 1.6rem 0 0 clamp(0.4rem, 1.8vw, 2rem);
}

.hero-frame {
  position: absolute;
  inset: 1.35rem -1.35rem -1.2rem 4rem;
  border: 1px solid rgba(255, 184, 118, 0.18);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 184, 118, 0.045), transparent 55%);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 620px;
  max-height: 700px;
  aspect-ratio: 0.94;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid rgba(255, 184, 118, 0.08);
  filter: grayscale(100%) contrast(1.04);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.44);
  transition: transform 280ms ease, filter 280ms ease, box-shadow 280ms ease;
}

.hero-visual:hover img {
  transform: translateY(-8px);
  filter: grayscale(100%) contrast(1.08);
  box-shadow: 0 38px 78px rgba(0, 0, 0, 0.52);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

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

.section-heading h2,
.feature-list h2,
.contact-map h2,
.content-block__copy h2 {
  font-size: clamp(1.38rem, 2.35vw, 2.15rem);
  margin-bottom: 0.9rem;
}

.section-number {
  font-size: clamp(3.25rem, 9vw, 5.6rem);
  line-height: 1;
  color: rgba(84, 68, 54, 0.32);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  min-height: 100%;
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover,
.post-card:hover,
.testimonial-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
}

.service-card--featured {
  grid-column: span 2;
  background: var(--panel-soft);
  border-left: 4px solid var(--primary);
}

.service-card--compact {
  border-left: 4px solid rgba(84, 68, 54, 0.9);
}

.service-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 1.5rem;
  background: var(--panel-soft);
  align-items: center;
}

.service-card__content {
  padding: 2rem;
}

.service-card--wide .service-card__content {
  max-width: 34rem;
  padding: 2rem 2.5rem 2rem 1rem;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  filter: grayscale(100%);
}

.service-card--wide .service-card__media img {
  min-height: 320px;
  max-height: 420px;
}

.service-card h3,
.feature-item h3,
.testimonial-author strong,
.contact-meta h3,
.post-card h3,
.contact-card h3,
.footer-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.service-card h3,
.post-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.service-card p,
.post-card p,
.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.72;
}

.service-card__top,
.quote-mark {
  margin-bottom: 2rem;
  color: var(--primary);
}

.material-symbols-outlined.is-filled {
  font-variation-settings: "FILL" 1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  color: var(--primary);
  font-family: var(--font-meta);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.split-grid,
.contact-grid,
.content-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: start;
}

.visual-stack__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.visual-card,
.stat-card,
.contact-card,
.testimonial-card,
.post-card {
  background: var(--panel-soft);
}

.visual-card {
  overflow: hidden;
}

.visual-card img,
.map-frame img,
.post-card__media img,
.content-block__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card img,
.hero-visual img,
.post-card__media img {
  filter: grayscale(100%);
}

.visual-card--wide {
  grid-column: 1 / -1;
  min-height: 280px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: var(--primary);
  color: #4b2700;
}

.stat-card strong {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.6vw, 4.2rem);
  line-height: 1;
}

.stat-card span {
  margin-top: 0.4rem;
  font-family: var(--font-meta);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.feature-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--panel-strong);
  border-top: 2px solid var(--primary);
  color: var(--primary);
}

.testimonial-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

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

.testimonial-card,
.contact-card {
  padding: 2rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-author > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #353434;
  border-radius: 999px;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
}

.testimonial-author small,
.post-card__eyebrow {
  display: block;
  color: var(--muted);
  font-family: var(--font-meta);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.post-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 4px solid var(--primary);
}

.post-card__body {
  padding: 1.75rem;
}

.map-frame {
  position: relative;
  margin-top: 2rem;
  min-height: 360px;
  overflow: hidden;
  background: var(--panel-soft);
  border: 1px solid var(--line);
}

.map-frame img {
  opacity: 0.28;
}

.map-pin {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  color: var(--primary);
  font-size: 3rem;
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card {
  border-top: 8px solid var(--primary);
  box-shadow: var(--shadow);
}

.contact-card .wpcf7-form,
.contact-card form {
  display: grid;
  gap: 1rem;
}

.contact-card .wpcf7-form p {
  margin: 0;
}

.contact-card .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.55rem;
}

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

.cf7-field--full {
  grid-column: 1 / -1;
}

.contact-card label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-meta);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.contact-card input,
.contact-card textarea,
.contact-card select {
  width: 100%;
  padding: 1rem 1rem;
  border: 1px solid rgba(84, 68, 54, 0.2);
  border-radius: var(--radius);
  background: var(--panel-hard);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-card input:focus,
.contact-card textarea:focus,
.contact-card select:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-card input[type="submit"],
.contact-card button,
.contact-card .wpcf7-submit {
  cursor: pointer;
  width: 100%;
  padding: 1rem 1.2rem;
  border: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #4b2700;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.response-promise {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--muted);
  font-family: var(--font-meta);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer {
  background: var(--panel);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.footer-title {
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-legal {
  padding: 0 0 2rem;
  color: var(--muted);
  font-family: var(--font-meta);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.content-block {
  align-items: center;
}

.content-block.is-reversed .content-block__copy {
  order: 2;
}

.content-block.is-reversed .content-block__visual {
  order: 1;
}

.content-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 600;
}

.content-block__visual {
  min-height: 420px;
  overflow: hidden;
  background: var(--panel-soft);
}

.prose-shell {
  max-width: 860px;
}

.article-single,
.post-listing__item {
  padding: 2rem;
  background: var(--panel-soft);
}

.article-single__media {
  margin: 2rem 0;
}

.article-single__media img {
  width: 100%;
  height: auto;
}

.post-listing {
  display: grid;
  gap: 1.5rem;
}

.quote-mark {
  display: inline-flex;
  margin-bottom: 0.5rem;
  opacity: 0.24;
  font-size: 3.5rem;
}

.creteil-form-fallback {
  padding: 1.5rem;
  background: var(--panel-hard);
  border: 1px solid var(--line);
  color: var(--muted);
}

.contact-card .wpcf7-response-output {
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 184, 118, 0.08);
}

.contact-card .wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  color: var(--primary);
  font-size: 0.85rem;
}

.contact-card .wpcf7-spinner {
  margin: 0 auto;
}

.archive-page,
.article-page {
  padding-top: 8rem;
}

.archive-hero,
.article-hero {
  margin-bottom: 2.5rem;
  padding: 2.2rem;
  background:
    linear-gradient(135deg, rgba(255, 184, 118, 0.08), rgba(255, 184, 118, 0.02)),
    var(--panel-soft);
  border: 1px solid rgba(255, 184, 118, 0.1);
  box-shadow: var(--shadow);
}

.archive-badge,
.post-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.7rem;
  background: rgba(255, 184, 118, 0.1);
  color: var(--primary);
  font-family: var(--font-meta);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.archive-hero__grid,
.article-hero__grid,
.archive-layout,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.72fr);
  gap: 2rem;
}

.archive-hero h1,
.article-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.35vw, 2.7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
}

.archive-hero p,
.article-lead {
  max-width: 52rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.76;
}

.archive-hero__panel,
.sidebar-card {
  padding: 1.5rem;
  background: rgba(14, 14, 14, 0.72);
  border: 1px solid var(--line);
}

.archive-hero__panel strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.6vw, 3.5rem);
  color: var(--primary);
  line-height: 1;
}

.archive-hero__panel span {
  color: var(--muted);
}

.archive-main,
.article-panel {
  min-width: 0;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.archive-card {
  overflow: hidden;
  background: var(--panel-soft);
  border: 1px solid rgba(255, 184, 118, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.archive-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 184, 118, 0.22);
}

.archive-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.archive-card__media img,
.article-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.archive-card__body {
  padding: 1.5rem;
}

.archive-card__meta,
.article-meta,
.article-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  color: var(--muted);
  font-family: var(--font-meta);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.archive-card__meta {
  margin-bottom: 0.85rem;
}

.archive-card h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.archive-card h2 a:hover,
.sidebar-post:hover strong,
.article-breadcrumbs a:hover {
  color: var(--primary);
}

.archive-card p,
.sidebar-card p,
.article-panel .content-rich,
.article-panel .content-rich p,
.article-panel .content-rich li,
.article-panel .content-rich blockquote {
  color: var(--muted);
}

.archive-sidebar,
.article-sidebar {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.sidebar-card__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.sidebar-list {
  display: grid;
  gap: 0.85rem;
}

.sidebar-post {
  display: grid;
  gap: 0.3rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 184, 118, 0.08);
}

.sidebar-list .sidebar-post:first-child {
  padding-top: 0;
  border-top: 0;
}

.sidebar-post strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.16;
  letter-spacing: -0.015em;
}

.sidebar-post small,
.sidebar-post__category {
  color: var(--muted);
  font-family: var(--font-meta);
  font-size: 0.66rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sidebar-tags a {
  padding: 0.65rem 0.9rem;
  background: rgba(255, 184, 118, 0.08);
  color: var(--text);
  font-family: var(--font-meta);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sidebar-tags a:hover {
  background: var(--primary);
  color: #4b2700;
}

.sidebar-card--cta {
  background:
    linear-gradient(135deg, rgba(255, 184, 118, 0.1), rgba(232, 142, 46, 0.06)),
    rgba(14, 14, 14, 0.72);
}

.article-hero__visual {
  min-height: 320px;
  overflow: hidden;
}

.article-panel {
  padding: 2rem;
  background: var(--panel-soft);
  border: 1px solid rgba(255, 184, 118, 0.08);
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 2rem 0 0.9rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.article-content h2 {
  font-size: clamp(1.28rem, 1.9vw, 1.72rem);
}

.article-content h3 {
  font-size: 0.98rem;
}

.article-panel .content-rich,
.article-panel .content-rich p,
.article-panel .content-rich li,
.archive-card p,
.sidebar-card p,
.footer-copy {
  font-size: 0.98rem;
  line-height: 1.78;
}

.article-content ul,
.article-content ol {
  padding-left: 1.2rem;
}

.article-content blockquote {
  margin: 2rem 0;
  padding: 1.2rem 1.4rem;
  border-left: 4px solid var(--primary);
  background: rgba(255, 184, 118, 0.08);
}

.pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #4b2700;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .content-block,
  .services-grid,
  .testimonial-grid,
  .post-grid,
  .footer-grid,
  .archive-hero__grid,
  .article-hero__grid,
  .archive-layout,
  .article-layout,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .service-card--featured,
  .service-card--wide {
    grid-column: auto;
  }

  .service-card--wide {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding-left: 0;
    max-width: 760px;
  }

  .hero-frame {
    inset: 1rem -0.5rem -0.7rem 1rem;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 3.55vw, 3.1rem);
  }

  .hero-visual img {
    min-height: 540px;
  }

  .archive-hero__panel {
    max-width: 360px;
  }
}

@media (max-width: 1360px) {
  :root {
    --shell: min(1280px, calc(100vw - 2.5rem));
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .content-block {
    gap: 3rem;
  }

  .hero-copy {
    max-width: 640px;
  }
}

@media (max-width: 820px) {
  .topbar {
    padding-top: 0.75rem;
  }

  .topbar__inner {
    width: min(calc(100vw - 1.5rem), 100%);
    min-height: 78px;
    padding: 0 1rem;
    border-radius: 16px;
  }

  .site-header.is-sticky .topbar {
    padding-top: 0.2rem;
  }

  .site-header.is-sticky .topbar__inner {
    width: min(calc(100vw - 0.6rem), 100%);
    min-height: 68px;
    padding: 0 0.9rem;
    border-radius: 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .topbar__actions {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(14, 14, 14, 0.98);
    border: 1px solid rgba(255, 184, 118, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.36);
  }

  .topbar__actions.is-open {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

  .nav-item__row {
    justify-content: space-between;
    gap: 0.8rem;
  }

  .nav-link {
    width: 100%;
    padding: 0.5rem 0;
  }

  .submenu-toggle {
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid rgba(255, 184, 118, 0.12);
    border-radius: 12px;
  }

  .nav-submenu {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    margin: 0.35rem 0 0.25rem;
    padding: 0.45rem 0 0.1rem 0.8rem;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(255, 184, 118, 0.12);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-item.is-open > .nav-submenu {
    display: block;
  }

  .nav-submenu .nav-link {
    padding: 0.55rem 0;
    font-size: 0.68rem;
    background: transparent;
    color: #d8c4b5;
  }

  .nav-submenu .nav-item + .nav-item {
    margin-top: 0;
  }

  .nav-submenu .nav-submenu {
    margin-left: 0.25rem;
    padding-left: 0.75rem;
  }

  .section {
    padding: 5rem 0;
  }

  .hero-section {
    min-height: auto;
    padding: 8rem 0 4.2rem;
  }

  .hero-section::before {
    top: 6.7rem;
    left: 1rem;
    width: 150px;
  }

  .hero-section::after {
    right: 0.8rem;
    bottom: 2.1rem;
    width: 100px;
    height: 100px;
    border-radius: 18px;
  }

  .hero-copy {
    padding: 0.9rem 0 1.25rem;
  }

  .eyebrow {
    margin-bottom: 1.2rem;
    padding: 0.74rem 0.92rem;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .hero-copy h1 {
    max-width: 11.2ch;
    font-size: clamp(2.15rem, 11vw, 3.25rem);
    line-height: 0.95;
  }

  .hero-copy p {
    max-width: 100%;
    margin: 1.3rem 0 2rem;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-frame {
    inset: 0.75rem -0.2rem -0.4rem 0.75rem;
    border-radius: 22px;
  }

  .hero-visual img {
    min-height: auto;
    aspect-ratio: 0.98;
    border-radius: 22px;
  }

  .contact-meta {
    grid-template-columns: 1fr;
  }

  .cf7-grid {
    grid-template-columns: 1fr;
  }

  .archive-page,
  .article-page {
    padding-top: 7rem;
  }

  .archive-hero,
  .article-hero,
  .article-panel,
  .sidebar-card {
    padding: 1.3rem;
  }

  .archive-card__body {
    padding: 1.2rem;
  }
}
