/*
Theme Name: Cerámica Toro
Theme URI: https://ceramicastoro.cl/
Author: 023Studio
Author URI: https://023studio.com/
Description: Tema editorial y arquitectónico para el catálogo de Cerámica Toro.
Version: 1.3.2
Requires at least: 6.5
Requires PHP: 7.4
Text Domain: ceramica-toro
*/

:root {
  --terracota: #ef7c3b;
  --barro: #b14e25;
  --greda: #2e241d;
  --carbon: #1c150f;
  --arena: #d8c4a8;
  --crema: #f4eee4;
  --hueso: #fbf8f2;
  --humo: #766b5e;
  --linea: #e4d9c8;
  --serif: "Spectral", Georgia, serif;
  --sans: "Archivo", Arial, sans-serif;
  --mono: "DM Mono", "Courier New", monospace;
  --page-pad: clamp(22px, 4vw, 56px);
  --section-y: clamp(64px, 8vw, 112px);
  --content-max: 1440px;
  --ease: cubic-bezier(.2, .6, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--hueso);
  color: var(--greda);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; }

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

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

::selection {
  background: var(--terracota);
  color: #fff;
}

[hidden] { display: none !important; }

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

.screen-reader-text:focus,
.skip-link:focus {
  clip: auto !important;
  width: auto;
  height: auto;
}

.skip-link {
  position: fixed;
  z-index: 100000;
  top: -100px;
  left: 16px;
  padding: 12px 18px;
  background: var(--hueso);
  border: 2px solid var(--greda);
  font-family: var(--mono);
  font-size: 12px;
}

.skip-link:focus { top: 16px; }

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

.site-main { min-height: 65vh; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  background: rgba(251, 248, 242, .94);
  border-bottom: 1px solid var(--greda);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

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

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 12px var(--page-pad);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--greda);
  text-decoration: none;
}

.brand__mark {
  display: block;
  width: 62px;
  height: 36px;
  object-fit: contain;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__copy strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.brand__copy small {
  margin-top: 6px;
  color: var(--humo);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
}

.site-header__actions,
.site-nav__list {
  display: flex;
  align-items: center;
}

.site-header__actions { gap: 28px; }

.site-nav__list {
  gap: clamp(18px, 2.4vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--terracota);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--greda);
  border-radius: 2px;
  cursor: pointer;
}

.menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--greda);
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .13em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--primary {
  background: var(--terracota);
  color: #fff;
}

.button--primary:hover { background: var(--barro); }

.button--outline {
  background: transparent;
  border-color: var(--greda);
  color: var(--greda);
}

.button--outline:hover { background: var(--greda); color: var(--hueso); }

.button--outline-light {
  background: transparent;
  border-color: var(--arena);
  color: var(--hueso);
}

.button--outline-light:hover { background: var(--hueso); border-color: var(--hueso); color: var(--greda); }

.button--full { width: 100%; }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.eyebrow {
  color: var(--terracota);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .19em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow--muted { color: var(--humo); }

.dark-grid {
  background-color: var(--greda);
  background-image:
    linear-gradient(rgba(216, 196, 168, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 196, 168, .055) 1px, transparent 1px);
  background-size: 56px 56px;
  color: var(--hueso);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(360px, 1fr);
  min-height: 660px;
  max-width: var(--content-max);
  margin: 0 auto;
  background: var(--greda);
  color: var(--hueso);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  padding: clamp(44px, 5vw, 72px) var(--page-pad);
  border-right: 1px solid rgba(216, 196, 168, .18);
  background-image:
    linear-gradient(rgba(216, 196, 168, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 196, 168, .055) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero__coordinates {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--arena);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
}

.hero h1 {
  max-width: 780px;
  margin: 22px 0 28px;
  font-size: clamp(54px, 6.8vw, 98px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .9;
  text-transform: uppercase;
}

.hero h1 span { display: block; }
.hero h1 .hero__title-accent { color: var(--terracota); }

.hero__copy > div:nth-child(2) > p {
  max-width: 500px;
  margin: 0 0 34px;
  color: var(--arena);
  font-size: clamp(16px, 1.35vw, 19px);
}

.hero__scroll {
  color: var(--humo);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
}

.hero__visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.hero__image,
.cover-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image {
  position: absolute;
  inset: 0;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 21, 15, .1), rgba(28, 21, 15, .65));
}

.hero__facts {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero__facts > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 24px;
  border-top: 1px solid rgba(216, 196, 168, .28);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
}

.hero__facts span { color: var(--arena); }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.marquee {
  overflow: hidden;
  padding: 13px 0;
  background: var(--terracota);
  border-block: 1px solid var(--greda);
  color: #fff;
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee__track i { font-style: normal; }

.section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-y) var(--page-pad);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 46px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--greda);
}

.section-heading h2,
.specification h2,
.feature-sheet h2,
.cta-section h2,
.about-band h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .95;
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 360px;
  margin: 0;
  color: var(--humo);
}

.family-grid,
.product-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--greda);
}

.family-card {
  overflow: hidden;
  background: var(--hueso);
  color: var(--greda);
  text-decoration: none;
  transition: background 180ms ease;
}

.family-card:hover { background: var(--crema); }

.family-card__media {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--crema);
}

.family-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.family-card:hover .family-card__image { transform: scale(1.045); }

.family-card__media > span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 12px;
  background: var(--greda);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
}

.family-card__body { padding: 28px; }

.family-card h3 {
  margin: 7px 0 8px;
  font-size: 26px;
  line-height: 1.2;
}

.family-card p { margin: 0; color: var(--humo); font-size: 15px; }

.section--featured { padding-top: 0; }

.feature-sheet {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--greda);
}

.feature-sheet__image { min-height: 480px; overflow: hidden; }

.feature-sheet__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 70px);
  background: var(--greda);
  color: var(--hueso);
}

.feature-sheet__body > p {
  max-width: 480px;
  margin: 20px 0 28px;
  color: var(--arena);
}

.feature-sheet__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 30px;
  border-top: 1px solid rgba(216, 196, 168, .25);
}

.feature-sheet__specs > div {
  padding: 15px 0;
  border-bottom: 1px solid rgba(216, 196, 168, .18);
}

.feature-sheet__specs > div:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid rgba(216, 196, 168, .18);
}

.feature-sheet__specs span,
.feature-sheet__specs strong {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
}

.feature-sheet__specs span { color: var(--humo); }
.feature-sheet__specs strong { margin-top: 5px; color: var(--hueso); font-size: 14px; font-weight: 400; }
.feature-sheet__specs .accent { color: var(--terracota); }

.specification {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.specification > div:first-child > p {
  max-width: 500px;
  margin: 24px 0 30px;
  color: var(--arena);
  font-size: 17px;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 1px;
  background: rgba(216, 196, 168, .2);
}

.metric-grid > div {
  min-height: 165px;
  padding: 30px;
  background: var(--greda);
}

.metric-grid strong,
.about-metrics strong {
  display: block;
  color: var(--terracota);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
}

.metric-grid span,
.about-metrics span {
  display: block;
  margin-top: 16px;
  color: var(--arena);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
}

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

.project-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: var(--greda);
}

.project-card > img {
  position: absolute;
  inset: 0;
  transition: transform 600ms var(--ease);
}

.project-card:hover > img { transform: scale(1.04); }

.project-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28, 21, 15, .94), rgba(28, 21, 15, .15));
}

.project-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3vw, 40px);
  color: var(--hueso);
}

.project-card h3 { margin: 0 0 8px; font-size: clamp(26px, 2.6vw, 36px); }
.project-card p { max-width: 520px; margin: 0; color: var(--arena); }

.cta-section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(76px, 9vw, 128px) var(--page-pad);
  background: var(--carbon);
  color: var(--hueso);
  text-align: center;
}

.cta-section p {
  max-width: 580px;
  margin: 24px auto 34px;
  color: var(--arena);
  font-size: 18px;
}

.cta-section--light { background: var(--hueso); color: var(--greda); }

.page-hero {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 90px) var(--page-pad);
}

.page-hero h1,
.not-found h1,
.contact-page h1,
.about-hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .92;
  text-transform: uppercase;
}

.page-hero > p {
  max-width: 610px;
  margin: 0;
  color: var(--arena);
  font-size: 17px;
}

.catalogue { padding-top: clamp(32px, 4vw, 52px); }

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-button {
  min-width: 104px;
  padding: 10px 18px;
  border: 1px solid var(--greda);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.filter-button:hover,
.filter-button[aria-current="true"] { background: var(--greda); color: var(--hueso); }

.product-card {
  min-width: 0;
  overflow: hidden;
  background: var(--hueso);
}

.product-card__link { display: block; height: 100%; text-decoration: none; }

.product-card__media {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--crema);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.product-card:hover .product-card__media img { transform: scale(1.045); }

.product-card__code,
.product-card__tag {
  position: absolute;
  top: 0;
  padding: 7px 11px;
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
}

.product-card__code { left: 0; background: var(--greda); }
.product-card__tag { right: 0; background: var(--terracota); }

.product-card__placeholder,
.product-gallery__placeholder {
  display: grid;
  height: 100%;
  place-items: center;
  background: repeating-linear-gradient(45deg, var(--crema), var(--crema) 12px, var(--linea) 12px, var(--linea) 24px);
  color: var(--humo);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-card__body { padding: 25px; }

.product-card h2 {
  margin: 8px 0;
  font-size: 22px;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.product-card p { margin: 0 0 18px; color: var(--humo); font-size: 14px; }

.product-card__spec {
  padding-top: 14px;
  border-top: 1px solid var(--linea);
  color: var(--barro);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
}

.catalogue-empty,
.empty-state {
  padding: 64px 24px;
  border: 1px solid var(--linea);
  text-align: center;
}

.product-backbar {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 22px var(--page-pad);
}

.product-backbar a {
  color: var(--arena);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.product-backbar a:hover { color: var(--terracota); }

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: clamp(42px, 6vw, 84px);
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 44px var(--page-pad) var(--section-y);
}

.product-gallery__main {
  display: grid;
  min-height: 570px;
  overflow: hidden;
  place-items: center;
  background: var(--crema);
  border: 1px solid var(--linea);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: cover;
}

.product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.product-gallery__thumb {
  width: 78px;
  height: 78px;
  padding: 0;
  overflow: hidden;
  background: var(--crema);
  border: 2px solid transparent;
  cursor: pointer;
}

.product-gallery__thumb[aria-pressed="true"] { border-color: var(--terracota); }
.product-gallery__thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }

.product-detail__content { padding-top: 12px; }

.product-detail h1 {
  margin: 14px 0 20px;
  font-size: clamp(38px, 4.3vw, 58px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .98;
  text-transform: uppercase;
}

.product-detail__lead { max-width: 520px; margin: 0 0 30px; color: var(--humo); font-size: 17px; }

.spec-list { margin: 0 0 32px; border-top: 1px solid var(--linea); }
.spec-list > div { display: flex; justify-content: space-between; gap: 24px; padding: 13px 0; border-bottom: 1px solid var(--linea); }
.spec-list dt,
.spec-list dd { margin: 0; font-family: var(--mono); font-size: 11px; letter-spacing: .06em; }
.spec-list dt { color: var(--humo); }
.spec-list dd { text-align: right; }

.related-products { padding-top: 0; }
.product-grid--related { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.about-hero {
  position: relative;
  display: flex;
  min-height: 560px;
  max-width: var(--content-max);
  align-items: flex-end;
  margin: 0 auto;
  overflow: hidden;
  background: var(--greda);
}

.about-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-hero__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(28, 21, 15, .94), rgba(28, 21, 15, .12)); }
.about-hero__content { position: relative; z-index: 1; padding: var(--section-y) var(--page-pad) clamp(54px, 6vw, 78px); color: var(--hueso); }
.about-hero h1 { margin-bottom: 0; }

.about-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(42px, 7vw, 96px); align-items: start; }
.about-intro__lead { font-family: var(--serif); font-size: clamp(27px, 3vw, 40px); font-weight: 300; line-height: 1.4; }
.about-intro p { margin: 0 0 20px; color: var(--humo); font-size: 17px; }

.about-band { display: grid; grid-template-columns: 1fr 1fr; max-width: var(--content-max); margin: 0 auto; }
.about-band__image { min-height: 520px; }
.about-band__image img { width: 100%; height: 100%; object-fit: cover; }
.about-band__copy { display: flex; flex-direction: column; justify-content: center; padding: var(--section-y) var(--page-pad); }
.about-band__copy p { max-width: 520px; margin: 24px 0 0; color: var(--arena); }

.about-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1px;
  background: rgba(216, 196, 168, .2);
}

.about-metrics > div { min-height: 190px; padding: 40px 30px; background: var(--greda); }

.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: calc(var(--content-max) - (2 * var(--page-pad)));
  margin: clamp(48px, 6vw, 84px) auto var(--section-y);
  border: 1px solid var(--greda);
}

.contact-page__panel { padding: clamp(38px, 5vw, 68px); border-right: 1px solid var(--greda); }
.contact-page h1 { margin-top: 16px; font-size: clamp(44px, 5vw, 70px); }
.contact-page__panel > p { max-width: 450px; color: var(--humo); }

.contact-list { margin: 38px 0 0; border-top: 1px solid var(--linea); }
.contact-list > div { padding: 17px 0; border-bottom: 1px solid var(--linea); }
.contact-list dt { color: var(--humo); font-family: var(--mono); font-size: 10px; letter-spacing: .13em; }
.contact-list dd { margin: 5px 0 0; overflow-wrap: anywhere; font-family: var(--mono); font-size: clamp(14px, 1.35vw, 18px); }
.contact-list a { text-decoration-thickness: 1px; text-underline-offset: 4px; }

.contact-page__form { padding: clamp(38px, 5vw, 68px); background: var(--crema); }
.quote-form { display: flex; flex-direction: column; gap: 18px; }
.quote-form label { display: flex; flex-direction: column; gap: 7px; }
.quote-form label > span { color: var(--humo); font-family: var(--mono); font-size: 10px; letter-spacing: .13em; }
.quote-form label b { color: var(--terracota); }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--hueso);
  border: 1px solid #cfc1ae;
  border-radius: 2px;
  color: var(--greda);
  font-size: 16px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { border-color: var(--terracota); outline: 2px solid rgba(239, 124, 59, .2); }
.quote-form textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-privacy { margin: -4px 0 0; color: var(--humo); font-size: 11px; line-height: 1.5; }
.form-notice { margin-bottom: 20px; padding: 14px 16px; border: 1px solid; font-size: 14px; }
.form-notice--success { background: #edf7ee; border-color: #75a87a; color: #245d2b; }
.form-notice--error { background: #fff0ed; border-color: #c86f5e; color: #7c2e21; }

.not-found {
  max-width: var(--content-max);
  min-height: 640px;
  margin: 0 auto;
  padding: clamp(90px, 12vw, 170px) var(--page-pad);
}

.not-found p { max-width: 560px; margin: 0 0 32px; color: var(--arena); font-size: 18px; }

.prose { max-width: 920px; }
.prose > *:first-child { margin-top: 0; }
.prose h2 { margin-top: 1.6em; font-size: clamp(28px, 3vw, 42px); }
.prose p,
.prose li { font-family: var(--serif); font-size: 19px; line-height: 1.7; }

.site-footer {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(52px, 6vw, 76px) var(--page-pad) 32px;
  background: var(--carbon);
  color: var(--arena);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: clamp(34px, 5vw, 72px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(216, 196, 168, .16);
}

.brand--light { color: var(--hueso); }
.site-footer__brand p { max-width: 380px; color: var(--humo); font-size: 14px; }
.site-footer h2 { margin: 0 0 18px; color: var(--terracota); font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.site-footer ul { display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; list-style: none; }
.site-footer li,
.site-footer a { color: var(--arena); font-family: var(--mono); font-size: 12px; text-decoration: none; }
.site-footer a:hover { color: var(--hueso); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 24px; color: var(--humo); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; }

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease) var(--reveal-delay, 0ms), transform 700ms var(--ease) var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1.25fr .85fr; }
  .hero h1 { font-size: clamp(52px, 7.6vw, 78px); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-metrics { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .admin-bar .site-header { top: 46px; }
  .menu-toggle { display: flex; }
  .site-header__actions {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 76px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    background: var(--hueso);
    border-bottom: 1px solid var(--greda);
  }
  .admin-bar .site-header__actions { top: 122px; }
  .site-header__actions.is-open { display: flex; }
  .site-nav__list { align-items: stretch; flex-direction: column; gap: 0; }
  .site-nav a { display: block; padding: 18px var(--page-pad); border-bottom: 1px solid var(--linea); }
  .site-nav a::after { display: none; }
  .site-header__quote { margin: 16px var(--page-pad); }
  .hero { grid-template-columns: 1fr; }
  .hero__copy { min-height: 580px; border-right: 0; border-bottom: 1px solid rgba(216, 196, 168, .18); }
  .hero__visual { min-height: 500px; }
  .family-grid { grid-template-columns: 1fr; }
  .family-card { display: grid; grid-template-columns: .9fr 1.1fr; }
  .family-card__media { height: auto; min-height: 260px; }
  .feature-sheet,
  .specification,
  .product-detail,
  .about-band,
  .contact-page { grid-template-columns: 1fr; }
  .feature-sheet__image { min-height: 440px; }
  .product-detail { gap: 36px; }
  .product-gallery__main { min-height: 500px; }
  .about-band__image { min-height: 460px; }
  .contact-page { margin-inline: var(--page-pad); }
  .contact-page__panel { border-right: 0; border-bottom: 1px solid var(--greda); }
}

@media (max-width: 680px) {
  :root { --page-pad: 22px; --section-y: 68px; }
  html { scroll-padding-top: 72px; }
  .site-header__inner { min-height: 70px; }
  .site-header__actions { top: 70px; max-height: calc(100vh - 70px); }
  .admin-bar .site-header__actions { top: 116px; }
  .brand__mark { width: 50px; height: 30px; }
  .brand__copy strong { font-size: 14px; }
  .brand__copy small { display: none; }
  .hero__copy { min-height: auto; padding-block: 42px; }
  .hero__coordinates { font-size: 8px; }
  .hero h1 { margin-top: 18px; font-size: clamp(45px, 14vw, 66px); }
  .hero__visual { min-height: 390px; }
  .hero__facts > div { padding: 14px 18px; font-size: 9px; }
  .button { width: 100%; }
  .section-heading { align-items: stretch; flex-direction: column; }
  .section-heading .button { width: auto; align-self: flex-start; }
  .family-card { display: block; }
  .family-card__media { height: 280px; }
  .feature-sheet__image { min-height: 330px; }
  .feature-sheet__specs { grid-template-columns: 1fr; }
  .feature-sheet__specs > div:nth-child(even) { padding-left: 0; border-left: 0; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-grid > div { min-height: 130px; }
  .project-grid,
  .product-grid,
  .product-grid--related { grid-template-columns: 1fr; }
  .project-card { min-height: 360px; }
  .page-hero h1,
  .not-found h1,
  .contact-page h1,
  .about-hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .product-filters { display: grid; grid-template-columns: 1fr 1fr; }
  .product-card__media { height: 270px; }
  .product-detail { padding-top: 28px; }
  .product-gallery__main { min-height: 340px; }
  .product-gallery__main img { min-height: 340px; object-fit: cover; }
  .product-gallery__thumb { width: 65px; height: 65px; }
  .spec-list > div { align-items: flex-start; flex-direction: column; gap: 4px; }
  .spec-list dd { text-align: left; }
  .about-hero { min-height: 480px; }
  .about-intro { grid-template-columns: 1fr; }
  .about-band__image { min-height: 340px; }
  .about-metrics { grid-template-columns: 1fr; }
  .about-metrics > div { min-height: 145px; }
  .contact-page { margin-top: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header,
  .site-footer,
  .button,
  .product-gallery__thumbs { display: none !important; }
  body { background: #fff; color: #000; }
  .site-main { min-height: 0; }
  .product-detail { display: block; padding: 0; }
  .product-gallery__main { min-height: 0; margin-bottom: 24px; }
}

/* --------------------------------------------------------------------------
   Prototype parity · v1.1
   Values below mirror the approved Claude prototype while retaining real
   WordPress URLs, accessible controls and responsive behaviour.
   -------------------------------------------------------------------------- */

:root {
  --humo: #978876;
  --page-pad: 56px;
  --section-y: 96px;
}

body.ct-site {
  padding: 16px 16px 64px;
  background: #cdc3b3;
}
.site-header,
.site-main,
.site-footer {
  width: min(100%, 1440px);
  max-width: 1440px;
  margin-inline: auto;
}
.site-header {
  border-radius: 12px 12px 0 0;
}
.site-main {
  overflow: hidden;
  background: var(--hueso);
}
.site-footer {
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
.joinchat { display: none !important; }

.site-header__inner {
  min-height: 0;
  padding: 16px 36px;
}

.brand { gap: 13px; }
.brand__mark { width: auto; height: 30px; }
.brand__copy strong { font-size: 16px; letter-spacing: 1px; }
.brand__copy small { margin-top: 3px; font-size: 9px; letter-spacing: 3px; }
.site-header__actions { gap: 28px; }
.site-nav__list { gap: 28px; }
.site-nav a {
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  font-size: 12px;
  letter-spacing: 2px;
}
.site-nav a::after { display: none; }
.site-nav a:hover { border-bottom-color: var(--terracota); color: var(--barro); }
.site-header__quote {
  min-height: 0;
  padding: 11px 20px;
  font-size: 12px;
  letter-spacing: 2px;
}

.button {
  min-height: 0;
  padding: 15px 28px;
  font-size: 13px;
  letter-spacing: 2px;
}
.eyebrow { font-size: 12px; letter-spacing: 3px; }

.hero {
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  min-height: 660px;
}
.hero__copy {
  gap: 40px;
  padding: 64px 56px;
}
.hero__coordinates { font-size: 11px; letter-spacing: 2px; }
.hero .eyebrow { margin-bottom: 24px; }
.hero h1 {
  max-width: none;
  margin: 0 0 26px;
  font-size: 84px;
  letter-spacing: -3px;
  line-height: .92;
}
.hero h1 em { color: var(--terracota); font-style: normal; }
.hero__copy > div:nth-child(2) > p {
  max-width: 460px;
  margin: 0 0 36px;
  font-size: 18px;
  line-height: 1.6;
}
.hero .button--primary { padding: 15px 28px; }
.hero .button--outline-light { padding: 14px 26px; }
.hero__scroll { font-size: 11px; letter-spacing: 2px; transform: translateY(5px); }
.hero__visual { min-height: 0; }
.hero__shade { background: linear-gradient(180deg, rgba(28, 21, 15, .15), rgba(28, 21, 15, .55)); }
.hero__facts > div { padding: 18px 24px; font-size: 11px; letter-spacing: 1px; }

.marquee { padding: 14px 0; border-top: 0; }
.marquee__track { gap: 36px; padding-right: 36px; font-size: 13px; letter-spacing: 2px; animation-duration: 28s; }

.section--families { padding: 96px 56px; }
.section-heading {
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 20px;
}
.section-heading h2,
.projects .section-heading h2 {
  margin: 14px 0 0;
  font-size: 46px;
  letter-spacing: -1.5px;
  line-height: 1.08;
}
.section-heading .button { padding: 12px 20px; font-size: 12px; }
.family-grid,
.product-grid,
.project-grid {
  gap: 1px;
  padding: 0;
  border: 1px solid var(--greda);
}
.family-card__media { height: 300px; }
.family-card__media > span { padding: 8px 13px; font-size: 12px; letter-spacing: 1px; }
.family-card__body { padding: 28px; }
.family-card h3 { margin: 0 0 10px; font-size: 26px; letter-spacing: -.5px; }
.family-card .eyebrow { margin-bottom: 10px; font-size: 11px; letter-spacing: 2px; }
.family-card p { font-size: 15px; line-height: 1.6; }

.section--featured { padding: 0 56px 96px; }
.feature-sheet {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  min-height: 0;
}
.feature-sheet__image { min-height: 480px; }
.feature-sheet__body { padding: 56px; }
.feature-sheet__body > .eyebrow { margin-bottom: 20px; }
.feature-sheet h2 {
  margin: 0 0 18px;
  font-size: 42px;
  letter-spacing: -1.5px;
  line-height: .98;
}
.feature-sheet__body > p {
  max-width: 420px;
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.7;
}
.feature-sheet__specs { margin-bottom: 32px; }
.feature-sheet__specs > div { padding: 16px 0; }
.feature-sheet__specs > div:nth-child(even) { padding-left: 24px; }
.feature-sheet__specs > div:nth-child(n+3) { border-bottom: 0; }
.feature-sheet__specs span { font-size: 12px; letter-spacing: 1px; }
.feature-sheet__specs strong { margin-top: 0; font-size: 15px; letter-spacing: 1px; }
.feature-sheet .button--primary { padding: 14px 26px; }
.feature-sheet .button--outline-light { padding: 13px 24px; }

.specification {
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 88px 56px;
}
.specification .eyebrow { margin-bottom: 18px; }
.specification h2 {
  margin: 0 0 22px;
  font-size: 44px;
  letter-spacing: -1.5px;
  line-height: .98;
}
.specification > div:first-child > p {
  max-width: 440px;
  margin: 0 0 30px;
  font-size: 17px;
  line-height: 1.7;
}
.metric-grid { gap: 1px; padding: 0; border: 1px solid rgba(216, 196, 168, .2); }
.metric-grid > div { min-height: 0; padding: 30px; }
.metric-grid strong { font-size: 48px; letter-spacing: -2px; }
.metric-grid span { margin-top: 8px; font-size: 12px; letter-spacing: 1px; }

.projects { padding: 96px 56px; }
.projects .section-heading { margin-bottom: 44px; }
.projects .section-heading > p { max-width: 340px; font-size: 15px; line-height: 1.6; }
.project-card { min-height: 340px; }
.project-card__shade { background: linear-gradient(0deg, rgba(28, 21, 15, .92), rgba(28, 21, 15, .2)); }
.project-card__body { padding: 36px; }
.project-card h3 { margin: 0 0 10px; font-size: 30px; letter-spacing: -.5px; }
.project-card p { font-size: 15px; line-height: 1.6; }

.cta-section { padding: 100px 56px; }
.cta-section .eyebrow { margin-bottom: 24px; }
.cta-section h2 {
  margin: 0 0 20px;
  font-size: 56px;
  letter-spacing: -2px;
  line-height: .98;
}
.cta-section p { max-width: 520px; margin: 0 auto 36px; font-size: 18px; }
.cta-section .button { padding: 17px 34px; font-size: 14px; }

.page-hero { padding: 72px 56px; }
.page-hero h1 { margin: 0 0 18px; font-size: 76px; letter-spacing: -2.5px; line-height: .92; }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero > p { max-width: 560px; font-size: 17px; line-height: 1.6; }
.catalogue { padding: 40px 56px 96px; }
.product-filters { margin-bottom: 40px; }
.filter-button { min-width: 0; padding: 10px 18px; font-size: 12px; letter-spacing: 2px; }
.product-grid { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.product-card__media { height: 230px; }
.product-card__code { padding: 7px 11px; font-size: 11px; letter-spacing: 1px; }
.product-card__tag { padding: 7px 11px; font-size: 10px; letter-spacing: 1px; }
.product-card__body { padding: 24px; }
.product-card .eyebrow { margin-bottom: 8px; font-size: 11px; letter-spacing: 2px; }
.product-card h2 { margin: 0 0 8px; font-size: 22px; letter-spacing: -.4px; }
.product-card p { margin: 0 0 16px; font-size: 14px; line-height: 1.6; }
.product-card__spec { padding-top: 14px; font-size: 12px; letter-spacing: 1px; }

.product-backbar { padding: 28px 56px; }
.product-backbar a { font-size: 12px; letter-spacing: 2px; }
.product-detail {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  padding: 40px 56px 96px;
}
.product-gallery__main { min-height: 560px; height: 560px; }
.product-gallery__main img { max-height: none; }
.product-gallery__thumbs { gap: 10px; margin-top: 12px; }
.product-gallery__thumb { width: 76px; height: 76px; }
.product-detail__content { padding: 8px 0 0 48px; }
.product-detail__content > .eyebrow { margin-bottom: 16px; }
.product-detail h1 { margin: 0 0 20px; font-size: 44px; letter-spacing: -1.5px; line-height: 1; }
.product-detail__lead { max-width: 440px; margin: 0 0 32px; font-size: 16px; line-height: 1.7; }
.spec-list { margin-bottom: 32px; }
.spec-list > div { padding: 14px 0; }
.spec-list dt,
.spec-list dd { font-size: 12px; letter-spacing: 1px; }
.product-detail__actions .button { padding: 15px 26px; }
.product-detail__actions .button--outline { padding: 14px 22px; }
.related-products { padding: 0 56px 96px; }
.related-products__heading { margin-bottom: 28px; padding-top: 32px; border-top: 1px solid var(--greda); }
.related-products__heading .eyebrow { margin-bottom: 10px; font-size: 12px; letter-spacing: 2px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; border: 1px solid var(--greda); background: var(--greda); }
.related-card { overflow: hidden; background: var(--hueso); }
.related-card a { display: block; height: 100%; text-decoration: none; }
.related-card__media { display: flex; height: 180px; align-items: center; justify-content: center; overflow: hidden; background: #fff; }
.related-card__media img { width: 100%; height: 100%; padding: 10px; object-fit: contain; }
.related-card__body { padding: 18px; }
.related-card h3 { margin: 0; font-size: 17px; line-height: 1.2; }

.about-hero { min-height: 460px; }
.about-hero > img { opacity: .55; }
.about-hero__shade { background: linear-gradient(0deg, rgba(28, 21, 15, .94), rgba(28, 21, 15, .2)); }
.about-hero__content { padding: 64px 56px; }
.about-hero__content .eyebrow { margin-bottom: 18px; }
.about-hero h1 { margin: 0; max-width: 780px; font-size: 62px; letter-spacing: -2px; line-height: .94; }
.about-intro { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 56px; padding: 96px 56px; }
.about-intro p.about-intro__lead { margin: 0; font-size: 30px; line-height: 1.45; }
.about-intro__lead span { color: var(--barro); font-style: italic; }
.about-intro p { margin: 0 0 18px; font-size: 16px; line-height: 1.8; }
.about-intro p:last-child { margin-bottom: 0; }
.about-metrics { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); padding: 0; border-top: 1px solid var(--greda); }
.about-metrics > div { min-height: 0; padding: 48px 36px; }
.about-metrics strong { font-size: 52px; letter-spacing: -2px; }
.about-metrics span { margin-top: 12px; font-size: 12px; letter-spacing: 1px; }
.cta-section--light { padding: 96px 56px; }
.cta-section--light h2 { margin-bottom: 26px; font-size: 44px; letter-spacing: -1.5px; }
.cta-section--light .button { padding: 16px 32px; }

.contact-page-shell { padding: 80px 56px 96px; }
.contact-page {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  max-width: none;
  margin: 0;
}
.contact-page__panel { min-width: 0; padding: 56px; }
.contact-page__panel > .eyebrow { margin-bottom: 18px; }
.contact-page h1 { margin: 0 0 22px; font-size: 32px; letter-spacing: -2px; line-height: .96; }
.contact-page__panel > p { max-width: 380px; margin: 0 0 40px; font-size: 16px; line-height: 1.65; }
.contact-list { margin: 0; }
.contact-list > div { padding: 20px 0; }
.contact-list dt { font-size: 11px; letter-spacing: 2px; }
.contact-list dd { margin-top: 6px; font-size: 18px; }
.contact-page__form { min-width: 0; padding: 56px; }
.quote-form { gap: 20px; }
.quote-form label { gap: 8px; }
.quote-form label > span { font-size: 11px; letter-spacing: 2px; }
.quote-form input,
.quote-form select,
.quote-form textarea { padding: 14px 16px; border-color: #ddd0bd; }
.quote-form textarea { min-height: 0; }
.quote-form .button { padding: 16px; margin-top: 4px; }

.site-footer { padding: 64px 56px 36px; }
.site-footer__grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; padding-bottom: 36px; }
.site-footer__brand .brand { margin-bottom: 16px; }
.site-footer__brand p { max-width: 280px; margin: 0; font-size: 14px; line-height: 1.6; }
.site-footer h2 { margin-bottom: 18px; font-size: 11px; letter-spacing: 2px; }
.site-footer ul { gap: 12px; }
.site-footer li,
.site-footer a { font-size: 13px; letter-spacing: 1px; }
.site-footer__bottom { padding-top: 24px; font-size: 11px; letter-spacing: 1px; }

@media (max-width: 900px) {
  .site-header__actions { top: 70px; }
  .site-header__quote { padding: 18px; margin: 0; border-radius: 0; justify-content: flex-start; }
  .hero { grid-template-columns: 1fr; }
  .hero__copy { min-height: auto; }
  .hero__visual { min-height: 420px; }
  .feature-sheet,
  .specification,
  .product-detail,
  .contact-page { grid-template-columns: 1fr; }
  .product-detail__content { padding-left: 0; }
  .about-intro { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --page-pad: 22px; --section-y: 56px; }
  body.ct-site { padding: 0; background: var(--hueso); }
  .site-header,
  .site-main,
  .site-footer { width: 100%; border-radius: 0; }
  .site-header__inner { padding: 16px 18px; }
  .brand__mark { width: auto; height: 30px; }
  .brand__copy strong { font-size: 16px; }
  .brand__copy small { display: block; margin-top: 3px; font-size: 8px; letter-spacing: 2px; }
  .menu-toggle { width: auto; height: auto; padding: 10px 11px; }
  .site-header__actions { top: 63px; }
  .site-nav a { padding: 18px; font-size: 13px; }
  .site-header__quote { padding: 18px; font-size: 13px; }
  .button { width: auto; }

  .hero__copy { gap: 40px; padding: 40px 22px; border-bottom: 0; }
  .hero__coordinates { font-size: 9px; letter-spacing: 1px; }
  .hero h1 { font-size: 46px; letter-spacing: -1.5px; }
  .hero__copy > div:nth-child(2) > p { font-size: 18px; }
  .hero .button { width: auto; }
  .hero__visual { min-height: 300px; }

  .section--families { padding: 56px 22px; }
  .section-heading { align-items: flex-end; flex-direction: row; flex-wrap: wrap; margin-bottom: 48px; }
  .section-heading h2,
  .projects .section-heading h2 { font-size: 30px; }
  .section-heading .button { display: inline-flex; }
  .family-card { display: block; }
  .family-card__media { height: 300px; }

  .section--featured { padding: 0 22px 56px; }
  .feature-sheet__image { height: 240px; min-height: 240px; }
  .feature-sheet__body { padding: 40px 24px; }
  .feature-sheet h2 { font-size: 32px; }
  .feature-sheet__specs { grid-template-columns: 1fr 1fr; }
  .feature-sheet__specs > div:nth-child(even) { padding-left: 24px; border-left: 1px solid rgba(216, 196, 168, .18); }
  .feature-sheet .button { width: auto; }

  .specification { grid-template-columns: 1fr; gap: 56px; overflow: hidden; padding: 56px 22px; }
  .specification > * { min-width: 0; }
  .specification h2 { font-size: 30px; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .metric-grid > div { min-height: 0; padding: 24px 20px; }
  .metric-grid strong { font-size: 34px; }

  .projects { padding: 56px 22px; }
  .projects .section-heading { align-items: flex-end; }
  .projects .section-heading > p { max-width: 340px; font-size: 15px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 340px; }
  .cta-section { padding: 64px 22px; }
  .cta-section h2 { font-size: 34px; }
  .cta-section .button { width: auto; }

  .page-hero { padding: 48px 22px; }
  .page-hero h1 { font-size: 46px; }
  .catalogue { padding: 28px 22px 64px; }
  .product-filters { display: flex; }
  .product-grid { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }

  .product-backbar { padding: 20px 22px; }
  .product-detail { grid-template-columns: 1fr; gap: 48px; padding: 40px 22px 64px; }
  .product-gallery__main { min-height: 320px; height: 320px; }
  .product-detail__content { padding: 36px 4px 0; }
  .product-detail h1 { font-size: 32px; }
  .spec-list > div { align-items: center; flex-direction: row; gap: 20px; }
  .spec-list dd { text-align: right; }
  .related-products { padding: 0 22px 64px; }
  .related-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

  .about-hero { min-height: 460px; }
  .about-hero__content { padding: 40px 22px; }
  .about-hero h1 { font-size: 36px; }
  .about-intro { gap: 56px; padding: 56px 22px; }
  .about-intro p.about-intro__lead { font-size: 24px; }
  .about-metrics { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
  .about-metrics > div { padding: 48px 36px; }
  .about-metrics span { line-height: 19px; }
  .cta-section--light { padding: 56px 22px; }
  .cta-section--light h2 { font-size: 30px; }

  .contact-page-shell { padding: 48px 22px 64px; }
  .contact-page { grid-template-columns: 1fr; }
  .contact-page__panel { padding: 36px 24px; border-right: 0; border-bottom: 1px solid var(--greda); }
  .contact-page__form { padding: 36px 24px; }
  .contact-page h1 { font-size: 32px; }
  .form-row { grid-template-columns: 1fr; }

  .site-footer { padding: 48px 22px 32px; }
  .site-footer__grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  .site-footer__bottom { flex-direction: row; flex-wrap: wrap; }
}

/* Inline-style prototype used the browser's normal line box for these atoms. */
.eyebrow,
.button,
.hero__coordinates,
.hero__scroll,
.marquee__track,
.feature-sheet__specs span,
.feature-sheet__specs strong { line-height: normal; }
.site-header .site-header__quote {
  min-height: 0;
  padding: 11px 20px;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: normal;
  border: 0;
}
.hero .button--primary,
.feature-sheet .button--primary,
.specification .button--primary,
.cta-section .button--primary { border: 0; }
.marquee__track,
.cta-section p,
.family-card h3,
.section-heading h2,
.projects .section-heading h2,
.site-footer h2,
.site-footer ul,
.site-footer__bottom { line-height: normal; }
.site-footer ul { font-family: var(--mono); font-size: 13px; }
.filter-button,
.product-card h2,
.product-card__spec,
.product-backbar,
.related-card h3 { line-height: normal; }
.product-backbar { border-bottom: 1px solid rgba(216, 196, 168, .2); }
.contact-list,
.contact-list dt,
.contact-list dd,
.quote-form label,
.quote-form input,
.quote-form select,
.quote-form textarea { line-height: normal; }
.quote-form .button--primary { border: 0; }

@supports (display: ceramica-toro-v12-disabled) {
/* --------------------------------------------------------------------------
   Sitio Cerámica Toro.dc · referencia aprobada · v1.2
   -------------------------------------------------------------------------- */

html body {
  padding: 28px 0 80px;
  background: #cfc4b4 !important;
  color: var(--greda);
  font-family: var(--ff-sans);
}

.site-header,
.site-main,
.site-footer { width: min(100%, 1440px); margin-inline: auto; }
.site-main { overflow: hidden; background: var(--crema); }
.site-header { border-radius: 14px 14px 0 0; }
.site-footer { border-radius: 0 0 14px 14px; }

.site-header__inner { min-height: 0; padding: 18px 40px; }
.brand { display: inline-flex; align-items: center; }
.brand__logo { display: block; width: 52px; height: 52px; object-fit: contain; }
.site-header__actions,
.site-nav__list { gap: 30px; }
.site-nav a {
  padding: 0;
  border: 0;
  color: var(--greda);
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.site-nav a:hover { color: var(--terracota); }

.button,
.site-header .site-header__quote {
  min-height: 0;
  padding: 13px 26px;
  border: 0;
  border-radius: 7px;
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: normal;
  text-transform: none;
}
.button--primary,
.site-header .site-header__quote { background: var(--terracota); color: #fff; }
.button--primary:hover,
.site-header .site-header__quote:hover { background: var(--barro); color: #fff; }
.button--outline {
  padding: 11px 24px;
  border: 1.5px solid var(--greda);
  background: transparent;
  color: var(--greda);
}
.button--outline:hover { background: var(--greda); color: var(--hueso); }
.button--outline-light {
  padding: 13px 28px;
  border: 1.5px solid var(--arena);
  background: transparent;
  color: var(--hueso);
}
.button--outline-light:hover { background: var(--hueso); color: var(--greda); }
.eyebrow {
  color: var(--terracota);
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: normal;
  text-transform: uppercase;
}
.eyebrow--muted { color: var(--humo); font-size: 12px; letter-spacing: 2px; }

.factory-hero {
  position: relative;
  display: flex;
  min-height: 640px;
  align-items: center;
  overflow: hidden;
  background: var(--greda);
  color: var(--hueso);
}
.factory-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.factory-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,21,15,.9) 0%, rgba(28,21,15,.5) 55%, rgba(28,21,15,.25) 100%); }
.factory-hero__content { position: relative; max-width: 880px; padding: 80px 64px; }
.factory-kicker { margin-bottom: 28px; color: var(--arena); font-family: var(--ff-mono); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; }
.factory-hero h1 {
  margin: 0 0 28px;
  color: var(--hueso);
  font-family: var(--ff-serif);
  font-size: 72px;
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 1.05;
  text-transform: none;
}
.factory-hero h1 em { color: var(--terracota); font-weight: 300; }
.factory-hero p { max-width: 560px; margin: 0 0 40px; color: var(--arena); font-size: 20px; line-height: 1.6; }
.factory-hero .button-row { gap: 16px; }
.factory-hero .button { padding: 15px 30px; font-size: 16px; }
.factory-hero .button--outline-light { padding: 13px 28px; }

.credentials { padding: 30px 64px; background: var(--barro); color: var(--hueso); }
.credentials > div { display: flex; align-items: center; justify-content: space-between; gap: 48px; font-family: var(--ff-mono); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; }
.credentials i { opacity: .5; font-style: normal; }

.target-section { padding: 96px 64px; background: var(--crema); }
.target-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 48px; }
.target-heading .eyebrow { margin-bottom: 16px; }
.target-heading h2,
.target-cta h2 {
  margin: 0;
  color: var(--greda);
  font-family: var(--ff-serif);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.12;
  text-transform: none;
}
.target-heading > p { max-width: 380px; margin: 0; color: var(--humo); font-size: 16px; line-height: 1.6; }

.target-family-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.target-family-card { overflow: hidden; border: 1px solid #ece2d3; border-radius: 12px; background: var(--hueso); text-decoration: none; transition: transform .2s, box-shadow .2s; }
.target-family-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -24px rgba(46,36,29,.4); }
.target-family-card > img { width: 100%; height: 280px; object-fit: cover; }
.target-family-card > div { padding: 28px; }
.target-family-card .eyebrow { margin-bottom: 10px; }
.target-family-card h3 { margin: 0 0 10px; color: var(--greda); font-family: var(--ff-serif); font-size: 28px; font-weight: 500; line-height: normal; }
.target-family-card p { margin: 0; color: var(--humo); font-size: 15px; line-height: 1.6; }

.target-featured { padding-top: 0; background: var(--hueso); }
.target-featured__card { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: hidden; border: 1px solid #ece2d3; border-radius: 14px; }
.target-featured__image { min-height: 440px; }
.target-featured__image img { width: 100%; height: 100%; object-fit: cover; }
.target-featured__body { display: flex; flex-direction: column; justify-content: center; padding: 64px; background: var(--crema); }
.target-featured__body .eyebrow { margin-bottom: 18px; font-size: 12px; letter-spacing: 2px; }
.target-featured__body h2 { margin: 0 0 20px; color: var(--greda); font-family: var(--ff-serif); font-size: 42px; font-weight: 400; letter-spacing: -1px; line-height: 1.1; }
.target-featured__body > p { margin: 0 0 28px; color: rgba(46,36,29,.8); font-size: 17px; line-height: 1.7; }
.target-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.target-tags span,
.filter-button { padding: 7px 12px; border: 1px solid #e7ddcf; border-radius: 5px; background: var(--crema); color: var(--barro); font-family: var(--ff-mono); font-size: 12px; font-weight: 400; letter-spacing: 1px; line-height: normal; text-transform: uppercase; }

.target-specification { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; align-items: center; padding: 84px 64px; background: var(--greda); color: var(--hueso); }
.target-specification .eyebrow { margin-bottom: 20px; }
.target-specification h2 { margin: 0 0 22px; font-family: var(--ff-serif); font-size: 44px; font-weight: 300; letter-spacing: -1px; line-height: 1.15; text-transform: none; }
.target-specification > div:first-child > p { margin: 0 0 32px; color: var(--arena); font-size: 17px; line-height: 1.7; }
.target-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.target-metrics > div { padding: 26px; border: 1px solid rgba(216,196,168,.18); border-radius: 10px; background: rgba(216,196,168,.08); }
.target-metrics strong { display: block; margin-bottom: 8px; color: var(--terracota); font-family: var(--ff-serif); font-size: 36px; font-weight: 400; line-height: normal; }
.target-metrics span { color: var(--arena); font-size: 14px; line-height: 1.5; }

.target-projects { padding-top: 0; background: var(--hueso); }
.target-project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.target-project-grid article { display: flex; min-height: 300px; flex-direction: column; justify-content: space-between; padding: 44px; border-radius: 12px; background: linear-gradient(0deg,rgba(28,21,15,.93),rgba(28,21,15,.4)), var(--project-image) center/cover; color: var(--hueso); }
.target-project-grid article .eyebrow { font-size: 12px; letter-spacing: 2px; }
.target-project-grid h3 { margin: 0 0 12px; font-family: var(--ff-serif); font-size: 34px; font-weight: 400; line-height: normal; }
.target-project-grid p { margin: 0; color: var(--arena); font-size: 16px; line-height: 1.6; }

.target-cta { padding: 96px 64px; background: var(--crema); text-align: center; }
.target-cta h2 { margin-bottom: 18px; }
.target-cta p { max-width: 560px; margin: 0 auto 32px; color: var(--humo); font-size: 18px; line-height: 1.6; }
.target-cta .button { padding: 16px 34px; font-size: 16px; }

/* Catálogo y fichas */
.page-hero { padding: 72px 64px; background: var(--greda); color: var(--hueso); }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { margin: 0 0 18px; color: var(--hueso); font-family: var(--ff-serif); font-size: 60px; font-weight: 300; letter-spacing: -1.5px; line-height: 1.05; text-transform: none; }
.page-hero > p { max-width: 620px; margin: 0; color: var(--arena); font-size: 18px; line-height: 1.6; }
.catalogue { padding: 48px 64px 96px; background: var(--crema); }
.product-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.filter-button { min-width: 0; }
.filter-button:hover,
.filter-button[aria-current="true"] { border-color: var(--greda); background: var(--greda); color: var(--arena); }
.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; padding: 0; border: 0; background: transparent; }
.product-card { overflow: hidden; border: 1px solid #ece2d3; border-radius: 12px; background: var(--hueso); transition: transform .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -24px rgba(46,36,29,.4); }
.product-card__media { height: 230px; background: #b9794c; }
.product-card__body { padding: 26px; }
.product-card__code,
.product-card__tag { border-radius: 5px; }
.product-card .eyebrow { margin-bottom: 8px; font-size: 11px; letter-spacing: 2px; }
.product-card h2 { margin: 0 0 8px; color: var(--greda); font-family: var(--ff-serif); font-size: 24px; font-weight: 500; letter-spacing: 0; line-height: 1.1; text-transform: none; }
.product-card p { margin: 0 0 16px; color: var(--humo); font-size: 14px; line-height: 1.6; }
.product-card__spec { padding-top: 14px; color: var(--barro); font-family: var(--ff-mono); font-size: 12px; }

.product-backbar { padding: 24px 64px; background: var(--greda); }
.product-backbar a { color: var(--arena); font-size: 12px; }
.product-detail { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 56px; padding: 64px; background: var(--crema); }
.product-gallery__main { height: 560px; min-height: 560px; overflow: hidden; border-radius: 14px; background: var(--hueso); }
.product-gallery__main img { width: 100%; height: 100%; object-fit: contain; }
.product-gallery__thumb { border-radius: 7px; }
.product-detail__content { padding: 32px 0 0; }
.product-detail__content > .eyebrow { margin-bottom: 18px; }
.product-detail h1 { margin: 0 0 22px; font-family: var(--ff-serif); font-size: 48px; font-weight: 300; letter-spacing: -1px; line-height: 1.05; text-transform: none; }
.product-detail__lead { margin-bottom: 32px; color: var(--humo); font-size: 17px; }
.spec-list dt,
.spec-list dd { font-family: var(--ff-mono); font-size: 12px; }
.related-products { padding: 0 64px 96px; background: var(--crema); }
.related-grid { gap: 24px; border: 0; background: transparent; }
.related-card { border: 1px solid #ece2d3; border-radius: 12px; }
.related-card__media { height: 210px; }
.related-card h3 { font-family: var(--ff-serif); font-size: 20px; font-weight: 500; }

/* Nosotros */
.about-hero { min-height: 480px; }
.about-hero > img { opacity: .5; }
.about-hero__shade { background: linear-gradient(0deg,rgba(28,21,15,.92),rgba(28,21,15,.25)); }
.about-hero__content { padding: 64px; }
.about-hero__content .eyebrow { margin-bottom: 18px; color: var(--arena); }
.about-hero h1 { max-width: 760px; margin: 0; font-family: var(--ff-serif); font-size: 60px; font-weight: 300; letter-spacing: -1.5px; line-height: 1.05; text-transform: none; }
.about-intro { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 56px; padding: 96px 64px; background: var(--crema); }
.about-intro p.about-intro__lead { font-family: var(--ff-serif); font-size: 30px; font-weight: 300; line-height: 1.45; }
.about-intro p { color: var(--humo); font-size: 17px; line-height: 1.8; }
.about-metrics { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; padding: 84px 64px; border: 0; background: var(--hueso); }
.about-metrics > div { min-height: 0; padding: 24px 0 0; border-top: 3px solid var(--greda); background: transparent; }
.about-metrics > div:first-child { border-top-color: var(--terracota); }
.about-metrics strong { color: var(--greda); font-family: var(--ff-serif); font-size: 56px; font-weight: 400; letter-spacing: 0; line-height: 1; }
.about-metrics span { margin-top: 10px; color: var(--humo); font-family: var(--ff-sans); font-size: 15px; letter-spacing: 0; line-height: normal; text-transform: none; }
.cta-section--light { padding: 96px 64px; background: var(--crema); }
.cta-section--light h2 { max-width: none; margin: 0 0 28px; color: var(--greda); font-family: var(--ff-serif); font-size: 42px; font-weight: 300; letter-spacing: -1px; line-height: 1.15; text-transform: none; }

/* Contacto */
.contact-page-shell { padding: 96px 64px; background: var(--crema); }
.contact-page { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 64px; margin: 0; border: 0; }
.contact-page__panel { padding: 0; border: 0; }
.contact-page__panel > .eyebrow { margin-bottom: 20px; }
.contact-page h1 { margin: 0 0 22px; font-family: var(--ff-serif); font-size: 54px; font-weight: 300; letter-spacing: -1.5px; line-height: 1.05; text-transform: none; }
.contact-page__panel > p { margin: 0 0 44px; color: var(--humo); font-size: 18px; line-height: 1.65; }
.contact-list > div { padding: 0; border: 0; }
.contact-list { display: flex; flex-direction: column; gap: 22px; }
.contact-list dt { color: var(--humo); font-size: 11px; letter-spacing: 2px; }
.contact-list dd { margin-top: 6px; color: var(--greda); font-family: var(--ff-mono); font-size: 18px; }
.contact-page__form { padding: 44px; border: 1px solid #ece2d3; border-radius: 14px; background: var(--hueso); }
.quote-form { gap: 20px; }
.quote-form label { gap: 8px; }
.quote-form label > span { color: var(--humo); font-size: 11px; letter-spacing: 2px; }
.quote-form input,
.quote-form select,
.quote-form textarea { padding: 14px 16px; border: 1px solid #ddd0bd; border-radius: 8px; background: var(--crema); font-size: 16px; }
.quote-form .button { padding: 16px; font-size: 16px; }

/* Pie */
.site-footer { padding: 64px 64px 40px; }
.site-footer__grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 40px; padding-bottom: 40px; }
.site-footer__brand .brand { margin-bottom: 18px; }
.brand__logo--footer { width: 64px; height: 64px; }
.site-footer__brand p { max-width: 280px; font-size: 14px; line-height: 1.6; }
.site-footer h2 { margin-bottom: 18px; color: var(--terracota); font-size: 12px; letter-spacing: 2px; }
.site-footer ul { gap: 12px; font-family: var(--ff-sans); }
.site-footer li,
.site-footer a { font-size: 15px; letter-spacing: 0; }
.site-footer__bottom { padding-top: 24px; font-size: 12px; letter-spacing: 1px; text-transform: none; }

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-header__actions,
  .site-nav__list { gap: 22px; }
}

@media (max-width: 900px) {
  .site-header__actions { top: 89px; }
  .site-header__quote { border-radius: 0; }
  .target-family-grid,
  .target-featured__card,
  .target-specification,
  .target-project-grid,
  .product-detail,
  .about-intro,
  .contact-page { grid-template-columns: 1fr; }
  .about-metrics { grid-template-columns: 1fr 1fr; }
  .target-featured__image { min-height: 360px; }
  .product-detail__content { padding-top: 0; }
}

@media (max-width: 680px) {
  html body { padding: 0; }
  .site-header,
  .site-footer { border-radius: 0; }
  .site-header__inner { min-height: 70px; padding: 10px 18px; }
  .brand__logo { width: 48px; height: 48px; }
  .site-header__actions { top: 70px; }
  .site-nav a { padding: 18px; font-size: 15px; }
  .site-header .site-header__quote { padding: 18px; font-size: 15px; }

  .factory-hero { min-height: 640px; align-items: flex-end; }
  .factory-hero__shade { background: linear-gradient(0deg,rgba(28,21,15,.94),rgba(28,21,15,.35)); }
  .factory-hero__content { padding: 64px 22px; }
  .factory-kicker { margin-bottom: 22px; font-size: 11px; letter-spacing: 2px; }
  .factory-hero h1 { font-size: 46px; letter-spacing: -1px; }
  .factory-hero p { font-size: 17px; }
  .factory-hero .button { width: auto; padding: 14px 20px; font-size: 15px; }

  .credentials { padding: 24px 22px; }
  .credentials > div { justify-content: flex-start; gap: 12px 20px; flex-wrap: wrap; font-size: 11px; }
  .credentials i { display: none; }

  .target-section,
  .target-cta { padding: 64px 22px; }
  .target-heading { align-items: flex-start; flex-direction: column; margin-bottom: 36px; }
  .target-heading h2,
  .target-cta h2 { font-size: 38px; }
  .target-family-card > img { height: 260px; }
  .target-featured { padding-top: 0; }
  .target-featured__image { min-height: 280px; }
  .target-featured__body { padding: 40px 24px; }
  .target-featured__body h2 { font-size: 36px; }
  .target-specification { grid-template-columns: 1fr; gap: 48px; padding: 64px 22px; }
  .target-specification h2 { font-size: 38px; }
  .target-metrics > div { padding: 20px; }
  .target-metrics strong { font-size: 32px; }
  .target-projects { padding-top: 0; }
  .target-project-grid article { min-height: 320px; padding: 30px; }
  .target-project-grid h3 { font-size: 30px; }

  .page-hero { padding: 56px 22px; }
  .page-hero h1 { font-size: 48px; }
  .catalogue { padding: 36px 22px 64px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-backbar { padding: 20px 22px; }
  .product-detail { padding: 40px 22px 64px; }
  .product-gallery__main { height: 340px; min-height: 340px; }
  .product-detail h1 { font-size: 38px; }
  .related-products { padding: 0 22px 64px; }
  .related-grid { grid-template-columns: 1fr; }

  .about-hero__content { padding: 48px 22px; }
  .about-hero h1 { font-size: 42px; }
  .about-intro { gap: 40px; padding: 64px 22px; }
  .about-intro p.about-intro__lead { font-size: 26px; }
  .about-metrics { grid-template-columns: 1fr; gap: 36px; padding: 64px 22px; }
  .about-metrics strong { font-size: 50px; }
  .cta-section--light { padding: 64px 22px; }
  .cta-section--light h2 { font-size: 36px; }

  .contact-page-shell { padding: 64px 22px; }
  .contact-page { gap: 48px; }
  .contact-page h1 { font-size: 44px; }
  .contact-page__form { padding: 32px 22px; }
  .form-row { grid-template-columns: 1fr; }

  .site-footer { padding: 56px 22px 32px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
}
}
