:root {
  --ink: #1e2528;
  --muted: #5c696d;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #d8ddd8;
  --sage: #6c8273;
  --deep: #273f38;
  --clay: #b56f45;
  --gold: #d6a84f;
  --blue: #426d8d;
  --shadow: 0 20px 50px rgba(30, 37, 40, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

img, svg {
  max-width: 100%;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 46px);
  border-bottom: 1px solid rgba(30, 37, 40, 0.1);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  background: var(--deep);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 15px;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
  border-color: var(--clay);
}

.header-action {
  justify-self: end;
  padding: 10px 14px;
  border: 1px solid var(--deep);
  border-radius: var(--radius);
  color: var(--deep);
  font-weight: 700;
  white-space: nowrap;
}

.section-band {
  border-block: 1px solid rgba(30, 37, 40, 0.08);
  background: #f2f4ee;
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(54px, 8vw, 92px) 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.hero-lede,
.section-heading p,
.intro-grid p,
.contact-grid p,
.location-grid p,
.trust-grid p {
  color: var(--muted);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--deep);
  box-shadow: 0 10px 22px rgba(39, 63, 56, 0.2);
}

.button.secondary {
  color: var(--deep);
  background: #fff;
  border: 1px solid var(--line);
}

.button.wide {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 36px 0 0;
}

.hero-facts div {
  padding: 15px;
  border: 1px solid rgba(30, 37, 40, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.hero-facts dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-weight: 700;
}

.hero-visual {
  min-height: 520px;
  position: relative;
}

.fabric-panel {
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(0deg, rgba(255,255,255,0.12) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(145deg, #314d45, #829586 52%, #e4d6be);
  box-shadow: var(--shadow);
}

.hanger-line {
  position: absolute;
  top: 70px;
  left: 40px;
  right: 40px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.garment {
  position: absolute;
  top: 88px;
  width: 27%;
  height: 330px;
  border-radius: 30px 30px 8px 8px;
  box-shadow: 0 20px 35px rgba(30, 37, 40, 0.2);
}

.garment::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  width: 38px;
  height: 30px;
  border: 3px solid rgba(255, 255, 255, 0.75);
  border-bottom: 0;
  border-radius: 38px 38px 0 0;
  transform: translateX(-50%);
}

.garment-a {
  left: 12%;
  background: linear-gradient(180deg, #f8f3e8, #d9d1c5);
}

.garment-b {
  left: 37%;
  top: 110px;
  background: linear-gradient(180deg, #456f91, #25445e);
}

.garment-c {
  right: 12%;
  background: linear-gradient(180deg, #c47b4d, #7d4c35);
}

.stitch-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
}

.stitch-card span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(39, 63, 56, 0.35);
  border-radius: 6px;
  font-weight: 800;
  color: var(--deep);
}

.intro,
.process,
.fit,
.readiness {
  padding: clamp(58px, 8vw, 96px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.services,
.trust,
.location,
.contact {
  padding: clamp(64px, 8vw, 100px) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading.narrow {
  max-width: 760px;
}

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

.service-card,
.fit-grid article,
.steps li,
.contact-card,
.rating-box,
.ready-panel {
  border: 1px solid rgba(30, 37, 40, 0.1);
  border-radius: var(--radius);
  background: var(--panel);
}

.service-card {
  min-height: 260px;
  padding: 24px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
  font-weight: 800;
}

.service-card p,
.fit-grid p,
.steps p,
.check-list,
.contact-note {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.steps li {
  padding: 22px;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: white;
  background: var(--clay);
  font-weight: 800;
}

.trust-grid,
.location-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.rating-box {
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.rating-box strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 84px;
  line-height: 1;
  color: var(--deep);
}

.rating-box span {
  display: block;
  margin-bottom: 14px;
  font-weight: 800;
  color: var(--clay);
}

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

.fit-grid article {
  padding: 26px;
}

address {
  margin-top: 22px;
  padding-left: 18px;
  border-left: 4px solid var(--clay);
  font-style: normal;
  font-size: 18px;
}

.map-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e9eee8;
  border: 1px solid rgba(30, 37, 40, 0.1);
}

.street {
  position: absolute;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(30, 37, 40, 0.08);
}

.street-main {
  width: 72px;
  height: 120%;
  left: 50%;
  top: -10%;
  transform: rotate(24deg);
}

.street-cross {
  width: 120%;
  height: 58px;
  left: -10%;
  top: 48%;
  transform: rotate(-10deg);
}

.street-small {
  width: 48px;
  height: 90%;
  right: 18%;
  top: 8%;
  transform: rotate(-20deg);
}

.pin {
  position: absolute;
  left: 47%;
  top: 42%;
  width: 22px;
  height: 22px;
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--clay);
  transform: rotate(-45deg);
  box-shadow: 0 12px 26px rgba(30, 37, 40, 0.22);
}

.pin span {
  position: absolute;
  left: 24px;
  top: -20px;
  min-width: 170px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--ink);
  background: white;
  box-shadow: 0 8px 20px rgba(30, 37, 40, 0.13);
  font-size: 13px;
  font-weight: 800;
  transform: rotate(45deg);
}

.ready-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(28px, 5vw, 46px);
  background: #fff;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0 0 16px 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.contact-card {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.contact-note {
  margin: 10px 0 0;
  font-size: 14px;
}

.site-footer {
  padding: 28px 0;
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
}

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

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

  .main-nav {
    display: none;
  }

  .hero-grid,
  .intro-grid,
  .trust-grid,
  .location-grid,
  .contact-grid,
  .ready-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }

  .fabric-panel {
    height: 420px;
  }

  .garment {
    height: 245px;
  }

  .hero-facts,
  .service-grid,
  .steps,
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid,
  .location-grid,
  .contact-grid {
    align-items: stretch;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 70px;
    padding: 10px 14px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .brand-text {
    font-size: 12px;
  }

  .header-action {
    padding: 8px 10px;
    font-size: 13px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-actions,
  .footer-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-facts,
  .service-grid,
  .steps,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .fabric-panel {
    height: 360px;
  }

  .hanger-line {
    left: 22px;
    right: 22px;
    top: 50px;
  }

  .garment {
    top: 72px;
    height: 206px;
  }

  .garment-b {
    top: 88px;
  }

  .stitch-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
  }

  .stitch-card span {
    min-height: 34px;
  }

  .rating-box strong {
    font-size: 66px;
  }

  .map-card {
    min-height: 280px;
  }

  .pin span {
    left: -80px;
    top: 28px;
  }
}