:root {
  --ink: #171615;
  --muted: #68635d;
  --paper: #faf8f3;
  --white: #ffffff;
  --line: #e5ded3;
  --coral: #e96f58;
  --sage: #779b83;
  --blue: #2e5f99;
  --gold: #b88a42;
  --charcoal: #242321;
  --shadow: 0 22px 60px rgba(28, 24, 20, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(18px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 243, .94);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--blue));
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #393532;
  font-size: 14px;
}
.nav a:hover,
.footer a:hover { color: var(--coral); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(23, 22, 21, .12); }
.btn-dark { background: var(--ink); border-color: var(--ink); color: var(--white); }
.btn-light { background: var(--white); }
.btn-accent { background: var(--coral); border-color: var(--coral); color: var(--white); }

.hero {
  max-width: 1180px;
  margin: 0 auto;
  min-height: calc(100vh - 68px);
  padding: 60px 22px 42px;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
  gap: 46px;
  align-items: center;
}
.hero-copy { max-width: 620px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  font-size: clamp(46px, 6vw, 82px);
  line-height: .96;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}
h3 { margin: 0; font-size: 21px; line-height: 1.18; }
.lead {
  margin: 22px 0 28px;
  color: #4c4742;
  font-size: 18px;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.metric-row {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.metric-row div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.metric-row strong { display: block; font-size: 26px; }
.metric-row span { color: var(--muted); font-size: 13px; }
.hero-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 22px;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, .55fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 30px;
}
.section-head .eyebrow { grid-column: 1 / -1; margin-bottom: -12px; }
.section-head p { margin: 0; color: var(--muted); }
.center-action { margin-top: 26px; text-align: center; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.product-grid.wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-card {
  min-height: 340px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  overflow: hidden;
}
.product-card:hover { box-shadow: var(--shadow); }
.product-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-card p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.coral { background: linear-gradient(160deg, #fff 0%, #f6d4cc 100%); }
.sage { background: linear-gradient(160deg, #fff 0%, #d9e6dc 100%); }
.blue { background: linear-gradient(160deg, #fff 0%, #d6e2f4 100%); }
.gold { background: linear-gradient(160deg, #fff 0%, #eadcc4 100%); }
.rose { background: linear-gradient(160deg, #fff 0%, #ecd8df 100%); }
.stone { background: linear-gradient(160deg, #fff 0%, #ddd9d1 100%); }

.bag-icon {
  align-self: center;
  width: 148px;
  height: 168px;
  margin: 16px 0 24px;
  border: 8px solid rgba(23, 22, 21, .9);
  border-top-width: 22px;
  border-radius: 36px 36px 18px 18px;
  position: relative;
  background: rgba(255,255,255,.52);
}
.bag-icon:before {
  content: "";
  position: absolute;
  left: 40px;
  top: -56px;
  width: 52px;
  height: 46px;
  border: 8px solid rgba(23, 22, 21, .9);
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
}
.bag-icon.backpack {
  border-radius: 26px;
  border-top-width: 8px;
}
.bag-icon.backpack:before {
  width: 78px;
  left: 27px;
  top: 18px;
  height: 118px;
  border: 5px solid rgba(23, 22, 21, .35);
  border-radius: 20px;
}
.bag-icon.luggage {
  width: 128px;
  height: 182px;
  border-radius: 22px;
  border-top-width: 8px;
}
.bag-icon.luggage:before {
  left: 42px;
  top: -42px;
  width: 28px;
  height: 36px;
  border-width: 7px;
}

.band {
  padding: 78px max(22px, calc((100vw - 1180px) / 2));
}
.split-band {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1.18fr);
  gap: 42px;
  align-items: start;
  background: var(--charcoal);
  color: var(--white);
}
.split-band p { color: #d5d0c9; }
.split-band .eyebrow { color: #94b9ff; }
.feature-list {
  display: grid;
  gap: 14px;
}
.feature-list article,
.process article,
.trust article,
.spec-box,
.contact-panel,
.about-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.feature-list article {
  padding: 22px;
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
}
.feature-list span {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffd6ca;
  font-weight: 900;
}
.feature-list p { margin: 8px 0 0; }

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.process article { padding: 22px; }
.process strong {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
}
.process p,
.trust p,
.spec-box p,
.about-panel p { color: var(--muted); margin-bottom: 0; }

.cta {
  max-width: 1180px;
  margin: 0 auto 74px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
}
.cta p { color: #e5eefb; }
.cta h2 { max-width: 720px; }

.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 22px 38px;
}
.breadcrumb {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}
.page-hero p:not(.eyebrow):not(.breadcrumb) {
  max-width: 720px;
  color: #4c4742;
  font-size: 18px;
}

.product-detail {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px 78px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
  gap: 42px;
  align-items: start;
}
.product-photo {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.spec-box { padding: 20px; }

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

.contact-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px 78px;
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  gap: 32px;
}
.contact-panel { padding: 24px; }
.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form h2,
.form .full { grid-column: 1 / -1; }
label {
  display: grid;
  gap: 6px;
  color: #302c28;
  font-size: 13px;
  font-weight: 850;
}
input, select, textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}
textarea { min-height: 130px; resize: vertical; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 34px max(18px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer div { display: grid; gap: 4px; }
.footer strong { color: var(--ink); }
.footer nav { display: flex; flex-wrap: wrap; gap: 18px; font-size: 14px; }

@media (max-width: 940px) {
  .nav { display: none; }
  .hero,
  .split-band,
  .product-detail,
  .contact-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .section-head { grid-template-columns: 1fr; }
  .product-grid,
  .product-grid.wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process,
  .trust { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header { padding: 12px 16px; }
  .site-header > .btn { display: none; }
  .hero,
  .section,
  .page-hero,
  .product-detail,
  .contact-layout { padding-left: 16px; padding-right: 16px; }
  .hero { padding-top: 42px; }
  .metric-row,
  .product-grid,
  .product-grid.wide,
  .process,
  .trust,
  .spec-grid,
  .form { grid-template-columns: 1fr; }
  .cta {
    margin-left: 16px;
    margin-right: 16px;
    padding: 24px;
    display: grid;
  }
  .footer { display: grid; }
}
