:root {
  --ink: #060606;
  --text: #2e2e2e;
  --muted: #696969;
  --line: #e9e5dd;
  --paper: #fffdfa;
  --soft: #f7f4ee;
  --warm: #a99372;
  --green: #25d366;
  --radius: 28px;
}

* { box-sizing: border-box; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.header {
  height: 112px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
  width: min(1590px, calc(100% - 72px));
  margin: 0 auto;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 150px;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 19px;
  font-weight: 800;
}

.nav > a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 112px;
}

.nav a.active,
.nav-trigger.active,
.nav a:hover,
.nav-trigger:hover {
  color: var(--warm);
}

.nav-menu {
  position: relative;
}

.nav-trigger span {
  font-size: 15px;
  line-height: 1;
}

.dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 30;
  min-width: 270px;
  padding: 26px 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 26px 70px rgba(20,18,14,0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

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

.dropdown a {
  display: block;
  padding: 12px 36px;
  color: var(--ink);
  font-size: 27px;
  font-weight: 950;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.dropdown a:hover {
  color: var(--warm);
  background: #f7f4ee;
}

.btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 32px;
  font-size: 18px;
  font-weight: 900;
  border: 1px solid transparent;
}

.btn-dark { background: #050505; color: #fff; }
.btn-light { background: #fff; color: #111; border-color: #d8d4cc; }
.btn-green { background: var(--green); color: #fff; }

.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 58px;
  width: min(1590px, calc(100% - 72px));
  margin: 0 auto;
  padding: 80px 0 86px;
  background:
    radial-gradient(circle at 86% 24%, rgba(188, 221, 224, 0.5), transparent 27%),
    radial-gradient(circle at 16% 95%, rgba(169, 147, 114, 0.15), transparent 25%);
}

.hero-copy { max-width: 820px; }

h1, h2, h3, p { margin: 0; }

h1 {
  max-width: 780px;
  font-size: clamp(42px, 4.8vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 820px;
  margin-top: 34px;
  color: #343434;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
  letter-spacing: -0.02em;
}

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

.hero-media {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(34, 28, 20, 0.16);
  background: #eee7de;
}

.hero-media img {
  width: 100%;
  height: min(590px, 62vh);
  object-fit: cover;
}

.page-hero {
  width: min(1590px, calc(100% - 72px));
  min-height: calc(82vh - 112px);
  margin: 0 auto;
  padding: 76px 0 86px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
  background:
    radial-gradient(circle at 88% 18%, rgba(188, 221, 224, 0.48), transparent 28%),
    radial-gradient(circle at 10% 92%, rgba(169, 147, 114, 0.13), transparent 25%);
}

.page-hero-copy span,
.spa-intro span,
.factory-copy span {
  display: block;
  margin-bottom: 18px;
  color: var(--warm);
  font-size: 18px;
  font-weight: 950;
}

.page-hero-copy h1 {
  font-size: clamp(48px, 6vw, 90px);
}

.page-hero-copy p {
  max-width: 760px;
  margin-top: 28px;
  color: #343434;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.42;
  letter-spacing: -0.035em;
}

.page-hero-media {
  border-radius: 36px;
  overflow: hidden;
  background: #eee7de;
  box-shadow: 0 28px 80px rgba(34, 28, 20, 0.16);
}

.page-hero-media img {
  width: 100%;
  height: min(620px, 64vh);
  object-fit: cover;
}

.section {
  width: min(1590px, calc(100% - 72px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px 80px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head span {
  grid-column: 1 / -1;
  grid-row: 1;
}

.section-head h2,
.section-head h1 {
  grid-column: 1;
  grid-row: 2;
}

.section-head p {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
}

.section-head span,
.band span {
  display: block;
  margin-bottom: 16px;
  color: var(--warm);
  font-weight: 950;
}

.section-head h2,
.section-head h1,
.band h2,
.cta h2 {
  font-size: clamp(38px, 4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-head p,
.band p,
.cta p,
.card p,
.mini-card p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.cards,
.product-showcase {
  display: grid;
  gap: 22px;
}

.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.cards.six { grid-template-columns: repeat(3, 1fr); }
.product-showcase { grid-template-columns: repeat(3, 1fr); }

.model-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.card,
.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.product-card {
  min-height: 690px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 48px rgba(20, 18, 14, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(20, 18, 14, 0.12);
}

.card-img {
  min-height: 280px;
  background: linear-gradient(135deg, #eee7dc, #fbfaf7);
}

.card-img.spa { background: url("assets/product-spa.webp") center/cover; }
.card-img.bath { background: url("assets/product-bath.webp") center/cover; }
.card-img.shower { background: url("assets/product-shower.webp") center/cover; }

.product-card .card-img {
  min-height: 310px;
}

.card-body {
  padding: 28px;
}

.product-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 36px 36px;
}

.card h3,
.mini-card h3 {
  margin-bottom: 10px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.product-card h3 {
  margin-bottom: 14px;
  font-size: clamp(34px, 2.8vw, 46px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.product-card p {
  color: #4e4b47;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.card a {
  display: inline-block;
  margin-top: 22px;
  color: var(--warm);
  font-weight: 950;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f0eadc;
  color: #806f4d;
  font-size: 18px;
  font-weight: 850;
}

.card-cta {
  width: 100%;
  min-height: 66px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: auto !important;
  border-radius: 999px;
  background: #090909;
  color: #fff !important;
  font-size: 22px;
  font-weight: 950;
  transition: transform 0.2s ease, background 0.2s ease;
}

.card-cta:hover {
  transform: translateY(-1px);
  background: #24211d;
}

.card-cta span {
  font-size: 26px;
  line-height: 1;
}

.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 78px max(36px, calc((100vw - 1590px) / 2));
  background: #f3efe7;
}

.mini-card {
  padding: 30px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.model-card {
  grid-column: span 2;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(188, 221, 224, 0.25), transparent 34%),
    #fff;
  box-shadow: 0 18px 48px rgba(20, 18, 14, 0.05);
}

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

.model-card.featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(169, 147, 114, 0.26), transparent 34%),
    #0a0a0a;
  color: #fff;
}

.model-card span {
  order: -1;
  display: block;
  margin-bottom: auto;
  color: var(--warm);
  font-size: 18px;
  font-weight: 950;
}

.model-card.featured span,
.model-card.featured p {
  color: rgba(255,255,255,0.72);
}

.model-card h3 {
  margin: 50px 0 14px;
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.model-card p {
  color: #5c5852;
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.spa-intro,
.factory-section {
  width: min(1590px, calc(100% - 72px));
  margin: 0 auto 92px;
  border-radius: 34px;
}

.spa-intro {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 58px;
  align-items: center;
  padding: 62px;
  background: #f3efe7;
}

.spa-intro h2,
.factory-copy h2 {
  font-size: clamp(40px, 4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.spa-intro p,
.factory-copy p {
  color: #5c5852;
  font-size: 23px;
  line-height: 1.52;
  letter-spacing: -0.025em;
}

.factory-section {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 28px;
  align-items: stretch;
}

.factory-copy,
.factory-facts {
  border-radius: 34px;
  padding: 58px;
}

.factory-copy {
  background: #fff;
  border: 1px solid var(--line);
}

.factory-facts {
  display: grid;
  gap: 16px;
  background: #0a0a0a;
  color: #fff;
}

.factory-facts div {
  display: grid;
  gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.factory-facts div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.factory-facts strong {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.factory-facts span {
  color: rgba(255,255,255,0.72);
  font-size: 20px;
  font-weight: 800;
}

.trust-strip {
  width: min(1590px, calc(100% - 72px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-strip span {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #34312d;
  font-size: 18px;
  font-weight: 950;
}

.split-section {
  width: min(1590px, calc(100% - 72px));
  margin: 0 auto 92px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.split-copy,
.split-list {
  border-radius: 32px;
  padding: 54px;
}

.split-copy {
  background: #fff;
  border: 1px solid var(--line);
}

.split-copy span {
  display: block;
  margin-bottom: 16px;
  color: var(--warm);
  font-weight: 950;
}

.split-copy h2 {
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.split-copy p {
  max-width: 780px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.split-list {
  display: grid;
  gap: 18px;
  background: #090909;
  color: #fff;
}

.split-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.split-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.split-list strong {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #090909;
  font-size: 22px;
}

.split-list p {
  color: rgba(255,255,255,0.78);
  font-size: 22px;
  line-height: 1.45;
}

.cta {
  width: min(1590px, calc(100% - 72px));
  margin: 0 auto 92px;
  padding: 64px;
  border-radius: 32px;
  background: #080808;
  color: #fff;
}

.cta p {
  max-width: 760px;
  margin: 18px 0 28px;
  color: rgba(255,255,255,0.72);
}

.float-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 0 34px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.32);
}

/* ── Button hover ───────────────────────────────────────── */
.btn {
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-dark:hover  { background: #2a2a2a; transform: translateY(-2px); }
.btn-light:hover { background: #f0ece4; transform: translateY(-2px); }
.btn-green:hover { background: #1ab553; transform: translateY(-2px); }

/* ── Scroll reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: #080808;
  color: #fff;
  margin-top: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  width: min(1590px, calc(100% - 72px));
  margin: 0 auto;
  padding: 72px 0 56px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 360px;
}
.footer-logo img {
  width: 130px;
  filter: brightness(0) invert(1);
}
.footer-brand > p {
  color: rgba(255,255,255,0.55);
  font-size: 17px;
  line-height: 1.65;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 6px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer-col a {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  font-weight: 700;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px max(36px, calc((100vw - 1590px) / 2 + 36px));
}
.footer-bottom span {
  color: rgba(255,255,255,0.32);
  font-size: 14px;
}

/* ── Trust strip icons ──────────────────────────────────── */
.trust-strip span { gap: 10px; }

/* ── Bath family cards ──────────────────────────────────── */
.bath-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.bath-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.bath-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 56px rgba(20,18,14,0.10);
}

.bath-img {
  height: 220px;
  background: linear-gradient(135deg, #eee7dc 0%, #f7f4ee 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.bath-img-placeholder {
  color: #c8b99a;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.bath-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bath-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #090909;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.bath-card h3 {
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.05em;
  margin-bottom: 8px;
  line-height: 1.1;
}

.bath-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.bath-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.bath-sizes span {
  padding: 5px 10px;
  border: 1px solid #ddd9d0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #5a534a;
  font-family: ui-monospace, monospace;
}

.bath-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 950;
  color: var(--warm);
  transition: gap 0.18s ease;
}

.bath-cta:hover { gap: 14px; }

/* ── Solution cards ─────────────────────────────────────── */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}

.solution-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(20,18,14,0.10);
}

.solution-card.dark {
  background: #080808;
  color: #fff;
  border-color: transparent;
}

.solution-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--warm);
}

.solution-card.dark .solution-tag { color: rgba(255,255,255,0.45); }

.solution-card h3 {
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.solution-card > p {
  font-size: 17px;
  line-height: 1.62;
  color: var(--muted);
  margin-bottom: 28px;
}

.solution-card.dark > p { color: rgba(255,255,255,0.58); }

.solution-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solution-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #3a3733;
}

.solution-card.dark .solution-benefits li { color: rgba(255,255,255,0.76); }

.solution-benefits li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0eadc;
  color: #806f4d;
  font-size: 11px;
  font-weight: 950;
  margin-top: 1px;
}

.solution-card.dark .solution-benefits li::before {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
}

.solution-footer {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.solution-card.dark .solution-footer { border-color: rgba(255,255,255,0.1); }

.solution-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.solution-products span,
.solution-products a {
  font-size: 13px;
  font-weight: 850;
  padding: 5px 14px;
  border-radius: 999px;
  background: #f0eadc;
  color: #806f4d;
  transition: background 0.16s ease, color 0.16s ease;
}

.solution-products a:hover {
  background: var(--warm);
  color: #fff;
}

.solution-card.dark .solution-products span,
.solution-card.dark .solution-products a {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
}

.solution-card.dark .solution-products a:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}

@media (max-width: 980px) {
  .header {
    height: auto;
    grid-template-columns: 1fr;
    padding: 22px 0;
  }

  .nav {
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .nav > a,
  .nav-trigger {
    min-height: auto;
  }

  .dropdown {
    display: none;
  }

  .hero,
  .page-hero,
  .section-head,
  .band,
  .spa-intro,
  .factory-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .cards.three,
  .cards.four,
  .cards.six,
  .product-showcase,
  .model-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

  h1 {
    font-size: clamp(48px, 15vw, 76px);
  }
}

.page-intro {
  width: min(1590px, calc(100% - 72px));
  margin: 0 auto;
  padding: 72px 0 0;
}
.page-intro span {
  display: block;
  margin-bottom: 16px;
  color: var(--warm);
  font-size: 18px;
  font-weight: 950;
}
.page-intro h1 {
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  max-width: 800px;
}

@media (max-width: 620px) {
  .header,
  .hero,
  .page-hero,
  .section,
  .cta,
  .split-section,
  .spa-intro,
  .factory-section,
  .trust-strip {
    width: min(100% - 28px, 1590px);
  }

  .nav { gap: 18px; font-size: 16px; }
  .logo { width: 132px; }
  .btn { min-height: 52px; padding: 0 24px; font-size: 16px; }
  .hero-copy p { font-size: 20px; }
  .product-card { min-height: auto; }
  .product-card .card-img { min-height: 240px; }
  .product-card .card-body { padding: 28px 24px; }
  .product-card p { font-size: 21px; }
  .chips span { font-size: 16px; }
  .card-cta { font-size: 19px; }
  .cta { padding: 36px 24px; }
  .spa-intro,
  .factory-copy,
  .factory-facts { padding: 34px 24px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip span { min-height: 58px; font-size: 16px; }
  .split-copy,
  .split-list { padding: 34px 24px; }
  .float-wa { min-height: 58px; padding: 0 24px; font-size: 18px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .bath-grid { grid-template-columns: 1fr; }
}

/* ── Contacto: layout + formulario ──────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-item strong {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm);
}

.contact-item a,
.contact-item span {
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.contact-item a:hover { color: var(--ink); }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 38px;
  background: var(--soft);
  border-radius: var(--radius);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.contact-form label span { color: var(--warm); }

.contact-form label:nth-child(4),
.contact-form label:nth-child(5),
.contact-form > button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  font-weight: 400;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form textarea { resize: vertical; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--warm);
  box-shadow: 0 0 0 3px rgba(169, 147, 114, 0.16);
}

.contact-form button {
  justify-self: start;
  margin-top: 6px;
  cursor: pointer;
  border: none;
}

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 34px; }
  .contact-form { grid-template-columns: 1fr; padding: 26px; }
  .contact-form label:nth-child(4),
  .contact-form label:nth-child(5) { grid-column: auto; }
}

/* ── Mensaje de estado del formulario ───────────────────── */
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.form-status:empty { display: none; }
.form-status.ok {
  padding: 16px 18px;
  color: #0d7a3e;
  background: #e7f7ee;
  border: 1px solid #b9e6cd;
  border-radius: 14px;
}
.form-status.error {
  padding: 16px 18px;
  color: #a3261d;
  background: #fdecea;
  border: 1px solid #f3c4bd;
  border-radius: 14px;
}

/* ── Breadcrumbs (migas de pan) ─────────────────────────── */
.breadcrumb {
  width: min(1590px, calc(100% - 72px));
  margin: 0 auto;
  padding: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.breadcrumb a { color: var(--muted); transition: color 0.16s ease; }
.breadcrumb a:hover { color: var(--warm); }
.breadcrumb .sep { color: #c7bfb0; font-weight: 400; }
.breadcrumb [aria-current="page"] { color: var(--ink); }

@media (max-width: 980px) {
  .breadcrumb { padding-top: 16px; font-size: 13px; }
}
