:root {
  color-scheme: light;
  --navy: #0d1b2a;
  --navy-soft: #142942;
  --teal: #1bbfb0;
  --teal-dark: #13968a;
  --bone: #f2efe9;
  --paper: #f8f6f2;
  --warm: #8b8178;
  --mid: #c8c3bc;
  --white: #ffffff;
  --ink: #14202d;
  --line: rgba(13, 27, 42, 0.12);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  --shadow: 0 28px 70px rgba(13, 27, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
}

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

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

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 72px;
  padding: 0 clamp(20px, 4vw, 56px);
  color: var(--white);
  background: rgba(13, 27, 42, 0.92);
  border-bottom: 1px solid rgba(27, 191, 176, 0.18);
  backdrop-filter: blur(14px);
}

.nav-logo {
  display: grid;
  width: min(180px, 42vw);
  line-height: 1;
}

.nav-logo img {
  width: 168px;
  height: auto;
}

.wordmark,
.footer-logo {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.16em;
}

.wordmark strong,
.footer-logo span {
  color: var(--teal);
  font-weight: 300;
}

.tagline {
  display: none;
  margin-top: 2px;
  color: var(--mid);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a,
.nav-cta {
  color: var(--mid);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.nav-cta {
  padding: 10px 20px;
  color: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 2px;
}

.nav-cta:hover {
  color: var(--navy);
  background: var(--teal);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.hero-bg {
  position: absolute;
  inset: 92px clamp(20px, 5vw, 72px) 64px 48%;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 26px 80px rgba(13, 27, 42, 0.12);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
  filter: saturate(0.82) contrast(0.92) brightness(1.04);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 246, 242, 0.08), rgba(248, 246, 242, 0.3)),
    linear-gradient(90deg, rgba(248, 246, 242, 0.36), transparent 42%);
}

.hero-accent {
  position: absolute;
  top: 0;
  right: 42%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--teal), transparent);
  opacity: 0.14;
  transform: rotate(4deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 40px));
  padding: 118px 0 76px clamp(0px, 4vw, 48px);
  margin-left: clamp(20px, 4vw, 48px);
}

.hero-eyebrow,
.section-label,
.modal-line {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero h1,
.split-section h2,
.why-section h2,
.catalog-heading h2,
.textiles-section h2,
.modal-content h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  line-height: 0.98;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(64px, 8.2vw, 108px);
  letter-spacing: -0.01em;
}

em {
  color: var(--teal);
  font-style: italic;
}

.hero-subtitle {
  margin: 20px 0 34px;
  color: var(--warm);
  font-family: var(--display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 132px));
  gap: 14px;
  max-width: 460px;
  margin-bottom: 34px;
}

.hero-stats div {
  min-width: 0;
  padding: 16px 16px 14px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(13, 27, 42, 0.08);
}

.hero-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
}

.hero-stats strong span {
  color: var(--teal);
  font-size: 0.48em;
}

.hero-stats small {
  display: block;
  margin-top: 6px;
  color: rgba(20, 32, 45, 0.58);
  font-size: 10px;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 28px;
  color: var(--navy);
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.button.ghost {
  color: var(--teal);
  background: transparent;
}

.dark-button {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

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

.scroll-indicator {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: 40px;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.scroll-indicator span {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--teal), transparent);
}

.scroll-indicator small {
  color: rgba(20, 32, 45, 0.58);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.split-section,
.why-section,
.textiles-section {
  padding: clamp(78px, 10vw, 118px) clamp(20px, 5vw, 64px);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 88px);
  align-items: center;
}

.dark {
  color: var(--white);
  background: var(--navy);
}

.split-section h2,
.why-section h2,
.textiles-section h2 {
  font-size: clamp(42px, 6vw, 66px);
}

.divider {
  width: 42px;
  height: 1px;
  margin: 28px 0;
  background: var(--teal);
}

.section-copy {
  max-width: 620px;
  margin: 0;
  color: var(--warm);
  font-size: 15px;
  line-height: 1.8;
}

.dark .section-copy {
  color: var(--mid);
}

.cap-list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.cap-list span {
  position: relative;
  padding-left: 20px;
  color: var(--mid);
}

.cap-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.reference-panel {
  align-self: stretch;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.reference-grid span {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--mid);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}

.reference-grid img {
  max-width: 150px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 180ms ease, transform 180ms ease;
}

.reference-grid span:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.why-section {
  background: var(--paper);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 54px;
}

.why-grid article {
  padding: 40px 32px;
  background: var(--white);
  border-top: 2px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease;
}

.why-grid article:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}

.why-grid span {
  color: rgba(27, 191, 176, 0.2);
  font-family: var(--display);
  font-size: 52px;
  line-height: 1;
}

.why-grid h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-grid p {
  margin: 0;
  color: var(--warm);
  font-size: 14px;
}

.catalog-heading {
  position: relative;
  overflow: hidden;
  padding: 78px clamp(20px, 5vw, 64px) 52px;
  color: var(--white);
  background: var(--navy);
}

.catalog-heading::after,
.catalog-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(22px, 8vw, 110px);
  width: 200px;
  height: 200px;
  border: 1px solid rgba(27, 191, 176, 0.14);
  border-radius: 50%;
  transform: translateY(-50%);
}

.catalog-heading::before {
  width: 120px;
  height: 120px;
  right: clamp(62px, 10vw, 150px);
  border-color: rgba(27, 191, 176, 0.24);
}

.catalog-heading span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 18px;
  color: var(--teal);
  border: 1px solid rgba(27, 191, 176, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.catalog-heading h2 {
  font-size: clamp(38px, 5vw, 58px);
}

.catalog-heading p {
  margin: 10px 0 0;
  color: var(--mid);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 48px clamp(20px, 5vw, 64px) clamp(78px, 10vw, 118px);
  background: var(--paper);
}

.product-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  text-align: left;
  background: var(--white);
  border: 0;
  cursor: pointer;
}

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

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-image {
  position: relative;
  aspect-ratio: 5 / 4;
  height: auto;
  overflow: hidden;
  background: var(--navy);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms ease;
}

.product-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: rgba(13, 27, 42, 0.72);
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-overlay span {
  padding: 11px 24px;
  border: 1px solid var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.product-info {
  padding: 26px 24px 24px;
}

.product-line {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 3px 8px;
  color: var(--teal-dark);
  background: rgba(27, 191, 176, 0.1);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 31px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.product-info p {
  margin: 4px 0 0;
  color: var(--warm);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--bone);
}

.spec-row span {
  display: grid;
  gap: 2px;
}

.spec-row strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 300;
  line-height: 1;
}

.spec-row small {
  color: var(--mid);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.guarantee-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 24px;
  color: var(--navy);
  background: var(--teal);
  text-align: center;
  text-transform: uppercase;
}

.guarantee-band strong,
.guarantee-band span {
  font-size: 12px;
  letter-spacing: 0.2em;
}

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

.textile-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 42px;
}

.textile-grid article {
  padding: 8px;
  background: var(--paper);
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 3px;
  transition: transform 180ms ease;
}

.textile-grid article:hover {
  transform: translateY(-4px);
}

.textile-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 8px;
  border-radius: 2px;
  filter: saturate(0.9) contrast(0.92);
}

.textile-grid small {
  display: block;
  color: var(--teal-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.textile-grid strong {
  color: var(--navy);
  font-size: 11px;
  line-height: 1.2;
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 48px;
  padding: 78px clamp(20px, 5vw, 64px) 54px;
  color: var(--mid);
  background: var(--navy);
}

.footer-logo {
  color: var(--white);
  margin-bottom: 6px;
}

.footer-logo-img {
  width: 210px;
  height: auto;
  margin-bottom: 10px;
}

.footer h3 {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer p {
  max-width: 420px;
  margin: 0 0 18px;
  color: var(--mid);
}

.footer a:not(.button) {
  display: block;
  margin-bottom: 8px;
  color: var(--mid);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(13, 27, 42, 0.9);
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(940px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--teal);
  background: rgba(13, 27, 42, 0.72);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.modal-image {
  min-height: 430px;
  background: var(--navy);
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.modal-content {
  padding: 52px 42px;
}

.modal-content h2 {
  color: var(--navy);
  font-size: clamp(44px, 6vw, 64px);
}

.modal-desc {
  margin: 8px 0 0;
  color: var(--warm);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.modal-content p:not(.modal-line):not(.modal-desc) {
  color: var(--warm);
}

.modal-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 30px 0;
  background: var(--bone);
}

.modal-specs div {
  padding: 18px 14px;
  background: var(--paper);
}

.modal-specs strong {
  display: block;
  color: var(--navy);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 300;
}

.modal-specs span {
  color: var(--warm);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-actions .button {
  flex: 1 1 170px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #ffffff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(13, 27, 42, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(13, 27, 42, 0.28);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--teal);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

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

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

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

@media (max-width: 680px) {
  .nav {
    min-height: 72px;
    gap: 14px;
    padding-inline: 18px;
  }

  .nav-logo {
    width: min(178px, 48vw);
  }

  .nav-logo img {
    width: 172px;
  }

  .nav-cta {
    padding: 11px 14px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .wordmark {
    font-size: 20px;
  }

  .tagline {
    font-size: 8px;
    letter-spacing: 0.2em;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 118px 20px 42px;
  }

  .hero-bg::after {
    background: linear-gradient(180deg, rgba(248, 246, 242, 0.08), rgba(248, 246, 242, 0.38));
  }

  .hero-accent,
  .scroll-indicator {
    display: none;
  }

  .hero-bg {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    height: 330px;
    margin: 8px 0 28px;
  }

  .hero-content {
    display: contents;
    width: 100%;
    margin: 0 auto;
    padding-left: 0;
  }

  .hero-eyebrow {
    order: 1;
    margin-bottom: 14px;
  }

  .hero h1 {
    order: 1;
    max-width: 360px;
    font-size: clamp(54px, 17vw, 74px);
    line-height: 0.94;
  }

  .hero-subtitle {
    order: 1;
    margin: 18px 0 14px;
    max-width: 320px;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
  }

  .hero-stats {
    order: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-stats div {
    padding: 12px 10px 10px;
  }

  .hero-stats strong {
    font-size: 31px;
  }

  .hero-stats small {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .hero-actions {
    order: 4;
  }

  .hero-bg img {
    object-position: center;
    opacity: 0.9;
  }

  .button {
    width: 100%;
  }

  .why-grid,
  .product-grid,
  .reference-grid,
  .modal,
  .modal-specs {
    grid-template-columns: 1fr;
  }

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

  .product-grid {
    padding-top: 28px;
  }

  .guarantee-band {
    flex-direction: column;
    gap: 4px;
  }

  .modal-image {
    min-height: 300px;
  }

  .modal-content {
    padding: 36px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
