:root {
  --paper: #f5f4ef;
  --surface: #fffdf7;
  --ink: #20231f;
  --muted: #6b6a61;
  --line: #d7d2c8;
  --olive: #667153;
  --olive-dark: #3f4938;
  --clay: #9a5745;
  --slate: #34434a;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(32, 35, 31, 0.13);
  --max-width: 1160px;
}

* {
  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;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(154, 87, 69, 0.35);
  outline-offset: 3px;
}

section[id] {
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px 5vw;
  background: rgba(245, 244, 239, 0.9);
  border-bottom: 1px solid rgba(215, 210, 200, 0.8);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  display: block;
  width: 126px;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
}

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

.brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a {
  transition: color 160ms ease;
}

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

.menu-toggle {
  display: none;
  min-width: 72px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 96px));
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 22, 20, 0.72) 0%, rgba(18, 22, 20, 0.45) 39%, rgba(18, 22, 20, 0.08) 100%),
    linear-gradient(0deg, rgba(18, 22, 20, 0.35), rgba(18, 22, 20, 0.04));
}

.hero-content {
  width: min(90vw, var(--max-width));
  margin: 0 auto;
  padding: 72px 0 96px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e6c0a9;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  font-weight: 650;
}

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
}

.hero-logo-heading {
  max-width: none;
  margin-bottom: 22px;
  font-size: 0;
  line-height: 1;
}

.hero-logo {
  display: block;
  width: min(610px, 82vw);
  height: auto;
  filter: brightness(0) invert(1);
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--olive-dark);
  color: var(--white);
}

.button.primary:hover {
  background: #31392d;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.section,
.split-section,
.contact-section {
  width: min(90vw, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 108px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -38px;
}

.section-heading h2 {
  margin-bottom: 0;
}

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

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

.collection-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(32, 35, 31, 0.06);
  transition: transform 160ms ease;
}

.collection-card:hover {
  transform: translateY(-3px);
}

.collection-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8d2c6;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-card:nth-child(2) .collection-image img {
  object-position: 50% 44%;
}

.collection-grid.collection-overview {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 4px 0 28px;
}

.collection-overview .collection-card {
  box-shadow: none;
}

.collection-overview .collection-card.active {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.collection-overview .collection-image {
  aspect-ratio: 5 / 3;
}

.collection-overview .collection-body {
  padding: 16px;
}

.collection-overview h3 {
  margin: 0 0 5px;
  font-size: 20px;
}

.collection-overview p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.45;
}

.collection-overview .text-button {
  min-height: auto;
  font-size: 14px;
}

.collection-body {
  padding: 22px;
}

.collection-body p {
  color: var(--muted);
}

.text-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0;
  color: var(--clay);
  font-weight: 800;
}

.collection-page {
  width: min(90vw, 1280px);
  margin: 0 auto;
}

.collection-hero {
  padding: 82px 0 24px;
}

.collection-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
}

.collection-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.collection-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.collection-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--slate);
  font-weight: 800;
}

.collection-nav a.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface);
}

.site-nav a.active {
  color: var(--ink);
  font-weight: 800;
}

.collection-detail {
  width: 100%;
  padding: 34px 0 88px;
}

.collection-detail-heading {
  margin-bottom: 28px;
}

.collection-description-only {
  max-width: 760px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(32, 35, 31, 0.07);
}

.collection-description-only h2 {
  margin-bottom: 14px;
}

.collection-description-only p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.collection-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 560px), 1fr));
  gap: 22px;
  align-items: start;
}

.collection-products .product-listing {
  margin-top: 0;
}

.product-listing {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(32, 35, 31, 0.07);
}

.product-gallery {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  border-right: 1px solid var(--line);
  background: #f4f1ea;
}

.main-product-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ede9df;
}

.main-product-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 1px 0 4px;
  scrollbar-width: thin;
}

.thumb-button {
  flex: 0 0 54px;
  overflow: hidden;
  width: 54px;
  height: 54px;
  min-height: 54px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #ede9df;
}

.thumb-button.active {
  border-color: var(--clay);
}

.thumb-button img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.listing-info {
  padding: 18px;
}

.listing-info h3 {
  margin: 3px 0 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.08;
}

.listing-info p:not(.eyebrow) {
  color: var(--muted);
}

.catalog-description {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.option-group {
  display: grid;
  gap: 9px;
  margin-top: 15px;
}

.option-label {
  color: var(--slate);
  font-size: 14px;
  font-weight: 800;
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.color-option.active {
  border-color: var(--ink);
  background: #f0eee7;
}

.swatch {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(32, 35, 31, 0.18);
  border-radius: 50%;
  background: var(--swatch-color, #d7d2c8);
}

.swatch.grey {
  background: #bfc4c3;
}

.swatch.blue {
  background: #8caaca;
}

.swatch.beige {
  background: #d7c7a9;
}

.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.size-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
}

.listing-button {
  min-height: 44px;
  margin-top: 18px;
  padding: 0 18px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 58px;
  align-items: center;
  padding: 32px 0 112px;
}

.split-media {
  overflow: hidden;
  border-radius: 8px;
}

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

.split-content p:not(.eyebrow) {
  color: var(--muted);
}

.detail-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.detail-list span {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.9fr);
  gap: 64px;
  padding: 24px 0 112px;
}

.contact-section p:not(.eyebrow) {
  color: var(--muted);
}

.contact-links {
  margin-top: 28px;
}

.contact-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--slate);
  font-weight: 700;
}

.enquiry-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(32, 35, 31, 0.08);
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 800;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.enquiry-form input,
.enquiry-form select {
  min-height: 48px;
  padding: 0 13px;
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 124px;
  padding: 12px 13px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--olive-dark);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 5vw;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.site-footer p,
.site-footer small {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer p {
  margin: 0;
}

.footer-brand .brand-mark {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.footer-brand .brand-logo {
  width: 170px;
  filter: brightness(0) invert(1);
}

.site-footer > a {
  color: #e6c0a9;
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 5vw 18px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .hero {
    min-height: 620px;
  }

  .hero-media {
    object-position: 58% center;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 36px;
  }

  .collection-grid,
  .product-listing,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .collection-card {
    grid-column: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .split-section,
  .contact-section {
    gap: 34px;
  }

}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding-inline: 18px;
  }

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

  .brand-logo {
    width: 112px;
  }

  .hero-logo {
    width: min(340px, 88vw);
  }

  .hero {
    min-height: 580px;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 56px 0 72px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .contact-links {
    flex-direction: column;
  }

  .button,
  .contact-links a {
    width: 100%;
  }

  .section,
  .split-section,
  .contact-section,
  .collection-page {
    width: calc(100% - 36px);
  }

  .section {
    padding: 74px 0;
  }

  .collection-hero {
    padding: 62px 0 24px;
  }

  .collection-body,
  .enquiry-form {
    padding: 20px;
  }

  .gallery-thumbs {
    display: flex;
  }

  .listing-info h3 {
    font-size: 28px;
  }

  .detail-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-section {
    padding: 78px 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 18px;
  }
}
