:root {
  --ink: #172126;
  --muted: #66747a;
  --line: #dfe8ea;
  --paper: #ffffff;
  --soft: #f4f8f8;
  --ocean: #087d94;
  --teal: #23a6a4;
  --coral: #e76855;
  --gold: #caa15a;
  --graphite: #24333a;
  --shadow: 0 18px 45px rgba(16, 34, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(8, 125, 148, 0.05), rgba(255, 255, 255, 0) 420px),
    var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 232, 234, 0.8);
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 16px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 180ms ease, background 180ms ease;
  z-index: 10;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(23, 33, 38, 0.08);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--ocean), var(--coral));
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 20px;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: clamp(14px, 2.2vw, 30px);
  justify-content: center;
}

.main-nav a {
  color: #31434a;
  font-size: 14px;
  font-weight: 700;
}

.nav-cta,
.button {
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
}

.nav-cta,
.button.primary {
  background: var(--coral);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

.button.secondary.dark {
  background: rgba(23, 33, 38, 0.08);
  color: var(--ink);
}

.hero {
  min-height: 88vh;
  overflow: hidden;
  padding: 130px clamp(18px, 5vw, 72px) 34px;
  position: relative;
}

.hero-logo-bg,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-logo-bg {
  filter: saturate(0.9) contrast(0.94);
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  width: 100%;
  z-index: -2;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 23, 28, 0.94), rgba(9, 23, 28, 0.72) 48%, rgba(9, 23, 28, 0.32)),
    linear-gradient(135deg, rgba(8, 125, 148, 0.62), rgba(231, 104, 85, 0.24) 55%, rgba(9, 23, 28, 0.58));
  z-index: -1;
}

.hero-layout {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
}

.hero-content {
  color: #fff;
  max-width: 710px;
  padding-top: min(8vh, 80px);
}

.hero-showcase {
  margin: 0;
  padding-top: min(8vh, 80px);
}

.hero-showcase img {
  aspect-ratio: 1.18;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  object-fit: cover;
  width: 100%;
}

.hero-showcase figcaption {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  margin-top: 12px;
}

.eyebrow {
  color: var(--ocean);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7be5e1;
}

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

h1 {
  font-size: clamp(42px, 6.4vw, 82px);
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 920px;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.06;
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
  max-width: 650px;
}

.hero-highlights {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
  max-width: 720px;
}

.hero-highlights span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  padding: 12px 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-left: auto;
  margin-top: clamp(52px, 9vh, 100px);
  max-width: 820px;
}

.hero-stats article {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  min-height: 122px;
  padding: 22px;
}

.hero-stats strong {
  color: var(--ocean);
  display: block;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  margin-bottom: 10px;
}

.hero-stats span {
  color: #33464e;
  font-size: 14px;
  font-weight: 700;
}

.section,
.section-band {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.section,
.section-band,
.image-band {
  background-attachment: scroll;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.62)),
    url("assets/beach-section-bg.png");
  background-position: center;
  background-size: cover;
}

.section-grid,
.operations,
.contact-section {
  display: grid;
  gap: clamp(28px, 5vw, 76px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
}

.section-band {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(244, 248, 248, 0.62)),
    url("assets/beach-section-bg.png") center / cover no-repeat;
}

.intro p:last-child {
  color: #42545b;
  font-size: 18px;
  margin: 34px 0 0;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 760px;
}

.intro {
  background-position: center top;
}

.buyer-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 248, 248, 0.62)),
    radial-gradient(circle at 86% 14%, rgba(35, 166, 164, 0.16), transparent 34%),
    url("assets/beach-section-bg.png") center / cover no-repeat;
  background-position: center 42%;
}

.why-layout,
.why-list,
.service-grid {
  display: grid;
  gap: 16px;
}

.why-layout {
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.why-copy {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(223, 232, 234, 0.86);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 46px);
}

.why-copy p:last-child {
  color: #42545b;
  font-size: 18px;
  margin-bottom: 0;
}

.why-list {
  counter-reset: why-counter;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-list li {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: why-counter;
  min-height: 148px;
  padding: 22px 22px 22px 76px;
  position: relative;
}

.why-list li::before {
  align-items: center;
  background: linear-gradient(135deg, var(--ocean), var(--coral));
  border-radius: 50%;
  color: #fff;
  content: counter(why-counter, decimal-leading-zero);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  left: 22px;
  position: absolute;
  top: 22px;
  width: 42px;
}

.why-list strong {
  color: var(--ink);
  display: block;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.why-list span {
  color: var(--muted);
  display: block;
  font-size: 15px;
}

.service-grid article {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.service-grid p,
.quality-copy p {
  color: var(--muted);
}

.capability-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(244, 248, 248, 0.7) 52%, rgba(244, 248, 248, 0.46)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.68)),
    url("assets/well-fit-factory-real.jpg") center / cover no-repeat;
  position: relative;
}

.capability-section::before {
  background:
    linear-gradient(135deg, rgba(8, 125, 148, 0.12), transparent 46%),
    linear-gradient(315deg, rgba(231, 104, 85, 0.1), transparent 42%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.capability-section > * {
  position: relative;
}

.metric-grid,
.product-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.metric-card,
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 240px;
  padding: 26px;
}

.metric-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 248, 0.86)),
    #fff;
  backdrop-filter: blur(10px);
}

.metric-card span {
  color: var(--coral);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 36px;
}

.metric-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 14px;
}

.metric-card p,
.product-card p,
.operations-copy p,
.global-content p,
.contact-copy p {
  color: var(--muted);
}

.workshop-showcase {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 22px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 30px);
}

.workshop-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.workshop-heading h3 {
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 0;
}

.workshop-controls {
  display: flex;
  gap: 8px;
}

.workshop-controls button {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  min-height: 40px;
  padding: 9px 13px;
}

.workshop-controls button.is-active {
  background: var(--ocean);
  border-color: var(--ocean);
  color: #fff;
}

.workshop-viewer {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.workshop-viewer img {
  aspect-ratio: 16 / 8.2;
  border-radius: 8px;
  height: auto;
  object-fit: cover;
  transition: opacity 160ms ease;
  width: 100%;
}

.workshop-viewer figcaption {
  background: linear-gradient(90deg, rgba(9, 23, 28, 0.9), rgba(9, 23, 28, 0.55));
  bottom: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  left: 0;
  padding: 14px 18px;
  position: absolute;
  right: 0;
}

.workshop-thumbnails {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

.workshop-thumbnails button {
  background: transparent;
  border: 3px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}

.workshop-thumbnails button.is-active {
  border-color: var(--coral);
}

.workshop-thumbnails img {
  aspect-ratio: 16 / 6;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.image-band {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  min-height: 520px;
  overflow: hidden;
}

.image-band img {
  height: 100%;
  max-height: 620px;
  min-height: 520px;
  object-fit: cover;
  width: 100%;
}

.image-band > div {
  background:
    linear-gradient(135deg, rgba(12, 89, 105, 0.86), rgba(22, 39, 46, 0.92)),
    url("assets/beach-section-bg.png") center / cover no-repeat,
    var(--ink);
  color: #fff;
  min-height: 520px;
  padding: clamp(38px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-band .eyebrow {
  color: #8be8e4;
}

.image-band p:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  margin-bottom: 0;
}

.muted {
  background:
    linear-gradient(180deg, rgba(247, 245, 240, 0.72), rgba(255, 255, 255, 0.66) 92%),
    url("assets/beach-section-bg.png") center / cover no-repeat;
  background-position: center 58%;
}

.collection-feature {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  margin-bottom: 18px;
}

.collection-feature img {
  border-radius: 8px 0 0 8px;
  height: 100%;
  max-height: 470px;
  object-fit: cover;
  width: 100%;
}

.collection-feature > div {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 48px);
}

.collection-feature p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.product-card {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 0 rgba(23, 33, 38, 0.03);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card::before,
.product-card::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.product-card::before {
  background-position: center;
  background-size: cover;
  opacity: 0.92;
  transform: scale(1.02);
}

.product-card::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62) 58%, rgba(255, 255, 255, 0.26)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.76));
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-card button,
.inline-showroom {
  background: var(--ink);
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
}

.product-card button {
  margin-top: auto;
  min-height: 42px;
  padding: 10px 14px;
}

.inline-showroom {
  margin-top: 10px;
}

.product-women::before {
  background-image: url("assets/product-womens-swim.png");
}

.product-performance::before {
  background-image: url("assets/product-performance-swim.png");
}

.product-kids::before {
  background-image: url("assets/product-kids-swim.png");
}

.product-custom::before {
  background-image: url("assets/product-custom-development.png");
}

.product-card:hover,
.why-list li:hover,
.service-grid article:hover {
  box-shadow: 0 18px 42px rgba(16, 34, 42, 0.12);
  transform: translateY(-3px);
}

.swatch {
  border-radius: 50%;
  height: 42px;
  margin-bottom: 28px;
  width: 42px;
}

.swatch.ocean {
  background: var(--ocean);
}

.swatch.coral {
  background: var(--coral);
}

.swatch.graphite {
  background: var(--graphite);
}

.swatch.sand {
  background: var(--gold);
}

.services-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(244, 248, 248, 0.6)),
    url("assets/beach-section-bg.png") center / cover no-repeat;
  background-position: center 36%;
}

.services-section .section-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
  max-width: 780px;
}

.service-explorer {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1.58fr);
  margin-bottom: 48px;
}

.service-menu {
  display: grid;
  gap: 8px;
}

.service-menu button {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 2px 12px;
  grid-template-columns: 38px 1fr;
  min-height: 82px;
  padding: 14px;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-menu button:hover {
  transform: translateX(3px);
}

.service-menu button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.service-menu button > span {
  align-items: center;
  background: rgba(8, 125, 148, 0.12);
  border-radius: 50%;
  color: var(--ocean);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  grid-row: 1 / 3;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.service-menu button.is-active > span {
  background: var(--coral);
  color: #fff;
}

.service-menu strong {
  font-size: 16px;
  line-height: 1.15;
}

.service-menu small {
  color: var(--muted);
  font-size: 12px;
}

.service-menu button.is-active small {
  color: rgba(255, 255, 255, 0.68);
}

.service-detail {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  min-height: 540px;
  overflow: hidden;
}

.service-detail-media {
  min-height: 540px;
  overflow: hidden;
  position: relative;
}

.service-detail-media::after {
  background: linear-gradient(180deg, transparent 58%, rgba(9, 23, 28, 0.78));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.service-detail-media img {
  height: 100%;
  object-fit: cover;
  transition: opacity 160ms ease, transform 500ms ease;
  width: 100%;
}

.service-detail:hover .service-detail-media img {
  transform: scale(1.025);
}

.service-detail-media > span {
  bottom: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  left: 22px;
  position: absolute;
  z-index: 1;
}

.service-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 50px);
}

.service-detail-copy h3 {
  font-size: clamp(26px, 3vw, 40px);
}

.service-detail-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.service-facts {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0;
}

.service-facts span {
  background: var(--soft);
  border-left: 3px solid var(--teal);
  color: var(--graphite);
  font-size: 13px;
  font-weight: 800;
  padding: 11px 12px;
}

.service-detail-copy ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 4px 0 26px;
  padding: 0;
}

.service-detail-copy li {
  color: var(--graphite);
  padding-left: 22px;
  position: relative;
}

.service-detail-copy li::before {
  color: var(--coral);
  content: "+";
  font-weight: 800;
  left: 0;
  position: absolute;
}

.service-detail-copy .button {
  align-self: flex-start;
}

.service-subheading {
  margin-bottom: 22px;
}

.service-subheading h3 {
  font-size: clamp(24px, 3vw, 36px);
}

.showroom-section {
  background:
    linear-gradient(135deg, rgba(12, 89, 105, 0.78), rgba(22, 39, 46, 0.86)),
    url("assets/swimwear-product-flatlay.png") center / cover no-repeat;
  color: #fff;
}

.showroom-panel {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.showroom-panel h2 {
  max-width: 820px;
}

.showroom-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  max-width: 760px;
}

.showroom-panel .eyebrow {
  color: #8be8e4;
}

.showroom-modal {
  display: none;
  inset: 0;
  padding: 22px;
  position: fixed;
  z-index: 30;
}

.showroom-modal.is-open {
  display: grid;
  place-items: center;
}

.showroom-backdrop {
  background: rgba(9, 23, 28, 0.72);
  inset: 0;
  position: absolute;
}

.showroom-dialog {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
  max-height: min(860px, calc(100vh - 44px));
  max-width: 1220px;
  overflow: auto;
  position: relative;
  width: min(1220px, 100%);
  z-index: 1;
}

.showroom-close {
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 30px;
  height: 44px;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 44px;
  z-index: 2;
}

.showroom-tabs {
  display: flex;
  gap: 8px;
  padding: 18px 72px 14px 18px;
}

.showroom-tabs button {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  min-height: 40px;
  padding: 10px 14px;
}

.showroom-tabs button.is-active {
  background: var(--ocean);
  border-color: var(--ocean);
  color: #fff;
}

.showroom-content {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(360px, 0.78fr) minmax(420px, 1fr);
}

.showroom-visual {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 250, 252, 0.98)),
    radial-gradient(circle at 18% 16%, rgba(8, 125, 148, 0.12), transparent 30%);
  aspect-ratio: 3 / 4;
  max-height: calc(100vh - 142px);
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.showroom-visual > img {
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: filter 320ms ease, object-position 320ms ease, transform 320ms ease;
  width: 100%;
}

.showroom-color-wash {
  inset: 0;
  mix-blend-mode: color;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: background 260ms ease, opacity 260ms ease;
}

.showroom-visual[data-palette-style="coastal"] .showroom-color-wash {
  background: linear-gradient(135deg, #087d94, #3ebac0);
  opacity: 0;
}

.showroom-visual[data-palette-style="coral"] .showroom-color-wash {
  background: linear-gradient(135deg, #e76855, #ff9b85);
  opacity: 0;
}

.showroom-visual[data-palette-style="eco"] .showroom-color-wash {
  background: linear-gradient(135deg, #b49b64, #789b70);
  opacity: 0;
}

.showroom-visual[data-palette-style="graphite"] .showroom-color-wash {
  background: linear-gradient(135deg, #24333a, #52656d);
  opacity: 0;
}

.showroom-visual[data-palette-style="graphite"] > img {
  filter: saturate(0.68) contrast(1.08);
}

.showroom-palette-label {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  display: flex;
  gap: 8px;
  left: 18px;
  padding: 8px 12px;
  position: absolute;
  top: 18px;
}

.showroom-palette-label > span {
  background: #087d94;
  border-radius: 50%;
  height: 15px;
  transition: background 260ms ease;
  width: 15px;
}

.showroom-palette-label strong {
  color: var(--ink);
  font-size: 12px;
}

.showroom-gallery-nav {
  align-items: center;
  background: rgba(9, 23, 28, 0.82);
  border-radius: 4px;
  display: flex;
  gap: 8px;
  position: absolute;
  right: 18px;
  top: 18px;
}

.showroom-gallery-nav button {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 20px;
  font-weight: 800;
  min-height: 38px;
  padding: 6px 11px;
}

.showroom-gallery-nav button:last-child {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 12px;
}

.showroom-gallery-nav > span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.showroom-visual.is-expanded > img {
  object-fit: contain;
  transform: none;
}

.showroom-visual.is-expanded .showroom-color-wash {
  opacity: 0.08;
}

.showroom-visual.product-mode > img {
  background: #fafaf8;
  filter: none;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.showroom-visual.product-mode .showroom-color-wash {
  opacity: 0.07;
}

.showroom-focus-overlay {
  background: rgba(9, 23, 28, 0.82);
  border-left: 4px solid var(--coral);
  bottom: 18px;
  color: #fff;
  display: grid;
  gap: 2px;
  left: 18px;
  max-width: calc(100% - 36px);
  padding: 14px 16px 14px 62px;
  position: absolute;
  transition: background 260ms ease, border-color 260ms ease;
}

.showroom-focus-overlay .focus-icon {
  align-items: center;
  background: var(--coral);
  border-radius: 50%;
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  left: 14px;
  position: absolute;
  top: 15px;
  width: 36px;
}

.showroom-focus-overlay strong {
  font-size: 14px;
}

.showroom-focus-overlay small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.showroom-visual[data-focus-style="fit"] > img {
  object-position: center;
  transform: none;
}

.showroom-visual[data-focus-style="fabric"] > img {
  filter: contrast(1.07) saturate(1.15);
  object-position: center;
  transform: none;
}

.showroom-visual[data-focus-style="packing"] > img {
  object-position: center;
  transform: none;
}

.showroom-visual[data-focus-style="recycled"] > img {
  filter: saturate(0.82) sepia(0.12);
  object-position: center;
}

.showroom-visual[data-focus-style="recycled"] .showroom-focus-overlay {
  background: rgba(31, 77, 58, 0.9);
  border-color: #78ad76;
}

.showroom-visual.product-mode[data-focus-style] > img {
  filter: none;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.showroom-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(28px, 4vw, 54px);
}

.showroom-info p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.showroom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.showroom-tags span {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 12px;
}

.showroom-series {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin: 20px 0;
  padding: 18px 0;
}

.showroom-series-heading {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.showroom-series-heading.compact {
  margin-bottom: 10px;
}

.showroom-series-heading h3 {
  font-size: 16px;
  margin: 0;
}

.showroom-series-heading span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.real-sample-wall {
  display: none;
  background:
    linear-gradient(135deg, rgba(234, 248, 250, 0.92), rgba(255, 255, 255, 0.94)),
    url("assets/beach-section-bg.png") center / cover;
  border: 1px solid rgba(8, 125, 148, 0.18);
  border-radius: 8px;
  margin: 20px 0 24px;
  padding: 16px;
}

.real-sample-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.real-sample-grid button {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 65, 78, 0.12);
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(12, 45, 57, 0.07);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  grid-template-rows: 104px auto;
  min-height: 156px;
  overflow: hidden;
  padding: 0;
  text-align: left;
  transition: border-color 160ms ease, transform 160ms ease;
}

.real-sample-grid button.is-active,
.real-sample-grid button:hover {
  border-color: var(--ocean);
  transform: translateY(-1px);
}

.real-sample-grid img {
  background: #fff;
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.real-sample-grid span {
  display: grid;
  gap: 3px;
  padding: 10px;
}

.real-sample-grid strong {
  font-size: 13px;
  line-height: 1.25;
}

.real-sample-grid small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.series-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.series-options button {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--graphite);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  min-height: 36px;
  padding: 8px 11px;
}

.series-options button.is-active {
  background: var(--ocean);
  border-color: var(--ocean);
  color: #fff;
}

.gallery-thumbnails {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-thumbnails button {
  background: var(--soft);
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  text-align: left;
}

.gallery-thumbnails button.is-active {
  border-color: var(--coral);
}

.gallery-thumbnails img {
  aspect-ratio: 16 / 9;
  background: #fff;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.gallery-thumbnails span {
  color: var(--ink);
  display: block;
  font-size: 10px;
  font-weight: 800;
  overflow: hidden;
  padding: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.individual-products-toggle {
  background: var(--ink);
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  margin-top: 12px;
  min-height: 42px;
  padding: 10px 14px;
  width: 100%;
}

.individual-products {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
  max-height: 620px;
  overflow-y: auto;
  padding-right: 4px;
}

.individual-products[hidden] {
  display: none;
}

.individual-product-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.collection-card {
  box-shadow: 0 12px 28px rgba(12, 45, 57, 0.08);
}

.individual-product-card.is-active {
  border-color: var(--coral);
  box-shadow: 0 0 0 2px rgba(231, 104, 85, 0.16);
}

.individual-product-card.is-selected {
  border-color: var(--ocean);
}

.product-image-button {
  background: #fafaf8;
  border: 0;
  cursor: pointer;
  display: block;
  padding: 0;
  width: 100%;
}

.individual-product-card img {
  aspect-ratio: 1 / 1;
  background: #fff;
  display: block;
  object-fit: contain;
  width: 100%;
}

.individual-product-info {
  display: grid;
  gap: 9px;
  padding: 12px;
}

.individual-product-info > strong {
  color: var(--graphite);
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.individual-product-info p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}

.collection-badge {
  align-self: start;
  background: rgba(8, 125, 148, 0.1);
  border: 1px solid rgba(8, 125, 148, 0.18);
  border-radius: 999px;
  color: var(--ocean);
  display: inline-flex;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 5px 8px;
  text-transform: uppercase;
  width: fit-content;
}

.collection-meta {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 7px;
  margin: 0;
  padding-top: 9px;
}

.collection-meta div {
  display: grid;
  gap: 2px;
}

.collection-meta dt {
  color: var(--ocean);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-meta dd {
  color: var(--graphite);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.individual-product-actions {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.individual-product-actions button {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--graphite);
  cursor: pointer;
  font: inherit;
  font-size: 9px;
  font-weight: 800;
  min-height: 32px;
  padding: 5px 3px;
}

.individual-product-actions button:hover,
.individual-product-actions button.is-active {
  background: var(--ocean);
  border-color: var(--ocean);
  color: #fff;
}

.individual-product-actions button:last-child {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.product-selection-bar {
  align-items: center;
  background: rgba(8, 125, 148, 0.09);
  border: 1px solid rgba(8, 125, 148, 0.22);
  border-radius: 6px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 10px;
  padding: 10px 12px;
}

.product-selection-bar[hidden] {
  display: none;
}

.product-selection-bar > span {
  color: var(--graphite);
  font-size: 12px;
}

.product-selection-bar > span strong {
  color: var(--ocean);
  font-size: 16px;
}

.product-selection-bar > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-selection-bar button,
.product-selection-bar a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  min-height: 32px;
  padding: 6px 9px;
}

.product-selection-bar button.is-active,
.product-selection-bar a {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.empty-shortlist {
  color: var(--muted);
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  text-align: center;
}

.showroom-builder {
  background:
    linear-gradient(135deg, rgba(244, 248, 248, 0.98), rgba(255, 255, 255, 0.96)),
    #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
  padding: 18px;
}

.showroom-builder h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.palette-options,
.focus-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.palette-options button,
.focus-options button {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--graphite);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
}

.palette-options button.is-active,
.focus-options button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.palette-options span {
  align-items: center;
  background: rgba(8, 125, 148, 0.12);
  border-radius: 999px;
  color: var(--ocean);
  display: inline-flex;
  font-size: 10px;
  font-weight: 900;
  height: 22px;
  justify-content: center;
  min-width: 28px;
  padding: 0 7px;
}

.palette-options button.is-active span {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.brief-card {
  background: #fff;
  border: 1px solid rgba(8, 125, 148, 0.22);
  border-radius: 8px;
  padding: 16px;
}

.brief-card span {
  color: var(--ocean);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.brief-card p {
  color: var(--graphite);
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

.showroom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.service-grid article {
  min-height: 210px;
}

.service-grid h3 {
  border-top: 4px solid var(--teal);
  padding-top: 22px;
}

.certifications-section {
  background:
    linear-gradient(135deg, rgba(247, 251, 251, 0.7), rgba(255, 255, 255, 0.6)),
    url("assets/beach-section-bg.png") center / cover no-repeat;
  background-position: center 62%;
}

.certifications-section .section-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
  max-width: 780px;
}

.cert-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cert-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 18px;
}

.cert-card img {
  aspect-ratio: 1.64;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(16, 34, 42, 0.08);
  object-fit: cover;
  width: 100%;
}

.cert-card h3 {
  font-size: 18px;
  margin: 22px 0 10px;
}

.cert-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 0;
}

.cert-note {
  color: var(--muted);
  font-size: 13px;
  margin: 18px 0 0;
}

.operations-copy {
  position: sticky;
  top: 110px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  align-items: flex-start;
  background: rgba(244, 248, 248, 0.9);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr;
  padding: 24px;
}

.timeline span {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.timeline p {
  color: var(--muted);
  margin: 0;
}

.quality-section {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(244, 248, 248, 0.66), rgba(255, 255, 255, 0.7)),
    url("assets/beach-section-bg.png") center / cover no-repeat;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.82fr);
}

.quality-section {
  background-position: center 48%;
}

.quality-media img {
  aspect-ratio: 1.22;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.quality-points {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.quality-points span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 16px;
}

.global-band {
  background:
    linear-gradient(135deg, rgba(12, 89, 105, 0.88), rgba(22, 39, 46, 0.9) 68%, rgba(81, 50, 52, 0.82)),
    url("assets/beach-section-bg.png") center / cover no-repeat;
  color: #fff;
}

.global-content {
  max-width: 880px;
}

.global-content .eyebrow {
  color: #8be8e4;
}

.global-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  max-width: 720px;
}

.offices-section {
  background:
    linear-gradient(180deg, rgba(244, 248, 248, 0.66), rgba(255, 255, 255, 0.58)),
    url("assets/beach-section-bg.png") center / cover no-repeat;
  background-position: center 38%;
}

.office-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.office-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.office-card::before,
.office-card::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.office-card::before {
  background-position: center;
  background-size: cover;
  opacity: 0.82;
  transform: scale(1.02);
}

.office-card::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.58) 48%, rgba(244, 248, 248, 0.76)),
    linear-gradient(135deg, rgba(8, 125, 148, 0.1), rgba(231, 104, 85, 0.04));
}

.office-card > * {
  position: relative;
  z-index: 1;
}

.office-hk::before {
  background-image: url("assets/office-hong-kong.png");
}

.office-cn::before {
  background-image: url("assets/well-fit-factory-real.jpg");
}

.office-eu::before {
  background-image: url("assets/office-europe-hossegor.png");
}

.office-card > span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.office-card address {
  color: var(--muted);
  font-style: normal;
  margin-bottom: 24px;
}

.office-card dl {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  margin: auto 0 0;
  padding-top: 18px;
}

.office-card dl div {
  display: grid;
  gap: 4px;
}

.office-card dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.office-card dd {
  color: var(--muted);
  margin: 0;
  overflow-wrap: anywhere;
}

.office-card a {
  color: var(--ocean);
  font-weight: 800;
}

.contact-section {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(244, 248, 248, 0.62)),
    url("assets/beach-section-bg.png") center / cover no-repeat;
  background-position: center bottom;
}

.contact-details {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
}

.contact-details div {
  display: grid;
  gap: 6px;
}

.contact-details dt {
  color: var(--ink);
  font-weight: 800;
}

.contact-details dd {
  color: var(--muted);
  margin: 0;
}

.email-list {
  display: grid;
  gap: 6px;
}

.email-list a {
  color: var(--ocean);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  background: rgba(244, 248, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(22px, 3vw, 34px);
}

.contact-form label {
  color: #35464d;
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fff;
  border: 1px solid #cfdcde;
  border-radius: 4px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px 13px;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.form-note.is-success {
  color: var(--ocean);
  font-weight: 800;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 72px);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

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

  .main-nav {
    display: none;
  }

  .section-grid,
  .operations,
  .contact-section,
  .hero-layout,
  .image-band,
  .quality-section,
  .why-layout,
  .showroom-panel,
  .showroom-content,
  .service-explorer,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-media {
    min-height: 400px;
  }

  .showroom-visual,
  .showroom-visual > img {
    min-height: 0;
  }

  .real-sample-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-grid,
  .product-grid,
  .office-grid,
  .why-list,
  .service-grid,
  .cert-grid,
  .quality-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-band img,
  .image-band > div {
    min-height: 390px;
  }

  .collection-feature {
    grid-template-columns: 1fr;
  }

  .collection-feature img,
  .collection-feature > div {
    border-radius: 8px;
  }

  .collection-feature > div {
    border-left: 1px solid var(--line);
    margin-top: 12px;
  }

  .operations-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .showroom-modal {
    padding: 10px;
  }

  .showroom-tabs {
    flex-wrap: wrap;
    padding: 64px 14px 14px;
  }

  .showroom-tabs button {
    flex: 1 1 42%;
  }

  .showroom-visual,
  .showroom-visual > img {
    min-height: 0;
  }

  .showroom-focus-overlay {
    bottom: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
  }

  .showroom-palette-label {
    left: 10px;
    top: 10px;
  }

  .showroom-gallery-nav {
    bottom: 10px;
    left: auto;
    right: 10px;
    top: auto;
  }

  .showroom-focus-overlay {
    display: none;
  }

  .gallery-thumbnails span {
    display: none;
  }

  .individual-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 460px;
  }

  .real-sample-grid {
    grid-template-columns: 1fr;
  }

  .product-selection-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-selection-bar > div {
    width: 100%;
  }

  .product-selection-bar button,
  .product-selection-bar a {
    flex: 1;
    text-align: center;
  }

  .showroom-info {
    padding: 24px;
  }

  .service-menu {
    grid-template-columns: 1fr;
  }

  .service-detail,
  .service-detail-media {
    min-height: auto;
  }

  .service-detail-media {
    aspect-ratio: 1.25;
  }

  .service-facts {
    grid-template-columns: 1fr;
  }

  .workshop-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .workshop-controls {
    width: 100%;
  }

  .workshop-controls button {
    flex: 1;
  }

  .workshop-viewer img {
    aspect-ratio: 4 / 3;
  }

  .brand {
    min-width: 0;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 28px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 23, 28, 0.9), rgba(9, 23, 28, 0.56) 54%, rgba(9, 23, 28, 0.76)),
      rgba(9, 23, 28, 0.25);
  }

  .hero-content {
    padding-top: 24px;
  }

  .hero-showcase {
    padding-top: 0;
  }

  h1 {
    font-size: 41px;
  }

  .hero-stats,
  .metric-grid,
  .product-grid,
  .office-grid,
  .why-list,
  .service-grid,
  .cert-grid,
  .quality-points,
  .hero-highlights,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .image-band img,
  .image-band > div {
    min-height: auto;
  }

  .image-band > div {
    padding: 44px 18px;
  }

  .hero-stats article,
  .metric-card,
  .product-card {
    min-height: auto;
  }

  .section,
  .section-band {
    padding: 56px 18px;
  }

  .timeline article {
    padding: 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
