:root {
  --ink: #202124;
  --muted: #6f7477;
  --line: #eadfd9;
  --paper: #fffaf7;
  --white: #ffffff;
  --leaf: #477b69;
  --coral: #d8725d;
  --denim: #355f82;
  --gold: #b98b52;
  --blush: #f6ddd4;
  --shadow: 0 22px 70px rgba(77, 55, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.topbar {
  background: linear-gradient(90deg, #25201d, #3b2e29);
  color: #fff5ef;
  font-size: 12px;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.topbar-inner {
  width: 100%;
  min-height: 36px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 247, 0.88);
  border-bottom: 1px solid rgba(234, 223, 217, 0.78);
  box-shadow: 0 12px 36px rgba(77, 55, 42, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  width: 100%;
  min-height: 82px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 168px;
  padding: 10px 14px;
  border: 1px solid rgba(234, 223, 217, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(77, 55, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(77, 55, 42, 0.12);
}

.logo img {
  width: 142px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(234, 223, 217, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(77, 55, 42, 0.08);
}

.nav-actions {
  order: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-select {
  appearance: none;
  height: 44px;
  min-width: 92px;
  padding: 0 38px 0 18px;
  border: 1px solid rgba(216, 114, 93, 0.22);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.9);
  background-image:
    linear-gradient(45deg, transparent 50%, #d8725d 50%),
    linear-gradient(135deg, #d8725d 50%, transparent 50%),
    linear-gradient(135deg, rgba(216, 114, 93, 0.12), rgba(71, 123, 105, 0.08));
  background-position:
    calc(100% - 20px) 19px,
    calc(100% - 14px) 19px,
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
  color: #3b332f;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.075em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(77, 55, 42, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.language-select:hover {
  border-color: rgba(216, 114, 93, 0.48);
  background-color: #ffffff;
  box-shadow: 0 14px 30px rgba(77, 55, 42, 0.12);
  transform: translateY(-1px);
}

.language-select:focus {
  outline: none;
  border-color: rgba(71, 123, 105, 0.62);
  box-shadow: 0 0 0 4px rgba(71, 123, 105, 0.12), 0 14px 30px rgba(77, 55, 42, 0.12);
}

.language-select option {
  color: #2b2522;
  background: #ffffff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(234, 223, 217, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #3b332f;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  color: #3b332f;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 9px;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--leaf);
  background: rgba(238, 245, 241, 0.92);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 248px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(234, 223, 217, 0.92);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  backdrop-filter: blur(14px);
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 28px;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.96);
  border-left: 1px solid rgba(234, 223, 217, 0.92);
  border-top: 1px solid rgba(234, 223, 217, 0.92);
  transform: rotate(45deg);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px 9px 28px;
  border-radius: 10px;
  font-size: 14px;
  color: #5d5651;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.dropdown a::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.72;
}

.dropdown a:hover {
  color: var(--ink);
  background: #f6efeb;
  transform: translateX(2px);
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(255, 250, 247, 0.98) 0%, rgba(255, 250, 247, 0.82) 39%, rgba(255, 250, 247, 0.12) 72%), url("../images/hero.webp");
  background-size: cover;
  background-position: center;
}

.hero-inner,
.section-inner,
.page-hero-inner {
  width: 100%;
  padding: 0 56px;
  margin: 0;
}

.hero-copy {
  max-width: 610px;
  padding: 82px 0 112px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p {
  margin-bottom: 30px;
  color: #445057;
  font-size: 19px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--leaf);
  border-radius: 999px;
  background: var(--leaf);
  color: var(--white);
  font-weight: 800;
}

.button.secondary {
  background: var(--white);
  color: var(--leaf);
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: #f6efeb;
}

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

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}

.section-heading p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.category-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(88, 65, 49, 0.08);
}

.category-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.category-panel-content {
  padding: 24px;
}

.category-panel h3 {
  margin-bottom: 8px;
  font-size: 26px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.tag-list a,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #ccd9d4;
  border-radius: 999px;
  color: #40515a;
  font-size: 13px;
  font-weight: 700;
  background: #fbfdfb;
}

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

.value-item,
.product-card,
.post-card,
.contact-panel,
.service-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.value-item,
.product-card,
.post-card,
.service-item {
  padding: 22px;
}

.post-card.with-image {
  overflow: hidden;
  padding: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card.with-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.post-card.with-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f8f3ef;
}

.post-card-body {
  padding: 22px;
}

.product-card.with-image {
  overflow: hidden;
  padding: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card.with-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card.with-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f5f7f6;
}

.product-card.with-image.clothing-card img {
  aspect-ratio: 9 / 11;
}

.product-card-body {
  padding: 18px;
}

.value-item strong,
.product-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf);
  font-size: 18px;
}

.value-item p,
.product-card p,
.post-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.page-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #f5eee9 0%, #ffffff 48%, #f7ded5 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero.image-bags {
  background-image: linear-gradient(90deg, rgba(251, 252, 250, 0.94), rgba(251, 252, 250, 0.52)), url("../images/bags-category.webp");
  background-size: cover;
  background-position: center;
}

.page-hero.image-clothing {
  background-image: linear-gradient(90deg, rgba(251, 252, 250, 0.94), rgba(251, 252, 250, 0.5)), url("../images/clothing-category.webp");
  background-size: cover;
  background-position: center;
}

.editorial-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.editorial-main,
.editorial-stack img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.editorial-main {
  min-height: 420px;
  height: 100%;
}

.editorial-stack {
  display: grid;
  gap: 18px;
}

.editorial-stack img {
  aspect-ratio: 2.44 / 1;
}

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

.product-tile {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.product-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f8f3ef;
}

.product-tile-content {
  padding: 16px;
}

.product-tile-content strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.feature-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-banner img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px);
}

.feature-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

.service-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.email-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.email-address {
  display: inline-flex;
  align-items: center;
  margin: 12px 0 18px;
  color: var(--coral);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 850;
  word-break: break-word;
}

.page-hero-copy {
  max-width: 620px;
  padding: 70px 0;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 66px);
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.subnav a {
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #304149;
  font-weight: 700;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.content-block {
  max-width: 760px;
}

.content-block p {
  color: #40515a;
  font-size: 18px;
}

.contact-panel {
  padding: 26px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.field label {
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cfd9d9;
  border-radius: 6px;
  padding: 12px;
  font: inherit;
  background: #ffffff;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.site-footer {
  padding: 34px 0;
  background: #172026;
  color: #dbe4e4;
}

.footer-inner {
  width: 100%;
  padding: 0 56px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #b9c7c7;
  font-size: 14px;
}

.policy-content,
.article-body {
  max-width: 960px;
  color: #40515a;
}

.policy-content h2,
.article-body h2 {
  margin-top: 34px;
  color: var(--ink);
}

.policy-frame {
  width: 100%;
  min-height: 78vh;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.article-hero-image {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  margin-bottom: 34px;
}

@media (max-width: 900px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 24px;
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
  }

  .logo {
    min-width: 0;
    width: max-content;
    max-width: 210px;
  }

  .logo img {
    width: 128px;
  }

  .nav-actions {
    justify-self: end;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    min-height: 46px;
  }

  .dropdown {
    position: static;
    display: none;
    width: 100%;
    margin: 4px 0 8px;
    box-shadow: none;
    border-radius: 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown::before {
    display: none;
  }

  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown {
    display: block;
  }

  .hero {
    min-height: auto;
    background-image: linear-gradient(180deg, rgba(251, 252, 250, 0.96) 0%, rgba(251, 252, 250, 0.8) 64%, rgba(251, 252, 250, 0.28) 100%), url("../images/hero.webp");
  }

  .hero-copy {
    max-width: 680px;
    padding: 48px 0 260px;
  }

  .section-heading,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-grid,
  .value-grid,
  .product-grid,
  .post-grid,
  .service-grid,
  .split,
  .editorial-strip,
  .product-showcase,
  .feature-banner {
    grid-template-columns: 1fr;
  }

  .editorial-main {
    min-height: auto;
    aspect-ratio: 2.44 / 1;
  }

  .feature-banner img {
    min-height: 260px;
  }

  .product-card.with-image.clothing-card img {
    aspect-ratio: 4 / 5;
  }

  .article-hero-image {
    max-height: 420px;
  }
}

@media (max-width: 560px) {
  .nav,
  .hero-inner,
  .section-inner,
  .page-hero-inner,
  .footer-inner {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-link {
    padding: 0 14px;
    font-size: 13px;
  }

  .language-select {
    min-width: 82px;
    height: 42px;
    padding-left: 14px;
    padding-right: 34px;
    font-size: 11px;
  }

  .hero-copy {
    padding-top: 42px;
    padding-bottom: 210px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .page-hero {
    min-height: 280px;
  }

  .page-hero-copy {
    padding: 46px 0;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .section {
    padding: 46px 0;
  }

  .category-panel-content,
  .value-item,
  .product-card,
  .post-card,
  .contact-panel {
    padding: 18px;
  }

  .product-showcase,
  .product-grid,
  .post-grid,
  .category-grid,
  .service-grid {
    gap: 14px;
  }

  .product-tile-content,
  .product-card-body,
  .post-card-body {
    padding: 16px;
  }

  .editorial-stack {
    gap: 12px;
  }

  .email-address {
    font-size: 22px;
  }

  .policy-content,
  .article-body {
    max-width: 100%;
  }
}
