@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&display=swap');

:root {
  --navy: #102a43;
  --navy-deep: #0b2032;
  --navy-soft: #416074;
  --beige: #eee6d8;
  --beige-light: #f8f5ef;
  --white: #fff;
  --text: #172b36;
  --muted: #64737a;
  --line: #dde2e3;
  --display: 'Fraunces', serif;
  --body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body { overflow-x: hidden; background: var(--white); color: var(--text); font-family: var(--body); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
ol { list-style: none; }
h1, h2, h3 { font-family: var(--display); color: var(--navy); line-height: 1.12; letter-spacing: -.01em; font-optical-sizing: auto; }
:focus-visible { outline: 2px solid #b8a17a; outline-offset: 3px; }
.container { width: min(calc(100% - 48px), 1160px); margin-inline: auto; }

[data-aos] { opacity: 0; filter: blur(3px); transform: translateY(20px); transition: opacity 700ms var(--ease), transform 700ms var(--ease), filter 700ms var(--ease); }
[data-aos="zoom"] { transform: translateY(26px) scale(.94); }
[data-aos="left"] { transform: translateX(-30px); }
[data-aos="right"] { transform: translateX(30px) scale(.96); }
[data-aos].is-visible { opacity: 1; transform: none; }
[data-aos].is-visible { filter: blur(0); }

.scroll-progress { position: fixed; z-index: 110; top: 0; left: 0; width: 0%; height: 3px; background: linear-gradient(90deg, var(--navy-soft), var(--beige)); transition: width 120ms linear; }

.header { position: fixed; z-index: 100; top: 18px; right: 0; left: 0; color: var(--white); transition: top 220ms var(--ease); }
.header.is-scrolled { top: 10px; }
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 62px;
  padding: 7px 8px 7px 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(11,32,50,.92);
  box-shadow: 0 16px 50px rgba(11,32,50,.18);
  backdrop-filter: blur(20px) saturate(130%);
  transition: min-height 220ms var(--ease), background-color 220ms, box-shadow 220ms;
}
.header.is-scrolled .header__inner { min-height: 56px; background: rgba(11,32,50,.97); box-shadow: 0 12px 36px rgba(11,32,50,.22); }
.logo {
  display: flex;
  width: 190px;
  height: 40px;
  align-items: center;
  padding: 2px 0;
}
.logo img { width: auto; max-width: 100%; height: 100%; object-fit: contain; }
.nav { justify-self: center; }
.nav__links { position: relative; display: flex; align-items: center; gap: 3px; padding: 3px; border-radius: 999px; background: rgba(255,255,255,.055); }
.nav__indicator {
  position: absolute;
  z-index: 0;
  top: 3px;
  left: 3px;
  width: 0;
  height: calc(100% - 6px);
  border-radius: 999px;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateX(0);
  transition: transform 380ms var(--ease), width 380ms var(--ease), opacity 180ms;
}
.nav__links a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.6);
  font-size: .76rem;
  font-weight: 600;
  transition: background-color 180ms, color 180ms, transform 180ms var(--ease);
}
.nav__links a span { position: relative; z-index: 2; }
.nav__links small { display: none; }
.nav__links a:hover { color: var(--white); transform: translateY(-1px); }
.nav__links > a.is-active,
.nav__links > a.is-active:hover { color: var(--navy-deep); }
.nav__links > a.is-active span { color: inherit; }
.nav__mobile-contact { display: none; }
.header__cta {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  justify-self: end;
  padding: 6px 14px 6px 7px;
  border-radius: 999px;
  background: linear-gradient(110deg, #eee6d8, #f8f0e2);
  color: var(--navy-deep);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6), 0 6px 20px rgba(0,0,0,.12);
  transition: box-shadow 220ms, transform 220ms var(--ease);
}
.header__cta::after {
  position: absolute;
  top: -80%;
  left: -35%;
  width: 28px;
  height: 220%;
  background: rgba(255,255,255,.7);
  content: '';
  filter: blur(6px);
  pointer-events: none;
  transform: rotate(18deg) translateX(-50px);
  transition: transform 550ms var(--ease);
}
.header__cta:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 10px 28px rgba(0,0,0,.17); transform: translateY(-2px); }
.header__cta:hover::after { transform: rotate(18deg) translateX(240px); }
.header__cta-icon { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--navy); color: var(--white); transition: transform 250ms var(--ease); }
.header__cta-icon svg { width: 18px; fill: currentColor; }
.header__cta-copy { position: relative; z-index: 1; display: grid; min-width: 104px; line-height: 1.12; }
.header__cta-copy small { color: rgba(11,32,50,.56); font-size: .56rem; font-weight: 600; letter-spacing: .02em; }
.header__cta-copy strong { font-size: .75rem; font-weight: 700; }
.header__cta-arrow { position: relative; z-index: 1; width: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform 220ms var(--ease); }
.header__cta:hover .header__cta-icon { transform: rotate(-7deg) scale(1.06); }
.header__cta:hover .header__cta-arrow { transform: translateX(3px); }
.nav__toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 50%; background: rgba(255,255,255,.1); color: var(--white); }
.nav__toggle span { display: block; width: 19px; height: 1.5px; margin: 5px auto; background: currentColor; transition: transform 180ms; }
.nav__toggle small { display: none; }

.hero { position: relative; overflow: hidden; padding: 150px 0 96px; background: var(--white); }
.hero::before, .hero::after {
  position: absolute;
  border-radius: 50%;
  content: '';
  pointer-events: none;
}
.hero::before {
  top: -220px;
  left: -180px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(65,96,116,.12), transparent 70%);
}
.hero::after {
  top: 60px;
  right: -160px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(238,230,216,.55), transparent 70%);
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: clamp(54px, 8vw, 110px); min-height: 530px; perspective: 1200px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 16px 7px 12px;
  border: 1px solid rgba(16,42,67,.1);
  border-radius: 999px;
  background: var(--beige-light);
  color: var(--navy-soft);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow::before {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy-soft);
  content: '';
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.services .eyebrow, .about .eyebrow, .fabrics--alt .eyebrow { background: var(--white); }
.hero h1 { max-width: 650px; margin-bottom: 24px; font-size: clamp(3rem, 5vw, 4.6rem); font-weight: 600; }
.hero__content > p { max-width: 560px; color: var(--muted); font-size: 1.04rem; line-height: 1.72; }
.hero__actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 11px 20px; border: 1px solid transparent; background: transparent; font-family: var(--body); font-size: .82rem; font-weight: 700; letter-spacing: .01em; }
.button--primary { background: var(--navy); color: var(--white); }
.button--primary:hover { background: var(--navy-deep); }
.text-link { color: var(--navy); font-size: .84rem; font-weight: 600; }
.text-link span { margin-left: 6px; }
.hero__product { position: relative; display: grid; min-height: 500px; place-items: center; transition: transform 400ms var(--ease); transform-style: preserve-3d; will-change: transform; }
.hero__halo { display: none; }
.hero__product > img { position: relative; z-index: 1; width: 124%; max-width: none; filter: drop-shadow(0 28px 24px rgba(16,42,67,.14)); transform: rotate(-2deg); animation: garment-float 5.5s ease-in-out infinite; }
.hero__product > p { position: absolute; z-index: 2; right: 0; bottom: 12px; padding: 13px 16px; background: var(--white); box-shadow: 0 8px 30px rgba(16,42,67,.08); animation: label-float 5.5s .4s ease-in-out infinite; }
.hero__product strong, .hero__product span { display: block; }
.hero__product strong { color: var(--navy); font-family: var(--body); font-weight: 700; font-size: .78rem; }
.hero__product span { color: var(--muted); font-size: .7rem; }

.marquee { overflow: hidden; padding: 24px 0; background: var(--navy); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.marquee__track { display: flex; width: max-content; animation: marquee-scroll 36s linear infinite; }
.marquee__track span {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-inline: 22px;
  color: rgba(255,255,255,.82);
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}
.marquee__track span::after { color: var(--beige); content: '✦'; font-size: .75rem; font-style: normal; }
.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.services { padding: 112px 0 120px; background: var(--beige-light); }
.section-intro { max-width: 680px; margin-bottom: 64px; }
.section-intro h2 { margin-bottom: 18px; font-size: clamp(2.1rem, 3.5vw, 3.4rem); font-weight: 600; }
.section-intro > p { max-width: 580px; color: var(--muted); font-size: .98rem; }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 32px; }
.service { position: relative; display: flex; flex-direction: column; transition: opacity 700ms var(--ease), filter 700ms var(--ease), transform 380ms var(--ease); }
.service:hover { transform: translateY(-8px); }
.service__copy { order: 1; min-height: 126px; margin-bottom: 18px; }
.service__media { position: relative; order: 2; overflow: hidden; aspect-ratio: 4 / 5; border-radius: 20px; background: var(--white); box-shadow: 0 1px 0 rgba(16,42,67,.04); }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms var(--ease); }
.service:hover .service__media img { transform: scale(1.07); }
.service__index {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(6px);
  color: var(--navy);
  font-family: var(--body);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.service__icon {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(16,42,67,.2);
  pointer-events: none;
  transition: transform 380ms var(--ease), background 220ms, box-shadow 380ms var(--ease);
}
.service__icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.55; transition: transform 380ms var(--ease); }
.service:hover .service__icon { background: var(--navy-soft); box-shadow: 0 18px 38px rgba(16,42,67,.26); transform: translateY(-4px); }
.service:hover .service__icon svg { transform: rotate(-8deg) scale(1.12); }
.service h3 { margin-bottom: 10px; font-size: 1.08rem; font-weight: 600; letter-spacing: -.01em; }
.service p { color: var(--muted); font-size: .86rem; line-height: 1.65; }

.work { padding: 112px 0 124px; background: var(--white); }
.section-intro--split { display: grid; max-width: none; grid-template-columns: 1fr .8fr; align-items: end; gap: 80px; }
.section-intro--split > p { padding-bottom: 7px; }
.work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work__item { overflow: hidden; border-radius: 22px; background: var(--beige-light); box-shadow: 0 1px 0 rgba(16,42,67,.05); transition: opacity 700ms var(--ease), filter 700ms var(--ease), transform 350ms var(--ease), box-shadow 350ms var(--ease); }
.work__item--large { grid-row: span 2; }
.work__item img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 550ms var(--ease); }
.work__item--large img { height: 680px; }
.work__item figcaption { display: flex; justify-content: space-between; gap: 20px; padding: 17px 20px 20px; background: var(--white); }
.work__item strong { color: var(--navy); font-family: var(--body); font-weight: 700; font-size: .86rem; }
.work__item span { color: var(--muted); font-size: .74rem; }
.work__item:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(16,42,67,.09); }
.work__item:hover img { transform: scale(1.025); }
.product-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 28px; padding: 36px 28px; background: var(--beige-light); }
.product-strip__item { display: grid; min-height: 190px; place-items: center; border: 0; background: transparent; cursor: pointer; transition: opacity 700ms var(--ease), transform 350ms var(--ease), filter 350ms; }
.product-strip__item img { width: 100%; height: 180px; object-fit: contain; pointer-events: none; transition: transform 350ms var(--ease); }
.product-strip__item img[src*='product-gray-melange'],
.product-strip__item img[src*='product-blue-jersey-long'],
.product-strip__item img[src*='product-piquet'] { height: 190px; }
.product-strip__item:hover { filter: drop-shadow(0 14px 14px rgba(16,42,67,.12)); transform: translateY(-8px) rotate(-1deg); }
.product-strip__item:focus-visible { outline: 2px solid var(--navy-soft); outline-offset: 6px; border-radius: 18px; }

.about { padding: 74px 0 124px; background: var(--white); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(60px, 9vw, 120px); }
.about__image img { width: 100%; min-height: 540px; object-fit: cover; }
.about__content h2 { max-width: 530px; margin-bottom: 22px; font-size: clamp(2.1rem, 3.4vw, 3.2rem); font-weight: 600; }
.about__content > p { max-width: 520px; color: var(--muted); font-size: .96rem; }
.process { margin-top: 38px; }
.process li { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 18px 0; border-top: 1px solid var(--line); transition: opacity 700ms var(--ease), filter 700ms var(--ease), transform 700ms var(--ease), padding-left 250ms var(--ease), color 200ms; }
.process li:hover { padding-left: 9px; }
.process li > span { color: var(--navy-soft); font-family: var(--body); font-weight: 700; font-size: .68rem; }
.process strong { display: block; margin-bottom: 4px; color: var(--navy); font-family: var(--body); font-weight: 700; font-size: .88rem; }
.process p { color: var(--muted); font-size: .82rem; }

.contact { position: relative; overflow: hidden; padding: 112px 0 120px; background: var(--navy); color: var(--white); }
.contact::before { position: absolute; top: -260px; right: -180px; width: 560px; height: 560px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; content: ''; }
.contact::after { position: absolute; bottom: -220px; left: -160px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(238,230,216,.08), transparent 70%); border-radius: 50%; content: ''; pointer-events: none; }
.contact .container { position: relative; }
.contact .eyebrow { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: var(--beige); }
.contact .eyebrow::before { background: var(--beige); }
.contact__head { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: clamp(50px, 8vw, 110px); margin-bottom: 56px; }
.contact__head h2 { color: var(--white); font-size: clamp(2.4rem, 4.3vw, 4.2rem); font-weight: 600; }
.contact__head > p { max-width: 480px; padding-bottom: 8px; color: rgba(255,255,255,.62); }
.contact__channels { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 34px; border: 1px solid rgba(255,255,255,.13); }
.contact__channels > * { display: flex; min-width: 0; align-items: center; gap: 13px; padding: 19px 18px; border-right: 1px solid rgba(255,255,255,.13); transition: opacity 700ms var(--ease), filter 700ms var(--ease), background-color 180ms, transform 250ms var(--ease); }
.contact__channels > *:last-child { border-right: 0; }
.contact__channels a:hover { background: rgba(255,255,255,.06); transform: translateY(-3px); }
.contact__channels svg { width: 20px; height: 20px; flex: 0 0 auto; fill: none; stroke: var(--beige); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; transition: transform 280ms var(--ease); }
.contact__channels a:hover svg { transform: scale(1.14) rotate(-5deg); }
.contact__channels span, .contact__channels small, .contact__channels strong { display: block; min-width: 0; }
.contact__channels small { margin-bottom: 2px; color: rgba(255,255,255,.42); font-size: .62rem; }
.contact__channels strong { overflow: hidden; color: rgba(255,255,255,.9); font-size: .76rem; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.contact__stage { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; }
.contact__map { position: relative; min-height: 520px; overflow: hidden; background: var(--navy-deep); }
.contact__map iframe { width: 100%; height: 520px; border: 0; filter: grayscale(1) contrast(.9) brightness(.8); }
.contact__map p { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 13px 16px; background: rgba(11,32,50,.86); color: rgba(255,255,255,.72); font-size: .72rem; backdrop-filter: blur(10px); }
.contact__form { position: relative; z-index: 2; width: calc(100% + 56px); margin-left: -56px; padding: 42px; background: var(--white); box-shadow: 0 24px 70px rgba(6,20,31,.24); color: var(--text); transition: transform 350ms var(--ease), box-shadow 350ms var(--ease); }
.contact__form:hover { transform: translateY(-4px); box-shadow: 0 30px 80px rgba(6,20,31,.29); }
.form-kicker { display: block; margin-bottom: 8px; color: var(--navy-soft); font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact__form h3 { margin-bottom: 28px; font-size: 1.45rem; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact__form label { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; color: var(--navy); font-size: .72rem; font-weight: 600; }
.contact__form input, .contact__form textarea { width: 100%; border: 0; border-bottom: 1px solid #cfd6d8; outline: 0; background: transparent; font-size: .92rem; }
.contact__form input { height: 42px; }
.contact__form textarea { min-height: 96px; padding: 10px 0; resize: vertical; }
.contact__form input:focus, .contact__form textarea:focus { border-color: var(--navy); }
.contact__form ::placeholder { color: #9aa5a9; }
.button--light { width: 100%; margin-top: 4px; background: var(--beige); color: var(--navy); }
.button--light:hover { background: #e5d8c3; }

.fabrics-hero { padding: 150px 0 40px; background: var(--white); }
.fabrics-hero .section-intro { margin-bottom: 0; }
.fabrics { padding: 64px 0; background: var(--white); }
.fabrics--alt { background: var(--beige-light); }
.fabric { display: grid; grid-template-columns: minmax(260px, 360px) 1fr; align-items: start; gap: clamp(40px, 6vw, 80px); }
.fabric--reverse { grid-template-columns: 1fr minmax(260px, 360px); }
.fabric--reverse .fabric__info { order: 2; }
.fabric--reverse .fabric__swatches { order: 1; }
.fabric__info h2 { margin: 14px 0 16px; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 600; }
.fabric__info > p { max-width: 38ch; color: var(--muted); font-size: .96rem; line-height: 1.7; }
.fabric__swatches { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.swatch { display: flex; flex-direction: column; gap: 10px; }
.swatch__color { display: block; width: 100%; aspect-ratio: 1; border-radius: 16px; background: var(--swatch); box-shadow: inset 0 0 0 1px rgba(16,42,67,.08), 0 10px 24px rgba(16,42,67,.06); transition: transform 380ms var(--ease), box-shadow 380ms var(--ease); }
.swatch:hover .swatch__color { transform: scale(1.06) rotate(-2deg); box-shadow: inset 0 0 0 1px rgba(16,42,67,.08), 0 16px 30px rgba(16,42,67,.14); }
.swatch__name { color: var(--navy); font-size: .76rem; font-weight: 600; letter-spacing: -.01em; }

.fabric__specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 24px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); max-width: 38ch; }
.fabric__specs dt { color: var(--muted); font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.fabric__specs dd { margin-top: 4px; color: var(--navy); font-size: .92rem; font-weight: 500; line-height: 1.4; }

.fabrics-guide { padding: 64px 0; background: var(--beige-light); }
.fabrics-guide__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.guide-card { flex: 0 1 calc((100% - 48px) / 3); min-width: 280px; padding: 28px 24px; border-radius: 18px; background: var(--white); box-shadow: 0 10px 24px rgba(16,42,67,.05); }
.guide-card__tag { display: inline-block; padding: 4px 12px; border-radius: 100px; background: var(--beige); color: var(--navy); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.guide-card h3 { margin: 14px 0 8px; font-size: 1.15rem; font-weight: 600; }
.guide-card p { color: var(--muted); font-size: .88rem; line-height: 1.6; }

.services__more { margin-top: 48px; text-align: center; }
.services__more a { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 600; font-size: .94rem; border-bottom: 1px solid var(--navy); padding-bottom: 4px; transition: gap 240ms var(--ease), opacity 240ms var(--ease); }
.services__more a:hover { gap: 14px; opacity: .7; }

.fabrics-cta { padding: 80px 0 130px; background: var(--white); }
.fabrics-cta__box { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 48px; border-radius: 24px; background: var(--navy); color: var(--white); }
.fabrics-cta__box h2 { margin: 12px 0 10px; max-width: 480px; color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; }
.fabrics-cta__box p { max-width: 440px; color: rgba(255,255,255,.66); font-size: .92rem; }
.fabrics-cta__box .eyebrow { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: var(--beige); }
.fabrics-cta__box .eyebrow::before { background: var(--beige); }
.fabrics-cta__box .button--primary { flex: 0 0 auto; background: var(--beige); color: var(--navy); }
.fabrics-cta__box .button--primary:hover { background: #e5d8c3; }

.footer { padding: 28px 0; background: var(--navy-deep); color: rgba(255,255,255,.48); }
.footer__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; font-size: .72rem; }
.footer img { width: auto; height: 32px; }
.footer__end { display: inline-flex; justify-self: end; align-items: center; gap: 14px; }
.footer__social { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; color: rgba(255,255,255,.72); transition: transform 240ms var(--ease), border-color 180ms, background 180ms, color 180ms; }
.footer__social svg { width: 17px; height: 17px; fill: currentColor; }
.footer__social:hover { background: var(--beige); border-color: var(--beige); color: var(--navy); transform: translateY(-3px); }
.floating-whatsapp { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: #20b966; color: var(--white); box-shadow: 0 8px 24px rgba(16,42,67,.18); }
.floating-whatsapp svg { width: 26px; fill: currentColor; }
.product-lightbox { position: fixed; z-index: 130; inset: 0; display: grid; place-items: center; padding: 28px; opacity: 0; pointer-events: none; transition: opacity 220ms var(--ease); }
.product-lightbox.is-open { opacity: 1; pointer-events: auto; }
.product-lightbox__backdrop { position: absolute; inset: 0; border: 0; background: rgba(11,32,50,.72); backdrop-filter: blur(14px); }
.product-lightbox__dialog { position: relative; display: grid; width: min(760px, calc(100vw - 42px)); min-height: min(620px, calc(100vh - 56px)); place-items: center; padding: 52px 78px 36px; border-radius: 28px; background: var(--beige-light); box-shadow: 0 34px 100px rgba(6,20,31,.32); transform: translateY(18px) scale(.98); transition: transform 260ms var(--ease); }
.product-lightbox.is-open .product-lightbox__dialog { transform: none; }
.product-lightbox figure { display: grid; gap: 22px; justify-items: center; text-align: center; }
.product-lightbox img { width: min(100%, 520px); max-height: 460px; object-fit: contain; filter: drop-shadow(0 24px 26px rgba(16,42,67,.13)); }
.product-lightbox figcaption { color: var(--navy); font-family: var(--display); font-size: clamp(1.55rem, 3vw, 2.4rem); font-weight: 600; line-height: 1.1; }
.product-lightbox__close, .product-lightbox__nav { position: absolute; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--white); color: var(--navy); box-shadow: 0 10px 30px rgba(16,42,67,.12); transition: transform 220ms var(--ease), background 180ms; }
.product-lightbox__close { top: 18px; right: 18px; width: 42px; height: 42px; font-size: 1.6rem; line-height: 1; }
.product-lightbox__nav { top: 50%; width: 48px; height: 48px; font-size: 2rem; transform: translateY(-50%); }
.product-lightbox__nav--prev { left: 18px; }
.product-lightbox__nav--next { right: 18px; }
.product-lightbox__close:hover, .product-lightbox__nav:hover { background: var(--beige); }
.product-lightbox__close:hover { transform: rotate(8deg); }
.product-lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }

@keyframes pulse-dot {
  0%, 100% { opacity: .55; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes garment-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}

@keyframes halo-breathe {
  0%, 100% { opacity: .78; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.035); }
}

@keyframes label-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 980px) {
  .header__inner { grid-template-columns: auto 1fr; }
  .header__cta { display: none; }
  .nav { justify-self: end; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .work__item--large img { height: 600px; }
  .about__grid { gap: 54px; }
  .contact__channels { grid-template-columns: repeat(2, 1fr); }
  .contact__channels > *:nth-child(2) { border-right: 0; }
  .contact__channels > *:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .contact__form { width: calc(100% + 32px); margin-left: -32px; padding: 34px; }
  .fabric, .fabric--reverse { grid-template-columns: 1fr; gap: 36px; }
  .fabric--reverse .fabric__info, .fabric--reverse .fabric__swatches { order: initial; }
  .fabrics-guide__grid { gap: 20px; }
  .guide-card { flex-basis: calc((100% - 20px) / 2); }
}

@media (max-width: 740px) {
  .container { width: min(calc(100% - 32px), 1160px); }
  .header { top: 10px; }
  .header__inner { grid-template-columns: 1fr auto; min-height: 60px; padding: 6px 7px 6px 18px; border-radius: 999px; background: rgba(11,32,50,.96); box-shadow: 0 12px 34px rgba(11,32,50,.2); }
  .logo { width: 172px; height: 38px; justify-self: start; }
  .nav__toggle { display: block; z-index: 102; }
  .nav__toggle[aria-expanded='true'] span:first-of-type { transform: translateY(3.25px) rotate(45deg); }
  .nav__toggle[aria-expanded='true'] span:last-of-type { transform: translateY(-3.25px) rotate(-45deg); }
  .nav {
    position: fixed;
    z-index: 101;
    top: 82px;
    right: 16px;
    bottom: 16px;
    left: 16px;
    height: calc(100vh - 98px);
    height: calc(100dvh - 98px);
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: end;
    padding: 28px 24px 26px;
    border: 1px solid rgba(16,42,67,.12);
    border-radius: 26px;
    background: #f8f5ef;
    box-shadow: 0 28px 80px rgba(11,32,50,.22);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(.985);
    transform-origin: top;
    transition: opacity 200ms, transform 240ms var(--ease);
  }
  .nav.is-open { background: #f8f5ef !important; opacity: 1; pointer-events: auto; transform: none; }
  .nav__links { display: grid; width: 100%; gap: 8px; align-self: center; padding: 0; background: #f8f5ef; }
  .nav__indicator { display: none; }
  .nav__links a {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 17px 18px;
    background: #ffffff !important;
    box-shadow: 0 8px 22px rgba(16,42,67,.06);
    border-radius: 14px;
    color: var(--navy);
    font-family: var(--display);
    font-size: clamp(1.55rem, 7vw, 2rem);
    font-weight: 600;
    letter-spacing: -.01em;
  }
  .nav__links a:hover, .nav__links a.is-active { background: var(--navy) !important; color: var(--white); box-shadow: 0 12px 28px rgba(16,42,67,.16); }
  .nav__links a:hover::after, .nav__links a.is-active::after { color: rgba(255,255,255,.72); }
  .nav__links a::after { content: '↗'; align-self: center; color: var(--navy-soft); font-size: .9rem; font-weight: 400; }
  .nav__links small { display: none; }
  .nav__mobile-contact { display: grid; grid-template-columns: 1fr auto; gap: 3px 20px; padding-top: 24px; }
  .nav__mobile-contact > span { grid-column: 1 / -1; margin-bottom: 8px; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
  .nav__mobile-contact a { color: var(--navy); font-size: .78rem; font-weight: 600; }
  .hero { padding: 124px 0 80px; }
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero h1 { font-size: clamp(2.65rem, 12vw, 3.6rem); }
  .hero__product { min-height: 400px; }
  .hero__product > img { width: min(128%, 590px); }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .services, .work, .about, .contact { padding: 84px 0; }
  .section-intro { margin-bottom: 48px; }
  .section-intro h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .services__grid { grid-template-columns: 1fr; gap: 54px; }
  .service__copy { min-height: 0; margin-bottom: 20px; }
  .section-intro--split { grid-template-columns: 1fr; gap: 12px; }
  .work__grid { grid-template-columns: 1fr; }
  .work__item--large { grid-row: auto; }
  .work__item img, .work__item--large img { height: auto; max-height: 540px; }
  .work__item figcaption { align-items: flex-start; flex-direction: column; gap: 2px; }
  .product-strip { grid-template-columns: repeat(2, 1fr); }
  .product-strip__item { min-height: 160px; }
  .product-strip__item img { height: 150px; }
  .product-strip__item img[src*='product-gray-melange'],
  .product-strip__item img[src*='product-blue-jersey-long'],
  .product-strip__item img[src*='product-piquet'] { height: 160px; }
  .product-lightbox { padding: 16px; }
  .product-lightbox__dialog { width: calc(100vw - 28px); min-height: min(560px, calc(100vh - 32px)); padding: 58px 20px 28px; border-radius: 22px; }
  .product-lightbox img { max-height: 360px; }
  .product-lightbox__nav { top: auto; bottom: 18px; transform: none; }
  .product-lightbox__nav:hover { transform: scale(1.06); }
  .about__grid { grid-template-columns: 1fr; }
  .about__image img { min-height: 380px; }
  .contact__head, .contact__stage { grid-template-columns: 1fr; }
  .contact__head { gap: 16px; margin-bottom: 42px; }
  .contact__channels { grid-template-columns: 1fr; }
  .contact__channels > * { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .contact__channels > *:last-child { border-bottom: 0; }
  .contact__map { min-height: 330px; }
  .contact__map iframe { height: 330px; }
  .contact__form { width: calc(100% - 24px); margin: -28px auto 0; padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer__end { justify-self: center; flex-direction: column; gap: 10px; }
  .fabrics-hero { padding: 124px 0 24px; }
  .fabrics { padding: 48px 0; }
  .fabrics-cta { padding: 56px 0 90px; }
  .fabric__swatches { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .fabrics-cta__box { flex-direction: column; align-items: flex-start; gap: 24px; padding: 32px 24px; }
  .fabric__specs { grid-template-columns: 1fr 1fr; gap: 14px 20px; }
  .fabrics-guide { padding: 48px 0; }
  .fabrics-guide__grid { gap: 16px; }
  .guide-card { flex-basis: 100%; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-aos] { opacity: 1; filter: none; transform: none; }
}
