@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Montserrat:wght@300;400;500&display=swap');

:root {
  --cream: #F5F0EB;
  --sand: #E8E0D5;
  --stone: #D4C9BC;
  --warm-white: #FAF9F6;
  --charcoal: #1A1A1A;
  --dark-stone: #2C2C2C;
  --slate: #3D3D3D;
  --brass: #B8956A;
  --brass-light: #C5A07D;
  --text-muted: #8A8279;
  --text-light: #C8C0B6;
  --radius-large: 2rem;
  --radius-medium: 1.25rem;
  --radius-small: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  touch-action: manipulation;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

/* ── Agent portal ── */

.agent-login-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(ellipse 55% 45% at 50% 28%, rgba(184, 149, 106, 0.12), transparent 75%),
    var(--warm-white);
}

.agent-login {
  width: min(100%, 29rem);
  padding: clamp(2.25rem, 7vw, 4.5rem);
  text-align: center;
  background: rgba(250, 249, 246, 0.84);
  border: 1px solid var(--sand);
}

.agent-login__brand,
.agent-header__brand {
  display: inline-block;
  line-height: 0;
}

.agent-login__brand img {
  width: min(100%, 14rem);
  height: auto;
}

.agent-login h1,
.agent-portal h1,
.resource-section h2,
.resource-card h3,
.agent-ai h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}

.agent-login h1 {
  margin: 1rem 0 0.5rem;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
}

.agent-login__intro,
.agent-login__help {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.agent-login__form {
  display: grid;
  gap: 0.6rem;
  margin-top: 2.25rem;
  text-align: left;
}

.agent-login__form[hidden] {
  display: none;
}

.agent-login__form label {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agent-login__form input {
  width: 100%;
  margin-bottom: 0.9rem;
  padding: 0.8rem 0;
  color: var(--charcoal);
  font: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--stone);
  outline: 0;
}

.agent-login__form input:focus {
  border-color: var(--brass);
}

.agent-login__form .button {
  width: 100%;
  margin-top: 0.35rem;
}

.agent-login__form .button:disabled,
.agent-logout:disabled {
  cursor: wait;
  opacity: 0.65;
}

.agent-login__message {
  min-height: 1.4rem;
  margin: 0;
  color: #9b3e36;
  font-size: 0.75rem;
  text-align: center;
}

.agent-login__help {
  margin: 2.25rem 0 0;
}

.agent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4%;
  border-bottom: 1px solid var(--sand);
  background: var(--warm-white);
}

.agent-header__brand img {
  width: 8.5rem;
  height: auto;
}

.agent-header__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.agent-header__email,
.agent-logout {
  color: var(--text-muted);
  font: inherit;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.agent-logout {
  padding: 0;
  cursor: pointer;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--brass);
}

.agent-portal {
  width: min(100%, 80rem);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) 4%;
}

.agent-portal__intro {
  max-width: 48rem;
  margin-bottom: 4rem;
}

.agent-portal__lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.65fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: 4rem;
}

.agent-portal__lead .agent-portal__intro {
  margin-bottom: 0;
}

.assistant-launch {
  display: flex;
  flex-direction: column;
  min-height: 19rem;
  padding: 2rem;
  color: var(--warm-white);
  text-decoration: none;
  background: var(--dark-stone);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.assistant-launch:hover {
  background: var(--slate);
  transform: translateY(-0.25rem);
}

.assistant-launch__status {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #8ee2b6;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.assistant-launch__status i {
  width: 0.45rem;
  height: 0.45rem;
  background: #2bb673;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.5);
  animation: assistant-pulse 2.2s infinite;
}

.assistant-launch strong {
  margin-top: auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 0.9;
}

.assistant-launch > span:not(.assistant-launch__status) {
  margin-top: 1rem;
  color: var(--text-light);
  font-size: 0.75rem;
}

.assistant-launch b {
  margin-top: 1.5rem;
  color: var(--brass-light);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.assistant-launch b span {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 1rem;
  vertical-align: -0.08rem;
}

.agent-portal h1 {
  max-width: 15ch;
  margin: 0.8rem 0 1rem;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.95;
}

.agent-portal__intro p {
  max-width: 44rem;
  color: var(--text-muted);
}

.agent-quick-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--stone);
}

.agent-quick-nav a {
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.agent-quick-nav a:hover {
  color: var(--brass);
}

.resource-section {
  padding: 0 0 5rem;
}

.resource-section__heading {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.resource-section h2,
.agent-ai h2 {
  margin: 0.75rem 0 0.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.resource-section__heading p,
.agent-ai p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
}

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

.resource-card {
  display: flex;
  flex-direction: column;
  min-height: 16.5rem;
  padding: 1.75rem;
  background: var(--warm-white);
}

.resource-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.05;
}

.resource-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.resource-card span {
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--brass);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.resource-card button,
.resource-card__download {
  align-self: flex-start;
  margin-top: 0.8rem;
  padding: 0;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--stone);
}

.resource-card button:disabled {
  cursor: not-allowed;
}

.agent-ai {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--dark-stone);
  color: var(--warm-white);
}

.agent-ai__intro {
  max-width: 38rem;
}

.agent-assistant-page {
  min-height: 100vh;
  color: #202124;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
}

.assistant-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  font-size: 0.8rem;
  border-bottom: 1px solid #f0f0f0;
}

.assistant-topbar__back,
.assistant-topbar__account button {
  color: #5f6368;
  font: inherit;
  text-decoration: none;
  background: transparent;
  border: 0;
}

.assistant-topbar__account {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #80868b;
}

.assistant-topbar__account button {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.assistant-workspace {
  display: grid;
  min-height: calc(100vh - 4rem);
  place-items: center;
  width: min(100%, 60rem);
  margin: 0 auto;
  padding: 2rem 1.25rem 5rem;
}

.assistant-conversation {
  width: min(100%, 44rem);
}

.assistant-conversation__intro {
  margin-bottom: 2rem;
  text-align: center;
}

.assistant-conversation__intro h1 {
  margin: 0.7rem 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.assistant-conversation__intro p {
  margin: 0;
  color: #6e747a;
  font-size: 0.9rem;
}

.assistant-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #387a55;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.assistant-live i {
  width: 0.45rem;
  height: 0.45rem;
  background: #2bb673;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.5);
  animation: assistant-pulse 2.2s infinite;
}

@keyframes assistant-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.5); }
  50% { box-shadow: 0 0 0 0.45rem rgba(43, 182, 115, 0); }
}

.agent-chat {
  min-width: 0;
}

.agent-chat__messages {
  display: grid;
  gap: 0.75rem;
  max-height: 23rem;
  padding: 0.25rem 0.25rem 1rem;
  overflow-y: auto;
}

.agent-chat__message {
  width: fit-content;
  max-width: 90%;
  padding: 0.85rem 1rem;
  background: rgba(250, 249, 246, 0.1);
}

.agent-chat__message--agent {
  justify-self: end;
  color: var(--charcoal);
  background: var(--brass);
}

.agent-chat__message span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--brass-light);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agent-chat__message--agent span {
  color: var(--slate);
}

.agent-chat__message p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
}

.agent-chat__sources {
  display: grid;
  gap: 0.25rem;
  margin: 0.8rem 0 0;
  padding: 0.75rem 0 0;
  color: var(--text-light);
  font-size: 0.58rem;
  line-height: 1.4;
  list-style: none;
  border-top: 1px solid rgba(250, 249, 246, 0.18);
}

.agent-chat__message--agent .agent-chat__sources {
  color: var(--slate);
  border-color: rgba(26, 26, 26, 0.2);
}

.agent-chat__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: end;
}

.agent-chat__form textarea {
  min-height: 3.1rem;
  resize: vertical;
  padding: 0.8rem;
  color: var(--warm-white);
  font: inherit;
  font-size: 0.75rem;
  line-height: 1.4;
  background: rgba(250, 249, 246, 0.08);
  border: 1px solid rgba(250, 249, 246, 0.28);
  outline: 0;
}

.agent-chat__form textarea:focus {
  border-color: var(--brass);
}

.agent-chat__form textarea::placeholder {
  color: var(--text-light);
}

.agent-chat__form .button {
  padding: 0.8rem 1.25rem;
}

.agent-chat__status {
  min-height: 1.3rem;
  margin: 0.6rem 0 0;
  color: var(--brass-light);
  font-size: 0.65rem;
}

.agent-chat--light .agent-chat__messages {
  max-height: 32rem;
}

.agent-chat--light .agent-chat__messages:empty {
  display: none;
}

.agent-chat--light .agent-chat__message {
  background: #f0f0ee;
}

.agent-chat--light .agent-chat__message--agent {
  color: var(--warm-white);
  background: var(--charcoal);
}

.agent-chat--light .agent-chat__message span {
  color: #257c50;
}

.agent-chat--light .agent-chat__message--agent span {
  color: var(--text-light);
}

.agent-chat--light .agent-chat__sources {
  color: var(--text-muted);
  border-color: var(--stone);
}

.agent-chat--light .agent-chat__form textarea {
  display: block;
  width: 100%;
  min-height: 4rem;
  padding: 1.2rem 5.5rem 1.1rem 1.25rem;
  color: #202124;
  font-size: 0.9rem;
  background: #fff;
  border: 1px solid #e0e2e5;
  border-radius: 1.5rem;
  box-shadow: 0 4px 18px rgba(32, 33, 36, 0.08);
}

.agent-chat--light .agent-chat__form textarea::placeholder {
  color: #9aa0a6;
}

.agent-chat--light .agent-chat__form {
  position: relative;
  display: block;
}

.agent-chat--light .agent-chat__form .button {
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
  min-width: 4rem;
  padding: 0.65rem 0.8rem;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  background: #202124;
  border-color: #202124;
}

.quick-lookup {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: #f7f7f6;
  border: 1px solid #ececea;
  border-radius: 1rem;
}

.quick-lookup__heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.quick-lookup__heading span,
.quick-lookup label > span {
  display: block;
  color: #42464b;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.quick-lookup__heading p {
  margin: 0.3rem 0 0;
  color: #777d83;
  font-size: 0.72rem;
}

.quick-lookup__heading button {
  flex: none;
  padding: 0.6rem 0.8rem;
  color: #fff;
  font: inherit;
  font-size: 0.66rem;
  background: #202124;
  border: 1px solid #202124;
  border-radius: 0.5rem;
  cursor: pointer;
}

.quick-lookup__heading button span {
  display: inline;
  margin-left: 0.3rem;
  color: inherit;
}

.quick-lookup__fields {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.quick-lookup label {
  min-width: 0;
}

.quick-lookup label > span {
  margin-bottom: 0.35rem;
}

.quick-lookup select,
.quick-lookup input {
  width: 100%;
  min-height: 2.5rem;
  padding: 0 0.55rem;
  color: #202124;
  font: inherit;
  font-size: 0.72rem;
  background: #fff;
  border: 1px solid #dcdfe2;
  border-radius: 0.5rem;
}

.agent-chat__table {
  margin-top: 1rem;
}

.agent-chat__table h3 {
  margin: 0 0 0.5rem;
  color: #42464b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
}

.agent-chat__table-scroll {
  overflow-x: auto;
  border: 1px solid #e0e2e5;
  border-radius: 0.6rem;
}

.agent-chat__table table {
  width: 100%;
  min-width: 38rem;
  border-collapse: collapse;
  font-size: 0.68rem;
  text-align: left;
}

.agent-chat__table th,
.agent-chat__table td {
  padding: 0.7rem;
  vertical-align: top;
  border-bottom: 1px solid #e9eaeb;
}

.agent-chat__table th {
  color: #666d73;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #f7f7f6;
}

.agent-chat__table tbody tr:last-child td {
  border-bottom: 0;
}

.agent-chat--light .agent-chat__status {
  color: #257c50;
}

.quotation-workspace {
  width: min(100% - 2rem, 66rem);
  margin: 0 auto;
  padding: 5.5rem 0 4rem;
}

.quotation-builder {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: #fff;
  border: 1px solid #e8e9e8;
  border-radius: 1.25rem;
  box-shadow: 0 16px 45px rgba(32, 33, 36, 0.06);
}

.quotation-builder__intro {
  max-width: 43rem;
  margin-bottom: 2.5rem;
}

.quotation-builder__intro > span,
.quotation-form legend,
.quotation-form label > span {
  color: #4d5358;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quotation-builder__intro h1 {
  max-width: 38rem;
  margin: 0.65rem 0 0;
  color: #202124;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.quotation-builder__intro p {
  max-width: 39rem;
  margin: 1rem 0 0;
  color: #666d73;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
}

.quotation-form {
  display: grid;
  gap: 1.5rem;
}

.quotation-form fieldset {
  display: grid;
  gap: 1rem;
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid #e4e6e7;
  border-radius: 0.85rem;
}

.quotation-form legend {
  padding: 0 0.35rem;
}

.quotation-form__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quotation-form label > span {
  display: block;
  margin-bottom: 0.45rem;
}

.quotation-form input,
.quotation-form select {
  width: 100%;
  min-height: 2.8rem;
  padding: 0 0.75rem;
  color: #202124;
  font: 0.82rem Arial, Helvetica, sans-serif;
  background: #fff;
  border: 1px solid #dadddf;
  border-radius: 0.45rem;
}

.quotation-form__summary {
  padding: 1rem 1.15rem;
  color: #1d5b3d;
  font: 0.78rem/1.5 Arial, Helvetica, sans-serif;
  background: #eef7f1;
  border-radius: 0.6rem;
}

.quotation-form__submit {
  justify-self: start;
  padding: 0.9rem 1.1rem;
  color: #fff;
  font: 0.75rem Arial, Helvetica, sans-serif;
  background: #202124;
  border: 1px solid #202124;
  border-radius: 0.5rem;
  cursor: pointer;
}

.quotation-form__submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

.quotation-form__submit span {
  margin-left: 0.4rem;
}

.quotation-form__status {
  min-height: 1.25rem;
  margin: -0.5rem 0 0;
  color: #257c50;
  font: 0.75rem Arial, Helvetica, sans-serif;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 850px) {
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agent-portal__lead {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .agent-header__email {
    display: none;
  }

  .agent-quick-nav {
    gap: 0.9rem;
    margin-bottom: 3.5rem;
  }

  .resource-grid,
  .resource-grid--two {
    grid-template-columns: 1fr;
  }

  .resource-section {
    padding-bottom: 3.5rem;
  }

  .agent-ai {
    grid-template-columns: 1fr;
  }

  .assistant-hero {
    grid-template-columns: 1fr;
  }

  .agent-back {
    display: none;
  }

  .agent-chat__form {
    grid-template-columns: 1fr;
  }

  .quick-lookup__heading {
    display: block;
  }

  .quick-lookup__heading button {
    margin-top: 0.8rem;
  }

  .quick-lookup__fields {
    grid-template-columns: 1fr;
  }

  .quotation-workspace {
    width: min(100% - 1rem, 66rem);
    padding-top: 4rem;
  }

  .quotation-builder {
    padding: 1.25rem;
  }

  .quotation-form__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Header ── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3.3%;
  background: linear-gradient(180deg, rgba(250, 249, 246, 0.95) 0%, rgba(250, 249, 246, 0) 100%);
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.site-logo img {
  height: 1.65rem;
  width: auto;
  display: block;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--brass);
}

@media (max-width: 900px) {
  .site-nav {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-nav a {
    font-size: 0.55rem;
  }
}

/* ── Home hero ── */

.hero-home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 60%, var(--sand) 100%);
  position: relative;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(184, 149, 106, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(212, 201, 188, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.hero-brand {
  margin: 0;
  position: relative;
  line-height: 0;
}

.hero-logo {
  height: clamp(7rem, 20vw, 13rem);
  width: auto;
  display: block;
  margin: 0 auto;
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  margin: 1.5rem 0 0;
  letter-spacing: 0.06em;
  position: relative;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
}

/* ── Product pages ── */

.product-hero {
  text-align: center;
  padding: 10rem 3.3% 4rem;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.product-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin: 0.75rem 0 0.5rem;
  letter-spacing: 0.04em;
}

.product-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--brass);
  margin: 0 0 1.5rem;
}

.product-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.8;
}

.dev-notice {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--charcoal);
  background: rgba(184, 149, 106, 0.18);
  border: 2px solid var(--brass);
  border-radius: var(--radius-small);
  padding: 0.75rem 2rem;
  margin: 0 0 1.75rem;
  box-shadow: 0 4px 16px rgba(184, 149, 106, 0.15);
}

.content-section .button {
  margin-top: 1rem;
}

.gallery_cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── Buttons ── */

.button {
  gap: 0.75rem;
  border: 1px solid var(--brass);
  color: var(--charcoal);
  background-color: var(--brass);
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  padding: 0.85rem 2rem;
  font-size: 0.7rem;
  font-weight: 400;
  font-family: inherit;
  text-decoration: none;
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  display: inline-flex;
}

.button.is-accent.is-secondary {
  color: var(--charcoal);
  background-color: transparent;
}

.button.is-accent.is-secondary:hover {
  background-color: var(--brass);
  color: var(--charcoal);
}

.button.is-accent:not(.is-secondary):hover {
  background-color: transparent;
  color: var(--charcoal);
}

.button-arrow {
  transition: transform 0.3s ease;
}

.button:hover .button-arrow {
  transform: translateX(4px);
}

/* ── Content sections ── */

.content-section {
  padding: 6rem 3.3%;
}

.section-inner {
  max-width: 75rem;
  margin: 0 auto;
}

.section-inner--narrow {
  max-width: 36rem;
}

.section-inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

@media (max-width: 768px) {
  .section-inner--split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0.75rem 0 1.5rem;
  letter-spacing: 0.02em;
}

.section-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.8;
  margin: 0 0 2rem;
}

.section-dark {
  background: var(--charcoal);
  color: var(--warm-white);
}

.section-dark .section-lead,
.section-dark .card-text {
  color: var(--text-light);
}

.section-technology,
.section-production {
  background: var(--warm-white);
  text-align: center;
}

.section-technology .section-inner--split {
  text-align: left;
}

.section-technology .section-lead,
.section-production .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.section-technology .section-inner--split .section-lead {
  margin-left: 0;
  margin-right: 0;
}

.section-innovation {
  background: var(--warm-white);
  text-align: center;
}

.section-innovation .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.section-collaboration {
  background: var(--cream);
  text-align: center;
}

.section-collaboration .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.section-foundation,
.section-product {
  background: var(--cream);
  text-align: center;
}

.section-product .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ── Cards ── */

.cards-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

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

.cards-grid--shower {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.cards-grid--shower .card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
  padding: 1.5rem;
}

.cards-grid--shower .card-title {
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .cards-grid--3 {
    grid-template-columns: 1fr;
  }
}

.card {
  padding: 2rem;
  border-radius: var(--radius-medium);
  background: var(--warm-white);
  border: 1px solid rgba(184, 149, 106, 0.15);
}

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.card-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ── Features grid ── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 1.75rem;
  border-radius: var(--radius-small);
  background: var(--dark-stone);
  border: 1px solid rgba(184, 149, 106, 0.12);
}

.feature-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
  color: var(--warm-white);
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.feature-tag {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ── Comparison table ── */

.table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(184, 149, 106, 0.2);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  background: var(--warm-white);
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(184, 149, 106, 0.12);
}

.compare-table th {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--cream);
}

.compare-table td.highlight,
.compare-table th.highlight {
  background: rgba(184, 149, 106, 0.08);
  color: var(--charcoal);
  font-weight: 500;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.table-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  max-width: 90ch;
}

/* ── Performance comparison table (countertops) ── */

.section-comparison {
  background: var(--warm-white);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.comparison-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.comparison-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.comparison-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.patent-badge {
  flex-shrink: 0;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: #c0392b;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}

.table-wrap--comparison {
  border: 1px solid rgba(184, 149, 106, 0.2);
  border-radius: var(--radius-medium);
  box-shadow: 0 4px 24px rgba(26, 26, 26, 0.06);
}

.performance-table {
  width: 100%;
  min-width: 56rem;
  border-collapse: collapse;
  font-size: 0.78rem;
  background: var(--warm-white);
}

.performance-table th,
.performance-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(184, 149, 106, 0.1);
  line-height: 1.5;
}

.performance-table thead th {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--cream);
  border-bottom: 2px solid rgba(184, 149, 106, 0.15);
}

.performance-table tbody tr:nth-child(even) td {
  background: rgba(245, 240, 235, 0.4);
}

.performance-table tbody tr:nth-child(even) td.col-quariom {
  background: rgba(184, 149, 106, 0.1);
}

.performance-table tbody tr:last-child td {
  border-bottom: none;
}

.performance-table .col-attribute {
  font-weight: 500;
  color: var(--charcoal);
  min-width: 11rem;
  background: var(--cream);
}

.performance-table .col-quariom {
  background: rgba(184, 149, 106, 0.06);
  border-left: 3px solid var(--brass);
  border-right: 3px solid var(--brass);
  font-weight: 500;
}

.performance-table thead .col-quariom {
  background: rgba(184, 149, 106, 0.15);
  color: var(--charcoal);
  border-top: 3px solid var(--brass);
}

.performance-table .th-sub {
  display: block;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
  text-transform: none;
}

.rating {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.rating::before {
  content: "";
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  margin-top: 0.35rem;
}

.rating--very-good::before {
  background: #2d6a4f;
}

.rating--good::before {
  background: #74c69d;
}

.rating--medium::before {
  background: #e9a319;
}

.rating--low::before {
  background: #c0392b;
}

@media (max-width: 768px) {
  .comparison-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Certifications ── */

.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 992px) {
  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .certs-grid {
    grid-template-columns: 1fr;
  }
}

.cert-card {
  padding: 1.75rem;
  border-radius: var(--radius-small);
  background: var(--dark-stone);
  border: 1px solid rgba(184, 149, 106, 0.12);
}

.cert-source {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
}

.cert-value {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 0.75rem;
}

.cert-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ── Contact form ── */

.section-contact {
  background: var(--sand);
  text-align: center;
  padding-top: 3rem;
}

.section-contact .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  text-align: left;
}

.contact-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(184, 149, 106, 0.3);
  border-radius: var(--radius-small);
  background: var(--warm-white);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--charcoal);
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brass);
}

.contact-form textarea {
  resize: vertical;
  min-height: 6rem;
}

.contact-form .button {
  align-self: center;
  margin-top: 0.5rem;
  border: none;
}

.sample-box {
  margin: 3.5rem auto 0;
  max-width: 28rem;
  border-radius: var(--radius-medium);
  overflow: hidden;
  border: 1px solid rgba(184, 149, 106, 0.2);
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.1);
  background: var(--charcoal);
}

.sample-box img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.sample-box figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.25rem 1.5rem;
  background: var(--charcoal);
  border-top: 1px solid rgba(184, 149, 106, 0.2);
}

.sample-box-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--warm-white);
  letter-spacing: 0.04em;
}

.sample-box-text {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-light);
}

/* ── Gallery ── */

.gallery {
  padding: 6rem 3.3%;
  background: var(--cream);
}

.gallery_inner {
  max-width: 75rem;
  margin: 0 auto;
}

.gallery_title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  text-align: center;
  margin: 0;
  letter-spacing: 0.08em;
  color: var(--charcoal);
}

.gallery_subtitle {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--text-muted);
  margin: 0.75rem 0 3rem;
  font-size: 1.1rem;
}

.gallery_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 992px) {
  .gallery_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery_grid {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 768px) {
  .gallery_grid--3 {
    grid-template-columns: 1fr;
  }
}

.gallery_item {
  margin: 0;
  border-radius: var(--radius-small);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
}

.gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery_item:hover img {
  transform: scale(1.04);
}

.gallery_item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.65));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery_item:hover figcaption {
  opacity: 1;
}

.gallery_featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.gallery_featured_title {
  grid-column: 1 / -1;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  text-align: center;
  margin: 0;
  letter-spacing: 0.08em;
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .gallery_featured {
    grid-template-columns: 1fr;
  }
}

.gallery_featured_item {
  margin: 0;
  border-radius: var(--radius-medium);
  overflow: hidden;
  border: 1px solid rgba(184, 149, 106, 0.2);
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.08);
  background: var(--warm-white);
}

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

.gallery_featured_item figcaption {
  padding: 1.25rem 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  background: var(--warm-white);
  text-align: center;
  border-top: 1px solid rgba(184, 149, 106, 0.15);
}

/* ── Footer ── */

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 3.3%;
  background: var(--charcoal);
  color: var(--text-light);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.footer-logo {
  height: 2.25rem;
  width: auto;
  display: block;
  filter: brightness(1.6);
}

@media (max-width: 576px) {
  .footer {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ── Wall panels page ── */

.wp-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}

.wp-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 26, 26, 0.55) 100%);
}

.wp-hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 3.3% 3rem;
  max-width: 40rem;
}

.wp-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--warm-white);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.wp-hero-lead {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

.section-usp {
  background: var(--charcoal);
  color: var(--warm-white);
  text-align: center;
}

.section-usp .section-lead {
  color: var(--text-light);
  margin-left: auto;
  margin-right: auto;
}

.usp-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.usp-links a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(197, 160, 125, 0.4);
  padding-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.usp-links a:hover {
  color: var(--warm-white);
}

.section-intro {
  background: var(--warm-white);
}

.wp-split {
  align-items: center;
}

.wp-image-stack {
  display: grid;
  gap: 1rem;
}

.wp-image-stack img,
.wp-side-img {
  width: 100%;
  border-radius: var(--radius-small);
  display: block;
}

.wp-side-img {
  border-radius: var(--radius-medium);
}

.section-benefits {
  background: var(--cream);
  text-align: center;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 2rem auto 0;
  max-width: 36rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  text-align: left;
}

.benefits-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brass);
}

@media (max-width: 576px) {
  .benefits-list {
    grid-template-columns: 1fr;
  }
}

.section-features {
  background: var(--warm-white);
}

.wp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (max-width: 992px) {
  .wp-features-grid {
    grid-template-columns: 1fr;
  }
}

.wp-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-small);
  margin-bottom: 1.25rem;
}

.wp-feature h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.wp-feature p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.layers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 992px) {
  .layers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .layers-grid {
    grid-template-columns: 1fr;
  }
}

.layer-card {
  padding: 1.75rem;
  border-radius: var(--radius-small);
  background: var(--dark-stone);
  border: 1px solid rgba(184, 149, 106, 0.12);
}

.layer-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--brass);
  display: block;
  margin-bottom: 0.75rem;
}

.layer-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--warm-white);
  margin: 0 0 0.75rem;
}

.layer-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.section-sizes {
  background: var(--cream);
}

.sizes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .sizes-grid {
    grid-template-columns: 1fr;
  }
}

.size-card {
  padding: 2rem;
  border-radius: var(--radius-medium);
  background: var(--warm-white);
  border: 1px solid rgba(184, 149, 106, 0.15);
}

.size-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.size-dim {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brass);
  margin: 0 0 0.5rem;
}

.size-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  line-height: 1.6;
}

.tech-table {
  min-width: 48rem;
  font-size: 0.75rem;
}

.section-install {
  background: var(--warm-white);
}

.wp-subheading {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin: 2rem 0 1rem;
}

.wp-checklist {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.wp-checklist li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.wp-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brass);
  font-weight: 500;
}

.wetroom-steps {
  margin: 2rem 0 0;
  padding-left: 1.25rem;
  max-width: 52ch;
}

.wetroom-steps li {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.trims-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .trims-grid {
    grid-template-columns: 1fr;
  }
}

.trim-card {
  padding: 2rem;
  border-radius: var(--radius-medium);
  background: var(--warm-white);
  border: 1px solid rgba(184, 149, 106, 0.15);
  text-align: center;
}

.trim-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.trim-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 992px) {
  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .applications-grid {
    grid-template-columns: 1fr;
  }
}

.app-card {
  position: relative;
  border-radius: var(--radius-small);
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 3 / 4;
  display: block;
}

.app-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.app-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.7));
}

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

.commercial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 992px) {
  .commercial-grid {
    grid-template-columns: 1fr;
  }
}

.commercial-card {
  padding: 1.75rem;
  border-radius: var(--radius-small);
  background: var(--dark-stone);
  border: 1px solid rgba(184, 149, 106, 0.12);
}

.commercial-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--brass);
  display: block;
  margin-bottom: 0.75rem;
}

.commercial-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--warm-white);
  margin: 0 0 0.75rem;
}

.commercial-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.gallery_item--wide {
  aspect-ratio: 16 / 10;
}

.section-tips {
  background: var(--warm-white);
  text-align: center;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

@media (max-width: 992px) {
  .tips-grid {
    grid-template-columns: 1fr;
  }
}

.tip-card {
  padding: 2rem;
  border-radius: var(--radius-medium);
  background: var(--cream);
  border: 1px solid rgba(184, 149, 106, 0.12);
}

.tip-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0 0 1rem;
}

.tip-card p,
.tip-card ol {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  padding-left: 1.25rem;
}

.tip-card ol li {
  margin-bottom: 0.75rem;
}

.section-tips .gallery_cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── About / homepage imagery ── */

.framed-image {
  margin: 0;
  border-radius: var(--radius-medium);
  overflow: hidden;
  border: 1px solid rgba(184, 149, 106, 0.2);
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.08);
  background: var(--warm-white);
}

.framed-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.framed-image--tall img {
  aspect-ratio: 4 / 3;
  min-height: 280px;
}

.framed-image--wide img {
  aspect-ratio: 16 / 10;
}

.framed-image figcaption {
  padding: 0.85rem 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--cream);
  border-top: 1px solid rgba(184, 149, 106, 0.12);
}

.production-header {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.production-footer {
  margin-top: 2.5rem;
}

.industrial-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .industrial-gallery {
    grid-template-columns: 1fr;
  }
}

.section-team {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background: var(--sand);
}

.team-showcase {
  margin: 0 auto;
  max-width: 52rem;
  border-radius: var(--radius-large);
  overflow: hidden;
  border: 1px solid rgba(184, 149, 106, 0.25);
  box-shadow:
    0 4px 6px rgba(26, 26, 26, 0.04),
    0 24px 48px rgba(26, 26, 26, 0.1);
  background: var(--charcoal);
}

.team-showcase img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.team-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.5rem 2rem;
  background: var(--charcoal);
  border-top: 1px solid rgba(184, 149, 106, 0.2);
}

.team-caption-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: var(--warm-white);
  letter-spacing: 0.04em;
}

.team-caption-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-light);
}

/* ── Floating WhatsApp ── */

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem 0.65rem 0.85rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow:
    0 4px 14px rgba(37, 211, 102, 0.4),
    0 8px 24px rgba(26, 26, 26, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 6px 18px rgba(37, 211, 102, 0.5),
    0 12px 28px rgba(26, 26, 26, 0.2);
  outline: none;
}

.whatsapp-float svg {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  display: block;
}

@media (max-width: 480px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }
}

