:root {
  --navy: #0d2c52;
  --menu-gray: #6d6f73;
  --off-white: #ffffff;
  --white: #ffffff;
  --hero-placeholder: #bdbdbd;
  --max: 1380px;
  --header-h: 78px;
  --values-h: 170px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--navy);
  background: var(--off-white);
}
button, a { font: inherit; }
button { color: inherit; }

.container {
  width: min(calc(100% - 96px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  height: var(--header-h);
  background: var(--off-white);
  display: flex;
  align-items: center;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 12px;
}

.brand {
  position: absolute;
  left: 50px;
  padding-right: 26px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 170px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 38px;
  height: 100%;
  margin: 0 auto;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.nav-link,
.mobile-nav a,
.mobile-collections {
  text-decoration: none;
  border: 0;
  background: transparent;
  color: var(--menu-gray);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  font-size: 12px;
  letter-spacing: .01em;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

.nav-item:hover::after,
.nav-item:focus-within::after {
  transform: scaleX(1);
}

.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link {
  color: #4f5257;
}

.has-submenu .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 170px;
  padding: 14px 18px;
  background: var(--off-white);
  border-top: 1px solid rgba(13,44,82,.08);
  box-shadow: 0 12px 28px rgba(13,44,82,.10);
  display: grid;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.submenu a {
  text-decoration: none;
  color: var(--menu-gray);
  font-size: 12px;
  line-height: 1.25;
}

.submenu a:hover,
.submenu a:focus-visible {
  color: var(--navy);
}

.menu-toggle,
.mobile-nav { display: none; }

.hero-slider { position: relative; }

.hero {
  position: relative;
  height: clamp(500px, calc(100svh - var(--header-h) - var(--values-h)), 752px);
  background: var(--hero-placeholder);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,20,33,.08) 0%, rgba(6,20,33,.03) 34%, rgba(6,20,33,0) 62%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: max(48px, calc((100vw - var(--max)) / 2));
  top: 58%;
  transform: translateY(-50%);
  width: min(500px, calc(100% - 96px));
  color: var(--white);
}

.hero-kicker {
  margin: 0 0 17px;
  font-size: 12px;
  letter-spacing: .30em;
  color: var(--navy);
  font-weight: 500;
}
.hero h1 {
  margin: 0;
  max-width: 500px;
  font-size: clamp(32px, 2.8vw, 43px);
  line-height: 1.10;
  letter-spacing: -.02em;
  font-weight: 700;
}
.hero-rule {
  display: block;
  width: 50px;
  height: 2px;
  background: var(--navy);
  margin: 17px 0 14px;
}
.hero-copy {
  max-width: 470px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  font-weight: 400;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}
.hero-dots[hidden] { display: none; }
.dot {
  width: 34px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  cursor: pointer;
  padding: 0;
}
.dot.is-active { background: var(--navy); }

.values-strip {
  min-height: var(--values-h);
  background: var(--off-white);
  display: flex;
  align-items: center;
  padding: 22px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: center;
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
  position: relative;
  padding: 0 clamp(18px, 2vw, 32px);
}
.value-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14%;
  right: 0;
  width: 1px;
  height: 72%;
  background: rgba(13,44,82,.14);
}
.value-item h2 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
}
.value-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}
.value-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-intro {
  width: 100%;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  background: var(--off-white);
}

.about-media {
  min-height: 700px;
  background: var(--hero-placeholder);
}

.about-panel {
  display: flex;
  align-items: center;
  background: #f6f3ef;
  padding: clamp(56px, 7vw, 112px);
}

.about-content {
  width: min(100%, 470px);
  margin-left: clamp(0px, 2vw, 24px);
}

.about-kicker {
  margin: 0 0 28px;
  color: #9a704e;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .28em;
}

.about-content h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 700;
}

.about-rule {
  display: block;
  width: 82px;
  height: 3px;
  margin: 34px 0 30px;
  background: var(--navy);
}

.about-copy {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.65;
}

.about-copy p {
  margin: 0 0 22px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 258px;
  min-height: 54px;
  margin-top: 8px;
  padding: 14px 28px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .08em;
  transition: opacity .18s ease;
}

.about-cta:hover,
.about-cta:focus-visible {
  opacity: .9;
}

@media (max-width: 1100px) {
  :root { --values-h: 145px; }
  .container { width: min(calc(100% - 48px), var(--max)); }
  .main-nav { gap: 26px; }
  .nav-link, .submenu a { font-size: 11px; }
  .brand img { width: 160px; }
  .hero-content {
    left: 24px;
    width: min(470px, calc(100% - 48px));
  }
  .values-grid { gap: 0; }
  .value-item { gap: 11px; padding: 0 14px; }
  .value-icon { width: 40px; height: 40px; flex-basis: 40px; }
  .value-item h2 { font-size: 14px; }
  .value-item p { font-size: 11px; }
}

@media (max-width: 760px) {
  :root {
    --header-h: 72px;
  }

  .container { width: calc(100% - 32px); }

  .site-header {
    height: var(--header-h);
    padding: 0;
  }
  .header-inner {
    width: 100%;
    gap: 16px;
    padding-left: 25px;
    padding-right: 16px;
    justify-content: space-between;
  }
  .brand {
    position: static;
  }
  .brand img { width: 128px; }
  .main-nav { display: none; }

  .menu-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    margin-left: auto;
    padding: 9px 7px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
    transition: transform .2s ease, opacity .2s ease;
  }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 30;
    min-height: calc(100svh - var(--header-h));
    background: var(--white);
    border-top: 1px solid rgba(13,44,82,.08);
    box-shadow: 0 10px 30px rgba(13,44,82,.08);
    padding: 14px 16px 24px;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
  }
  .mobile-nav[hidden],
  .mobile-submenu[hidden] { display: none !important; }
  .mobile-nav:not([hidden]) { display: flex; }
  .mobile-nav a,
  .mobile-collections {
    display: block;
    width: 100%;
    padding: 13px 4px;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    color: var(--menu-gray);
    border-bottom: 1px solid rgba(13,44,82,.08);
  }
  .mobile-collections {
    position: relative;
    padding-right: 30px;
  }
  .mobile-collections::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-70%) rotate(45deg);
    transition: transform .18s ease;
  }
  .mobile-collections[aria-expanded="true"]::after {
    transform: translateY(-25%) rotate(225deg);
  }
  .mobile-submenu {
    display: grid;
    gap: 0;
    padding: 4px 0 8px 14px;
    background: var(--white);
  }
  .mobile-submenu a {
    padding: 10px 4px;
    font-size: 12px;
    border-bottom: 1px solid rgba(13,44,82,.06);
  }

  /* Mobile: hero + values keep the approved 86/14 first-screen composition. */
  main {
    display: block;
  }

  .home-intro {
    height: calc(100svh - var(--header-h));
    min-height: 560px;
    display: grid;
    grid-template-rows: minmax(0, 86fr) minmax(0, 14fr);
  }

  .hero-slider,
  .hero {
    height: 100%;
    min-height: 0;
  }

  .hero-content {
    left: 20px;
    top: auto;
    bottom: 50px;
    transform: none;
    width: min(360px, calc(100% - 40px));
  }
  .hero-kicker {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: .25em;
  }
  .hero h1 { font-size: clamp(28px, 9vw, 36px); }
  .hero-rule {
    width: 40px;
    margin: 14px 0 12px;
  }
  .hero-copy {
    max-width: 340px;
    font-size: 12px;
    line-height: 1.45;
  }
  .hero-dots { bottom: 14px; gap: 8px; }
  .dot { width: 24px; height: 5px; }

  .values-strip {
    min-height: 0;
    height: 100%;
    padding: 6px 0;
    overflow: hidden;
  }
  .values-grid {
    width: 100%;
    height: 100%;
    padding: 0 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
  }
  .value-item {
    position: relative;
    min-width: 0;
    min-height: 0;
    padding: 5px 4px;
    gap: 5px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .value-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18%;
    right: 0;
    width: 1px;
    height: 64%;
    background: rgba(13,44,82,.14);
  }
  .value-icon {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    stroke-width: 1.8;
  }
  .value-copy { min-width: 0; width: 100%; }
  .value-item h2 {
    margin: 0 0 3px;
    font-size: 9px;
    line-height: 1;
    white-space: nowrap;
  }
  .value-item p {
    margin: 0 auto;
    max-width: 88px;
    font-size: 7.5px;
    line-height: 1.15;
    white-space: normal;
    text-wrap: balance;
  }
  .about-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-media {
    min-height: 0;
    height: min(68vw, 360px);
  }

  .about-panel {
    padding: 52px 25px 58px;
  }

  .about-content {
    width: 100%;
    margin-left: 0;
  }

  .about-kicker {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .about-content h2 {
    font-size: clamp(30px, 8.4vw, 38px);
  }

  .about-rule {
    width: 62px;
    height: 2px;
    margin: 26px 0 24px;
  }

  .about-copy {
    font-size: 12px;
    line-height: 1.6;
  }

  .about-copy p {
    margin-bottom: 18px;
  }

  .about-cta {
    min-width: 220px;
    min-height: 50px;
    margin-top: 6px;
    font-size: 12px;
  }

}

@media (max-width: 430px) {
  .brand img { width: 118px; }
  .header-inner { padding-left: 25px; padding-right: 12px; }
  .values-grid { padding: 0 5px; }
  .value-item { padding: 5px 3px; gap: 4px; }
  .value-icon { width: 23px; height: 23px; flex-basis: 23px; }
  .value-item h2 { font-size: 8px; }
  .value-item p { max-width: 78px; font-size: 6.8px; line-height: 1.12; }
}

/* About */
.about-section {
  background: #f4f1ed;
}

.about-grid {
  display: grid;
  grid-template-columns: 52.3% 47.7%;
  min-height: 570px;
}

.about-media {
  min-height: 570px;
  background: #c2c2c2;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 62px clamp(56px, 6.2vw, 96px);
  color: var(--navy);
}

.section-eyebrow {
  margin: 0 0 26px;
  color: #98714f;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .28em;
  font-weight: 500;
}

.about-content h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 700;
}

.about-rule {
  width: 82px;
  height: 2px;
  margin: 34px 0 26px;
  background: var(--navy);
}

.about-body {
  max-width: 540px;
}

.about-body p {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.65;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 258px;
  min-height: 54px;
  margin-top: 8px;
  padding: 14px 24px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .08em;
  font-weight: 400;
  transition: opacity .18s ease;
}

.about-cta:hover,
.about-cta:focus-visible {
  opacity: .88;
}

.principles {
  background: var(--off-white);
  padding: 58px 0 72px;
}

.principles-inner {
  width: min(calc(100% - 96px), 1180px);
}

.principles-heading {
  text-align: center;
  margin-bottom: 54px;
}

.principles-heading .section-eyebrow {
  margin-bottom: 10px;
  letter-spacing: .06em;
}

.principles-heading h3 {
  margin: 0;
  font-size: clamp(30px, 2.5vw, 38px);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 700;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.principle-card {
  position: relative;
  min-width: 0;
  padding: 8px 34px 10px;
  text-align: center;
}

.principle-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(13,44,82,.55);
}

.principle-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle-card h4 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 700;
}

.principle-card p {
  max-width: 220px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.3;
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
  }
  .about-media { min-height: 520px; }
  .about-content { padding: 50px 40px; }
  .principle-card { padding-inline: 22px; }
}

@media (max-width: 760px) {
  /* Hero/values keep the approved 86/14 proportion, while the rest of the page flows below. */
  main {
    height: auto;
    min-height: 0;
    display: block;
  }

  .hero-slider { height: calc((100svh - var(--header-h)) * .86); }
  .values-strip { height: calc((100svh - var(--header-h)) * .14); }

  .about-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .about-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .about-content {
    padding: 44px 25px 48px;
  }
  .section-eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }
  .about-content h2 {
    font-size: clamp(30px, 9vw, 40px);
  }
  .about-rule {
    width: 54px;
    margin: 26px 0 22px;
  }
  .about-body p {
    font-size: 12px;
    line-height: 1.55;
  }
  .about-cta {
    width: 100%;
    min-width: 0;
    min-height: 50px;
  }

  .principles {
    padding: 42px 0 54px;
  }
  .principles-inner {
    width: calc(100% - 32px);
  }
  .principles-heading {
    margin-bottom: 34px;
  }
  .principles-heading h3 {
    font-size: clamp(26px, 7vw, 34px);
  }
  .principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .principle-card {
    padding: 22px 14px 26px;
  }
  .principle-card::after {
    display: none;
  }
  .principle-card:nth-child(odd) {
    border-right: 1px solid rgba(13,44,82,.28);
  }
  .principle-card:nth-child(-n+2) {
    border-bottom: 1px solid rgba(13,44,82,.28);
  }
  .principle-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 13px;
  }
  .principle-card h4 {
    font-size: 15px;
    margin-bottom: 9px;
  }
  .principle-card p {
    font-size: 10px;
    line-height: 1.3;
  }
}

/* === About block refinements v19 === */
.about-section {
  display: grid;
  grid-template-columns: 51% 49%;
  min-height: 100svh;
  background: #f4f1ed;
}

.about-media {
  min-height: 100svh;
  background: #c2c2c2;
}

.about-panel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100svh;
  padding: clamp(56px, 6vw, 96px) clamp(52px, 6vw, 92px);
  background: #f4f1ed;
}

.about-content {
  width: min(100%, 560px);
  margin-left: 0;
}

.about-kicker {
  margin: 0 0 28px;
  color: #9a704e;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .28em;
}

.about-content h2 {
  max-width: 520px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(48px, 4.2vw, 62px);
  line-height: .94;
  letter-spacing: -.035em;
  font-weight: 700;
}

.about-rule {
  display: block;
  width: 82px;
  height: 3px;
  margin: 34px 0 30px;
  background: var(--navy);
}

.about-copy {
  max-width: 510px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.75;
}

.about-copy p {
  margin: 0 0 26px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 56px;
  margin-top: 12px;
  padding: 14px 28px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
}

@media (max-width: 1200px) {
  .about-panel {
    padding: 56px 48px;
  }

  .about-content {
    width: min(100%, 520px);
  }

  .about-content h2 {
    font-size: clamp(42px, 4vw, 56px);
    max-width: 470px;
  }

  .about-copy {
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .about-section {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(260px, 42svh) minmax(0, 1fr);
    min-height: 100svh;
  }

  .about-media {
    min-height: 0;
    height: 100%;
  }

  .about-panel {
    min-height: 0;
    padding: 42px 25px 48px;
    align-items: flex-start;
  }

  .about-content {
    width: 100%;
    max-width: 100%;
  }

  .about-kicker {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .about-content h2 {
    max-width: 320px;
    font-size: clamp(30px, 8.8vw, 44px);
    line-height: 1.02;
  }

  .about-rule {
    width: 58px;
    height: 2px;
    margin: 24px 0 22px;
  }

  .about-copy {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.72;
  }

  .about-copy p {
    margin-bottom: 18px;
  }

  .about-cta {
    min-width: 0;
    width: 100%;
    min-height: 54px;
    margin-top: 10px;
    font-size: 12px;
  }
}


/* === About spacing/type refinement v20 === */
.about-panel {
  padding: clamp(48px, 5vw, 80px) clamp(44px, 5vw, 76px);
}

.about-content {
  width: min(100%, 620px);
}

.about-content h2 {
  max-width: 580px;
  font-size: clamp(40px, 3.6vw, 54px);
  line-height: .98;
  letter-spacing: -.03em;
}

.about-copy {
  max-width: 545px;
  font-size: 14px;
  line-height: 1.7;
}

.about-copy p {
  margin: 0 0 24px;
}

@media (max-width: 1200px) {
  .about-panel {
    padding: 48px 40px;
  }

  .about-content {
    width: min(100%, 560px);
  }

  .about-content h2 {
    max-width: 520px;
    font-size: clamp(36px, 3.8vw, 46px);
    line-height: 1.01;
  }

  .about-copy {
    max-width: 500px;
    font-size: 13px;
  }
}

@media (max-width: 760px) {
  .about-panel {
    padding: 38px 25px 44px;
  }

  .about-content h2 {
    max-width: 340px;
    font-size: clamp(26px, 7.5vw, 36px);
    line-height: 1.02;
  }

  .about-copy {
    font-size: 11px;
    line-height: 1.65;
  }

  .about-cta {
    min-height: 52px;
  }
}


/* === About font reduction v21 === */
.about-kicker {
  font-size: 8px;
  letter-spacing: .24em;
}

.about-content h2 {
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.02;
  max-width: 440px;
}

.about-copy {
  font-size: 8.5px;
  line-height: 1.75;
  max-width: 470px;
}

.about-cta {
  min-width: 220px;
  min-height: 48px;
  font-size: 8px;
  letter-spacing: .05em;
}

@media (max-width: 1200px) {
  .about-content h2 {
    font-size: clamp(22px, 2.6vw, 28px);
    max-width: 390px;
  }

  .about-copy {
    font-size: 8px;
    max-width: 430px;
  }
}

@media (max-width: 760px) {
  .about-kicker {
    font-size: 8px;
  }

  .about-content h2 {
    font-size: clamp(18px, 5vw, 24px);
    max-width: 260px;
    line-height: 1.06;
  }

  .about-copy {
    font-size: 8px;
    line-height: 1.65;
  }

  .about-cta {
    font-size: 8px;
    min-height: 46px;
  }
}


/* === About font increase tweak v22 (+25% from v21) === */
.about-kicker {
  font-size: 10px;
  letter-spacing: .25em;
}

.about-content h2 {
  font-size: clamp(30px, 2.75vw, 40px);
  line-height: 1.02;
  max-width: 500px;
}

.about-copy {
  font-size: 10.5px;
  line-height: 1.75;
  max-width: 500px;
}

.about-cta {
  min-width: 230px;
  min-height: 50px;
  font-size: 10px;
  letter-spacing: .055em;
}

@media (max-width: 1200px) {
  .about-content h2 {
    font-size: clamp(27px, 3.15vw, 35px);
    max-width: 450px;
  }

  .about-copy {
    font-size: 10px;
    max-width: 460px;
  }
}

@media (max-width: 760px) {
  .about-kicker {
    font-size: 10px;
  }

  .about-content h2 {
    font-size: clamp(22px, 6.25vw, 30px);
    max-width: 300px;
    line-height: 1.05;
  }

  .about-copy {
    font-size: 10px;
    line-height: 1.68;
  }

  .about-cta {
    font-size: 10px;
    min-height: 48px;
  }
}


/* === About matches hero content box system v23 === */
.about-panel {
  padding: clamp(52px, 5vw, 82px) clamp(46px, 5vw, 78px);
}

.about-content {
  width: min(100%, 500px);
  max-width: 500px;
}

.about-kicker {
  margin: 0 0 17px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .30em;
  font-weight: 500;
}

.about-content h2 {
  max-width: 500px;
  font-size: clamp(32px, 2.8vw, 43px);
  line-height: 1.10;
  letter-spacing: -.02em;
  font-weight: 700;
}

.about-rule {
  width: 50px;
  height: 2px;
  margin: 17px 0 14px;
}

.about-copy {
  max-width: 470px;
  font-size: 14px;
  line-height: 1.5;
}

.about-copy p {
  margin: 0 0 22px;
}

.about-cta {
  min-width: 258px;
  min-height: 54px;
  margin-top: 8px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .08em;
}

@media (max-width: 1200px) {
  .about-panel {
    padding: 48px 42px;
  }

  .about-content {
    width: min(100%, 500px);
    max-width: 500px;
  }

  .about-content h2 {
    font-size: clamp(30px, 3vw, 39px);
  }

  .about-copy {
    font-size: 13px;
    max-width: 450px;
  }
}

@media (max-width: 760px) {
  .about-panel {
    padding: 42px 25px 48px;
  }

  .about-content {
    width: 100%;
    max-width: 360px;
  }

  .about-kicker {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: .25em;
  }

  .about-content h2 {
    max-width: 320px;
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.10;
  }

  .about-rule {
    width: 40px;
    margin: 14px 0 12px;
  }

  .about-copy {
    max-width: 340px;
    font-size: 12px;
    line-height: 1.45;
  }

  .about-copy p {
    margin-bottom: 18px;
  }

  .about-cta {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    margin-top: 6px;
    font-size: 12px;
  }
}


/* === About content width update v24 === */
.about-content {
  width: min(100%, 650px);
  max-width: 650px;
}

.about-content h2 {
  max-width: 650px;
}

.about-copy {
  max-width: 620px;
}

@media (max-width: 1200px) {
  .about-content {
    width: min(100%, 600px);
    max-width: 600px;
  }

  .about-content h2 {
    max-width: 580px;
  }

  .about-copy {
    max-width: 540px;
  }
}

@media (max-width: 760px) {
  .about-content {
    width: 100%;
    max-width: 360px;
  }

  .about-content h2 {
    max-width: 320px;
  }

  .about-copy {
    max-width: 340px;
  }
}


/* === About vertical spacing refinement v25 === */
.about-panel {
  padding-top: clamp(72px, 6vw, 96px);
  padding-bottom: clamp(72px, 6vw, 96px);
}

.about-kicker {
  margin-bottom: 24px;
}

.about-rule {
  margin-top: 24px;
  margin-bottom: 20px;
}

.about-copy p {
  margin-bottom: 28px;
}

.about-cta {
  margin-top: 18px;
}

@media (max-width: 1200px) {
  .about-panel {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 760px) {
  .about-panel {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .about-kicker {
    margin-bottom: 18px;
  }

  .about-rule {
    margin-top: 18px;
    margin-bottom: 16px;
  }

  .about-copy p {
    margin-bottom: 22px;
  }

  .about-cta {
    margin-top: 14px;
  }
}

/* === Unified hero vertical spacing + About background v26 === */
.about-section,
.about-panel {
  background: var(--off-white);
}

.hero-kicker {
  margin-bottom: 24px;
}

.hero-rule {
  margin-top: 24px;
  margin-bottom: 20px;
}

.hero-copy {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .hero-kicker {
    margin-bottom: 18px;
  }

  .hero-rule {
    margin-top: 18px;
    margin-bottom: 16px;
  }
}


/* === Collections / categories block v27 === */
.collections-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--white);
  padding: clamp(72px, 8vh, 112px) 0;
}

.collections-inner {
  width: min(calc(100% - 96px), 1160px);
  margin: 0 auto;
}

.collections-header {
  text-align: center;
  color: var(--navy);
}

.collections-kicker {
  margin: 0 0 18px;
  color: #9a704e;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .04em;
}

.collections-header h2 {
  margin: 0;
  font-size: clamp(32px, 2.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 700;
}

.collections-intro {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 14px;
  line-height: 1.35;
  color: var(--navy);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(30px, 3.3vw, 54px);
  margin-top: clamp(74px, 8vh, 96px);
}

.collection-card {
  display: block;
  min-width: 0;
  color: #111;
  text-decoration: none;
}

.collection-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f7f7f7;
  overflow: hidden;
  transition: transform .25s ease, background-color .25s ease;
}

.collection-card:hover .collection-image,
.collection-card:focus-visible .collection-image {
  transform: translateY(-4px);
  background: #f2f2f2;
}

.collection-card h3 {
  margin: 18px 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: .22em;
}

@media (max-width: 980px) {
  .collections-inner {
    width: min(calc(100% - 48px), 900px);
  }

  .collections-grid {
    gap: 24px;
  }

  .collection-card h3 {
    font-size: 12px;
    letter-spacing: .16em;
  }
}

@media (max-width: 760px) {
  .collections-section {
    min-height: 100svh;
    align-items: flex-start;
    padding: 58px 0 64px;
  }

  .collections-inner {
    width: calc(100% - 40px);
  }

  .collections-kicker {
    margin-bottom: 14px;
    font-size: 9px;
  }

  .collections-header h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .collections-intro {
    max-width: 330px;
    margin-top: 20px;
    font-size: 11px;
    line-height: 1.45;
  }

  .desktop-break {
    display: none;
  }

  .collections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 18px;
    margin-top: 46px;
  }

  .collection-card h3 {
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: .18em;
  }
}

/* === Collections spacing + CTA v28 === */
.collections-grid {
  margin-top: clamp(104px, 10vh, 132px);
}

.collections-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(104px, 10vh, 132px);
}

.collections-cta {
  margin-top: 0;
  text-transform: none;
}

@media (max-width: 760px) {
  .collections-grid {
    margin-top: 64px;
  }

  .collections-actions {
    margin-top: 64px;
  }

  .collections-cta {
    width: min(100%, 260px);
  }
}


/* === Retailers / where to find us v30 === */
.retailers-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--white);
  padding: clamp(72px, 8vh, 112px) 0;
}

.retailers-inner {
  width: min(calc(100% - 96px), 1280px);
  margin: 0 auto;
}

.retailers-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--navy);
}

.retailers-kicker {
  margin: 0 0 18px;
  color: #9a704e;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .04em;
}

.retailers-header h2 {
  margin: 0;
  font-size: clamp(32px, 2.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 700;
}

.retailers-intro {
  max-width: 720px;
  margin: 28px auto 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--navy);
}

.retailers-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: clamp(30px, 4vw, 72px);
  margin-top: clamp(112px, 12vh, 150px);
}

.retailer-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 90px;
  text-decoration: none;
}

.retailer-logo {
  color: #b39b86;
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: .9;
  font-weight: 700;
  text-align: center;
  opacity: .95;
  transition: opacity .18s ease, transform .18s ease;
}

.retailer-logo--sams,
.retailer-logo--liverpool {
  font-weight: 500;
  line-height: 1;
}

.retailer-logo--amazon {
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 700;
}

.retailer-logo--homedepot {
  font-size: clamp(14px, 1.25vw, 20px);
  font-weight: 700;
}

.retailer-card:hover .retailer-logo,
.retailer-card:focus-visible .retailer-logo {
  opacity: .72;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .retailers-inner {
    width: min(calc(100% - 48px), 900px);
  }

  .retailers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 34px;
    margin-top: 92px;
  }
}

@media (max-width: 760px) {
  .retailers-section {
    min-height: 100svh;
    align-items: flex-start;
    padding: 58px 0 64px;
  }

  .retailers-inner {
    width: calc(100% - 40px);
  }

  .retailers-kicker {
    margin-bottom: 14px;
    font-size: 9px;
  }

  .retailers-header h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .retailers-intro {
    max-width: 330px;
    margin-top: 20px;
    font-size: 11px;
    line-height: 1.45;
  }

  .retailers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 24px;
    margin-top: 72px;
  }

  .retailer-card:last-child {
    grid-column: 1 / -1;
  }

  .retailer-logo {
    font-size: 18px;
  }

  .retailer-logo--amazon {
    font-size: 24px;
  }

  .retailer-logo--homedepot {
    font-size: 14px;
  }
}


/* === Retailers visual implementation v31 === */
.retailers-section {
  background: #f3f0ed;
}

.retailers-grid {
  margin-top: clamp(96px, 11vh, 138px);
}

.retailer-card {
  min-height: 88px;
}

.retailer-logo-img {
  display: block;
  width: 100%;
  max-width: 190px;
  height: auto;
  object-fit: contain;
  transition: opacity .18s ease, transform .18s ease;
}

.retailer-card:hover .retailer-logo-img,
.retailer-card:focus-visible .retailer-logo-img {
  opacity: .72;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .retailer-logo-img {
    max-width: 170px;
  }
}

@media (max-width: 760px) {
  .retailers-grid {
    margin-top: 64px;
  }

  .retailer-logo-img {
    max-width: 145px;
  }
}


/* === Retailers background + section reveal v32 === */
.retailers-section,
.retailers-inner {
  background: var(--white) !important;
}

/* Sections fade in when entering viewport and fade out when leaving. */
.reveal-section {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-section,
  .reveal-section.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* === Retailer logos marquee v33 === */
.retailers-inner {
  width: 100%;
  max-width: none;
}

.retailers-header {
  width: min(calc(100% - 48px), 760px);
}

.retailers-marquee {
  position: relative;
  width: 100%;
  margin-top: clamp(96px, 11vh, 138px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.retailers-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: retailers-loop 34s linear infinite;
}

.retailers-group {
  display: flex;
  align-items: center;
  gap: clamp(48px, 5vw, 92px);
  flex: 0 0 auto;
  padding-right: clamp(48px, 5vw, 92px);
}

.retailer-card {
  width: clamp(170px, 15vw, 230px);
  height: 118px;
  min-height: 0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.retailer-logo-img {
  display: block;
  width: 100%;
  max-width: 210px;
  max-height: 86px;
  height: auto;
  object-fit: contain;
  transition: opacity .2s ease, transform .2s ease;
}

.retailer-card:hover .retailer-logo-img,
.retailer-card:focus-visible .retailer-logo-img {
  opacity: .68;
  transform: scale(1.035);
}

.retailers-marquee:hover .retailers-track,
.retailers-marquee:focus-within .retailers-track {
  animation-play-state: paused;
}

@keyframes retailers-loop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 760px) {
  .retailers-header {
    width: min(calc(100% - 40px), 420px);
  }

  .retailers-marquee {
    margin-top: 68px;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  }

  .retailers-track {
    animation-duration: 28s;
  }

  .retailers-group {
    gap: 34px;
    padding-right: 34px;
  }

  .retailer-card {
    width: 150px;
    height: 92px;
  }

  .retailer-logo-img {
    max-width: 145px;
    max-height: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .retailers-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }

  .retailers-marquee::-webkit-scrollbar {
    display: none;
  }

  .retailers-track {
    animation: none;
  }

  .retailers-group[aria-hidden="true"] {
    display: none;
  }
}


/* === Retailers spacing + non-interactive marquee v34 === */
.retailers-marquee {
  margin-top: clamp(126px, 14vh, 168px);
}

.retailers-group {
  gap: clamp(29px, 3vw, 55px);
  padding-right: clamp(29px, 3vw, 55px);
}

.retailer-card {
  cursor: default;
  pointer-events: none;
}

.retailer-logo-img {
  transition: none;
}

.retailer-card:hover .retailer-logo-img,
.retailer-card:focus-visible .retailer-logo-img {
  opacity: 1;
  transform: none;
}

.retailers-marquee:hover .retailers-track,
.retailers-marquee:focus-within .retailers-track {
  animation-play-state: running;
}

@media (max-width: 760px) {
  .retailers-marquee {
    margin-top: 88px;
  }

  .retailers-group {
    gap: 20px;
    padding-right: 20px;
  }
}


/* === Retailers logo scale increase v35 === */
.retailer-card {
  width: clamp(238px, 21vw, 322px);
  height: 142px;
}

.retailer-logo-img {
  max-width: 294px;
  max-height: 120px;
}

@media (max-width: 760px) {
  .retailer-card {
    width: 210px;
    height: 118px;
  }

  .retailer-logo-img {
    max-width: 203px;
    max-height: 95px;
  }
}

/* === Responsive viewport centering + mobile About refinement v36 === */
@media (max-width: 760px) {
  /* Keep each full-screen content block visually centered in its viewport. */
  .collections-section,
  .retailers-section {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .collections-inner,
  .retailers-inner {
    margin-top: auto;
    margin-bottom: auto;
  }

  /* Retailers: center the header + marquee group vertically instead of pinning it high. */
  .retailers-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }

  .retailers-header {
    width: min(calc(100% - 40px), 420px);
    margin-left: auto;
    margin-right: auto;
  }

  .retailers-marquee {
    margin-top: 72px;
  }

  /* About: full-bleed image across the mobile viewport. */
  .about-section {
    width: 100%;
    max-width: 100%;
    min-height: 100svh;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(280px, 44svh) minmax(0, 1fr);
    overflow: hidden;
  }

  .about-media {
    display: block;
    width: 100%;
    max-width: none;
    min-width: 0;
    height: 100%;
    min-height: 0;
    margin: 0;
  }

  .about-panel {
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 28px 40px;
  }

  .about-content {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .about-kicker {
    margin-bottom: 14px;
    font-size: 8px;
  }

  .about-content h2 {
    max-width: 300px;
    font-size: clamp(24px, 7vw, 31px);
    line-height: 1.04;
  }

  .about-rule {
    width: 40px;
    margin-top: 14px;
    margin-bottom: 12px;
  }

  .about-copy {
    max-width: 330px;
    font-size: 10px;
    line-height: 1.55;
  }

  .about-copy p {
    margin-bottom: 16px;
  }

  .about-cta {
    width: 100%;
    max-width: 310px;
    min-height: 46px;
    margin-top: 8px;
    font-size: 10px;
  }
}

@media (max-width: 430px) {
  .about-section {
    grid-template-rows: minmax(245px, 42svh) minmax(0, 1fr);
  }

  .about-panel {
    padding-left: 22px;
    padding-right: 22px;
  }

  .about-content h2 {
    max-width: 280px;
    font-size: clamp(23px, 7.2vw, 29px);
  }

  .about-copy {
    font-size: 9.5px;
  }

  .retailers-marquee {
    margin-top: 64px;
  }
}


/* === Inspiration editorial gallery v39 === */
.inspiration-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--white);
  padding: clamp(72px, 8vh, 112px) 0;
}

.inspiration-inner {
  width: min(calc(100% - 96px), 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 5vw, 88px);
}

.inspiration-header {
  color: var(--navy);
}

.inspiration-kicker {
  margin: 0 0 18px;
  color: #9a704e;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .24em;
}

.inspiration-header h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 0.98;
  letter-spacing: -.04em;
  font-weight: 300;
}

.inspiration-rule {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 28px;
  margin-bottom: 20px;
  background: var(--navy);
}

.inspiration-intro {
  max-width: 330px;
  margin: 0;
  color: #4f5d72;
  font-size: 16px;
  line-height: 1.52;
}

.inspiration-gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.98fr 1.1fr 1.1fr;
  grid-template-rows: 1.08fr 0.88fr;
  gap: 14px;
  min-height: 620px;
}

.inspiration-card {
  min-width: 0;
  min-height: 0;
}

.inspiration-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(180deg, #efefef 0%, #e8e8e8 100%);
}

.inspiration-card--towel {
  grid-column: 1;
  grid-row: 2;
}

.inspiration-card--tall {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.inspiration-card--wide {
  grid-column: 3 / span 2;
  grid-row: 1;
}

.inspiration-card--square {
  grid-column: 2;
  grid-row: 2;
}

.inspiration-card--bath {
  grid-column: 3 / span 2;
  grid-row: 2;
}

@media (max-width: 1100px) {
  .inspiration-inner {
    width: min(calc(100% - 48px), 980px);
    grid-template-columns: minmax(240px, 310px) minmax(0, 1fr);
    gap: 36px;
  }

  .inspiration-header h2 {
    font-size: clamp(34px, 4.5vw, 52px);
  }

  .inspiration-intro {
    font-size: 15px;
  }

  .inspiration-gallery {
    min-height: 540px;
  }
}

@media (max-width: 760px) {
  .inspiration-section {
    min-height: 100svh;
    align-items: flex-start;
    padding: 58px 0 64px;
  }

  .inspiration-inner {
    width: calc(100% - 40px);
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .inspiration-header {
    max-width: 360px;
  }

  .inspiration-kicker {
    margin-bottom: 14px;
    font-size: 9px;
  }

  .inspiration-header h2 {
    font-size: clamp(28px, 9.2vw, 44px);
    line-height: 1.02;
  }

  .inspiration-rule {
    width: 44px;
    margin-top: 18px;
    margin-bottom: 16px;
  }

  .inspiration-intro {
    max-width: 320px;
    font-size: 13px;
    line-height: 1.45;
  }

  .inspiration-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 72vw);
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 14px;
    min-height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .inspiration-gallery::-webkit-scrollbar {
    display: none;
  }

  .inspiration-card {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100%;
    aspect-ratio: 0.82 / 1;
    scroll-snap-align: start;
  }

  .inspiration-card--wide,
  .inspiration-card--bath {
    aspect-ratio: 1.2 / 1;
  }
}


/* === Inspiration gallery redesign v40 === */
.inspiration-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--white);
  padding: clamp(72px, 8vh, 112px) 0;
}

.inspiration-inner {
  width: min(calc(100% - 96px), 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 330px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(52px, 6vw, 96px);
}

.inspiration-content {
  color: var(--navy);
}

.inspiration-kicker {
  margin: 0 0 18px;
  color: #9a704e;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .22em;
}

.inspiration-content h2 {
  margin: 0;
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 700;
}

.inspiration-rule {
  display: block;
  width: 46px;
  height: 2px;
  margin-top: 18px;
  margin-bottom: 18px;
  background: var(--navy);
}

.inspiration-intro {
  max-width: 280px;
  margin: 0;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.7;
}

.inspiration-cta {
  margin-top: 22px;
  width: 150px;
  min-height: 40px;
  font-size: 11px;
}

.inspiration-visuals {
  min-width: 0;
}

.inspiration-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
  padding: 10px 0;
}

.inspiration-card {
  aspect-ratio: 0.78 / 1;
  min-width: 0;
}

.inspiration-card:nth-child(2),
.inspiration-card:nth-child(5) {
  transform: translateY(62px);
}

.inspiration-placeholder {
  width: 100%;
  height: 100%;
  background: #d9d9d9;
}

.inspiration-dots {
  display: none;
}

@media (max-width: 1100px) {
  .inspiration-inner {
    width: min(calc(100% - 48px), 980px);
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 34px;
  }

  .inspiration-content h2 {
    font-size: clamp(30px, 3.2vw, 40px);
  }

  .inspiration-card:nth-child(2),
  .inspiration-card:nth-child(5) {
    transform: translateY(44px);
  }
}

@media (max-width: 760px) {
  .inspiration-section {
    min-height: 100svh;
    align-items: center;
    padding: 56px 0;
  }

  .inspiration-inner {
    width: calc(100% - 40px);
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .inspiration-content {
    max-width: 320px;
  }

  .inspiration-kicker {
    margin-bottom: 14px;
    font-size: 9px;
  }

  .inspiration-content h2 {
    font-size: clamp(26px, 8vw, 36px);
    line-height: 1.14;
  }

  .inspiration-rule {
    width: 46px;
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .inspiration-intro {
    max-width: 295px;
    font-size: 11px;
    line-height: 1.65;
  }

  .inspiration-cta {
    width: min(100%, 172px);
    min-height: 42px;
    margin-top: 18px;
    font-size: 11px;
  }

  .inspiration-visuals {
    width: 100%;
  }

  .inspiration-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .inspiration-gallery::-webkit-scrollbar {
    display: none;
  }

  .inspiration-card,
  .inspiration-card:nth-child(2),
  .inspiration-card:nth-child(5) {
    aspect-ratio: 0.92 / 1;
    transform: none;
    scroll-snap-align: start;
  }

  .inspiration-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .inspiration-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d6d6d6;
    cursor: pointer;
  }

  .inspiration-dot.is-active {
    background: var(--navy);
  }
}


/* === Inspiration two-square columns mosaic v41 === */
.inspiration-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--white);
  padding: clamp(72px, 8vh, 112px) 0;
  overflow: hidden;
}

.inspiration-inner {
  width: min(calc(100% - 96px), 1400px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 330px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(58px, 6vw, 100px);
}

.inspiration-content {
  color: var(--navy);
}

.inspiration-kicker {
  margin: 0 0 18px;
  color: #9a704e;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .22em;
}

.inspiration-content h2 {
  margin: 0;
  font-size: clamp(32px, 2.8vw, 43px);
  line-height: 1.10;
  letter-spacing: -.02em;
  font-weight: 700;
}

.inspiration-rule {
  display: block;
  width: 50px;
  height: 2px;
  margin: 17px 0 14px;
  background: var(--navy);
}

.inspiration-intro {
  max-width: 300px;
  margin: 0;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.55;
}

.inspiration-cta {
  width: 160px;
  min-width: 160px;
  min-height: 44px;
  margin-top: 24px;
  font-size: 11px;
}

.inspiration-visuals {
  min-width: 0;
  width: 100%;
}

.inspiration-gallery {
  display: flex;
  gap: 12px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 8px;
  overscroll-behavior-inline: contain;
}

.inspiration-gallery::-webkit-scrollbar {
  display: none;
}

.inspiration-column {
  flex: 0 0 clamp(210px, 18vw, 270px);
  display: grid;
  grid-template-rows: repeat(2, auto);
  gap: 12px;
  scroll-snap-align: start;
}

.inspiration-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-width: 0;
  transform: none !important;
}

.inspiration-placeholder {
  width: 100%;
  height: 100%;
  background: #d9d9d9;
}

.inspiration-dots {
  display: none;
}

@media (max-width: 1100px) {
  .inspiration-inner {
    width: min(calc(100% - 48px), 1050px);
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 36px;
  }

  .inspiration-column {
    flex-basis: clamp(190px, 21vw, 240px);
  }
}

@media (max-width: 760px) {
  .inspiration-section {
    min-height: 100svh;
    align-items: center;
    padding: 54px 0 48px;
  }

  .inspiration-inner {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .inspiration-content {
    width: calc(100% - 56px);
    max-width: 360px;
    margin: 0 auto;
  }

  .inspiration-kicker {
    margin-bottom: 14px;
    font-size: 9px;
  }

  .inspiration-content h2 {
    font-size: clamp(26px, 7.8vw, 34px);
    line-height: 1.08;
  }

  .inspiration-rule {
    width: 46px;
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .inspiration-intro {
    max-width: 300px;
    font-size: 10px;
    line-height: 1.55;
  }

  .inspiration-cta {
    width: min(100%, 180px);
    min-width: 0;
    min-height: 44px;
    margin-top: 18px;
    font-size: 10px;
  }

  .inspiration-visuals {
    width: 100%;
  }

  .inspiration-gallery {
    gap: 10px;
    padding: 0 28px 4px;
    scroll-padding-inline: 28px;
    scroll-snap-type: x mandatory;
  }

  .inspiration-column {
    flex: 0 0 min(72vw, 270px);
    gap: 10px;
  }

  .inspiration-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
  }

  .inspiration-dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d6d6d6;
  }

  .inspiration-dot.is-active {
    background: var(--navy);
  }
}


/* === Inspiration mosaic v42 === */
.inspiration-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--white);
  padding: clamp(72px, 8vh, 112px) 0;
}

.inspiration-inner {
  width: min(calc(100% - 96px), 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(270px, 340px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 5vw, 88px);
}

.inspiration-content {
  align-self: center;
}

.inspiration-content h2 {
  margin: 0;
  font-size: clamp(44px, 4.2vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: var(--navy);
}

.inspiration-rule {
  display: block;
  width: 46px;
  height: 2px;
  margin: 16px 0 14px;
  background: var(--navy);
}

.inspiration-intro {
  max-width: 290px;
  margin: 0;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.75;
}

.inspiration-cta {
  margin-top: 24px;
  width: 150px;
  min-height: 42px;
  font-size: 11px;
}

.inspiration-visuals {
  width: 100%;
  min-width: 0;
  align-self: center;
}

.inspiration-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(150px, calc((100% - 48px) / 4.2), 230px);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.inspiration-gallery::-webkit-scrollbar {
  display: none;
}

.inspiration-column {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
  scroll-snap-align: start;
}

.inspiration-card {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.inspiration-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #d9d9d9;
}

.inspiration-dots {
  display: none;
}

@media (max-width: 1180px) {
  .inspiration-inner {
    width: min(calc(100% - 48px), 1180px);
    grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
    gap: 34px;
  }

  .inspiration-content h2 {
    font-size: clamp(36px, 4vw, 52px);
  }

  .inspiration-gallery {
    grid-auto-columns: clamp(136px, calc((100% - 24px) / 3.4), 190px);
  }
}

@media (max-width: 760px) {
  .inspiration-section {
    min-height: 100svh;
    padding: 56px 0 72px;
    align-items: center;
  }

  .inspiration-inner {
    width: calc(100% - 40px);
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .inspiration-content {
    max-width: 320px;
  }

  .inspiration-kicker {
    margin-bottom: 14px;
    font-size: 9px;
  }

  .inspiration-content h2 {
    font-size: clamp(28px, 8.6vw, 40px);
    line-height: 1.06;
  }

  .inspiration-rule {
    margin: 14px 0 14px;
  }

  .inspiration-intro {
    max-width: 285px;
    font-size: 11px;
    line-height: 1.7;
  }

  .inspiration-cta {
    width: min(100%, 172px);
    margin-top: 18px;
  }

  .inspiration-gallery {
    grid-auto-columns: minmax(160px, 46vw);
    gap: 10px;
    padding-bottom: 4px;
  }

  .inspiration-column {
    gap: 10px;
  }

  .inspiration-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }

  .inspiration-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d6d6d6;
    cursor: pointer;
  }

  .inspiration-dot.is-active {
    background: var(--navy);
  }
}


/* === Header transparent-at-top + inspiration correction v43 === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: background-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: var(--off-white);
  box-shadow: 0 1px 0 rgba(13,44,82,.08);
}

/* With the header overlaying the first screen, the intro itself fills the viewport. */
.hero {
  height: clamp(500px, calc(100svh - var(--values-h)), 830px);
}

/* Inspiration: eight horizontal columns, exactly two square images per column. */
.inspiration-visuals {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.inspiration-gallery {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.inspiration-gallery::-webkit-scrollbar {
  display: none;
}

.inspiration-column {
  flex: 0 0 calc((100% - 36px) / 4);
  min-width: 150px;
  display: grid;
  grid-template-rows: repeat(2, auto);
  gap: 12px;
  scroll-snap-align: start;
}

.inspiration-card {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.inspiration-inner,
.inspiration-content,
.inspiration-visuals {
  align-self: center;
}

@media (max-width: 1180px) {
  .inspiration-column {
    flex-basis: calc((100% - 24px) / 3);
  }
}

@media (max-width: 760px) {
  .home-intro {
    height: 100svh;
  }

  .hero {
    height: 100%;
  }

  .inspiration-gallery {
    gap: 10px;
    padding-bottom: 4px;
  }

  .inspiration-column {
    flex: 0 0 min(72vw, 270px);
    min-width: 0;
    gap: 10px;
  }

  .inspiration-dots {
    margin-top: 36px;
  }
}


/* === Header/light logo + inspiration sizing adjustment v44 === */
.brand {
  display: inline-grid;
  line-height: 0;
}

.brand-logo {
  grid-area: 1 / 1;
  transition: opacity .22s ease;
}

.brand-logo--light {
  opacity: 0;
  pointer-events: none;
}

.site-header {
  background: transparent;
  transition: background-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: var(--off-white);
  box-shadow: 0 1px 0 rgba(13, 44, 82, .08);
}

.site-header:not(.is-scrolled):not(.is-menu-open) .brand-logo--dark {
  opacity: 0;
}

.site-header:not(.is-scrolled):not(.is-menu-open) .brand-logo--light {
  opacity: 1;
}

.site-header:not(.is-scrolled):not(.is-menu-open) .nav-link {
  color: rgba(255, 255, 255, .96);
}

.site-header:not(.is-scrolled):not(.is-menu-open) .nav-item::after {
  background: rgba(255, 255, 255, .96);
}

.site-header:not(.is-scrolled):not(.is-menu-open) .nav-item:hover .nav-link,
.site-header:not(.is-scrolled):not(.is-menu-open) .nav-item:focus-within .nav-link,
.site-header:not(.is-scrolled):not(.is-menu-open) .submenu a:hover,
.site-header:not(.is-scrolled):not(.is-menu-open) .submenu a:focus-visible {
  color: rgba(255, 255, 255, .96);
}

.site-header:not(.is-scrolled):not(.is-menu-open) .menu-toggle span {
  background: var(--white);
}

/* Keep dropdown and opened mobile menu on the approved solid fill. */
.site-header .submenu,
.site-header.is-menu-open .mobile-nav,
.site-header.is-menu-open .mobile-submenu {
  background: var(--off-white);
}

/* Inspiration: larger desktop mosaic while preserving 2 cards per column and 8 columns total. */
.inspiration-gallery {
  align-items: center;
}

.inspiration-column {
  flex-basis: calc((100% - 24px) / 3);
}

@media (max-width: 1180px) {
  .inspiration-column {
    flex-basis: calc((100% - 22px) / 2.75);
  }
}

@media (max-width: 760px) {
  .site-header:not(.is-scrolled):not(.is-menu-open) .brand-logo--dark {
    opacity: 0;
  }

  .site-header:not(.is-scrolled):not(.is-menu-open) .brand-logo--light {
    opacity: 1;
  }

  .site-header.is-menu-open .menu-toggle span,
  .site-header.is-scrolled .menu-toggle span {
    background: var(--navy);
  }

  .inspiration-dots {
    margin-top: 52px;
  }
}


/* === White surfaces + expanded Inspiration mosaic v45 === */
/* About and the scrolled header use the same pure white as the rest of the site. */
.about-section,
.about-panel {
  background: #ffffff !important;
}

.site-header.is-scrolled,
.site-header.is-menu-open,
.site-header .submenu,
.site-header.is-menu-open .mobile-nav,
.site-header.is-menu-open .mobile-submenu {
  background: #ffffff !important;
}

/* Desktop: keep the copy aligned, but let the mosaic use every pixel available to the right edge. */
@media (min-width: 761px) {
  .inspiration-inner {
    width: 100%;
    max-width: none;
    padding-left: max(48px, calc((100vw - 1380px) / 2));
    padding-right: 0;
    grid-template-columns: minmax(270px, 340px) minmax(0, 1fr);
    gap: clamp(44px, 5vw, 88px);
  }

  .inspiration-visuals {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .inspiration-gallery {
    width: 100%;
    padding-right: 0;
  }

  /* Approx. +35% from the earlier desktop card width, while keeping exactly 2 squares per column. */
  .inspiration-column {
    flex: 0 0 clamp(250px, 24vw, 365px);
  }
}

@media (max-width: 1180px) and (min-width: 761px) {
  .inspiration-inner {
    padding-left: 32px;
  }

  .inspiration-column {
    flex-basis: clamp(225px, 28vw, 320px);
  }
}

/* Mobile: make each two-image mosaic column about 25% larger. */
@media (max-width: 760px) {
  .inspiration-gallery {
    padding-left: 20px;
    padding-right: 20px;
    scroll-padding-inline: 20px;
  }

  .inspiration-column {
    flex: 0 0 min(86vw, 338px);
  }

  .inspiration-dots {
    margin-top: 52px;
  }
}


/* === White canvas + retailer divider + adaptive mobile inspiration v46 === */
html,
body,
.home-intro,
.values-strip,
.about-section,
.about-panel,
.collections-section,
.retailers-section,
.inspiration-section {
  background-color: #ffffff;
}

.site-header.is-scrolled,
.site-header.is-menu-open,
.site-header .submenu,
.site-header.is-menu-open .mobile-nav,
.site-header.is-menu-open .mobile-submenu {
  background-color: #ffffff;
}

.retailers-rule {
  display: block;
  width: 50px;
  height: 2px;
  margin: 24px auto 0;
  background: var(--navy);
}

.retailers-intro {
  margin-top: 20px;
}

@media (max-width: 760px) {
  .retailers-rule {
    width: 40px;
    margin-top: 18px;
  }

  .retailers-intro {
    margin-top: 16px;
  }

  /* Fit the entire Inspiration composition inside each mobile viewport. */
  .inspiration-section {
    min-height: 100svh;
    height: 100svh;
    padding: clamp(34px, 5svh, 54px) 0 clamp(26px, 4svh, 44px);
    overflow: hidden;
  }

  .inspiration-inner {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
    align-content: center;
    gap: clamp(22px, 3.2svh, 34px);
  }

  .inspiration-content {
    width: calc(100% - 56px);
    max-width: 360px;
    margin: 0 auto;
  }

  .inspiration-kicker {
    margin-bottom: clamp(10px, 1.5svh, 14px);
  }

  .inspiration-content h2 {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.06;
  }

  .inspiration-rule {
    margin-top: clamp(10px, 1.4svh, 14px);
    margin-bottom: clamp(10px, 1.4svh, 14px);
  }

  .inspiration-intro {
    font-size: clamp(9px, 2.6vw, 10.5px);
    line-height: 1.5;
  }

  .inspiration-cta {
    min-height: 42px;
    margin-top: clamp(12px, 1.8svh, 18px);
  }

  .inspiration-visuals {
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .inspiration-gallery {
    flex: 0 0 auto;
    gap: 10px;
    padding: 0 28px 2px;
    scroll-padding-inline: 28px;
  }

  .inspiration-column {
    /* Two square images + gap adapt to available vertical space. */
    flex: 0 0 clamp(128px, min(62vw, calc((100svh - 405px) / 2)), 230px);
    gap: 10px;
  }

  .inspiration-dots {
    flex: 0 0 auto;
    margin-top: clamp(26px, 3.8svh, 40px);
  }
}

@media (max-width: 430px) and (max-height: 720px) {
  .inspiration-section {
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .inspiration-inner {
    gap: 18px;
  }

  .inspiration-content h2 {
    font-size: 23px;
  }

  .inspiration-intro {
    font-size: 9px;
  }

  .inspiration-cta {
    min-height: 40px;
    margin-top: 10px;
  }

  .inspiration-column {
    flex-basis: 124px;
  }

  .inspiration-dots {
    margin-top: 22px;
  }
}


/* === v47: remove inspiration CTA and enlarge mobile mosaic adaptively === */
.inspiration-content .inspiration-cta {
  display: none !important;
}

@media (max-width: 760px) {
  /* Increase inspiration mosaic ~15% while keeping it adaptive per viewport. */
  .inspiration-column {
    flex-basis: clamp(147px, min(71vw, calc((100svh - 405px) / 2 * 1.15)), 265px);
  }
}

@media (max-width: 430px) and (max-height: 720px) {
  .inspiration-column {
    flex-basis: clamp(138px, 67vw, 188px);
  }
}


/* === Newsletter + section navigation v48 === */
html {
  scroll-padding-top: var(--header-h);
}

#colecciones,
#nosotros,
#tiendas,
#inspiracion,
#contacto {
  scroll-margin-top: var(--header-h);
}

.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;
}

.newsletter-section {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 50% 50%;
  background: #ffffff;
}

.newsletter-media {
  min-height: 100svh;
  background: #d9d9d9;
}

.newsletter-panel {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(64px, 6vw, 96px) clamp(56px, 7vw, 110px);
  background: #ffffff;
}

.newsletter-content {
  width: min(100%, 560px);
  color: var(--navy);
}

.newsletter-kicker {
  margin: 0 0 24px;
  color: #9a704e;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .30em;
}

.newsletter-content h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(38px, 3.4vw, 52px);
  line-height: 1.06;
  letter-spacing: -.03em;
  font-weight: 400;
}

.newsletter-rule {
  display: block;
  width: 50px;
  height: 2px;
  margin: 28px 0 26px;
  background: var(--navy);
}

.newsletter-copy {
  max-width: 500px;
  margin: 0 0 32px;
  font-size: 15px;
  line-height: 1.65;
}

.newsletter-form {
  width: min(100%, 500px);
}

.newsletter-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid #cfd3d8;
  border-radius: 0;
  outline: none;
  background: #ffffff;
  color: var(--navy);
  font: inherit;
  font-size: 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.newsletter-form input::placeholder {
  color: #8d9299;
}

.newsletter-form input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 1px var(--navy);
}

.newsletter-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 12px;
  border: 0;
  background: var(--navy);
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .04em;
  cursor: pointer;
  transition: opacity .18s ease;
}

.newsletter-submit:hover,
.newsletter-submit:focus-visible {
  opacity: .9;
}

.newsletter-status {
  min-height: 18px;
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.4;
}

.newsletter-legal {
  max-width: 440px;
  margin: 12px 0 0;
  color: #8b8f96;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .newsletter-panel {
    padding: 56px 44px;
  }

  .newsletter-content h2 {
    font-size: clamp(34px, 4vw, 44px);
  }
}

@media (max-width: 760px) {
  .newsletter-section {
    min-height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(230px, 38svh) minmax(0, 1fr);
  }

  .newsletter-media {
    min-height: 0;
    height: 100%;
  }

  .newsletter-panel {
    min-height: 0;
    justify-content: center;
    padding: 34px 28px 42px;
  }

  .newsletter-content {
    width: 100%;
    max-width: 360px;
    text-align: center;
  }

  .newsletter-kicker {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .newsletter-content h2 {
    max-width: 320px;
    margin-inline: auto;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.08;
  }

  .newsletter-rule {
    width: 40px;
    margin: 18px auto 18px;
  }

  .newsletter-copy {
    max-width: 315px;
    margin: 0 auto 24px;
    font-size: 11px;
    line-height: 1.55;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form input,
  .newsletter-submit {
    min-height: 50px;
    font-size: 13px;
  }

  .newsletter-legal {
    max-width: 300px;
    margin: 12px auto 0;
    font-size: 10px;
  }
}


/* === Newsletter content box aligned with site sections v49 === */
.newsletter-panel {
  padding: clamp(48px, 5vw, 80px) clamp(44px, 5vw, 76px);
  align-items: center;
}

.newsletter-content {
  width: min(100%, 650px);
  margin-left: 0;
  color: var(--navy);
}

.newsletter-kicker {
  margin: 0 0 28px;
  color: #9a704e;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .28em;
}

.newsletter-content h2 {
  max-width: 580px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(40px, 3.6vw, 54px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 700;
}

.newsletter-rule {
  display: block;
  width: 82px;
  height: 3px;
  margin: 34px 0 30px;
  background: var(--navy);
}

.newsletter-copy {
  max-width: 520px;
  margin: 0 0 28px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.7;
}

.newsletter-form {
  width: min(100%, 520px);
}

.newsletter-form input {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid #d4d8dd;
  font-size: 13px;
}

.newsletter-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
}

.newsletter-status {
  min-height: 18px;
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.4;
}

.newsletter-legal {
  max-width: 460px;
  margin: 14px 0 0;
  color: #8b8f96;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 1200px) {
  .newsletter-panel {
    padding: 56px 48px;
  }

  .newsletter-content {
    width: min(100%, 560px);
  }

  .newsletter-content h2 {
    max-width: 500px;
    font-size: clamp(36px, 3.8vw, 46px);
  }

  .newsletter-copy {
    font-size: 13px;
  }
}

@media (max-width: 760px) {
  .newsletter-panel {
    padding: 42px 25px 48px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .newsletter-content {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .newsletter-kicker {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .newsletter-content h2 {
    max-width: 320px;
    font-size: clamp(30px, 8.8vw, 44px);
    line-height: 1.02;
  }

  .newsletter-rule {
    width: 58px;
    height: 2px;
    margin: 24px 0 22px;
  }

  .newsletter-copy {
    max-width: 100%;
    margin: 0 0 24px;
    font-size: 12px;
    line-height: 1.72;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form input,
  .newsletter-submit {
    min-height: 54px;
    font-size: 12px;
  }

  .newsletter-legal {
    max-width: 100%;
    margin: 12px 0 0;
    font-size: 10px;
  }
}


/* === Contact section v50 === */
.contact-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: clamp(72px, 8vh, 112px) 0;
}

.contact-inner {
  width: min(calc(100% - 96px), 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  align-items: center;
  min-height: 520px;
}

.contact-copy-box,
.contact-form-box {
  width: min(100%, 360px);
  margin: 0 auto;
}

.contact-copy-box {
  color: var(--navy);
}

.contact-kicker {
  margin: 0 0 22px;
  color: #9a704e;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .28em;
}

.contact-copy-box h2 {
  margin: 0;
  max-width: 330px;
  color: var(--navy);
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: 1.04;
  letter-spacing: -.03em;
  font-weight: 700;
}

.contact-rule {
  display: block;
  width: 46px;
  height: 2px;
  margin: 22px 0 20px;
  background: var(--navy);
}

.contact-copy {
  max-width: 320px;
  margin: 0;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.7;
}

.contact-divider {
  width: 1px;
  height: min(58vh, 460px);
  background: #dfe3e8;
  justify-self: center;
}

.contact-form {
  width: 100%;
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7dce2;
  border-radius: 0;
  outline: none;
  background: #ffffff;
  color: var(--navy);
  font: inherit;
  font-size: 12px;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.contact-form input {
  min-height: 48px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 138px;
  padding: 15px 16px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #728099;
  opacity: .9;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 1px var(--navy);
}

.contact-submit {
  width: min(100%, 210px);
  min-height: 46px;
  border: 0;
  background: var(--navy);
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .18s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  opacity: .9;
}

.contact-status {
  min-height: 18px;
  margin: 0;
  color: var(--navy);
  font-size: 11px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .contact-inner {
    width: min(calc(100% - 48px), 820px);
    gap: 34px;
  }
}

@media (max-width: 760px) {
  .contact-section {
    min-height: 100svh;
    padding: 58px 0 64px;
  }

  .contact-inner {
    width: calc(100% - 44px);
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1px auto;
    gap: 34px;
    min-height: 0;
  }

  .contact-copy-box,
  .contact-form-box {
    width: 100%;
    max-width: 360px;
  }

  .contact-copy-box h2 {
    max-width: 300px;
    font-size: clamp(28px, 8.5vw, 36px);
  }

  .contact-copy {
    max-width: 330px;
    font-size: 11px;
  }

  .contact-divider {
    width: 100%;
    max-width: 360px;
    height: 1px;
    margin: 0 auto;
  }

  .contact-form {
    gap: 12px;
  }

  .contact-form input {
    min-height: 50px;
  }

  .contact-form textarea {
    min-height: 130px;
  }

  .contact-submit {
    width: 100%;
    min-height: 50px;
  }
}


/* === Contact 50/50 centering refinement v51 === */
.contact-inner {
  width: min(calc(100% - 96px), 1280px);
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  column-gap: 0;
}

.contact-copy-box,
.contact-form-box {
  width: min(100%, 400px);
  margin: 0 auto;
  justify-self: center;
}

.contact-copy-box {
  padding-right: 24px;
}

.contact-form-box {
  padding-left: 24px;
}

.contact-divider {
  height: min(58vh, 460px);
  align-self: center;
}

@media (max-width: 900px) {
  .contact-inner {
    width: min(calc(100% - 48px), 920px);
  }

  .contact-copy-box,
  .contact-form-box {
    width: min(100%, 360px);
  }

  .contact-copy-box { padding-right: 16px; }
  .contact-form-box { padding-left: 16px; }
}

@media (max-width: 760px) {
  .contact-copy-box,
  .contact-form-box {
    padding-left: 0;
    padding-right: 0;
  }
}


/* === Contact deeper centering refinement v52 === */
.contact-inner {
  width: min(calc(100% - 96px), 1360px);
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  align-items: stretch;
  min-height: 560px;
}

.contact-side {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.contact-copy-box,
.contact-form-box {
  width: min(100%, 380px);
  margin: 0;
  padding: 0;
}

.contact-copy-box {
  justify-self: unset;
}

.contact-form-box {
  justify-self: unset;
}

.contact-copy-box h2 {
  max-width: 340px;
}

.contact-copy {
  max-width: 340px;
}

.contact-divider {
  align-self: center;
}

@media (max-width: 900px) {
  .contact-inner {
    width: min(calc(100% - 48px), 1120px);
    min-height: 520px;
  }

  .contact-copy-box,
  .contact-form-box {
    width: min(100%, 340px);
  }
}

@media (max-width: 760px) {
  .contact-inner {
    width: calc(100% - 44px);
    min-height: 0;
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 68px;
    justify-items: center;
  }

  .contact-side {
    width: 100%;
    min-height: auto;
    justify-content: center;
  }

  .contact-copy-box,
  .contact-form-box {
    width: 100%;
    max-width: 360px;
  }

  .contact-copy-box h2 {
    max-width: 300px;
  }

  .contact-copy {
    max-width: 330px;
  }

  .contact-divider {
    display: none;
  }
}


/* Footer */
.site-footer {
  background: var(--white);
  color: var(--navy);
  padding: 0 56px 44px;
}

.footer-top-divider,
.footer-bottom-divider {
  width: 100%;
  height: 1px;
  background: rgba(13, 44, 82, 0.12);
}

.footer-main {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 84px 36px 72px;
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(540px, 1fr);
  align-items: center;
  gap: 96px;
}

.footer-brand-block {
  display: grid;
  gap: 28px;
  justify-items: start;
}

.footer-brand {
  display: inline-flex;
  text-decoration: none;
}

.footer-brand img {
  display: block;
  width: min(430px, 100%);
  height: auto;
}

.footer-brand-copy {
  margin: 0;
  max-width: 440px;
  font-size: 24px;
  line-height: 1.38;
  letter-spacing: -0.01em;
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(220px, 1fr);
  align-items: start;
  gap: 68px;
}

.footer-nav,
.footer-social {
  display: grid;
  align-content: start;
}

.footer-nav {
  gap: 24px;
}

.footer-social {
  gap: 28px;
  padding-left: 68px;
  border-left: 1px solid rgba(13, 44, 82, 0.12);
}

.footer-kicker {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.22em;
  color: #a57a49;
}

.footer-nav a,
.footer-social-link,
.footer-bottom a {
  color: var(--navy);
  text-decoration: none;
}

.footer-nav a {
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 0.08em;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.footer-social-link svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-link[aria-label="Facebook"] svg,
.footer-social-link[aria-label="Pinterest"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-social-link:hover,
.footer-social-link:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  opacity: 0.7;
}

.footer-bottom {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 32px 36px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 24px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.footer-bottom p {
  justify-self: start;
}

.footer-bottom a:nth-child(2) {
  justify-self: center;
}

.footer-bottom a:nth-child(3) {
  justify-self: end;
}

@media (max-width: 1100px) {
  .site-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .footer-main {
    gap: 56px;
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    width: min(380px, 100%);
  }

  .footer-links-wrap {
    width: 100%;
    gap: 44px;
  }

  .footer-nav a {
    font-size: 22px;
  }

  .footer-social-link {
    font-size: 20px;
  }

  .footer-bottom {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 0 24px 32px;
  }

  .footer-main {
    padding: 52px 0 40px;
    gap: 40px;
    justify-items: center;
    text-align: center;
  }

  .footer-brand-block {
    justify-items: center;
    gap: 22px;
  }

  .footer-brand img {
    width: min(280px, 72vw);
  }

  .footer-brand-copy {
    max-width: 320px;
    font-size: 18px;
    line-height: 1.45;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
    justify-items: center;
  }

  .footer-nav,
  .footer-social {
    justify-items: center;
  }

  .footer-nav {
    gap: 18px;
  }

  .footer-nav a {
    font-size: 19px;
  }

  .footer-social {
    padding-left: 0;
    padding-top: 34px;
    border-left: 0;
    border-top: 1px solid rgba(13, 44, 82, 0.12);
    width: min(280px, 100%);
    gap: 22px;
  }

  .footer-social-link {
    gap: 14px;
    font-size: 18px;
    letter-spacing: 0.06em;
  }

  .footer-social-link svg {
    width: 28px;
    height: 28px;
  }

  .footer-bottom {
    padding: 26px 0 0;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 16px;
  }

  .footer-bottom p,
  .footer-bottom a:nth-child(2),
  .footer-bottom a:nth-child(3) {
    justify-self: center;
  }
}
