:root {
	--font-display: "Cinzel";
	--font-body: "Josefin Sans";
  --ink: #10100e;
  --ink-soft: #1c1916;
  --smoke: #2d2a25;
  --paper: #f6f3ee;
  --paper-deep: #ebe3d7;
  --white: #ffffff;
  --brass: #c49a4a;
  --copper: #a5643e;
  --olive: #3f4a3c;
  --text: #181512;
  --muted: #6f685e;
  --muted-light: #d7cdbc;
  --line: rgba(16, 16, 14, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 18px 50px rgba(20, 16, 10, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body), Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  font-family: var(--font-display), Georgia, serif;
  letter-spacing: 0;
}

p,
address {
  line-height: 1.7;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--brass);
  color: var(--ink);
  font-weight: 700;
  padding: 10px 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 16, 14, 0.96);
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1480px, 100%);
  min-height: 104px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 16px 36px;
}

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

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand strong {
  font-family: var(--font-display), Georgia, serif;
  font-size: 19px;
  line-height: 1.1;
  white-space: nowrap;
}

.brand em {
  color: var(--muted-light);
  font-size: 13px;
  font-style: normal;
  line-height: 1.3;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.site-header nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  border-bottom: 2px solid transparent;
  color: rgba(255, 255, 255, 0.78);
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  border-color: var(--brass);
  color: var(--white);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted-light);
  font-weight: 700;
  white-space: nowrap;
}

.button,
.mobile-cta a,
.quote-form button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.quote-form button:hover,
.mobile-cta a:hover {
  transform: translateY(-1px);
}

.button-gold,
.quote-form button {
  background: var(--brass);
  color: var(--ink);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-outline {
  border-color: var(--brass);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.hero-compact {
  min-height: 54vh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 14, 0.86), rgba(16, 16, 14, 0.5) 48%, rgba(16, 16, 14, 0.18)),
    linear-gradient(0deg, rgba(16, 16, 14, 0.6), rgba(16, 16, 14, 0.06));
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
  padding: 74px 56px;
}

.hero-content h1 {
  max-width: 780px;
  margin: 0;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.04;
}

.hero-compact .hero-content h1 {
  font-size: 48px;
  line-height: 1.1;
}

.hero-text {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.7;
}

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

.eyebrow,
.section-title p,
.client-strip > p {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--ink-soft);
  color: var(--white);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.proof-strip article {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px 32px;
  border-right: 1px solid var(--line-light);
}

.proof-strip article:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--brass);
  font-family: var(--font-display), Georgia, serif;
  font-size: 29px;
  line-height: 1.1;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.45;
}

.section {
  padding: 88px 56px;
}

.section-title {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-title-left {
  margin-left: 0;
  text-align: left;
}

.section-title h2 {
  margin: 0;
  color: var(--text);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
}

.section-title span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.statement-section {
  display: grid;
  place-items: center;
  min-height: 260px;
  background: var(--ink-soft);
  color: var(--white);
  text-align: center;
}

.statement-section h2 {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-size: 42px;
  line-height: 1.18;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 58px;
  align-items: center;
  background: var(--paper);
}

.about-story {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
}

.intro-media {
  display: grid;
  gap: 16px;
}

.intro-media > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-media div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.intro-media div img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
}

.intro-copy h2,
.dark-split h2,
.quote-section h2,
.contact-layout h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.18;
}

.intro-copy p:not(.eyebrow),
.dark-split p:not(.eyebrow),
.quote-section span,
.contact-layout > div > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.feature-list span {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-left: 3px solid var(--brass);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--text);
  font-weight: 700;
}

.pillar-grid {
  display: grid;
  gap: 20px;
}

.pillar-grid article {
  border-left: 4px solid var(--brass);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  padding: 24px;
}

.pillar-grid h2 {
  margin: 0;
  color: var(--text);
  font-size: 25px;
  line-height: 1.22;
}

.pillar-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.product-section {
  background: var(--paper-deep);
}

.category-grid,
.gallery-grid,
.project-grid,
.service-grid,
.process-grid,
.faq-grid {
  display: grid;
  gap: 24px;
}

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

.category-card,
.gallery-card,
.project-card,
.service-grid article,
.process-grid article,
.faq-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(20, 16, 10, 0.08);
}

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

.category-card div {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.category-card p,
.project-card p,
.gallery-card span {
  margin: 0;
  color: var(--copper);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.category-card h3,
.gallery-card h3,
.project-card h3,
.service-grid h3,
.process-grid h3,
.faq-grid h3 {
  margin: 0;
  color: var(--text);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
}

.category-card span,
.project-card span,
.service-grid p,
.process-grid p,
.faq-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.category-card a {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  color: var(--ink);
  font-weight: 700;
  border-bottom: 2px solid var(--brass);
}

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

.home-product-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.home-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 16, 14, 0.82), transparent 58%);
}

.home-product-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.home-product-card:hover img {
  transform: scale(1.025);
}

.home-product-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 24px;
}

.home-product-card p {
  margin: 0 0 8px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-product-card h2 {
  margin: 0;
  color: var(--white);
  font-size: 24px;
  line-height: 1.2;
}

.about-live-section,
.about-welcome-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: start;
}

.about-live-section {
  background: var(--paper);
}

.about-live-section h2,
.about-welcome-section h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.18;
}

.about-live-section p:not(.eyebrow),
.about-welcome-section p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.process-panel {
  display: grid;
  gap: 22px;
}

.dark-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 36px;
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.dark-split h2 {
  color: var(--white);
}

.dark-split p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

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

.dark-split .service-grid article {
  background: #191713;
  border-color: var(--line-light);
  box-shadow: none;
}

.service-grid article,
.process-grid article,
.faq-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 190px;
  padding: 26px;
}

.dark-split .service-grid h3,
.dark-split .service-grid p {
  color: var(--white);
}

.dark-split .service-grid p {
  opacity: 0.72;
}

.project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

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

.project-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-card div {
  display: grid;
  gap: 12px;
  padding: 26px;
}

.project-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.project-card li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.client-strip {
  display: grid;
  gap: 26px;
  padding: 56px 30px;
  background: var(--olive);
  color: var(--white);
  text-align: center;
}

.client-strip > p {
  color: rgba(255, 255, 255, 0.78);
}

.client-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.client-strip img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
}

.testimonials-section {
  background: var(--paper);
}

.testimonials-section .client-strip {
  margin: 0 auto;
  padding: 36px 24px;
  border-radius: 8px;
  background: var(--olive);
}

.process-section,
.compact-gallery,
.faq-section {
  background: var(--paper);
}

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

.process-grid strong {
  color: var(--brass);
  font-family: var(--font-display), Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
  background:
    linear-gradient(90deg, rgba(16, 16, 14, 0.94), rgba(28, 25, 22, 0.94)),
    var(--ink);
  color: var(--white);
}

.quote-section h2,
.contact-layout h2 {
  color: var(--white);
}

.quote-section span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.quote-form-compact {
  grid-template-columns: 1fr;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.quote-form .wide,
.quote-form button,
.form-error {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 12px 14px;
}

.quote-form select option {
  color: var(--text);
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.form-error {
  margin: 0;
  border-left: 3px solid var(--brass);
  border-radius: 6px;
  background: rgba(196, 154, 74, 0.14);
  color: var(--white);
  padding: 10px 12px;
}

.gallery-section {
  background: var(--ink);
  color: var(--white);
}

.gallery-section .section-title h2 {
  color: var(--white);
}

.gallery-section .section-title span {
  color: rgba(255, 255, 255, 0.74);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -16px auto 40px;
}

.filter-row a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  padding: 8px 13px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

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

.gallery-card {
  position: relative;
  background: var(--ink-soft);
  border-color: var(--line-light);
  box-shadow: none;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 18px;
  background: linear-gradient(0deg, rgba(16, 16, 14, 0.88), rgba(16, 16, 14, 0.06));
}

.gallery-card h3 {
  margin-top: 6px;
  color: var(--white);
  font-size: 19px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 54px;
  background: var(--ink);
  color: var(--white);
}

.contact-layout > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 28px;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-details article {
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-details h3 {
  margin: 0 0 8px;
  color: var(--brass);
  font-size: 20px;
  line-height: 1.25;
}

.contact-details p,
.contact-details address {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
}

.contact-details a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 700;
}

.contact-form-panel {
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 28px;
}

.contact-form-panel h2 {
  margin: 0;
}

.contact-form-panel p {
  margin: 12px 0 24px;
  color: rgba(255, 255, 255, 0.74);
}

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

.about-mosaic img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(20, 16, 10, 0.08);
}

.about-mosaic img:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}

.principles-section {
  background: var(--paper-deep);
}

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

.principles-grid article {
  min-height: 236px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
  box-shadow: 0 14px 36px rgba(20, 16, 10, 0.08);
}

.principles-grid p {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.principles-grid h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.22;
}

.principles-grid span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(150px, 0.8fr)) 1.1fr;
  gap: 34px;
  padding: 58px 56px;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--line-light);
}

.site-footer div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.site-footer a,
.site-footer address,
.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-style: normal;
  line-height: 1.65;
}

.site-footer a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.footer-about img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.footer-gallery {
  grid-template-columns: repeat(5, 1fr);
}

.footer-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.copyright {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line-light);
  padding-top: 18px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    min-height: 142px;
  }

  .header-actions {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 54px;
  }

  .category-grid,
  .service-grid,
  .gallery-grid,
  .home-product-grid,
  .principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .dark-split,
  .intro-section,
  .about-story,
  .about-live-section,
  .about-welcome-section,
  .quote-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 761px) and (max-width: 1280px) {
  .header-inner {
    padding-right: 24px;
    padding-left: 24px;
    gap: 18px;
  }

  .primary-menu {
    gap: 18px;
  }

  .brand em {
    display: none;
  }
}

@media (max-width: 760px) {
  html {
    scroll-behavior: auto;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: auto;
    align-items: center;
    justify-items: stretch;
    padding: 14px 18px 16px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

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

  .brand em,
  .text-link {
    font-size: 12px;
  }

  .site-header nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px 16px;
    font-size: 13px;
  }

  .site-header nav a {
    flex: 0 0 auto;
    min-height: 44px;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    align-items: stretch;
    flex-direction: row;
  }

  .header-actions .text-link {
    display: none;
  }

  .header-actions .button {
    min-height: 42px;
    padding: 10px 14px;
  }

  .hero,
  .hero-compact {
    min-height: 560px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(16, 16, 14, 0.9), rgba(16, 16, 14, 0.58)),
      linear-gradient(0deg, rgba(16, 16, 14, 0.58), rgba(16, 16, 14, 0.08));
  }

  .hero-content {
    padding: 54px 20px 124px;
  }

  .hero-content h1,
  .hero-compact .hero-content h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .header-actions {
    flex-direction: column;
  }

  .proof-strip,
  .category-grid,
  .home-product-grid,
  .gallery-grid,
  .project-grid,
  .project-grid-detailed,
  .service-grid,
  .process-grid,
  .principles-grid,
  .faq-grid,
  .quote-form,
  .intro-media div,
  .about-mosaic,
  .feature-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-strip article {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .proof-strip article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 20px;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .section-title h2,
  .statement-section h2,
  .intro-copy h2,
  .about-live-section h2,
  .about-welcome-section h2,
  .dark-split h2,
  .quote-section h2,
  .contact-layout h2 {
    font-size: 31px;
  }

  .section-title span,
  .intro-copy p:not(.eyebrow),
  .dark-split p:not(.eyebrow),
  .quote-section span,
  .contact-layout > div > p:not(.eyebrow) {
    font-size: 16px;
  }

  .category-card div,
  .home-product-card div,
  .project-card div,
  .service-grid article,
  .process-grid article,
  .principles-grid article,
  .faq-grid article {
    padding: 22px;
  }

  .home-product-card,
  .home-product-card img {
    min-height: 300px;
  }

  .about-mosaic img:first-child {
    height: auto;
  }

  .filter-row {
    justify-content: flex-start;
  }

  .gallery-card img {
    aspect-ratio: 1 / 1;
  }

  .client-strip img {
    width: 92px;
    height: 92px;
  }

  .site-footer {
    padding-bottom: 104px;
  }

  .mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 160;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(16, 16, 14, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  }

  .mobile-cta a {
    min-height: 44px;
    padding: 8px;
    background: var(--brass);
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* WordPress integration and progressive interaction layer. */

[hidden] {
  display: none !important;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
  border-color: var(--brass);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle-lines {
  position: relative;
  width: 22px;
  height: 18px;
  display: block;
}

.menu-toggle-lines i {
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: top 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines i:first-child {
  top: 1px;
}

.menu-toggle-lines i:nth-child(2) {
  top: 8px;
}

.menu-toggle-lines i:last-child {
  top: 15px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child {
  top: 8px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child {
  top: 8px;
  transform: rotate(-45deg);
}

.hero::before {
  z-index: 1;
}

.hero-content {
  z-index: 2;
}

.hero-slide-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide-layer.is-visible {
  opacity: 1;
}

.hero-progress {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  z-index: 2;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.hero-progress span {
  width: 0;
  height: 100%;
  display: block;
  background: var(--brass);
}

.hero-progress.is-running span {
  animation: remarc-hero-progress 6s linear forwards;
}

@keyframes remarc-hero-progress {
  to { width: 100%; }
}

.reveal-on-scroll.is-visible {
  animation: remarc-rise 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes remarc-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.media-lightbox-link {
  display: block;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-card .media-lightbox-link {
  height: 100%;
}

.home-product-card .media-lightbox-link {
  position: absolute;
  inset: 0;
}

.home-product-card .media-lightbox-link + div {
  pointer-events: none;
}

.home-product-card::after {
  pointer-events: none;
}

.product-filter {
  margin: -16px auto 40px;
  text-align: center;
}

.product-filter .filter-row {
  margin: 0 auto 14px;
}

.filter-row button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 9px 15px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-row button:hover,
.filter-row button[aria-pressed="true"] {
  border-color: var(--brass);
  background: var(--brass);
  color: var(--ink);
  transform: translateY(-1px);
}

.filter-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.gallery-card[hidden] {
  display: none;
}

.quote-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.remarc-lightbox {
  width: min(1040px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  padding: 18px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.56);
}

.remarc-lightbox::backdrop {
  background: rgba(10, 9, 8, 0.86);
  backdrop-filter: blur(8px);
}

.remarc-lightbox img {
  width: 100%;
  max-height: calc(100vh - 132px);
  object-fit: contain;
  border-radius: 6px;
}

.remarc-lightbox p {
  margin: 12px 56px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(16, 16, 14, 0.8);
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.editorial-content,
.not-found {
  min-height: 64vh;
  max-width: 1180px;
  margin: 0 auto;
}

.entry-header {
  max-width: 900px;
  margin-bottom: 36px;
}

.entry-header h1,
.not-found h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.08;
}

.entry-featured img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border-radius: 8px;
}

.prose {
  max-width: 820px;
  margin-top: 36px;
  font-size: 18px;
  line-height: 1.75;
}

.prose a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.post-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

.post-card h2 {
  margin: 0;
}

@media (max-width: 760px) {
  .admin-bar .site-header { top: 46px; }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .header-actions {
    grid-column: 1 / -1;
    grid-row: 3;
    display: flex;
    flex-direction: row;
  }

  .header-actions .button {
    width: 100%;
  }

  .primary-navigation {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    display: none !important;
  }

  .primary-navigation.is-open {
    display: block !important;
  }

  .primary-menu {
    width: 100%;
    display: grid;
    gap: 0;
    padding-top: 8px;
  }

  .site-header nav a {
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-light);
    padding: 4px 2px;
  }

  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    padding: 3px 2px 10px;
  }

  .filter-row button {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

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

  .site-footer {
    padding-bottom: 58px;
  }

  .remarc-lightbox {
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll.is-visible {
    animation: none;
  }

  .hero-progress,
  .hero-slide-layer {
    display: none;
  }
}
