:root {
  --ink: #12110f;
  --muted: #5f574e;
  --line: #d8cec0;
  --paper: #f5ede3;
  --cream: #f5ede3;
  --gold: #8f7c63;
  --sage: #12110f;
  --mist: #f0e6da;
  --rose: #d8c7b9;
  --shadow: 0 24px 70px rgba(32, 30, 26, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

.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: 14px clamp(18px, 4vw, 54px);
  background: rgba(245, 237, 227, 0.92);
  border-bottom: 1px solid rgba(216, 206, 192, 0.92);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.contact-actions,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(128px, 12vw, 170px);
  height: auto;
}

main > section {
  scroll-margin-top: 140px;
}

.nav-links {
  gap: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a,
.nav-cta,
.button,
.footer a {
  text-decoration: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-cta,
.button.primary {
  color: var(--cream);
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(380px, 1fr);
  background: var(--paper);
}

.hero-media {
  min-height: 640px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 128px clamp(28px, 7vw, 110px) 80px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
}

h1 {
  margin-bottom: 20px;
  max-width: 780px;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 700;
}

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

.hero-copy {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
  line-height: 1.65;
}

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

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.intro-band div {
  min-height: 132px;
  padding: 28px clamp(22px, 4vw, 46px);
  background: var(--cream);
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  margin-bottom: 9px;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.intro-band span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: clamp(76px, 10vw, 140px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 44px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid article {
  min-height: 285px;
  padding: 30px;
  background: var(--cream);
}

.service-grid span {
  display: inline-block;
  margin-bottom: 70px;
  color: var(--gold);
  font-weight: 800;
}

.service-grid p,
.works p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.works {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.work-gallery article {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--ink);
}

.work-gallery img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.work-gallery article:hover img {
  transform: scale(1.035);
}

.work-gallery span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  width: fit-content;
  padding: 8px 13px;
  color: var(--cream);
  background: rgba(22, 20, 18, 0.72);
  border: 1px solid rgba(255, 250, 243, 0.28);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-layout {
  max-width: 1040px;
}

.price-list {
  border-top: 1px solid var(--line);
}

.price-category {
  padding: 28px 0 36px;
  border-bottom: 1px solid var(--line);
}

.price-category h3 {
  color: var(--gold);
  font-size: 2.25rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(222, 211, 196, 0.72);
  font-size: 1rem;
}

.price-row span {
  font-weight: 700;
  text-transform: uppercase;
}

.price-row strong {
  flex: 0 0 auto;
  color: var(--sage);
  text-align: right;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  padding: clamp(76px, 10vw, 130px) clamp(18px, 5vw, 72px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.contact-copy {
  max-width: 760px;
}

address {
  display: grid;
  gap: 7px;
  min-width: 260px;
  padding: 24px 0 0;
  border-top: 1px solid var(--gold);
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

address span:first-child {
  color: var(--ink);
  font-weight: 800;
}

.footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--cream);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer span:first-child {
  color: var(--muted);
}

.footer img {
  width: 150px;
  height: auto;
}

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

  .hero,
  .price-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 52vh;
  }

  .hero-content {
    padding-top: 56px;
  }

  .intro-band,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    max-width: 138px;
  }

  .brand img {
    width: 138px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .hero {
    position: relative;
    display: block;
  }

  .hero-media {
    height: 100svh;
    min-height: 620px;
  }

  .hero-content {
    position: absolute;
    inset: auto 0 0;
    padding: 150px 18px 30px;
    color: var(--cream);
    background: linear-gradient(0deg, rgba(22, 20, 18, 0.84), rgba(22, 20, 18, 0));
  }

  .hero-content .eyebrow,
  .hero-copy {
    color: #f0e3d4;
  }

  .hero-actions .button.primary {
    color: var(--ink);
    background: var(--cream);
    border-color: var(--cream);
  }

  .hero-actions .button.secondary {
    color: var(--cream);
    border-color: rgba(255, 250, 243, 0.72);
  }

  .intro-band,
  .service-grid,
  .work-gallery {
    grid-template-columns: 1fr;
  }

  .work-gallery article,
  .work-gallery img {
    min-height: 430px;
  }

  .service-grid article {
    min-height: 220px;
  }

  .service-grid span {
    margin-bottom: 36px;
  }

  .price-row {
    display: grid;
    gap: 8px;
  }

  .price-row strong {
    text-align: left;
  }

  .contact-actions {
    align-items: stretch;
  }

  .contact-actions .button {
    width: 100%;
  }

  .footer {
    display: grid;
  }
}
