:root {
  --ink: #25211d;
  --muted: #6f5c48;
  --paper: #c49a68;
  --panel: #d8b17a;
  --line: #413832;
  --charcoal: #211f1c;
  --ember: #6d1f24;
  --steel: #4d5653;
  --gold: #a56f33;
  --cream: #ead1a5;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(37, 33, 29, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 229, 176, 0.34), transparent 26%),
    radial-gradient(circle at 78% 34%, rgba(82, 54, 36, 0.2), transparent 28%),
    linear-gradient(135deg, #b98756, #dfbf85 42%, #9f7249);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(37, 33, 29, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 33, 29, 0.03) 1px, transparent 1px);
  background-size: 34px 34px, 27px 27px;
  content: "";
  mix-blend-mode: multiply;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--cream);
  background: linear-gradient(to bottom, rgba(33, 31, 28, 0.88), rgba(33, 31, 28, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid rgba(234, 209, 165, 0.66);
  border-radius: 2px;
  background: rgba(109, 31, 36, 0.64);
  font-weight: 800;
}

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

.brand small {
  color: rgba(234, 209, 165, 0.82);
  font-size: 12px;
}

.brand strong {
  font-family: "Brush Script MT", "Segoe Script", Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 0.9;
  text-shadow: 1px 1px 0 rgba(234, 209, 165, 0.2);
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 30px);
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

nav a {
  color: rgba(234, 209, 165, 0.84);
}

nav a:hover {
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: var(--cream);
}

.hero-image,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 92vh;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(33, 31, 28, 0.92), rgba(75, 50, 34, 0.58) 44%, rgba(33, 31, 28, 0.14)),
    linear-gradient(0deg, rgba(33, 31, 28, 0.66), rgba(33, 31, 28, 0.08) 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 88px);
  padding-top: 90px;
}

.hero-content::after {
  position: absolute;
  right: clamp(-120px, -8vw, -40px);
  bottom: -80px;
  width: 174px;
  height: 118px;
  display: grid;
  place-items: center;
  border: 3px double rgba(234, 209, 165, 0.46);
  color: rgba(234, 209, 165, 0.62);
  content: "PRETORIA\A GAUTENG\A 082 905 7711";
  font-family: "Courier New", monospace;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: pre;
  transform: rotate(-8deg);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--ember);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-block;
  padding: 6px 12px;
  color: var(--cream);
  background: rgba(33, 31, 28, 0.86);
  border-top: 1px solid rgba(234, 209, 165, 0.36);
  border-bottom: 1px solid rgba(234, 209, 165, 0.36);
}

.custom .section-kicker {
  color: var(--cream);
}

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

h1 {
  max-width: 680px;
  margin-bottom: 6px;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
  font-family: "Brush Script MT", "Segoe Script", Georgia, serif;
  font-weight: 500;
  text-shadow:
    2px 2px 0 rgba(33, 31, 28, 0.42),
    0 8px 30px rgba(0, 0, 0, 0.3);
}

.logo-subtitle {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 16px;
  color: var(--cream);
  background: rgba(33, 31, 28, 0.88);
  border-top: 1px solid rgba(234, 209, 165, 0.4);
  border-bottom: 1px solid rgba(234, 209, 165, 0.4);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.hero p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(234, 209, 165, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 2px solid var(--line);
  border-radius: 2px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.button.primary {
  color: var(--cream);
  background: var(--ember);
  box-shadow: 0 14px 26px rgba(37, 33, 29, 0.28);
}

.button.secondary {
  color: var(--cream);
  border-color: rgba(234, 209, 165, 0.54);
  background: rgba(37, 33, 29, 0.36);
}

.intro,
.products,
.featured-work,
.gallery-section,
.custom,
.maker,
.contact,
footer {
  padding-left: clamp(18px, 5vw, 64px);
  padding-right: clamp(18px, 5vw, 64px);
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 6vw, 80px);
  padding-top: 74px;
  padding-bottom: 68px;
  background: rgba(234, 209, 165, 0.42);
  border-top: 4px double rgba(37, 33, 29, 0.58);
  border-bottom: 4px double rgba(37, 33, 29, 0.58);
}

.intro::after {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 22px;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(37, 33, 29, 0.22);
  border-radius: 50%;
  color: rgba(37, 33, 29, 0.24);
  content: "10 JULY 1999";
  font-family: "Courier New", monospace;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  transform: rotate(12deg);
}

.intro p:last-child,
.custom-copy p,
.maker-panel p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.products {
  padding-top: 78px;
  padding-bottom: 34px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.product-card {
  min-height: 250px;
  padding: 24px;
  border: 2px solid rgba(37, 33, 29, 0.76);
  border-radius: 2px;
  background:
    linear-gradient(145deg, rgba(234, 209, 165, 0.52), rgba(190, 138, 83, 0.34)),
    var(--panel);
  box-shadow: 0 10px 32px rgba(37, 33, 29, 0.12);
}

.product-card:nth-child(2) {
  border-top: 5px solid var(--ember);
}

.product-card:nth-child(3) {
  border-top: 5px solid var(--steel);
}

.product-card:nth-child(4) {
  border-top: 5px solid var(--gold);
}

.product-card:nth-child(5) {
  border-top: 5px solid var(--ember);
}

.product-card:nth-child(6) {
  border-top: 5px solid var(--steel);
}

.card-number {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--ember);
  font-size: 13px;
  font-weight: 900;
}

.product-card p,
.steps span {
  color: var(--muted);
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 28px;
}

.category-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 2px solid rgba(37, 33, 29, 0.72);
  border-radius: 2px;
  color: var(--ink);
  background: rgba(234, 209, 165, 0.72);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-work {
  padding-top: 44px;
  padding-bottom: 82px;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 14px;
}

figure {
  margin: 0;
}

.feature-large,
.feature-stack figure,
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border: 6px solid rgba(37, 33, 29, 0.82);
  border-radius: 2px;
  background: var(--charcoal);
  box-shadow: 0 10px 32px rgba(37, 33, 29, 0.22);
}

.feature-large {
  height: 620px;
}

.feature-stack {
  display: grid;
  gap: 14px;
}

.feature-stack figure {
  height: 303px;
}

.feature-large img,
.feature-stack img,
.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-large figcaption,
.feature-stack figcaption,
.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  color: var(--cream);
  background: linear-gradient(to top, rgba(33, 31, 28, 0.9), rgba(33, 31, 28, 0));
}

.feature-large figcaption strong,
.feature-large figcaption span {
  display: block;
}

.feature-large figcaption strong {
  font-size: 24px;
}

.feature-large figcaption span {
  max-width: 520px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
}

.feature-stack figcaption,
.gallery-grid figcaption {
  font-weight: 800;
}

.gallery-section {
  padding-top: 78px;
  padding-bottom: 86px;
  background:
    linear-gradient(rgba(234, 209, 165, 0.52), rgba(166, 113, 65, 0.28)),
    var(--panel);
  border-top: 4px double rgba(37, 33, 29, 0.58);
  border-bottom: 4px double rgba(37, 33, 29, 0.58);
}

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

.gallery-grid figure {
  aspect-ratio: 4 / 5;
  cursor: zoom-in;
}

.gallery-grid figure:nth-child(3),
.gallery-grid figure:nth-child(7),
.gallery-grid figure:nth-child(10) {
  aspect-ratio: 4 / 3;
  grid-column: span 2;
}

.custom {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  padding-top: 76px;
  padding-bottom: 76px;
  background:
    linear-gradient(135deg, rgba(33, 31, 28, 0.96), rgba(75, 50, 34, 0.96)),
    var(--charcoal);
  color: var(--cream);
}

.custom-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.order-notes {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.order-notes p {
  margin: 0;
  padding: 12px 14px;
  border: 2px solid rgba(234, 209, 165, 0.24);
  color: var(--cream);
  background: rgba(234, 209, 165, 0.08);
  font-size: 16px;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 126px;
  padding: 24px 24px 24px 78px;
  border: 2px solid rgba(234, 209, 165, 0.28);
  border-radius: 2px;
  background: rgba(234, 209, 165, 0.08);
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 2px;
  background: var(--ember);
  color: var(--cream);
  content: counter(steps);
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.maker {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  padding-bottom: 86px;
  background:
    linear-gradient(135deg, rgba(234, 209, 165, 0.46), rgba(109, 31, 36, 0.1)),
    var(--paper);
}

.maker-panel {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.stamp-cluster {
  position: absolute;
  right: clamp(18px, 6vw, 84px);
  top: 54px;
  width: 250px;
  height: 160px;
  pointer-events: none;
  opacity: 0.24;
}

.stamp-cluster span {
  position: absolute;
  display: inline-flex;
  min-width: 122px;
  justify-content: center;
  padding: 8px 10px;
  border: 3px solid var(--ink);
  color: var(--ink);
  font-family: "Courier New", monospace;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.stamp-cluster span:nth-child(1) {
  top: 8px;
  left: 6px;
  transform: rotate(-10deg);
}

.stamp-cluster span:nth-child(2) {
  top: 66px;
  right: 4px;
  transform: rotate(7deg);
}

.stamp-cluster span:nth-child(3) {
  bottom: 6px;
  left: 36px;
  transform: rotate(-3deg);
}

.contact {
  position: relative;
  overflow: hidden;
  justify-content: space-between;
  gap: 24px;
  padding-top: 62px;
  padding-bottom: 62px;
  background:
    linear-gradient(145deg, rgba(234, 209, 165, 0.62), rgba(166, 113, 65, 0.22)),
    var(--panel);
  border-top: 4px double rgba(37, 33, 29, 0.58);
}

.contact::after {
  position: absolute;
  right: 32px;
  bottom: 18px;
  width: 178px;
  height: 92px;
  border: 3px double rgba(37, 33, 29, 0.18);
  color: rgba(37, 33, 29, 0.18);
  content: "MAN CAVE\A DECOR ITEMS";
  display: grid;
  place-items: center;
  font-family: "Courier New", monospace;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  white-space: pre;
  transform: rotate(6deg);
}

.contact div {
  max-width: 690px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-details a,
.contact-details span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border: 2px solid rgba(37, 33, 29, 0.72);
  border-radius: 2px;
  color: var(--ink);
  background: rgba(234, 209, 165, 0.68);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.contact-details span {
  color: var(--muted);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  padding-bottom: 26px;
  color: rgba(234, 209, 165, 0.78);
  background: var(--ink);
}

footer a {
  color: var(--gold);
  font-weight: 800;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(52px, 1fr) minmax(0, 1120px) minmax(52px, 1fr);
  grid-template-rows: 60px minmax(0, 1fr) 46px;
  gap: 12px;
  padding: 18px;
  background: rgba(33, 31, 28, 0.94);
}

.lightbox figure {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 0;
  margin: 0;
}

.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  min-width: 0;
  min-height: 0;
  border: 6px solid rgba(234, 209, 165, 0.78);
  background: var(--charcoal);
}

.lightbox figcaption {
  padding-top: 10px;
  color: var(--cream);
  font-size: 18px;
  text-align: center;
}

.lightbox button {
  border: 2px solid rgba(234, 209, 165, 0.72);
  color: var(--cream);
  background: rgba(109, 31, 36, 0.76);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.lightbox-close {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  min-width: 96px;
}

.lightbox-prev {
  grid-column: 1;
  grid-row: 2;
}

.lightbox-next {
  grid-column: 3;
  grid-row: 2;
}

.lightbox-open {
  overflow: hidden;
}

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

  nav {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .intro,
  .custom {
    grid-template-columns: 1fr;
  }

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

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

  .feature-large {
    height: 520px;
  }

  .feature-stack {
    grid-template-columns: 1fr;
  }

  .hero-content::after,
  .intro::after,
  .stamp-cluster,
  .contact::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    padding-top: 14px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(23, 21, 18, 0.86), rgba(23, 21, 18, 0.24)),
      linear-gradient(90deg, rgba(23, 21, 18, 0.72), rgba(23, 21, 18, 0.2));
  }

  .hero-content {
    align-self: end;
    width: calc(100% - 36px);
    margin: 0 18px 44px;
    padding-top: 150px;
  }

  h1 {
    font-size: 54px;
  }

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

  .feature-layout,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-large,
  .feature-stack figure {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .gallery-grid figure,
  .gallery-grid figure:nth-child(3),
  .gallery-grid figure:nth-child(7),
  .gallery-grid figure:nth-child(10) {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .product-card {
    min-height: 230px;
  }

  .card-number {
    margin-bottom: 42px;
  }

  .button {
    width: 100%;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 48px minmax(0, 1fr) 48px;
    padding: 10px;
  }

  .lightbox figure {
    grid-column: 1 / -1;
  }

  .lightbox-close {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .lightbox-prev {
    grid-column: 1;
    grid-row: 3;
  }

  .lightbox-next {
    grid-column: 2;
    grid-row: 3;
  }

  .contact,
  footer {
    align-items: stretch;
    flex-direction: column;
  }
}
