:root {
  --bone: #f5f0e5;
  --ink: #26231e;
  --ink-deep: #1c1916;
  --clay: #a45332;
  --rust: #843f28;
  --moss: #516a46;
  --saffron: #d9a637;
  --card: #fffaf0;
  --secondary: #ece3d2;
  --muted: #6d665d;
  --border: #d8cdbb;
  --shadow-card: 0 1px 2px rgb(28 25 22 / 6%), 0 8px 24px rgb(28 25 22 / 8%);
  --shadow-lift: 0 16px 50px rgb(28 25 22 / 18%);
  --font-display: Georgia, "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--clay);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
}

::selection {
  background: var(--clay);
  color: var(--bone);
}

.container-wide {
  width: 100%;
  max-width: 88rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container-wide {
    padding-inline: 2rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar {
  background: var(--ink-deep);
  color: rgb(245 240 229 / 82%);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25rem;
  min-height: 2rem;
}

.topbar a:hover {
  color: var(--saffron);
}

.mainnav {
  position: relative;
  background: linear-gradient(180deg, var(--ink) 0%, #343026 100%);
  color: var(--bone);
}

.mainnav-inner {
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-card {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(10rem, 16vw, 11.5rem);
  min-width: 0;
  padding: 0.62rem 0.85rem;
  background: var(--bone);
  box-shadow: 0 18px 40px -10px rgb(0 0 0 / 45%);
  border-radius: 0.125rem;
  transition: transform 180ms ease;
}

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

.brand-logo {
  width: 100%;
  max-width: 10rem;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: none;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
  }
}

.nav-link-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 0;
  background: transparent;
  color: var(--bone);
  padding: 0.45rem 0.62rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.nav-link-custom:hover,
.nav-link-custom.is-active,
.nav-dropdown:focus-within .nav-link-custom,
.nav-dropdown:hover .nav-link-custom {
  color: var(--saffron);
}

.chevron {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  line-height: 1;
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 17.5rem;
  padding: 1rem 0.5rem;
  background: var(--ink);
  color: var(--bone);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(0.5rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-group + .dropdown-group {
  margin-top: 0.85rem;
}

.dropdown-heading {
  padding: 0 1rem 0.25rem;
  color: var(--saffron);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.dropdown-item-custom {
  display: block;
  padding: 0.58rem 1rem;
  border-left: 2px solid transparent;
  color: rgb(245 240 229 / 78%);
  font-size: 0.95rem;
}

.dropdown-item-custom:hover {
  border-left-color: var(--clay);
  background: #343026;
  color: var(--saffron);
}

.nav-cta,
.mobile-whatsapp,
.footer-cta,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--clay);
  color: var(--bone);
  font-family: var(--font-display);
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.65rem 1rem;
  white-space: nowrap;
}

.nav-cta:hover,
.footer-cta:hover,
.mobile-whatsapp:hover {
  background: var(--rust);
  color: var(--bone);
}

.mobile-toggle {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: var(--bone);
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 1.55rem;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-toggle span {
  position: relative;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  position: absolute;
  left: 0;
}

.mobile-toggle span::before {
  top: -0.45rem;
}

.mobile-toggle span::after {
  top: 0.45rem;
}

.mobile-toggle[aria-expanded="true"] span {
  background: transparent;
}

.mobile-toggle[aria-expanded="true"] span::before {
  transform: translateY(0.45rem) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span::after {
  transform: translateY(-0.45rem) rotate(-45deg);
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-drawer {
  border-top: 1px solid rgb(255 255 255 / 10%);
  background: var(--ink-deep);
}

.mobile-drawer-inner {
  padding-block: 1rem;
}

.mobile-nav-link,
.mobile-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 3.1rem;
  border: 0;
  border-bottom: 1px solid rgb(255 255 255 / 6%);
  background: transparent;
  color: var(--bone);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: left;
}

.mobile-group-panel {
  padding: 0.4rem 0 1rem 0.9rem;
}

.mobile-group-heading {
  padding: 0.6rem 0 0.25rem;
  color: var(--saffron);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.mobile-sub-link {
  display: block;
  min-height: 2.75rem;
  padding-block: 0.7rem;
  color: rgb(245 240 229 / 84%);
}

.mobile-whatsapp {
  width: 100%;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
}

.hero,
.subhero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  min-height: 78vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.hero-bg,
.texture-bg,
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(28 25 22 / 86%) 0%, rgb(28 25 22 / 58%) 48%, rgb(28 25 22 / 12%) 100%),
    linear-gradient(0deg, rgb(28 25 22 / 40%) 0%, transparent 50%);
}

.hero-overlay.bottom {
  background: linear-gradient(0deg, rgb(28 25 22 / 90%) 0%, rgb(28 25 22 / 40%) 55%, transparent 100%);
}

.hero-content {
  position: relative;
  padding-block: 6rem;
}

.hero-copy {
  width: 100%;
  max-width: min(54rem, calc(100vw - 2.5rem));
  color: var(--bone);
}

.hero-kicker,
.ink-kicker,
.cta-kicker {
  color: var(--saffron);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-kicker {
  margin-bottom: 1.35rem;
}

.hero h1,
.subhero h1 {
  font-size: clamp(3rem, 8vw, 5.25rem);
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero h1 span,
.subhero h1 span,
.split-heading h2 span,
.process-hero h1 span {
  color: var(--saffron);
  font-style: italic;
}

.hero h1 small {
  display: block;
  margin-top: 0.45rem;
  color: rgb(245 240 229 / 90%);
  font: inherit;
}

.hero-copy p,
.subhero p,
.process-hero p {
  max-width: 42rem;
  margin-top: 1.4rem;
  color: rgb(245 240 229 / 84%);
  font-size: 1.1rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: min(100%, calc(100vw - 2.5rem));
  margin-top: 2.5rem;
}

.btn-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 1rem 1.65rem;
  color: var(--bone);
  box-shadow: 0 6px 0 rgb(0 0 0 / 18%), 0 12px 24px -12px rgb(0 0 0 / 40%);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-block:hover {
  color: var(--bone);
  transform: translateY(2px);
  box-shadow: 0 4px 0 rgb(0 0 0 / 18%), 0 8px 18px -10px rgb(0 0 0 / 40%);
}

.bg-clay {
  background: var(--clay);
}

.bg-moss {
  background: var(--moss);
}

.quick-strip {
  background: #343026;
}

.quick-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-block: 2rem;
}

@media (min-width: 768px) {
  .quick-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: -2rem;
  }
}

.section-pad {
  padding-block: 6rem;
}

.split-intro,
.founder-section,
.serve-section,
.finish-section,
.process-section,
.sample-grid,
.process-hero-grid {
  display: grid;
  gap: 3rem;
}

.split-intro {
  grid-template-columns: 1fr;
  padding-block: 6rem;
}

@media (min-width: 992px) {
  .split-intro {
    grid-template-columns: 5fr 7fr;
  }
}

.eyebrow,
.card-kicker,
.read-time,
.caption,
.footer-heading,
.contact-label,
.common-use div {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow {
  margin-bottom: 0.85rem;
}

.eyebrow.clay,
.card-kicker,
.common-use div {
  color: var(--clay);
}

.split-intro h2,
.section-head h2,
.split-heading h2,
.weave-row h2,
.journal-row h2,
.founder-section h2,
.serve-section h2,
.fiber-row h2,
.finish-section h2,
.solution-section h2,
.pattern-section h2,
.sample-section h2,
.legal-section h2 {
  font-size: clamp(2.35rem, 5vw, 3.25rem);
}

.body-large {
  color: rgb(38 35 30 / 84%);
  font-size: 1.08rem;
  line-height: 1.75;
}

.body-large p + p,
.legal-section p + p {
  margin-top: 1.15rem;
}

.ornament-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.55rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ornament-divider::before,
.ornament-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.band-secondary {
  background: var(--secondary);
}

.band-ink,
.ink-simple {
  background: var(--ink);
  color: var(--bone);
}

.section-head,
.split-heading {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .section-head,
  .split-heading {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }
}

.split-heading p {
  max-width: 42rem;
  color: rgb(38 35 30 / 76%);
  font-size: 1.08rem;
  line-height: 1.7;
}

.text-link {
  color: var(--clay);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.text-link.saffron {
  color: var(--saffron);
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid.three,
.card-grid.four,
.card-grid.five {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid.three,
  .card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .card-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid.four {
    grid-template-columns: repeat(4, 1fr);
  }

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

.card-rug {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--card);
  color: var(--ink);
  box-shadow: var(--shadow-card);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.card-rug:hover {
  color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.media {
  overflow: hidden;
}

.media img,
.journal-item img,
.fiber-row img,
.finish-section > img,
.serve-section > img,
.process-hero-grid > img,
.process-aside img,
.sample-grid > img,
.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-tall {
  aspect-ratio: 4 / 5;
}

.media-wide {
  aspect-ratio: 4 / 3;
}

.media-fiber {
  aspect-ratio: 3 / 4;
}

.media-square {
  aspect-ratio: 1;
}

.card-rug:hover .media img {
  transform: scale(1.05);
}

.media img {
  transition: transform 700ms ease;
}

.card-body {
  padding: 1.25rem;
}

.card-body.compact {
  padding: 1rem;
}

.card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.55rem;
}

.card-body p {
  color: rgb(38 35 30 / 72%);
  font-size: 0.92rem;
  line-height: 1.6;
}

.card-body span {
  display: inline-block;
  margin-top: 1rem;
  color: var(--clay);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.weave-row {
  display: grid;
  gap: 3rem;
  align-items: center;
  padding-block: 6rem;
}

@media (min-width: 992px) {
  .weave-row {
    grid-template-columns: 1fr 1fr;
  }
}

.weave-row h2 {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.step-list {
  display: grid;
  gap: 1.25rem;
  padding-left: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
}

.step-number {
  color: var(--saffron);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.step-list h3 {
  font-size: 1.35rem;
}

.step-list p,
.dark-card p,
.value-grid p {
  margin-top: 0.35rem;
  color: rgb(245 240 229 / 72%);
  line-height: 1.65;
}

.image-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.image-mosaic img {
  width: 100%;
  object-fit: cover;
}

.image-mosaic img:nth-child(1),
.image-mosaic img:nth-child(2) {
  aspect-ratio: 3 / 4;
}

.image-mosaic img:nth-child(2) {
  margin-top: 3rem;
}

.image-mosaic img:nth-child(3) {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 3;
}

.journal-row {
  display: grid;
  gap: 2.5rem;
  padding-block: 6rem;
}

@media (min-width: 992px) {
  .journal-row {
    grid-template-columns: 4fr 8fr;
  }
}

.journal-row p {
  margin-top: 1rem;
  color: rgb(38 35 30 / 70%);
  line-height: 1.7;
}

.journal-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.journal-item {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  align-items: start;
}

.journal-item img {
  aspect-ratio: 1;
}

.journal-item h3 {
  font-size: 1.12rem;
}

.read-time {
  margin-top: 0.55rem;
}

.subhero {
  min-height: 28rem;
  display: flex;
  align-items: end;
}

.image-hero {
  min-height: 60vh;
}

.subhero-content {
  position: relative;
  z-index: 1;
  padding-block: 5rem;
  color: var(--bone);
}

.subhero-content.dark-text {
  color: var(--ink);
}

.material-hero {
  background: var(--secondary);
  align-items: center;
}

.texture-bg {
  opacity: 0.4;
}

.founder-section,
.serve-section,
.finish-section,
.sample-grid,
.process-hero-grid {
  align-items: center;
}

.founder-section {
  padding-block: 6rem;
}

@media (min-width: 992px) {
  .founder-section {
    grid-template-columns: 5fr 7fr;
  }

  .serve-section,
  .finish-section,
  .sample-grid,
  .process-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.caption {
  margin-top: 1rem;
}

.value-grid {
  display: grid;
  gap: 2rem;
  padding-block: 6rem;
}

@media (min-width: 768px) {
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-grid h3 {
  margin-block: 0.75rem;
  font-size: 2rem;
}

.serve-section,
.finish-section {
  padding-block: 6rem;
}

.serve-section > img,
.finish-section > img,
.sample-grid > img {
  aspect-ratio: 4 / 3;
}

.rich-list {
  display: grid;
  gap: 1rem;
  padding-left: 1.2rem;
  color: rgb(38 35 30 / 84%);
  font-size: 1.05rem;
  line-height: 1.65;
}

.rich-list strong {
  color: var(--clay);
  font-family: var(--font-display);
  font-weight: 500;
}

.image-band {
  padding-bottom: 6rem;
}

.image-band img {
  max-height: 26rem;
}

.fiber-section {
  display: grid;
  gap: 4rem;
  padding-block: 5rem;
}

.fiber-row {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  scroll-margin-top: 7rem;
}

@media (min-width: 992px) {
  .fiber-row {
    grid-template-columns: 5fr 7fr;
  }

  .fiber-row.reverse > div:first-child {
    order: 2;
  }
}

.fiber-row img {
  aspect-ratio: 4 / 5;
}

.fiber-row p,
.finish-section p,
.sample-section p {
  margin-top: 1rem;
  color: rgb(38 35 30 / 78%);
  font-size: 1.05rem;
  line-height: 1.7;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 640px) {
  .spec-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.spec-grid dt {
  color: var(--clay);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.spec-grid dd {
  margin: 0.3rem 0 0;
  font-family: var(--font-display);
}

.mt-large {
  margin-top: 3rem;
}

.dark-card {
  overflow: hidden;
  background: #343026;
}

.dark-card > div:last-child {
  padding: 1.5rem;
}

.dark-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.6rem;
}

.solution-section {
  padding-block: 5rem;
  scroll-margin-top: 7rem;
}

.section-intro {
  max-width: 44rem;
  margin-bottom: 2.4rem;
}

.section-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.common-use {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.common-use p {
  margin-top: 0.2rem;
  font-size: 0.82rem;
}

.pattern-section {
  padding-block: 5rem;
}

.pattern-section article {
  scroll-margin-top: 7rem;
}

.customization-section {
  display: grid;
  gap: 2rem;
  padding-block: 5rem;
}

@media (min-width: 768px) {
  .customization-section {
    grid-template-columns: repeat(3, 1fr);
  }
}

.custom-block {
  border-left: 2px solid var(--clay);
  padding-left: 1.25rem;
}

.custom-block h3 {
  margin-block: 0.5rem;
  font-size: 1.55rem;
}

.custom-block p {
  color: rgb(38 35 30 / 74%);
  line-height: 1.65;
}

.process-hero {
  padding-block: 6rem;
  scroll-margin-top: 7rem;
}

.process-hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
}

.process-hero .btn-block {
  margin-top: 2rem;
}

.process-hero-grid > img {
  aspect-ratio: 4 / 3;
}

.process-section {
  align-items: start;
  padding-block: 6rem;
}

@media (min-width: 992px) {
  .process-section {
    grid-template-columns: 7fr 5fr;
  }
}

.process-list {
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.process-list li:first-child {
  padding-top: 0;
}

.process-number {
  color: var(--clay);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.process-list h3 {
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.process-list p {
  margin-top: 0.55rem;
  color: rgb(38 35 30 / 74%);
  line-height: 1.7;
}

.process-aside {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .process-aside {
    position: sticky;
    top: 8rem;
  }
}

.process-aside img:first-child {
  aspect-ratio: 4 / 5;
}

.process-aside img:nth-child(2) {
  aspect-ratio: 4 / 3;
}

.timing-box {
  background: var(--secondary);
  padding: 1.5rem;
}

.timing-box ul {
  display: grid;
  gap: 0.3rem;
  padding-left: 1.1rem;
  color: rgb(38 35 30 / 78%);
  font-size: 0.92rem;
}

.gallery-section {
  padding-block: 4rem;
}

.masonry {
  column-count: 1;
  column-gap: 1.5rem;
}

@media (min-width: 768px) {
  .masonry {
    column-count: 2;
  }
}

@media (min-width: 992px) {
  .masonry {
    column-count: 3;
  }
}

.masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 1.5rem;
  break-inside: avoid;
}

.masonry-item img {
  width: 100%;
}

.sample-section {
  padding-block: 4rem;
}

.faq-section {
  max-width: 58rem;
  padding-block: 4rem;
}

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

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

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding-block: 1.35rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  list-style: none;
}

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

.faq-list summary::after {
  content: "v";
  margin-left: auto;
  color: var(--clay);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
}

.faq-list summary span {
  color: var(--clay);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.faq-list details > div {
  padding: 0 2rem 1.6rem 3.5rem;
  color: rgb(38 35 30 / 78%);
  line-height: 1.7;
}

.fineprint-hero {
  min-height: 20rem;
}

.fineprint-hero p {
  color: rgb(245 240 229 / 70%);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.legal-section {
  max-width: 54rem;
  padding-block: 4rem;
}

.legal-section article {
  display: grid;
  gap: 2rem;
  color: rgb(38 35 30 / 84%);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-section h2 {
  margin-bottom: 0.75rem;
  font-size: 1.9rem;
}

.legal-section ul {
  display: grid;
  gap: 0.5rem;
  padding-left: 1.3rem;
}

.business-disclosure {
  background: #fff7e8;
  border-block: 1px solid var(--border);
}

.disclosure-grid {
  display: grid;
  gap: 2rem;
  padding-block: 3.5rem;
}

@media (min-width: 992px) {
  .disclosure-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}

.disclosure-grid h2,
.contact-page-section h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.disclosure-grid p,
.contact-page-section p {
  margin-top: 1rem;
  color: rgb(38 35 30 / 78%);
  line-height: 1.7;
}

.disclosure-grid dl,
.identity-panel dl {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.disclosure-grid dl div,
.identity-panel dl div {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.disclosure-grid dt,
.identity-panel dt {
  color: var(--clay);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.disclosure-grid dd,
.identity-panel dd {
  margin: 0.2rem 0 0;
  color: rgb(38 35 30 / 84%);
  line-height: 1.5;
}

.contact-page-section {
  display: grid;
  gap: 2rem;
  padding-block: 5rem;
}

@media (min-width: 992px) {
  .contact-page-section {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-panel,
.identity-panel {
  border: 1px solid var(--border);
  background: var(--card);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow-card);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.whatsapp-cta {
  position: relative;
  overflow: hidden;
  color: var(--bone);
}

.cta-clay {
  background: var(--clay);
}

.cta-moss {
  background: var(--moss);
}

.cta-ink {
  background: var(--ink);
}

.cta-bg {
  opacity: 0.2;
  mix-blend-mode: overlay;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-block: 4rem;
}

@media (min-width: 768px) {
  .cta-inner {
    grid-template-columns: 1fr auto;
  }
}

.cta-inner h2 {
  max-width: 45rem;
  margin-top: 0.8rem;
  font-size: clamp(2rem, 5vw, 3.15rem);
}

.cta-subheading {
  max-width: 38rem;
  margin-top: 1rem;
  color: rgb(245 240 229 / 86%);
  font-size: 1.05rem;
  line-height: 1.65;
}

.cta-privacy {
  max-width: 40rem;
  margin-top: 1rem;
  color: rgb(245 240 229 / 72%);
  font-size: 0.8rem;
  line-height: 1.6;
}

.cta-privacy a {
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.cta-button {
  min-height: 4rem;
  padding: 1rem 1.5rem;
  background: var(--ink);
}

.cta-button:hover {
  background: var(--saffron);
  color: var(--ink);
}

.cta-moss .cta-button {
  background: var(--bone);
  color: var(--ink);
}

.cta-ink .cta-button {
  background: var(--clay);
  color: var(--bone);
}

.site-footer {
  margin-top: 5rem;
  background: var(--ink);
  color: var(--bone);
}

.footer-main {
  padding-block: 4rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.2fr repeat(5, 1fr);
  }
}

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 992px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.55rem 0.9rem;
  background: var(--bone);
}

.footer-logo {
  width: 7.5rem;
  height: auto;
}

.footer-brand p {
  max-width: 18rem;
  color: rgb(245 240 229 / 70%);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-cta {
  margin-top: 1.25rem;
  padding: 0.72rem 1rem;
  font-size: 0.9rem;
}

.footer-heading {
  margin-bottom: 1rem;
  color: var(--saffron);
}

.footer-links {
  display: grid;
  gap: 0.62rem;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgb(245 240 229 / 75%);
  font-size: 0.9rem;
}

.footer-links a:hover,
.contact-item a:hover,
.legal-links a:hover {
  color: var(--saffron);
}

.tag-cloud-section {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-chip {
  display: inline-block;
  padding: 0.32rem 0.7rem;
  border: 1px solid #4d463a;
  background: #343026;
  color: rgb(245 240 229 / 74%);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-strip {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

@media (min-width: 768px) {
  .contact-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-item {
  display: flex;
  gap: 0.8rem;
  color: rgb(245 240 229 / 80%);
  font-size: 0.9rem;
}

.contact-icon {
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.25rem;
  border-radius: 50%;
  background: var(--clay);
  flex: 0 0 auto;
}

.contact-label {
  color: var(--saffron);
}

.footer-legal {
  border-top: 1px solid rgb(255 255 255 / 10%);
  background: #171411;
}

.footer-legal-inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.2rem;
  color: rgb(245 240 229 / 55%);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-legal-inner {
    flex-direction: row;
    text-align: left;
  }
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 575px) {
  .brand-card {
    width: clamp(8.75rem, 46vw, 9.75rem);
    padding: 0.55rem 0.7rem;
  }

  .brand-logo {
    max-width: none;
  }

  .hero h1,
  .subhero h1 {
    font-size: 2.25rem;
    line-height: 1.1;
  }

  .hero-copy p,
  .subhero p,
  .process-hero p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-copy {
    max-width: calc(100vw - 2.5rem);
  }

  .button-row {
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .btn-block {
    width: 100%;
  }

  .hero-content,
  .subhero-content,
  .section-pad,
  .split-intro,
  .founder-section,
  .serve-section,
  .finish-section,
  .weave-row,
  .process-section {
    padding-block: 4rem;
  }

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

  .footer-brand {
    grid-column: span 1;
  }
}
