:root {
  --ink: #061c33;
  --navy: #08213c;
  --navy-soft: #123455;
  --gold: #c9972f;
  --gold-soft: #f2d58c;
  --mist: #f7f5f0;
  --paper: #ffffff;
  --line: #dbe2e8;
  --muted: #657487;
  --shadow: 0 18px 44px rgba(6, 28, 51, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--paper);
  background: var(--navy);
  border: 1px solid var(--gold);
  font-family: Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.brand small {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 34px);
  color: #253d58;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
}

.header-action,
.button,
.add-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
}

.header-action {
  padding: 0 16px;
  color: var(--paper);
  background: var(--navy);
}

.cart-count {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.8rem;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - 76px);
  padding: clamp(92px, 12vw, 150px) clamp(18px, 5vw, 72px) clamp(64px, 9vw, 110px);
  overflow: hidden;
  background: var(--navy);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 28, 51, 0.88) 0%, rgba(6, 28, 51, 0.62) 46%, rgba(6, 28, 51, 0.16) 100%),
    linear-gradient(0deg, rgba(6, 28, 51, 0.52) 0%, rgba(6, 28, 51, 0) 42%);
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 13ch;
  color: inherit;
  font-family: Georgia, serif;
  font-size: clamp(2.65rem, 5vw, 5.1rem);
  font-weight: 700;
}

.hero-copy p:not(.eyebrow) {
  max-width: 58ch;
  margin: 22px 0 0;
  color: #e0e7ee;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

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

.button {
  padding: 0 20px;
}

.button.primary {
  color: var(--paper);
  background: var(--navy);
}

.button.secondary {
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--gold);
}

.button.secondary.light {
  color: var(--paper);
  border-color: rgba(242, 213, 140, 0.8);
}

.button.wide {
  width: 100%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.trust-strip div {
  padding: 24px clamp(18px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.24rem;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
}

.section,
.shop-section,
.featured-section,
.quote-band,
.cart-panel {
  padding: clamp(46px, 7vw, 84px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(280px, 0.8fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: end;
  margin-bottom: 32px;
}

.section-heading.compact {
  align-items: start;
}

.section-heading h2,
.quote-band h2,
.cart-panel h2 {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 3.55rem);
}

.section-heading p:last-child,
.quote-band p:last-child {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
}

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

.category-card {
  padding: 26px;
  background: var(--navy);
  border: 1px solid rgba(201, 151, 47, 0.34);
  border-radius: var(--radius);
  color: var(--paper);
}

.category-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  color: var(--gold-soft);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.category-card h3 {
  min-height: 48px;
  font-size: 1.08rem;
}

.category-card p {
  margin: 16px 0 0;
  color: #d7e0ea;
}

.shop-section {
  background: var(--mist);
}

.featured-section {
  background: #fbfaf7;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.page-hero {
  padding: clamp(76px, 10vw, 126px) clamp(18px, 5vw, 72px) clamp(46px, 7vw, 72px);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(6, 28, 51, 0.95), rgba(8, 33, 60, 0.82)),
    url("assets/IMG-20260618-WA0068.jpg") center / cover;
}

.page-hero div {
  max-width: 820px;
}

.page-hero h1 {
  max-width: 15ch;
  color: var(--paper);
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
}

.page-hero p:last-child {
  max-width: 62ch;
  margin: 20px 0 0;
  color: #dce5ed;
  font-size: 1.06rem;
}

.dedicated-shop {
  padding-top: 42px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 8px;
}

.filter-button {
  min-height: 46px;
  padding: 0 14px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.filter-button.active {
  color: var(--paper);
  background: var(--navy);
  border-color: var(--navy);
}

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

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

.product-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(6, 28, 51, 0.08);
}

.product-card.hidden {
  display: none;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #eef2f4;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  color: var(--paper);
  background: rgba(6, 28, 51, 0.86);
  border: 1px solid rgba(201, 151, 47, 0.55);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-copy {
  display: flex;
  min-height: 234px;
  flex-direction: column;
  padding: 18px;
}

.product-copy span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-copy h3 {
  margin-top: 8px;
  color: var(--navy);
  font-size: 1.08rem;
}

.product-copy p {
  margin: 12px 0 18px;
  color: var(--muted);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.price {
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 900;
}

.add-button {
  min-width: 132px;
  padding: 0 14px;
  color: var(--navy);
  background: var(--gold);
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(26px, 5vw, 76px);
  background: var(--navy);
  color: var(--paper);
}

.quote-band h2 {
  color: var(--paper);
}

.quote-band p:last-child {
  color: #d6e2ef;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #dce6ee;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.quote-form textarea {
  min-height: 118px;
  resize: vertical;
}

.cart-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) 1fr;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.cart-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-list button {
  min-width: 38px;
  min-height: 34px;
  color: var(--paper);
  background: var(--navy);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.site-footer {
  color: var(--paper);
  background: #061a30;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(20px, 4vw, 58px);
  padding: 48px clamp(18px, 5vw, 72px);
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-family: Georgia, serif;
  font-size: 1.15rem;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 10px;
  color: #d3deea;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: #cbd7e3;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.94rem;
}

.footer-bottom a {
  color: var(--gold-soft);
  font-weight: 900;
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .section-heading,
  .shop-layout,
  .quote-band,
  .cart-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 14ch;
  }

  .trust-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .filters {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 620px) {
  .brand {
    width: 100%;
  }

  .header-action {
    width: 100%;
  }

  .nav-links {
    overflow-x: auto;
    justify-content: flex-start;
  }

  h1 {
    font-size: 2.35rem;
  }

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

  .product-copy {
    min-height: 0;
  }

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