*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f1;
  --surface: #ffffff;
  --text: #2a2826;
  --muted: #6b6560;
  --line: #e0dbd4;
  --accent: #8a7355;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;
  --wrap: min(1140px, calc(100% - 2.5rem));
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

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

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

a:hover {
  color: var(--accent);
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: rgba(247, 245, 241, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.header.is-solid {
  border-bottom-color: var(--line);
}

.header--light {
  background: transparent;
}

.header--light .logo,
.header--light .nav a,
.header--light .menu-btn span {
  color: #faf8f5;
}

.header--light.is-solid {
  background: rgba(247, 245, 241, 0.96);
}

.header--light.is-solid .logo,
.header--light.is-solid .nav a,
.header--light.is-solid .menu-btn span {
  color: var(--text);
}

.header--light .nav-cta {
  border-color: rgba(250, 248, 245, 0.45);
  color: #faf8f5 !important;
}

.header--light.is-solid .nav-cta {
  border-color: var(--line);
  color: var(--text) !important;
}

.logo {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
}

.nav-cta {
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
}

.nav-cta:hover {
  border-color: var(--text);
  background: var(--surface);
}

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-btn span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s;
}

.menu-btn.open span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.open span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 900px) {
  .header {
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  }
  .nav {
    display: flex;
  }
  .menu-btn {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #3d3834;
  background-image: url("https://images.unsplash.com/photo-1615873964967-57fea266e101?w=1600&q=80&auto=format");
  background-size: cover;
  background-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 40, 38, 0.82) 0%,
    rgba(42, 40, 38, 0.35) 50%,
    rgba(42, 40, 38, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 6rem;
  color: #faf8f5;
}

.hero .eyebrow {
  color: #d4c9b8;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  max-width: 18ch;
  margin-bottom: 1.25rem;
}

.hero .lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.9);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-primary {
  background: #faf8f5;
  color: var(--text);
  border-color: #faf8f5;
}

.btn-primary:hover {
  background: var(--surface);
}

.btn-secondary {
  background: transparent;
  color: #faf8f5;
  border-color: rgba(250, 248, 245, 0.5);
}

.btn-secondary:hover {
  border-color: #faf8f5;
}

.btn-dark {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 700px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.section--stone {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.section-intro {
  color: var(--muted);
  max-width: 32rem;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 2.5rem;
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.img-cover {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  background: var(--line);
}

.split-text p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.services-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.services-list li {
  font-size: 0.9rem;
  padding-left: 1rem;
  position: relative;
}

.services-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.materials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .materials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.material {
  background: var(--bg);
  border: 1px solid var(--line);
}

.material .img-cover {
  aspect-ratio: 4 / 3;
}

.material-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.material-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.work-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.work-item .img-cover {
  aspect-ratio: 4 / 3;
}

.work-item figcaption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

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

.process-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.step-num {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--accent);
}

.process-list p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.quote {
  padding-block: clamp(3.5rem, 7vw, 5rem);
  text-align: center;
  border-top: 1px solid var(--line);
}

.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  max-width: 40rem;
  margin: 0 auto 1rem;
}

.quote cite {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

.cta-band {
  background: var(--surface);
  border-block: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
}

.cta-band h2 {
  margin-bottom: 0.75rem;
}

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

.footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  width: 100%;
}

@media (min-width: 700px) {
  .footer-copy {
    width: auto;
    margin-left: auto;
  }
}

/* ——— Contact page ——— */
.page-contact {
  padding-top: 5rem;
}

.contact-hero {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(55%, 520px);
  height: 100%;
  background: #3d3834 url("https://images.unsplash.com/photo-1615873964967-57fea266e101?w=900&q=80&auto=format")
    center / cover no-repeat;
  opacity: 0.35;
}

.contact-hero .wrap {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.contact-hero .lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 28rem;
}

.founder {
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}

.founder-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .founder-grid {
    grid-template-columns: 280px 1fr;
    gap: 4rem;
  }
}

.founder-photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #4a4540, #2a2826);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.founder-photo span {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(250, 248, 245, 0.25);
  line-height: 1;
}

.founder-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.founder-role {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.founder-bio {
  color: var(--muted);
  line-height: 1.8;
  max-width: 36rem;
}

.founder-bio p + p {
  margin-top: 1rem;
}

.contact-spotlight {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.contact-spotlight h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.info-cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .info-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.info-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(42, 40, 38, 0.06);
}

.info-card--featured {
  grid-column: 1 / -1;
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  padding: 2.5rem 2rem;
}

@media (min-width: 700px) {
  .info-card--featured {
    grid-column: 1 / -1;
  }
}

.info-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.info-card--featured .info-label {
  color: rgba(247, 245, 241, 0.6);
}

.info-value {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.3;
  color: inherit;
}

.info-value--lg {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: 0.02em;
}

.info-value--md {
  font-size: 1.35rem;
}

.info-card--featured a:hover {
  color: var(--gold, #c9b89a);
}

.info-detail {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.info-card--featured .info-detail {
  color: rgba(247, 245, 241, 0.65);
}

.visit-note {
  padding: 2rem 0 4rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
}

.visit-note strong {
  color: var(--text);
  font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
