:root {
  --ink: #171412;
  --muted: #6f6860;
  --line: #e8e1d8;
  --paper: #fbfaf8;
  --soft: #f4efe8;
  --ivory: #fffdf8;
  --champagne: #b99a67;
  --graphite: #2c2a28;
  --shadow: 0 18px 55px rgba(29, 24, 18, 0.12);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.4rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

h3 {
  font-size: 1.35rem;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(232, 225, 216, 0.84);
  background: rgba(251, 250, 248, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--champagne);
  color: var(--champagne);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.brand__text {
  white-space: nowrap;
}

.site-nav {
  justify-self: center;
}

.menu,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.menu a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  padding: 13px 21px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  min-height: 40px;
  padding: 10px 16px;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-light {
  background: var(--ivory);
  color: var(--ink);
}

.btn-outline {
  border-color: var(--line);
  background: transparent;
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-full {
  width: 100%;
}

.text-link {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid var(--champagne);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--champagne);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #181512;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(18, 15, 12, 0.92) 0%, rgba(18, 15, 12, 0.58) 42%, rgba(18, 15, 12, 0.16) 100%),
    url("https://images.unsplash.com/photo-1594223274512-ad4803739b7c?auto=format&fit=crop&w=1800&q=82") center / cover;
  transform: scale(1.02);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
}

.hero__lead {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.section {
  padding: 86px 0;
}

.section--soft {
  background: var(--soft);
}

.intro-strip {
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.intro-grid,
.section-head--split,
.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: end;
}

.intro-grid p,
.service-grid p {
  color: var(--muted);
}

.section-head {
  margin-bottom: 34px;
}

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

.collection-tile {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fffdf8, #ece2d5);
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.collection-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.collection-tile span {
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.collection-tile small {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

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

.bag-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bag-card {
  background: var(--ivory);
}

.bag-card__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eee8df;
}

.bag-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bag-card:hover img {
  transform: scale(1.035);
}

.bag-card__image span {
  position: absolute;
  left: 14px;
  top: 14px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 800;
}

.bag-card__body {
  padding: 18px 4px 0;
}

.bag-card__body h3 {
  margin-bottom: 8px;
  font-size: 1.32rem;
}

.bag-card__body p:last-child {
  color: var(--muted);
}

.service-band {
  background: var(--graphite);
  color: #fff;
}

.service-band .eyebrow,
.service-band h2 {
  color: #fff;
}

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

.steps article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 24px;
}

.steps span {
  color: var(--champagne);
  font-weight: 800;
}

.steps h3 {
  margin: 26px 0 10px;
}

.steps p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-panel {
  max-width: 820px;
  border: 1px solid var(--line);
  background: var(--ivory);
  padding: clamp(32px, 6vw, 72px);
  text-align: center;
}

.cta-panel p {
  color: var(--muted);
}

.page-hero {
  background: var(--graphite);
  color: #fff;
  padding: 96px 0 70px;
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
}

.catalogue-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  background: var(--ivory);
  padding: 22px;
}

.filters h2 {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.filters ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.filters li + li {
  border-top: 1px solid var(--line);
}

.filters a:not(.btn) {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-weight: 700;
}

.bag-detail {
  padding: 70px 0 0;
}

.bag-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 54px;
  align-items: start;
}

.bag-gallery__main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #eee8df;
}

.bag-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.bag-gallery__thumbs button {
  border: 1px solid var(--line);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.bag-gallery__thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.bag-summary {
  position: sticky;
  top: 104px;
}

.bag-summary h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.bag-summary__excerpt {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.bag-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.bag-status span {
  border: 1px solid var(--line);
  background: var(--ivory);
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
}

.bag-actions {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
}

.detail-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.detail-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.detail-list dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
}

.prose {
  max-width: 820px;
}

.prose h2,
.prose h3 {
  margin: 1.6em 0 0.6em;
}

.prose a {
  border-bottom: 1px solid var(--champagne);
}

.post-summary {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  background: #151311;
  color: #fff;
  padding: 64px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 42px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-menu {
  display: block;
}

.footer-menu li + li {
  margin-top: 8px;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.brand--footer {
  margin-bottom: 16px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: #1f7f4c;
  color: #fff;
  box-shadow: var(--shadow);
  font-weight: 800;
}

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 18px 16px 24px;
  }

  .site-nav.is-open {
    display: block;
  }

  .menu {
    display: grid;
    gap: 4px;
  }

  .menu a {
    display: block;
    padding: 12px 0;
  }

  .header-cta {
    display: none;
  }

  .intro-grid,
  .section-head--split,
  .service-grid,
  .catalogue-layout,
  .bag-detail__grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .filters,
  .bag-summary {
    position: static;
  }

  .collection-grid,
  .bag-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 3rem;
  }

  .container {
    width: min(100% - 24px, 1160px);
  }

  .hero {
    min-height: 680px;
  }

  .hero__content {
    padding: 92px 0 56px;
  }

  .hero__actions,
  .bag-status {
    display: grid;
  }

  .hero__actions .btn,
  .bag-status span {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .collection-grid,
  .bag-grid,
  .steps,
  .bag-gallery__thumbs {
    grid-template-columns: 1fr;
  }

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

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
  }
}

