/*
Theme Name: Roy Interiors
Author: Roy Interiors Kenya
Description: Custom WordPress theme for Roy Interiors Kenya.
Version: 2.0.0
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: roy-interiors
*/

:root {
  --cream: #f5efe4;
  --paper: #fbf8f1;
  --white: #fffdf9;
  --ink: #1a1816;
  --muted: #635c52;
  --line: rgba(26, 24, 22, 0.1);
  --oak: #8d5f3f;
  --clay: #b98255;
  --pine: #2f4b3d;
  --night: #151920;
  --gold: #d7b47a;
  --shadow: 0 24px 60px rgba(17, 15, 12, 0.12);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215, 180, 122, 0.26), transparent 34%),
    linear-gradient(180deg, #f7f2e8 0%, #f2ece0 30%, #faf7f1 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

p {
  margin: 0 0 1rem;
}

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

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

figure {
  margin: 0 0 1.25rem;
}

iframe,
video {
  width: 100%;
  max-width: 100%;
  border: 0;
}

pre {
  max-width: 100%;
  overflow-x: auto;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 248, 241, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(26, 24, 22, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.site-nav-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.site-nav-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  justify-self: start;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

.brand-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.brand-mark-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: cover;
  border-radius: 18px;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(215, 180, 122, 0.95), rgba(141, 95, 63, 1)),
    #8d5f3f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.brand-copy {
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.brand-title {
  display: block;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(26, 24, 22, 0.88);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--oak), var(--gold));
  transition: transform 0.2s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav-toggle {
  display: none;
}

.site-nav-toggle-box {
  display: inline-grid;
  gap: 0.22rem;
}

.site-nav-toggle-box span {
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-call-button {
  flex: 0 0 auto;
}

.header-call-button-desktop {
  justify-self: end;
  min-width: 12.75rem;
}

.btn,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--oak), var(--clay));
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 32px rgba(141, 95, 63, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(141, 95, 63, 0.25);
  filter: brightness(1.04);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border: 1px solid rgba(26, 24, 22, 0.14);
  box-shadow: none;
}

.eyebrow,
.kicker {
  margin-bottom: 0.8rem;
  color: var(--oak);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-shell,
.page-hero {
  padding: 5rem 0 2rem;
}

.hero-layout,
.page-hero-grid,
.service-hero-grid,
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.service-hero h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.hero-lead,
.section-lead,
.service-summary,
.hero-copy p,
.page-hero p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions,
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.fact-card,
.page-hero-panel,
.sidebar-card,
.process-card {
  background: rgba(255, 253, 249, 0.84);
  border: 1px solid rgba(26, 24, 22, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.fact-card {
  padding: 1rem 1rem 1.1rem;
}

.fact-card span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--pine);
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
}

.fact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 36rem;
}

.hero-main-image {
  position: absolute;
  inset: 0 3rem 3.5rem 0;
  border-radius: 28px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 35px 80px rgba(17, 15, 12, 0.18);
}

.hero-main-image::after {
  content: "";
  position: absolute;
  inset: auto -1.25rem -1.25rem 3rem;
  height: 8rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(47, 75, 61, 0.18), rgba(215, 180, 122, 0.18));
  z-index: -1;
}

.hero-stack {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  display: grid;
  gap: 0.9rem;
}

.hero-thumb {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 40px rgba(17, 15, 12, 0.16);
}

.hero-thumb img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.section {
  padding: 4rem 0;
}

.section-tight {
  padding-top: 2.5rem;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(47, 75, 61, 0.06), rgba(255, 255, 255, 0)),
    var(--paper);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.section-head-compact {
  align-items: start;
}

.section-head h2,
.split-feature h2,
.cta-band h2,
.content-shell h1,
.archive-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-head .section-lead {
  max-width: 34rem;
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.2rem;
}

.service-directory {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.service-directory-item {
  display: flex;
  align-items: center;
  min-height: 4rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(26, 24, 22, 0.08);
  box-shadow: 0 12px 28px rgba(17, 15, 12, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-directory-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(17, 15, 12, 0.12);
}

.service-directory-item span {
  font-weight: 800;
  line-height: 1.3;
}

.visual-lookbook {
  padding-top: 1rem;
}

.lookbook-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(15rem, 0.36fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(215, 180, 122, 0.24), transparent 24%),
    linear-gradient(145deg, rgba(21, 25, 32, 0.96), rgba(44, 38, 31, 0.96));
  box-shadow: 0 34px 80px rgba(15, 18, 23, 0.22);
}

.lookbook-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lookbook-note .eyebrow,
.lookbook-note h3,
.lookbook-note p {
  color: #f4ede1;
}

.lookbook-note h3 {
  font-size: 1.7rem;
  line-height: 1.15;
}

.lookbook-note p:last-child {
  margin-bottom: 0;
  color: rgba(244, 237, 225, 0.74);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 7.5rem;
  gap: 1rem;
}

.lookbook-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
  transform: translateY(0) rotate(0deg);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.lookbook-card-frame {
  position: absolute;
  inset: 0;
  padding: 0.55rem;
}

.lookbook-card-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 21px;
  transition: transform 0.35s ease;
  filter: saturate(1.06) contrast(1.04);
}

.lookbook-card:hover {
  transform: translateY(-5px) rotate(0deg);
  border-color: rgba(215, 180, 122, 0.38);
  box-shadow: 0 30px 58px rgba(0, 0, 0, 0.25);
}

.lookbook-card:hover .lookbook-card-frame img {
  transform: scale(1.05);
}

.lookbook-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, transparent 34%, rgba(15, 18, 23, 0.82) 100%);
}

.lookbook-card::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 1;
  pointer-events: none;
}

.lookbook-card:nth-child(3n + 2) {
  transform: translateY(0.55rem) rotate(-1deg);
}

.lookbook-card:nth-child(4n + 3) {
  transform: translateY(-0.35rem) rotate(1deg);
}

.lookbook-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 18, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f7f0e5;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.lookbook-overlay {
  position: absolute;
  inset: auto 1.15rem 1.05rem 1.15rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #f7f3ec;
}

.lookbook-overlay strong {
  font-family: "Fraunces", serif;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.15;
}

.lookbook-overlay em {
  font-style: normal;
  color: rgba(247, 243, 236, 0.8);
  font-size: 0.82rem;
  font-weight: 700;
}

.lookbook-card.is-hero {
  grid-column: span 3;
  grid-row: span 3;
}

.lookbook-card.is-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.lookbook-card.is-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.lookbook-card.is-square {
  grid-column: span 1;
  grid-row: span 1;
}

.service-card,
.mini-project-card,
.project,
.contact-box {
  overflow: hidden;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(26, 24, 22, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.service-card-media {
  display: block;
  min-height: 18rem;
  background-position: center;
  background-size: cover;
}

.service-card-body,
.project-body {
  padding: 1.2rem;
}

.service-card-meta,
.project-meta {
  margin-bottom: 0.55rem;
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3,
.project-body h3,
.spotlight-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.service-card p,
.project-body p,
.spotlight-body p,
.page-hero-panel p,
.sidebar-card p,
.mini-project-card span,
.process-card p,
.site-footer p,
.site-footer li {
  color: var(--muted);
}

.service-link {
  display: inline-flex;
  margin-top: 0.7rem;
  color: var(--oak);
  font-weight: 800;
}

.image-ribbon {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.ribbon-tile {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 8.5rem;
  border: 1px solid rgba(26, 24, 22, 0.08);
  box-shadow: 0 16px 36px rgba(17, 15, 12, 0.1);
}

.ribbon-tile:nth-child(odd) {
  transform: translateY(0.85rem);
}

.ribbon-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ribbon-tile span {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.75rem;
  z-index: 2;
  color: #fff8ee;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.ribbon-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 18, 23, 0.74) 100%);
}

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

.mini-project-card img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.mini-project-card span {
  display: block;
  padding: 0.95rem 1rem 1.1rem;
  font-weight: 700;
}

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

.process-card {
  padding: 1.35rem;
}

.process-card span {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(141, 95, 63, 0.12);
  color: var(--oak);
  font-weight: 800;
}

.process-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.28rem;
}

.cta-band {
  padding-bottom: 5rem;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(21, 25, 32, 0.94), rgba(47, 75, 61, 0.92)),
    var(--night);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(15, 18, 23, 0.25);
}

.cta-band .eyebrow,
.cta-band h2,
.cta-band p {
  color: #f3eadb;
}

.page-hero-panel {
  padding: 1.5rem;
}

.group-block + .group-block {
  margin-top: 3.5rem;
}

.info-card {
  padding: 1.35rem;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(26, 24, 22, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.info-card-icon {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(141, 95, 63, 0.12);
  color: var(--oak);
}

.info-card-icon svg,
.icon-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.about-hero-grid,
.contact-hero-grid {
  align-items: stretch;
}

.about-visual-stack,
.contact-hero-panel,
.page-detail-sidebar {
  display: grid;
  gap: 1rem;
}

.about-visual-main,
.about-visual-tile,
.page-gallery-card {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(17, 15, 12, 0.14);
}

.about-visual-main img,
.about-visual-tile img,
.page-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual-main {
  min-height: 26rem;
}

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

.about-visual-tile {
  min-height: 9.5rem;
}

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

.metric-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--pine);
  font-family: "Fraunces", serif;
  font-size: 2rem;
  line-height: 1;
}

.metric-card span {
  color: var(--muted);
  font-weight: 700;
}

.page-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.82fr);
  gap: 1.6rem;
  align-items: start;
}

.page-detail-main {
  max-width: none;
  width: 100%;
}

.feature-card h3,
.contact-card h3,
.compact-contact-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.3rem;
}

.feature-card p,
.contact-card p,
.compact-contact-card p {
  color: var(--muted);
}

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

.contact-card strong {
  display: block;
  margin: 0.35rem 0 0.7rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.icon-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-gallery-card {
  position: relative;
  min-height: 15rem;
}

.page-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 18, 23, 0.76) 100%);
}

.page-gallery-card span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.95rem;
  z-index: 2;
  color: #fff7eb;
  font-weight: 800;
  line-height: 1.2;
}

.page-gallery-card.is-featured {
  grid-column: span 2;
  min-height: 19rem;
}

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

.contact-gallery-grid .page-gallery-card.is-featured {
  grid-column: span 1;
  min-height: 18rem;
}

.basic-page-shell,
.content-shell article,
.rich-copy {
  max-width: 54rem;
  width: min(100%, 54rem);
  overflow-wrap: anywhere;
}

.rich-copy h2,
.rich-copy h3 {
  margin: 2rem 0 0.9rem;
  font-size: 1.7rem;
}

.rich-copy ul,
.rich-copy ol,
.check-list {
  padding-left: 1.2rem;
}

.rich-copy > *:first-child,
.content-shell article > *:first-child {
  margin-top: 0;
}

.rich-copy img,
.content-shell article img {
  border-radius: 22px;
}

.rich-copy table,
.content-shell article table {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.rich-copy .wp-block-columns {
  gap: 1.2rem;
}

.rich-copy .wp-block-media-text {
  gap: 1.2rem;
}

.rich-copy li,
.check-list li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.service-hero-frame img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(17, 15, 12, 0.18);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  gap: 1.6rem;
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: 6rem;
}

.sidebar-card {
  padding: 1.35rem;
}

.sidebar-card + .sidebar-card {
  margin-top: 1rem;
}

.sidebar-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.sidebar-card-highlight {
  background: linear-gradient(180deg, rgba(215, 180, 122, 0.22), rgba(255, 255, 255, 0.9));
}

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

.gallery-grid-service {
  margin-bottom: 1.6rem;
}

.gallery-tile,
.spotlight-tile {
  overflow: hidden;
  min-height: 15rem;
  border-radius: 22px;
}

.gallery-tile.is-large,
.spotlight-tile.is-large {
  grid-column: span 2;
}

.gallery-tile img,
.spotlight-tile img,
.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project img {
  height: 16rem;
}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.2rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(26, 24, 22, 0.08);
  box-shadow: 0 12px 28px rgba(17, 15, 12, 0.08);
  font-weight: 700;
}

.page-numbers.current {
  background: linear-gradient(135deg, var(--oak), var(--clay));
  border-color: transparent;
  color: #fff;
}

.content-shell {
  padding: 4rem 0;
}

.site-footer {
  margin-top: 4rem;
  background:
    radial-gradient(circle at top right, rgba(215, 180, 122, 0.18), transparent 30%),
    var(--night);
  color: #efe7d8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1.25rem;
  padding: 2.8rem 0;
}

.site-footer h4 {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.55rem;
}

.site-footer a {
  color: #f8dba6;
}

.footer-brand-block {
  display: grid;
  gap: 1rem;
}

.footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.footer-menu-list li {
  margin: 0;
}

.footer-grid-widgets .widget {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-widget .widget-title {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.footer-widget select,
.footer-widget input,
.footer-widget textarea {
  width: 100%;
}

.comments-shell {
  margin-top: 1.5rem;
}

.comments-title,
.comment-reply-title {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.comment-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.comment-list .comment {
  padding: 1rem 0;
  border-top: 1px solid rgba(26, 24, 22, 0.08);
}

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

.comment-meta {
  margin-bottom: 0.5rem;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 700;
}

.comment-author .avatar {
  border-radius: 50%;
}

.comment-metadata,
.comment-metadata a,
.logged-in-as,
.comment-notes,
.comments-closed {
  color: var(--muted);
  font-size: 0.92rem;
}

.comment-content p:last-child {
  margin-bottom: 0;
}

.comment-form {
  display: grid;
  gap: 0.9rem;
}

.comment-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(26, 24, 22, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font: inherit;
}

.comment-form-cookies-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.copyright {
  padding: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(239, 231, 216, 0.72);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: max(1rem, calc(env(safe-area-inset-right) + 1rem));
  bottom: max(1rem, calc(env(safe-area-inset-bottom) + 1rem));
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.1rem 0.75rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #118547);
  color: #fff;
  box-shadow: 0 20px 40px rgba(17, 133, 71, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(17, 133, 71, 0.42);
  filter: brightness(1.03);
}

.whatsapp-float-icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  flex: 0 0 auto;
}

.whatsapp-float svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.whatsapp-float-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.05;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.whatsapp-float-text small {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  overflow: hidden;
}

th,
td {
  padding: 0.9rem;
  border: 1px solid rgba(26, 24, 22, 0.08);
  text-align: left;
}

.home-hero {
  position: relative;
  padding: 5.4rem 0 3.5rem;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 32rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 180, 122, 0.28), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(47, 75, 61, 0.12), transparent 26%);
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 2.2rem;
  align-items: center;
}

.home-hero-copy {
  position: relative;
  z-index: 1;
}

.home-hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 5.3rem);
}

.hero-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.hero-service-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.76);
  border: 1px solid rgba(26, 24, 22, 0.1);
  box-shadow: 0 14px 30px rgba(17, 15, 12, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-service-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(141, 95, 63, 0.18);
  box-shadow: 0 18px 36px rgba(17, 15, 12, 0.12);
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-proof-item {
  padding: 1rem 1.05rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(26, 24, 22, 0.08);
  box-shadow: 0 18px 40px rgba(17, 15, 12, 0.08);
}

.hero-proof-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--pine);
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  line-height: 1;
}

.hero-proof-item span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.home-hero-visual {
  position: relative;
}

.hero-composition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 13rem;
  grid-template-areas:
    "primary stack"
    "floating stack";
  gap: 1rem;
  align-items: start;
}

.hero-primary-card,
.editorial-feature,
.editorial-tile,
.runway-card,
.project-showcase-feature,
.project-showcase-mini,
.group-service-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.hero-primary-card {
  grid-area: primary;
  min-height: 36rem;
  box-shadow: 0 32px 80px rgba(17, 15, 12, 0.2);
}

.hero-primary-card img,
.editorial-feature img,
.editorial-tile img,
.runway-card img,
.project-showcase-feature img,
.project-showcase-mini img,
.group-service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-primary-card::after,
.editorial-feature::after,
.editorial-tile::after,
.runway-card::after,
.project-showcase-feature::after,
.project-showcase-mini::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(15, 18, 23, 0.82) 100%);
}

.hero-primary-overlay,
.editorial-copy,
.editorial-tile-copy,
.runway-card-copy,
.project-showcase-copy {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #fbf5eb;
}

.hero-primary-overlay em,
.editorial-copy em,
.editorial-tile-copy em,
.runway-card-copy em,
.project-showcase-copy em {
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 245, 235, 0.78);
}

.hero-primary-overlay strong,
.editorial-copy strong,
.project-showcase-copy strong {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.hero-primary-overlay span,
.project-showcase-copy span,
.runway-card-copy em {
  color: rgba(251, 245, 235, 0.86);
}

.hero-secondary-stack {
  grid-area: stack;
  display: grid;
  gap: 1rem;
  align-content: start;
  padding-top: 1.4rem;
}

.hero-secondary-card {
  position: relative;
  overflow: hidden;
  min-height: 11rem;
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(17, 15, 12, 0.14);
}

.hero-secondary-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-secondary-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(15, 18, 23, 0.72) 100%);
}

.hero-secondary-card span {
  position: absolute;
  left: 0.95rem;
  bottom: 0.9rem;
  z-index: 2;
  color: #fff7eb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-floating-card {
  grid-area: floating;
  width: 100%;
  padding: 1.35rem;
  border-radius: 28px;
  background: rgba(251, 248, 241, 0.9);
  border: 1px solid rgba(26, 24, 22, 0.08);
  box-shadow: 0 26px 60px rgba(17, 15, 12, 0.16);
  backdrop-filter: blur(14px);
}

.hero-floating-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.55rem;
}

.hero-floating-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.hero-floating-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

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

.home-value-band {
  padding-top: 0.6rem;
}

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

.value-band-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(255, 250, 244, 0.84)),
    var(--white);
  border: 1px solid rgba(26, 24, 22, 0.08);
  box-shadow: 0 22px 48px rgba(17, 15, 12, 0.1);
}

.value-band-card h2 {
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
}

.value-band-card p {
  margin: 0;
  color: var(--muted);
}

.value-band-icon {
  display: inline-grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(141, 95, 63, 0.14), rgba(215, 180, 122, 0.14));
  color: var(--oak);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.value-band-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.directory-shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.directory-intro-card,
.directory-list-card {
  padding: 1.35rem;
  border-radius: 30px;
  border: 1px solid rgba(26, 24, 22, 0.08);
  box-shadow: 0 24px 54px rgba(17, 15, 12, 0.1);
}

.directory-intro-card {
  background:
    radial-gradient(circle at top left, rgba(215, 180, 122, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.95), rgba(255, 248, 238, 0.88));
}

.directory-list-card {
  background: rgba(255, 253, 249, 0.82);
}

.directory-intro-card h2 {
  margin-bottom: 0.75rem;
}

.directory-intro-card .section-lead {
  margin-bottom: 1.2rem;
}

.directory-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.directory-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.directory-list-head .eyebrow {
  margin-bottom: 0;
}

.directory-list-head span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-directory-home .service-directory-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
}

.service-directory-home .service-directory-item em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(141, 95, 63, 0.1);
  color: var(--oak);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 800;
}

.home-portfolio {
  padding-top: 1rem;
}

.editorial-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1rem;
  margin-top: 1rem;
}

.editorial-feature {
  min-height: 34rem;
  box-shadow: 0 30px 70px rgba(17, 15, 12, 0.16);
}

.editorial-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(21, 25, 32, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f5ecde;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

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

.editorial-support-grid .editorial-tile:nth-child(1) {
  transform: translateY(1.1rem);
}

.editorial-support-grid .editorial-tile:nth-child(3) {
  transform: translateY(-0.7rem);
}

.editorial-tile {
  min-height: 16.5rem;
  box-shadow: 0 24px 56px rgba(17, 15, 12, 0.14);
}

.editorial-tile-copy strong,
.runway-card-copy strong {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  line-height: 1.08;
}

.editorial-tile-copy em,
.runway-card-copy em {
  font-style: normal;
  color: rgba(251, 245, 235, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.editorial-runway {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1.05rem;
}

.runway-card {
  min-height: 10rem;
  box-shadow: 0 18px 40px rgba(17, 15, 12, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.runway-card:hover,
.editorial-feature:hover,
.editorial-tile:hover,
.project-showcase-feature:hover,
.project-showcase-mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(17, 15, 12, 0.16);
}

.runway-card-copy {
  left: 1rem;
  right: 1rem;
  bottom: 0.95rem;
}

.runway-card-copy strong {
  font-size: 1rem;
}

.home-group-showcase {
  padding-top: 2rem;
}

.group-showcase + .group-showcase {
  margin-top: 1.4rem;
}

.group-showcase {
  display: grid;
  grid-template-columns: minmax(18rem, 0.4fr) minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.2rem;
  border-radius: 34px;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(26, 24, 22, 0.08);
  box-shadow: 0 24px 54px rgba(17, 15, 12, 0.1);
}

.group-showcase-joinery {
  background:
    radial-gradient(circle at top left, rgba(141, 95, 63, 0.16), transparent 32%),
    rgba(255, 253, 249, 0.82);
}

.group-showcase-finishing {
  background:
    radial-gradient(circle at top right, rgba(215, 180, 122, 0.22), transparent 34%),
    rgba(255, 253, 249, 0.82);
}

.group-showcase-commercial {
  background:
    radial-gradient(circle at bottom left, rgba(47, 75, 61, 0.16), transparent 34%),
    rgba(255, 253, 249, 0.82);
}

.group-showcase-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1rem;
}

.group-showcase-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.group-showcase-intro p:last-of-type {
  color: var(--muted);
}

.group-showcase-count {
  display: inline-flex;
  align-self: flex-start;
  min-height: 2.25rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(26, 24, 22, 0.06);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.group-showcase-link {
  display: inline-flex;
  align-items: center;
  color: var(--oak);
  font-weight: 800;
}

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

.group-service-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(26, 24, 22, 0.08);
  box-shadow: 0 18px 40px rgba(17, 15, 12, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.group-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(17, 15, 12, 0.14);
}

.group-service-card.is-featured {
  grid-column: span 2;
}

.group-service-card-media {
  position: relative;
  display: block;
  min-height: 17rem;
}

.group-service-card.is-featured .group-service-card-media {
  min-height: 22rem;
}

.group-service-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(15, 18, 23, 0.3) 100%);
}

.group-service-card-body {
  padding: 1.2rem;
}

.home-project-showcase {
  padding-top: 3rem;
}

.project-showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1rem;
}

.project-showcase-feature {
  min-height: 35rem;
  box-shadow: 0 28px 68px rgba(17, 15, 12, 0.16);
}

.project-showcase-stack {
  display: grid;
  gap: 1rem;
}

.project-showcase-mini {
  min-height: 11rem;
  box-shadow: 0 20px 42px rgba(17, 15, 12, 0.12);
}

.project-showcase-mini span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.95rem;
  z-index: 2;
  color: #fff7eb;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  line-height: 1.08;
}

.process-grid {
  position: relative;
}

.process-card {
  position: relative;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 2.8rem;
  right: -0.6rem;
  width: 1.2rem;
  height: 1px;
  background: rgba(141, 95, 63, 0.22);
}

.process-card:last-child::before {
  display: none;
}

@media (max-width: 1180px) {
  .value-band-grid,
  .service-directory-home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-composition,
  .editorial-gallery,
  .group-showcase,
  .project-showcase-layout,
  .directory-shell {
    grid-template-columns: 1fr;
  }

  .hero-composition {
    grid-template-areas:
      "primary"
      "stack"
      "floating";
  }

  .hero-secondary-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 0;
  }

  .hero-floating-card {
    width: 100%;
  }

  .group-showcase-intro {
    padding: 0.4rem 0.2rem 0;
  }
}

@media (max-width: 1080px) {
  .section-head,
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-layout,
  .page-hero-grid,
  .service-hero-grid,
  .split-feature,
  .service-detail-grid,
  .page-detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

  .hero-facts,
  .process-grid,
  .about-metrics,
  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .lookbook-stage {
    grid-template-columns: 1fr;
  }

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

  .hero-proof-row,
  .value-band-grid,
  .service-directory-home,
  .group-showcase-grid,
  .editorial-runway {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .group-service-card.is-featured {
    grid-column: span 2;
  }

  .process-card::before {
    display: none;
  }
}

@media (max-width: 820px) {
  .wrap {
    width: min(100% - 1.5rem, var(--max));
  }

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

  .brand {
    min-width: 0;
    font-size: 0.86rem;
    line-height: 1.15;
  }

  .brand-title {
    font-size: 0.88rem;
  }

  .site-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 3rem;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(26, 24, 22, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    box-shadow: 0 12px 28px rgba(17, 15, 12, 0.08);
    cursor: pointer;
  }

  .site-nav-checkbox:checked + .site-nav-toggle .site-nav-toggle-box span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-nav-checkbox:checked + .site-nav-toggle .site-nav-toggle-box span:nth-child(2) {
    opacity: 0;
  }

  .site-nav-checkbox:checked + .site-nav-toggle .site-nav-toggle-box span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav-shell {
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
    display: none;
  }

  .site-nav-checkbox:checked + .site-nav-toggle + .site-nav-shell {
    display: grid;
    gap: 0.9rem;
    padding-top: 0.95rem;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(26, 24, 22, 0.08);
  }

  .site-nav a::after {
    display: none;
  }

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

  .header-call-button-desktop {
    display: none;
  }

  .site-nav ul {
    gap: 0.75rem;
  }

  .hero-shell,
  .page-hero,
  .content-shell,
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-visual {
    min-height: 28rem;
  }

  .hero-main-image {
    inset: 0 0 5rem 0;
  }

  .hero-main-image::after {
    display: none;
  }

  .hero-stack {
    position: relative;
    width: 100%;
    margin-top: 16rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-thumb img {
    height: 9rem;
  }

  .lookbook-grid {
    grid-auto-rows: 6.5rem;
  }

  .lookbook-note h3 {
    font-size: 1.45rem;
  }

  .lookbook-overlay strong {
    font-size: 1rem;
  }

  .cta-band {
    padding-bottom: 3.5rem;
  }

  .about-visual-main {
    min-height: 20rem;
  }

  .page-gallery-card.is-featured {
    min-height: 16rem;
  }

  .home-hero {
    padding-top: 3.6rem;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .hero-composition {
    gap: 0.85rem;
  }

  .hero-primary-card {
    min-height: 28rem;
  }

  .hero-primary-overlay strong,
  .editorial-copy strong {
    font-size: 1.55rem;
  }

  .editorial-feature {
    min-height: 26rem;
  }

  .project-showcase-feature {
    min-height: 24rem;
  }
}

@media (max-width: 640px) {
  .hero-facts,
  .service-grid,
  .service-directory,
  .projects,
  .mini-project-grid,
  .process-grid,
  .gallery-grid,
  .spotlight-grid,
  .image-ribbon,
  .about-metrics,
  .contact-card-grid,
  .page-gallery-grid,
  .about-visual-grid {
    grid-template-columns: 1fr;
  }

  .gallery-tile.is-large,
  .spotlight-tile.is-large,
  .lookbook-card.is-hero,
  .lookbook-card.is-wide,
  .lookbook-card.is-tall,
  .lookbook-card.is-square {
    grid-column: span 1;
  }

  .lookbook-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 13rem;
  }

  .lookbook-card.is-hero,
  .lookbook-card.is-wide,
  .lookbook-card.is-tall,
  .lookbook-card.is-square {
    grid-row: span 1;
  }

  .page-gallery-card.is-featured {
    grid-column: span 1;
    min-height: 15rem;
  }

  .hero-copy h1,
  .page-hero h1,
  .service-hero h1 {
    font-size: 2.2rem;
  }

  .hero-actions,
  .cta-band-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-band-actions .btn,
  .page-hero-panel .btn,
  .service-hero .btn {
    width: 100%;
  }

  .hero-stack {
    grid-template-columns: 1fr;
    margin-top: 12rem;
  }

  .about-visual-main {
    min-height: 16rem;
  }

  .ribbon-tile:nth-child(odd) {
    transform: none;
  }

  .lookbook-card:nth-child(3n + 2),
  .lookbook-card:nth-child(4n + 3) {
    transform: none;
  }

  .rich-copy .wp-block-columns,
  .rich-copy .wp-block-media-text {
    display: block;
  }

  table,
  th,
  td {
    font-size: 0.92rem;
  }

  .whatsapp-float {
    padding: 0.72rem;
  }

  .whatsapp-float-text {
    display: none;
  }

  .hero-service-pills,
  .hero-proof-row,
  .value-band-grid,
  .service-directory-home,
  .editorial-support-grid,
  .editorial-runway,
  .group-showcase-grid,
  .hero-secondary-stack {
    grid-template-columns: 1fr;
  }

  .hero-service-pills {
    display: grid;
  }

  .hero-primary-card,
  .editorial-feature,
  .project-showcase-feature {
    min-height: 20rem;
  }

  .hero-primary-overlay,
  .editorial-copy,
  .editorial-tile-copy,
  .runway-card-copy,
  .project-showcase-copy {
    left: 1rem;
    right: 1rem;
    bottom: 0.95rem;
  }

  .hero-primary-overlay strong,
  .editorial-copy strong,
  .project-showcase-copy strong,
  .editorial-tile-copy strong {
    font-size: 1.25rem;
  }

  .group-service-card.is-featured {
    grid-column: span 1;
  }

  .group-service-card.is-featured .group-service-card-media,
  .group-service-card .group-service-card-media,
  .project-showcase-mini,
  .editorial-tile,
  .runway-card {
    min-height: 14rem;
  }

  .hero-floating-actions {
    width: 100%;
  }

  .hero-floating-actions .btn {
    width: 100%;
  }

  .directory-intro-actions {
    width: 100%;
  }

  .directory-intro-actions .btn {
    width: 100%;
  }

  .editorial-support-grid .editorial-tile:nth-child(1),
  .editorial-support-grid .editorial-tile:nth-child(3) {
    transform: none;
  }
}
