:root {
  --night: #0f0b08;
  --espresso: #21150d;
  --walnut: #4d2d18;
  --saddle: #a9672f;
  --copper: #d89d4a;
  --cream: #f3e6ce;
  --bone: #fff8eb;
  --smoke: #c4b49f;
  --line: rgba(216, 157, 74, 0.28);
  --shadow: rgba(7, 4, 2, 0.45);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 5%, rgba(216, 157, 74, 0.18), transparent 32rem),
    linear-gradient(180deg, var(--night), #140d08 42%, #26160d);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 248, 235, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 235, 0.018) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  max-width: 960px;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.88;
}

h2 {
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.95;
}

h3 {
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.04;
}

p {
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(15, 11, 8, 0.8);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
  font-weight: 850;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid rgba(216, 157, 74, 0.55);
  border-radius: 50%;
}

.nav-links {
  gap: clamp(12px, 2vw, 28px);
  color: rgba(243, 230, 206, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.nav-cta {
  padding: 10px 14px;
  color: var(--night);
  background: var(--copper);
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: clamp(690px, 94vh, 900px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 8, 5, 0.94), rgba(17, 9, 4, 0.78) 42%, rgba(17, 9, 4, 0.18) 78%),
    linear-gradient(0deg, rgba(12, 8, 5, 0.8), rgba(12, 8, 5, 0.08) 40%, rgba(12, 8, 5, 0.28));
}

.hero-content {
  position: relative;
  width: min(1050px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 84px 0 180px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #7c431f;
}

.hero-copy {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(243, 230, 206, 0.86);
  font-size: clamp(18px, 2vw, 23px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  color: var(--night);
  background: linear-gradient(135deg, #f0b55c, var(--copper));
  box-shadow: 0 18px 44px rgba(216, 157, 74, 0.2);
}

.button.ghost {
  color: var(--cream);
  border-color: rgba(243, 230, 206, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.button.full {
  width: 100%;
}

.hero-proof {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 0;
  left: clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: var(--line);
}

.hero-proof div {
  min-height: 128px;
  padding: 22px;
  background: rgba(19, 12, 7, 0.88);
}

.hero-proof strong {
  display: block;
  margin-bottom: 8px;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.hero-proof span {
  color: rgba(243, 230, 206, 0.75);
  font-size: 14px;
  line-height: 1.45;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
  padding: clamp(18px, 4vw, 56px);
}

.feature-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--espresso);
  box-shadow: 0 22px 70px var(--shadow);
}

.feature-tile.tall {
  grid-row: span 2;
  min-height: 740px;
}

.feature-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.94;
  transition: transform 900ms ease;
}

.feature-tile:hover img {
  transform: scale(1.035);
}

.feature-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 38%, rgba(12, 8, 5, 0.9));
}

.feature-tile div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
}

.feature-tile p {
  margin: 0 0 10px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section,
.custom-panel,
.contact-section,
.footer {
  padding-right: clamp(18px, 6vw, 86px);
  padding-left: clamp(18px, 6vw, 86px);
}

.section {
  padding-top: clamp(72px, 9vw, 124px);
  padding-bottom: clamp(72px, 9vw, 124px);
}

.craft-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.craft-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.story-copy p {
  margin: 0 0 20px;
  color: rgba(243, 230, 206, 0.72);
  font-size: 18px;
}

.services-section {
  color: var(--night);
  background:
    linear-gradient(135deg, rgba(255, 248, 235, 0.95), rgba(232, 206, 165, 0.94)),
    var(--bone);
}

.real-work-section {
  background:
    linear-gradient(180deg, rgba(15, 11, 8, 0.92), rgba(33, 21, 13, 0.95)),
    #130c07;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 950px;
  margin-bottom: 30px;
}

.real-work-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 10px;
}

.real-work-grid img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(7, 4, 2, 0.32);
}

.real-work-grid img:nth-child(1),
.real-work-grid img:nth-child(7),
.real-work-grid img:nth-child(12) {
  grid-column: span 2;
  grid-row: span 2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(77, 45, 24, 0.22);
  border-radius: 8px;
  background: rgba(77, 45, 24, 0.22);
}

.service-grid article {
  min-height: 250px;
  padding: 26px;
  background: rgba(255, 248, 235, 0.82);
}

.service-grid span,
.order-steps span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  place-items: center;
  color: var(--cream);
  background: var(--walnut);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 950;
}

.service-grid p {
  color: #68472f;
}

.custom-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  padding-top: clamp(72px, 9vw, 124px);
  padding-bottom: clamp(72px, 9vw, 124px);
  background:
    linear-gradient(90deg, rgba(15, 11, 8, 0.92), rgba(15, 11, 8, 0.7)),
    url("assets/gallery-leather-process.png") center / cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.order-steps div {
  min-height: 310px;
  padding: 24px;
  background: rgba(33, 21, 13, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.order-steps p,
.contact-section p,
.quote-section p {
  color: rgba(243, 230, 206, 0.72);
}

.quote-section {
  text-align: center;
}

blockquote {
  width: min(1050px, 100%);
  margin: 0 auto 22px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 0.98;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding-top: clamp(72px, 9vw, 124px);
  padding-bottom: clamp(72px, 9vw, 124px);
  background: #130c07;
  border-top: 1px solid var(--line);
}

.contact-section > div:first-child {
  max-width: 820px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-card {
  padding: 18px;
  background: rgba(255, 248, 235, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 80px var(--shadow);
}

.contact-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.contact-card h3 {
  margin-top: 18px;
}

.contact-card p {
  margin: 10px 0 18px;
}

.contact-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.contact-list a {
  display: grid;
  gap: 3px;
  padding: 12px;
  background: rgba(15, 11, 8, 0.68);
  border: 1px solid rgba(216, 157, 74, 0.22);
  border-radius: 8px;
}

.contact-list span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--cream);
  font-size: clamp(14px, 2vw, 17px);
  overflow-wrap: anywhere;
}

.contact-note {
  margin-bottom: 0;
  color: rgba(243, 230, 206, 0.56);
  font-size: 13px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  padding-bottom: 24px;
  color: rgba(243, 230, 206, 0.62);
  border-top: 1px solid var(--line);
}

.footer a {
  color: rgba(243, 230, 206, 0.82);
  text-decoration: none;
}

.footer a:hover {
  color: var(--paper);
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero-content {
    padding-bottom: 260px;
  }

  .hero-proof,
  .gallery-strip,
  .craft-layout,
  .real-work-grid,
  .service-grid,
  .custom-panel,
  .order-steps,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .feature-tile.tall {
    min-height: 560px;
  }

  .service-grid article,
  .order-steps div {
    min-height: auto;
  }

  .real-work-grid img:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 54px;
    padding-bottom: 330px;
  }

  .hero-proof {
    right: 12px;
    left: 12px;
  }

  .hero-proof div {
    min-height: auto;
    padding: 16px;
  }

  .gallery-strip {
    padding: 12px;
  }

  .feature-tile,
  .feature-tile.tall {
    min-height: 420px;
  }
}
