:root {
  color-scheme: light;
  --bg: #ffffff;
  --text: #000000;
  --muted: #4f4f4f;
  --accent: #b87333;
  --border: #d8d4ce;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-wrapper {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(6px);
}

.site-logo {
  width: 256px;
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  width: 80%;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 2.25rem;
  font-size: 1.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--text);
  font-size: 2rem;
}

.site-nav a:hover,
.site-nav a:focus {
  text-decoration: underline;
}

.site-nav a.active {
  color: var(--accent);
}

.home-link {
  display: inline-flex;
  padding: 0.55rem 1rem;
  border: 1px solid var(--text);
  color: var(--text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-link:hover,
.home-link:focus {
  background: rgba(184, 115, 51, 0.08);
}

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 6rem 3rem 4rem;
}

.section {
  margin-top: 5rem;
}

.hero {
  display: grid;
  gap: 2.5rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 3.5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-align: center;
}

.accent-line {
  width: 4.5rem;
  height: 1px;
  background: var(--accent);
  margin: 1.5rem 0;
}

.hero-image {
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.hero-intro {
  max-width: 44rem;
}

.hero-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

#about {
  margin-top: 6rem;
}

.about h2,
.featured h2,
.work-hero h1 {
  margin: 0 0 1rem 0;
  font-size: clamp(2rem, 2.5vw, 3.2rem);
  line-height: 1.05;
  text-align: center;
}

.about .accent-line,
.featured .accent-line,
.work-hero .accent-line {
  margin-bottom: 2rem;
}

.about-copy {
  max-width: 42rem;
}

.about-copy p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.featured {
  margin-top: 6rem;
}

.featured-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.featured-item {
  display: grid;
  gap: 0.75rem;
}

.featured-item strong {
  font-size: 1.05rem;
}

.featured-item span {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-item .subtitle {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer {
  margin-top: 6rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.14rem;
  color: var(--muted);
}

.site-footer small {
  display: block;
  padding: 0.5rem 0;
}

.site-footer a {
  padding: 0.35rem 0.5rem;
  display: inline-block;
}

@media (max-width: 860px) {
  .site-header,
  main {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .site-nav {
    gap: 1.5rem;
    font-size: 0.8rem;
  }

  .featured-items {
    grid-template-columns: 1fr;
  }
}

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

  .hero h1 {
    font-size: 2.5rem;
  }

  .featured-items,
  .work-grid {
    grid-template-columns: 1fr;
  }
}

.work-hero {
  margin-top: 4rem;
}

.work-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 44rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.print-card {
  display: grid;
  gap: 1rem;
}

.print-card strong {
  font-size: 1.05rem;
}

.print-card span {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.print-card .price {
  color: var(--accent);
  font-size: 0.95rem;
}

.print-card .inquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--accent);
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.print-card .inquire:hover,
.print-card .inquire:focus {
  background: rgba(184, 115, 51, 0.08);
}

@media (max-width: 860px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}
