:root {
  --paper: #f7f3ec;
  --paper-strong: #eee5d9;
  --white: #fffdf9;
  --ink: #252320;
  --muted: #625f59;
  --sage: #718674;
  --sage-dark: #3f5b47;
  --olive-deep: #26362c;
  --lavender: #d8cedc;
  --lavender-deep: #5b4e5f;
  --kraft: #c6a47b;
  --clay: #a95f49;
  --line: rgba(37, 35, 32, 0.16);
  --line-light: rgba(255, 255, 255, 0.22);
  --focus: #b56b3f;
  --radius-sm: 4px;
  --radius-md: 8px;
  --max-width: 1280px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
figure,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2 {
  max-width: 17ch;
  margin-bottom: 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.25rem, 6.2vw, 6.6rem);
}

h2 {
  font-size: clamp(2.75rem, 4.1vw, 3.75rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.12rem;
  line-height: 1.25;
}

p {
  max-width: 66ch;
  margin-bottom: 1rem;
}

ul,
ol {
  padding-left: 1.25rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 10px clamp(18px, 4.5vw, 68px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.98);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.7vw, 28px);
  color: #4a4742;
  font-size: 0.9rem;
  font-weight: 680;
}

.nav > a,
.nav summary {
  position: relative;
  padding: 10px 0;
  cursor: pointer;
  list-style: none;
}

.nav summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary::after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 0 3px 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: -20px;
  display: grid;
  width: 260px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(37, 35, 32, 0.12);
}

.nav-panel a {
  padding: 9px 10px;
  border-radius: 2px;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  background: var(--paper-strong);
}

.nav-quote {
  min-height: 42px;
  padding: 10px 17px !important;
  background: var(--sage-dark);
  color: var(--white);
}

.nav-quote:hover,
.nav-quote:focus-visible {
  background: var(--olive-deep);
}

.nav-whatsapp {
  display: none;
}

.menu-button {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -6px;
}

.menu-icon::after {
  position: absolute;
  top: 6px;
}

.menu-button[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #324b3a;
}

.button-secondary {
  border-color: var(--sage-dark);
  background: transparent;
  color: var(--sage-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(37, 35, 32, 0.12);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--sage-dark);
  font-weight: 760;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.section,
.page-hero,
.breadcrumbs,
.legal-page,
.status-page {
  width: min(var(--max-width), calc(100% - clamp(36px, 9vw, 136px)));
  margin-inline: auto;
}

.section {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.section-kicker,
.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--sage-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.light-kicker {
  color: #d6c7d7;
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading > p,
.split-heading > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

.split-heading > p,
.split-heading > a {
  margin-bottom: 1.4rem;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - var(--header-height)));
  overflow: hidden;
  background: #655f58;
  color: var(--white);
}

.hero-picture,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: rgba(30, 28, 25, 0.52);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: calc(100% - clamp(48px, 11vw, 200px));
  min-height: inherit;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-inline: auto;
  padding-block: clamp(5rem, 10vw, 8rem);
}

.hero-content h1 {
  max-width: 820px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 5.3vw, 5.8rem);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 0.75rem;
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.52;
}

.hero-note {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefit-grid article {
  min-height: 245px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-grid span,
.process-list > li > span {
  display: block;
  margin-bottom: 2rem;
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.benefit-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.studio-band,
.materials-band,
.transparency-band,
.commercial-band,
.page-cta,
.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 9vw, 8rem) max(clamp(18px, 4.5vw, 68px), calc((100% - var(--max-width)) / 2));
  background: var(--olive-deep);
  color: var(--white);
}

.studio-band h2,
.materials-band h2,
.transparency-band h2,
.commercial-band h2,
.page-cta h2,
.quote-section h2 {
  color: var(--white);
}

.studio-copy,
.materials-columns {
  align-self: center;
}

.studio-copy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.person-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 2rem 0 0.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
}

.person-line strong {
  font-size: 1.25rem;
}

.person-line span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.name-story-band {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-block: clamp(3.5rem, 6vw, 5.25rem);
}

.name-story-band h2 {
  max-width: 520px;
  margin-bottom: 0;
}

.name-story-copy {
  max-width: 660px;
}

.name-story-copy p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.75;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.category-card {
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.category-card:nth-child(4),
.category-card:nth-child(5) {
  grid-column: span 6;
}

.media-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper-strong);
}

.media-frame picture,
.media-frame img {
  width: 100%;
  height: 100%;
}

.media-frame img {
  object-fit: cover;
}

.category-card .media-frame {
  aspect-ratio: 4 / 3;
}

.concept-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 9px;
  border-radius: 2px;
  background: rgba(37, 35, 32, 0.84);
  color: var(--white);
  font-size: 0.71rem;
  font-weight: 720;
}

.category-body {
  padding: 1.5rem;
}

.category-body h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.category-body p {
  min-height: 4.8em;
  color: var(--muted);
}

.materials-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}

.materials-columns h3 {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line-light);
}

.materials-columns ul,
.spec-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.materials-columns li,
.spec-grid li {
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--line-light);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  margin: 0;
}

.process-list h3 {
  margin-bottom: 0.35rem;
  font-size: 1.18rem;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.transparency-band {
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
}

.transparency-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.transparency-list article {
  padding: 1.5rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.transparency-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.concept-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 18px;
}

.concept-grid .media-frame {
  aspect-ratio: 4 / 5;
}

.concept-grid .media-frame:first-child {
  aspect-ratio: auto;
}

.projects-placeholder {
  width: min(980px, calc(100% - 36px));
  margin: clamp(4rem, 8vw, 7rem) auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.projects-placeholder h2,
.projects-placeholder p {
  margin-inline: auto;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.35rem 2.5rem 1.35rem 0;
  cursor: pointer;
  font-weight: 760;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 1.15rem;
  right: 0;
  color: var(--sage-dark);
  content: "+";
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  padding-right: 2rem;
  color: var(--muted);
}

.quote-section {
  background: #322e34;
}

.quote-section > * {
  min-width: 0;
}

.quote-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-checklist {
  margin-top: 3rem;
}

.quote-checklist h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.72rem 0 0.72rem 1.25rem;
  border-bottom: 1px solid var(--line-light);
}

.check-list li::before {
  position: absolute;
  top: 1.02rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.quote-form {
  position: relative;
  display: grid;
  gap: 1rem;
  scroll-margin-top: 92px;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.contact-moq-note {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-light);
}

.contact-moq-note span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  font-weight: 760;
  text-transform: uppercase;
}

.contact-moq-note strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.35;
}

.contact-moq-note small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 400;
}

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

.quote-form label {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
  font-size: 0.86rem;
  font-weight: 720;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
}

.quote-form textarea {
  min-height: 135px;
  resize: vertical;
}


.quote-form small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 400;
}

.quote-form [aria-invalid="true"] {
  border-color: #d68d80;
  box-shadow: 0 0 0 2px rgba(214, 141, 128, 0.22);
}


.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-submit[aria-busy="true"] {
  cursor: wait;
  opacity: 0.75;
}

.form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.form-status[data-state="success"] {
  color: #d5ead8;
}

.form-status[data-state="error"] {
  color: #ffd0c8;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 1.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  min-height: 680px;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.page-hero > div > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.1rem;
}

.page-hero .media-frame {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
}

.page-hero .hero-actions {
  margin-top: 2rem;
}

.text-hero {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  min-height: 520px;
}

.text-hero aside {
  padding: 1.75rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.text-hero aside strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.text-hero aside a {
  display: block;
  margin-top: 0.4rem;
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.spec-grid article {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--white);
}

.spec-grid li {
  border-bottom-color: var(--line);
  color: var(--muted);
}

.disclaimer {
  max-width: none;
  margin: 1.5rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--kraft);
  color: var(--muted);
  font-size: 0.9rem;
}

.disclaimer.light {
  color: rgba(255, 255, 255, 0.7);
}

.commercial-band {
  display: block;
}

.commercial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.commercial-grid article {
  min-height: 220px;
  padding: 1.75rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.commercial-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.approval-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.approval-section .quote-checklist {
  margin-top: 0;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.approval-section .quote-checklist h2 {
  color: var(--ink);
}

.approval-section .check-list li {
  border-bottom-color: var(--line);
}

.page-cta {
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  align-items: end;
}

.page-cta > div:last-child {
  padding-bottom: 1.2rem;
}

.page-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  padding: 1.15rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--paper-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.founder-mark {
  width: min(100%, 430px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
}

.founder-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-list {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.contact-list div {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--muted);
}

.contact-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-alternatives {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-light);
}

.contact-alternatives .button {
  margin: 0 8px 8px 0;
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.legal-page {
  max-width: 900px;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.legal-page header {
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.legal-page section {
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  margin-bottom: 0.85rem;
  font-family: inherit;
  font-size: 1.35rem;
  font-weight: 760;
}

.legal-page p {
  color: var(--muted);
}

.status-page {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  padding-block: 5rem;
}

.status-page > div {
  max-width: 820px;
}

.site-footer {
  padding: clamp(4rem, 7vw, 6rem) max(clamp(18px, 4.5vw, 68px), calc((100% - var(--max-width)) / 2)) 1.5rem;
  background: #1f2722;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(150px, 0.55fr));
  gap: clamp(2.5rem, 7vw, 6rem);
  padding-bottom: 3rem;
}

.footer-main h2 {
  margin-bottom: 1rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 780;
  text-transform: uppercase;
}

.footer-main a,
.footer-main .cookie-settings-button {
  display: block;
  width: fit-content;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-main a:hover,
.footer-main a:focus-visible,
.footer-main .cookie-settings-button:hover,
.footer-main .cookie-settings-button:focus-visible {
  color: var(--white);
}

.footer-main .cookie-settings-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.85rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 400;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 8px;
  padding: 8px 15px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 28px;
  background: var(--sage-dark);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 760;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.whatsapp-float[data-visible="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-page .whatsapp-float {
  display: none;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 120;
  left: 18px;
  bottom: 18px;
  width: min(620px, calc(100% - 36px));
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-strong);
  box-shadow: 0 14px 36px rgba(37, 35, 32, 0.18);
  color: var(--ink);
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.cookie-banner-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner-copy a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.cookie-choice {
  min-height: 42px;
  border-color: var(--sage-dark);
  background: transparent;
  color: var(--sage-dark);
}

.cookie-choice:hover,
.cookie-choice:focus-visible {
  background: var(--sage-dark);
  color: var(--white);
}

.cookie-banner-visible .whatsapp-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}


.whatsapp-float span:first-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  font-size: 0.68rem;
}

@media (max-width: 1120px) {
  .nav {
    gap: 14px;
    font-size: 0.84rem;
  }

  .nav-quote {
    padding-inline: 12px !important;
  }

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

  .category-card {
    grid-column: span 6;
  }

  .category-card:last-child {
    grid-column: 4 / span 6;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    min-height: var(--header-height);
  }

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

  .nav {
    position: fixed;
    z-index: 95;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 18px;
    overflow-y: auto;
    background: var(--white);
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav > a,
  .nav summary {
    display: block;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown {
    position: static;
  }

  .nav-panel {
    position: static;
    width: auto;
    padding: 7px 0 12px 14px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    box-shadow: none;
  }

  .nav-panel a {
    padding: 9px 4px;
  }

  .nav-quote {
    margin-top: 18px;
    padding: 13px 18px !important;
    border: 0 !important;
  }

  .nav-whatsapp {
    display: block;
    margin-top: 8px;
    color: var(--sage-dark);
    text-align: center;
  }

  .split-heading,
  .studio-band,
  .materials-band,
  .transparency-band,
  .quote-section,
  .approval-section,
  .page-cta,
  .page-hero,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .name-story-band {
    gap: 1.5rem;
    padding-block: clamp(3rem, 9vw, 4rem);
  }

  .page-hero {
    min-height: auto;
  }

  .product-hero > div {
    order: 2;
  }

  .product-hero .media-frame {
    order: 1;
  }

  .concept-grid {
    grid-template-columns: 1.25fr 1fr;
  }

  .concept-grid .media-frame:last-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

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

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

  .commercial-grid article {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero {
    min-height: 740px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 3rem;
  }

  .hero-content h1 {
    font-size: clamp(2.75rem, 13vw, 3.55rem);
  }

  .hero-copy {
    font-size: 1.03rem;
  }

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

  .benefit-grid,
  .category-grid,
  .materials-columns,
  .transparency-list,
  .concept-grid,
  .spec-grid,
  .form-row,
  .check-list,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card:nth-child(4),
  .category-card:nth-child(5),
  .category-card:last-child {
    grid-column: auto;
  }

  .concept-grid .media-frame,
  .concept-grid .media-frame:first-child,
  .concept-grid .media-frame:last-child {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .benefit-grid article {
    min-height: 0;
  }

  .benefit-grid span {
    margin-bottom: 1rem;
  }

  .process-list li {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 0.8rem;
  }

  .process-list > li > span {
    font-size: 1.3rem;
  }

  .text-hero aside {
    margin-top: -1rem;
  }

  .page-hero .media-frame {
    aspect-ratio: 4 / 3;
  }

  .founder-section {
    grid-template-columns: 1fr;
  }

  .founder-mark {
    max-width: 300px;
    margin-inline: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 50px;
    padding: 8px;
    border-radius: 50%;
  }

  .whatsapp-float span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 0.94rem;
  }

  .menu-button {
    padding-inline: 6px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  .section,
  .page-hero,
  .breadcrumbs,
  .legal-page,
  .status-page {
    width: calc(100% - 30px);
  }

  .hero-content {
    width: calc(100% - 30px);
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .category-body,
  .quote-form,
  .approval-section .quote-checklist {
    padding: 1.2rem;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* v2.1 refinement: captions and form labels */
.media-frame {
  overflow: visible;
  background: transparent;
}

.media-frame picture {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: var(--paper-strong);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card .media-frame,
.concept-grid .media-frame,
.concept-grid .media-frame:first-child,
.concept-grid .media-frame:last-child,
.page-hero .media-frame {
  aspect-ratio: auto;
}

.category-card .media-frame picture,
.page-hero .media-frame picture {
  aspect-ratio: 4 / 3;
}

.page-hero .media-frame picture {
  border-radius: inherit;
}

.concept-grid .media-frame picture {
  aspect-ratio: 4 / 5;
}

.concept-grid .media-frame:first-child picture {
  aspect-ratio: auto;
}

.concept-label {
  position: static;
  padding: 0.55rem 0.2rem 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
}

.field-label {
  display: inline-flex;
  min-height: 1.35em;
  align-items: baseline;
  gap: 0.25rem;
}

.required-marker {
  display: inline;
  color: #ffd0c8;
  line-height: 1;
}

@media (max-width: 900px) {
  .concept-grid .media-frame:last-child picture {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 680px) {
  .concept-grid .media-frame picture,
  .concept-grid .media-frame:first-child picture,
  .concept-grid .media-frame:last-child picture {
    aspect-ratio: 4 / 3;
  }
}


/* v2.3 focused inquiry and MOQ guide */
.home-inquiry-cta {
  align-items: center;
}

.home-inquiry-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.home-inquiry-cta .inquiry-note {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.home-inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.contact-direct > p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.78);
}

.direct-contact-details {
  display: grid;
  gap: 0.25rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.78);
}

.direct-contact-details a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quote-form small a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.moq-hero {
  display: grid;
  width: min(var(--max-width), calc(100% - clamp(36px, 9vw, 136px)));
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
  margin-inline: auto;
  padding-block: clamp(2.75rem, 5vw, 4.75rem);
}

.moq-hero-copy > p:not(.section-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.moq-hero h1 {
  max-width: 11ch;
}

.moq-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.moq-highlights article {
  min-width: 0;
  padding: 1.25rem;
  background: var(--white);
}

.moq-highlights span,
.moq-highlights strong {
  display: block;
}

.moq-highlights span {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 760;
  text-transform: uppercase;
}

.moq-highlights strong {
  margin-bottom: 0.35rem;
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.moq-highlights p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.moq-visual {
  margin: 0;
}

.moq-visual picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  background: var(--paper-strong);
  box-shadow: 0 18px 42px rgba(37, 35, 32, 0.12);
}

.moq-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moq-visual figcaption {
  padding-top: 0.55rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.moq-table-section {
  padding-top: clamp(4rem, 7vw, 6rem);
}

.moq-factors {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
}

.moq-factor-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.75rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.moq-factor-list article {
  padding-block: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.moq-factor-list h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.moq-factor-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .moq-hero,
  .moq-factors {
    grid-template-columns: 1fr;
  }

  .moq-hero {
    padding-block: 2.75rem 4rem;
  }

  .moq-hero-visual {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .home-inquiry-actions,
  .home-inquiry-actions .button {
    width: 100%;
  }

  .moq-hero {
    width: calc(100% - 36px);
    gap: 2.25rem;
    padding-block: 2.25rem 3.5rem;
  }

  .moq-highlights,
  .moq-factor-list {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 680px) {
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    padding: 16px;
  }

  .cookie-actions,
  .cookie-choice {
    width: 100%;
  }
}
