:root {
  --ink: #151515;
  --paper: #f7f4ef;
  --cream: #fffaf2;
  --muted: #6e665e;
  --line: rgba(21, 21, 21, 0.14);
  --red: #d7332f;
  --cobalt: #2458c7;
  --olive: #8b9a57;
  --shadow: 0 22px 70px rgba(21, 21, 21, 0.18);
  --logo-font: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img,
svg {
  display: block;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  min-height: 92px;
  padding: 12px clamp(18px, 4vw, 52px);
  color: white;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 244, 239, 0.92);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.icon-link,
.button,
.product-info,
.step,
.footer,
.contact-form {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  width: fit-content;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  height: 88px;
  max-width: min(580px, 45vw);
  object-fit: contain;
}

.main-nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  min-width: 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.icon-link {
  justify-self: end;
  gap: 10px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 850;
  text-transform: uppercase;
}

.icon-link svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 78px) 88px;
  color: white;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 62% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 12px;
  font-family: var(--logo-font);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.5;
}

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

.button {
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
}

.button.primary {
  background: var(--red);
  color: white;
}

.button.ghost {
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.drop-peek {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  width: min(390px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.drop-peek span {
  grid-row: span 2;
  color: var(--red);
  font-weight: 950;
}

.drop-peek strong {
  font-size: 1rem;
}

.drop-peek small {
  color: rgba(255, 255, 255, 0.76);
}

.section,
.studio,
.contact {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 6vw, 78px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  background: var(--cream);
}

.intro p:last-child,
.studio-copy p,
.contact p,
.product-info p {
  color: var(--muted);
  line-height: 1.6;
}

.intro p:last-child {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

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

.media-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  margin-bottom: 18px;
}

.media-strip figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.media-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.media-strip figcaption {
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(21, 21, 21, 0.04);
}

.product-visual {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center;
}

.product-info {
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
}

.product-info p {
  margin-bottom: 0;
}

.product-info span {
  font-size: 1.2rem;
  font-weight: 950;
}

.studio {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  background: #151515;
  color: white;
}

.studio-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.studio-panel {
  display: grid;
  gap: 12px;
}

.step {
  gap: 16px;
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.step.active {
  border-color: rgba(215, 51, 47, 0.72);
  background: rgba(215, 51, 47, 0.18);
}

.step span {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 950;
}

.step p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 220px;
  gap: 16px;
}

.look {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.look::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.74));
  content: "";
}

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

.look span {
  position: absolute;
  z-index: 1;
  left: 28px;
  bottom: 24px;
  color: white;
  font-weight: 950;
  text-transform: uppercase;
}

.buyer-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.buyer-copy p {
  min-height: 170px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.tile-one {
  grid-row: span 2;
}

.tile-four {
  grid-column: span 2;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--cream);
}

.contact-copy {
  display: grid;
  gap: 22px;
}

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

.contact-details article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.contact-details h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
}

.contact-details p {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.contact-details a {
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  align-items: stretch;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

label {
  display: grid;
  flex: 1;
  gap: 8px;
}

label span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  padding: 0 14px;
}

.footer {
  justify-content: space-between;
  gap: 32px;
  min-height: 190px;
  padding: 44px clamp(20px, 6vw, 78px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 950;
}

.footer-brand-logo {
  width: auto;
  height: 118px;
  max-width: 720px;
  object-fit: contain;
}

.chatway-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.chatway-panel {
  width: min(390px, calc(100vw - 28px));
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #073475 0%, #073475 55%, #f4f5f8 55%, #f4f5f8 100%);
  box-shadow: 0 26px 70px rgba(7, 30, 57, 0.3);
}

.chatway-head {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px 24px 20px;
  color: white;
}

.chatway-head h2 {
  max-width: 320px;
  margin: 42px 0 4px;
  color: white;
  font-size: 28px;
  line-height: 1.28;
}

.chatway-controls {
  position: absolute;
  top: 18px;
  right: 20px;
  display: flex;
  gap: 12px;
}

.chatway-close,
.chatway-launcher {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.chatway-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  color: white;
  font-size: 2rem;
  line-height: 1;
}

.chatway-body {
  display: grid;
  gap: 22px;
  padding: 0;
}

.chatway-card {
  margin: 0 20px;
  padding: 18px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 44px rgba(7, 30, 57, 0.12);
}

.chatway-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.chatway-card-top img {
  width: 62px;
  height: 62px;
  border: 3px solid #f5a400;
  border-radius: 50%;
  background: #073475;
  object-fit: contain;
  padding: 8px;
}

.chatway-card-top span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #e9f9ec;
  color: #2bc94d;
  font-size: 1rem;
  font-weight: 850;
  text-transform: uppercase;
}

.chatway-card-top i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: currentColor;
}

.chatway-card p {
  margin: 22px 0 16px;
  color: #071e39;
  font-size: 1.35rem;
  line-height: 1.35;
}

.chatway-start {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 0 10px 0 18px;
  border-radius: 14px;
  background: #073475;
  color: white;
  font-size: 1.18rem;
  font-weight: 850;
}

.chatway-start svg {
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.chatway-powered {
  color: #aeb2c4;
  font-size: 0.95rem;
  text-align: center;
}

.chatway-powered strong {
  font-size: 1.12rem;
}

.chatway-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px;
  background: white;
}

.chatway-tabs button,
.chatway-tabs a {
  display: grid;
  min-height: 68px;
  place-items: center;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #071e39;
  font: inherit;
}

.chatway-tabs .is-active {
  background: #f4f7fb;
}

.chatway-tabs svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.chatway-tabs span {
  display: block;
  font-size: 1rem;
}

.chatway-launcher {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  background: #4cb0e6;
  color: #071e39;
  box-shadow: 0 16px 42px rgba(7, 30, 57, 0.28);
  font-weight: 950;
  text-transform: uppercase;
}

.chatway-launcher svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

  .main-nav {
    display: none;
  }

  .intro,
  .studio,
  .contact {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .media-strip {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 250px;
  }

  .lookbook-grid {
    grid-template-columns: 1fr 1fr;
  }

  .buyer-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand-logo {
    height: 58px;
    max-width: 330px;
  }

  .icon-link span {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-inline: 18px;
  }

  h2 {
    font-size: 24px;
  }

  .button {
    width: 100%;
  }

  .drop-peek {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 44px;
  }

  .section-heading,
  .contact-form,
  .product-info {
    align-items: stretch;
    flex-direction: column;
  }

  .lookbook-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 190px;
  }

  .tile-one,
  .tile-four {
    grid-column: auto;
    grid-row: auto;
  }

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

  .footer-brand-logo {
    height: 78px;
    max-width: 360px;
  }

  .chatway-widget {
    right: 14px;
    bottom: 14px;
  }

  .chatway-panel {
    width: min(360px, calc(100vw - 28px));
  }

  .chatway-head h2 {
    font-size: 24px;
  }
}
