:root {
  --ink: #12110f;
  --charcoal: #1d1a17;
  --soft-black: #080807;
  --paper: #f3f0eb;
  --ivory: #fbfaf7;
  --stone: #d8d2ca;
  --taupe: #9c8b7c;
  --bronze: #c19b6c;
  --bronze-dark: #8f6c45;
  --line: rgba(18, 17, 15, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  letter-spacing: 0;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

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

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  font-size: 13px;
}

.nav a {
  position: relative;
  padding-bottom: 6px;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--bronze);
  transition: width 220ms ease;
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 132px clamp(22px, 7vw, 96px) 96px;
  color: var(--ivory);
  background-image: url("assets/hero-interior.avif");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 3, 3, 0.78), rgba(3, 3, 3, 0.38) 52%, rgba(3, 3, 3, 0.66));
}

.hero-content {
  position: relative;
  max-width: 980px;
}

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

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

h1 {
  max-width: 1080px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.96;
  font-weight: 800;
}

h2 {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 650;
}

h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

p {
  line-height: 1.75;
}

.hero-copy {
  max-width: 620px;
  color: rgba(251, 250, 247, 0.82);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(251, 250, 247, 0.46);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.button:hover,
.contact-card:hover,
.service-card:hover,
.process-grid article:hover,
.image-strip figure:hover {
  transform: translateY(-6px);
}

.button-primary {
  color: var(--soft-black);
  background: var(--bronze);
  border-color: var(--bronze);
}

.button-primary:hover {
  background: var(--ivory);
  border-color: var(--ivory);
}

.button-ghost:hover {
  color: var(--soft-black);
  background: var(--ivory);
}

.section {
  padding: clamp(70px, 9vw, 126px) clamp(22px, 7vw, 96px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  background: var(--paper);
}

.intro-media {
  min-height: 360px;
  overflow: hidden;
}

.intro-text {
  grid-column: 1 / -1;
  max-width: 820px;
  margin-left: auto;
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

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

.service-card,
.process-grid article,
.contact-card {
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card {
  min-height: 290px;
  padding: 34px;
}

.service-card:hover,
.process-grid article:hover,
.contact-card:hover {
  border-color: rgba(193, 155, 108, 0.68);
  box-shadow: 0 24px 58px rgba(17, 15, 12, 0.11);
}

.service-card.featured {
  color: var(--ivory);
  background: var(--charcoal);
}

.service-card .icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  color: var(--bronze);
  border: 1px solid currentColor;
  font-size: 27px;
}

.showcase {
  background: var(--soft-black);
  color: var(--ivory);
}

.showcase-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 520px;
}

.showcase-panel > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 7vw, 86px);
  background: var(--charcoal);
}

.showcase-panel p {
  color: rgba(251, 250, 247, 0.74);
}

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

.image-strip figure {
  position: relative;
  height: 320px;
  margin: 0;
  overflow: hidden;
  transition: transform 220ms ease, filter 220ms ease;
}

.image-strip figure:hover img {
  filter: brightness(1.08);
  transform: scale(1.04);
}

.image-strip img {
  transition: transform 400ms ease, filter 400ms ease;
}

.image-strip figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  font-weight: 700;
}

.process {
  background: var(--ivory);
}

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

.process-grid article {
  min-height: 280px;
  padding: 30px;
}

.process-grid span {
  display: block;
  margin-bottom: 36px;
  color: var(--bronze-dark);
  font-weight: 800;
}

.craft {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: clamp(70px, 9vw, 126px) clamp(22px, 7vw, 96px);
  color: var(--ivory);
  background-image: linear-gradient(90deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.28)), url("assets/craft-detail.avif");
  background-position: center;
  background-size: cover;
}

.craft-content {
  max-width: 680px;
}

.craft-content p:last-child {
  color: rgba(251, 250, 247, 0.78);
  font-size: 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 34px;
  align-items: center;
  background: var(--paper);
}

.contact p {
  max-width: 620px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-height: 210px;
  padding: 34px;
  background: var(--ink);
  color: var(--ivory);
}

.contact-card span {
  color: var(--bronze);
  font-weight: 700;
}

.contact-card strong {
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--bronze);
  font-size: 14px;
  font-weight: 700;
  transition: background 220ms ease, color 220ms ease;
}

.contact-card:hover small {
  color: var(--ink);
  background: var(--ivory);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(22px, 7vw, 96px);
  color: rgba(251, 250, 247, 0.72);
  background: var(--soft-black);
}

.footer-brand {
  color: var(--ivory);
  font-size: 13px;
}

.footer-mark {
  width: 34px;
  height: 34px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

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

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero {
    min-height: 820px;
    padding-top: 150px;
  }

  .intro,
  .service-grid,
  .showcase-panel,
  .image-strip,
  .process-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro-text {
    margin-left: 0;
  }

  .showcase-panel {
    min-height: auto;
  }

  .showcase-panel > img,
  .intro-media {
    height: 390px;
  }

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

@media (max-width: 560px) {
  .brand span {
    display: none;
  }

  .nav {
    font-size: 12px;
  }

  .hero {
    min-height: 760px;
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 38px;
  }

  .button {
    width: 100%;
  }

  .section,
  .craft {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-card,
  .process-grid article,
  .contact-card {
    padding: 24px;
  }
}
