:root {
  --ink: #171717;
  --muted: #68645f;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --stone: #e9e3da;
  --copper: #a45f38;
  --copper-dark: #6f351f;
  --olive: #53624a;
  --blue: #24536b;
  --line: rgba(23, 23, 23, 0.12);
  --shadow: 0 20px 60px rgba(15, 15, 15, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open,
body.cart-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.topbar {
  background: #101010;
  color: #f6efe5;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.55rem 1rem;
  text-align: center;
  text-transform: uppercase;
}

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

.nav {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: 1180px;
  min-height: 72px;
  padding: 0 1.2rem;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  gap: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  letter-spacing: 0;
  width: 34px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 1.4rem;
  justify-content: center;
}

.nav-links a {
  color: #34322f;
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 0.55rem;
  justify-content: flex-end;
}

.icon-button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  position: relative;
  transition: background 160ms ease, border-color 160ms ease;
  width: 42px;
}

.icon-button:hover {
  background: #fff;
  border-color: rgba(23, 23, 23, 0.3);
}

.cart-count {
  align-items: center;
  background: var(--copper);
  color: #fff;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 800;
  height: 18px;
  justify-content: center;
  min-width: 18px;
  padding: 0 4px;
  position: absolute;
  right: -5px;
  top: -6px;
}

.mobile-menu-button {
  display: none;
}

.hero {
  background-image:
    linear-gradient(90deg, rgba(9, 9, 9, 0.74), rgba(9, 9, 9, 0.42) 44%, rgba(9, 9, 9, 0.05)),
    url("./images/varsoli-watch-sheet.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
  min-height: 76svh;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 1180px;
  min-height: 76svh;
  padding: clamp(3.5rem, 7vw, 7rem) 1.2rem;
}

.eyebrow {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c9a8;
}

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

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.4rem, 12vw, 10rem);
  font-weight: 700;
  letter-spacing: 0;
  max-width: 760px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 2vw, 1.35rem);
  margin: 1rem 0 0;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 0.5rem;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: #ffffff;
  color: #111;
}

.button-primary:hover {
  background: #efe5d8;
}

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

.button-dark:hover {
  background: #2b2b2b;
}

.button-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-copper {
  background: var(--copper);
  color: #fff;
}

.button-copper:hover {
  background: var(--copper-dark);
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 1.2rem;
}

.section-white {
  background: #fff;
}

.section-ink {
  background: #151515;
  color: #f7f1e9;
}

.section-olive {
  background: #eef1ea;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  margin-bottom: 2.2rem;
}

.section-heading h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 5.1rem);
  font-weight: 700;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.section-ink .section-heading p,
.section-ink .muted {
  color: rgba(247, 241, 233, 0.72);
}

.trust-strip {
  background: #171717;
  color: #f7f1e9;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.35rem;
}

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

.trust-item strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-item span {
  color: rgba(247, 241, 233, 0.68);
  display: block;
  font-size: 0.86rem;
  margin-top: 0.35rem;
}

.product-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

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

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem;
}

.product-kicker {
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}

.product-copy {
  color: var(--muted);
  flex: 1;
  font-size: 0.95rem;
  margin: 0;
}

.product-meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.price {
  font-size: 1.02rem;
  font-weight: 850;
}

.availability {
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-actions {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr auto;
}

.link-button {
  align-items: center;
  border: 1px solid var(--line);
  color: #282522;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 0.85rem;
}

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

.feature {
  border-top: 1px solid rgba(23, 23, 23, 0.18);
  padding-top: 1.1rem;
}

.feature h3 {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature p {
  color: var(--muted);
  margin: 0.55rem 0 0;
}

.story-band {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.story-media {
  overflow: hidden;
}

.story-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.story-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.story-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

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

.policy-link {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  min-height: 150px;
  padding: 1rem;
}

.policy-link strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.policy-link span {
  color: rgba(247, 241, 233, 0.72);
  display: block;
  font-size: 0.92rem;
}

.footer {
  background: #0f0f0f;
  color: #f7f1e9;
  padding: 2.5rem 1.2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr repeat(3, minmax(140px, 0.4fr));
}

.footer a {
  color: rgba(247, 241, 233, 0.75);
  display: block;
  margin-top: 0.45rem;
}

.footer p {
  color: rgba(247, 241, 233, 0.7);
  margin: 0.7rem 0 0;
}

.footer h3 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(247, 241, 233, 0.62);
  font-size: 0.86rem;
  margin-top: 2rem;
  padding-top: 1rem;
}

.page-hero {
  background: #171717;
  color: #fff;
  padding: clamp(3rem, 7vw, 6rem) 1.2rem;
}

.page-hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
}

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

.content {
  background: #fff;
  padding: clamp(2.5rem, 6vw, 5rem) 1.2rem;
}

.content-narrow {
  margin: 0 auto;
  max-width: 860px;
}

.content h2 {
  font-size: 1.45rem;
  margin: 2rem 0 0.5rem;
}

.content p,
.content li {
  color: #4f4a45;
}

.content a {
  color: var(--blue);
  font-weight: 800;
}

.product-detail {
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.product-detail img {
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 100%;
}

.detail-copy h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

.detail-copy p {
  color: var(--muted);
}

.spec-list {
  border-top: 1px solid var(--line);
  margin-top: 1.4rem;
}

.spec-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 170px 1fr;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.spec-row strong {
  color: #27231f;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  background: #fff;
  border: 1px solid var(--line);
  min-height: 46px;
  padding: 0.75rem;
  width: 100%;
}

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

.cart-panel {
  background: rgba(0, 0, 0, 0.45);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 80;
}

.cart-open .cart-panel {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-left: auto;
  max-width: min(430px, 100vw);
  transform: translateX(100%);
  transition: transform 180ms ease;
  width: 100%;
}

.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-header,
.cart-footer {
  border-bottom: 1px solid var(--line);
  padding: 1rem;
}

.cart-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.cart-footer {
  border-bottom: 0;
  border-top: 1px solid var(--line);
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 1rem;
}

.cart-item {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 72px 1fr auto;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cart-item strong {
  display: block;
  line-height: 1.2;
}

.cart-item span {
  color: var(--muted);
  display: block;
  font-size: 0.86rem;
  margin-top: 0.2rem;
}

.qty-controls {
  align-items: center;
  display: flex;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.qty-controls button {
  background: #f5f1ea;
  border: 1px solid var(--line);
  cursor: pointer;
  height: 30px;
  width: 30px;
}

.cart-total {
  align-items: center;
  display: flex;
  font-size: 1.08rem;
  font-weight: 850;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.empty {
  color: var(--muted);
  padding: 2rem 0;
  text-align: center;
}

.checkout-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.checkout-line:last-child {
  border-bottom: 0;
  font-weight: 850;
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .nav-links {
    background: var(--paper);
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    inset: 113px 0 auto;
    padding: 0.8rem 1.2rem 1.2rem;
    position: fixed;
    z-index: 60;
  }

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

  .nav-links a {
    border-bottom: 1px solid var(--line);
    width: 100%;
    padding: 0.95rem 0;
  }

  .section-heading,
  .story-band,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .product-grid,
  .feature-grid,
  .policy-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 620px) {
  .topbar {
    font-size: 0.68rem;
  }

  .nav {
    min-height: 64px;
    padding: 0 0.9rem;
  }

  .brand {
    font-size: 1.28rem;
  }

  .brand-mark {
    height: 30px;
    width: 30px;
  }

  .nav-links {
    inset: 101px 0 auto;
  }

  .hero,
  .hero-inner {
    min-height: 74svh;
  }

  .hero {
    background-position: center right 38%;
  }

  h1 {
    font-size: clamp(3.4rem, 20vw, 5.8rem);
  }

  .hero-copy {
    max-width: 92%;
  }

  .hero-actions,
  .product-actions,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .spec-row {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 64px 1fr;
  }

  .cart-item > .price {
    grid-column: 2;
  }
}


.product-gallery {
  display: grid;
  gap: 0.85rem;
}

.product-gallery .main-product-image {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

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

.product-thumbs img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-note {
  color: var(--muted);
  font-size: 0.84rem;
  margin: 0;
}
