:root {
  --ink: #202421;
  --muted: #64706a;
  --paper: #f6f4ed;
  --surface: #fffdf7;
  --line: #ddd8ca;
  --accent: #b4883d;
  --accent-dark: #715624;
  --sage: #738476;
  --cedar: #8a5b3d;
  --fog: #e9ebe6;
  --shadow: 0 24px 70px rgba(32, 36, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  align-items: center;
  background: rgba(246, 244, 237, 0.92);
  border-bottom: 1px solid rgba(229, 221, 208, 0.8);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 13px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 11px;
  min-width: 215px;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--paper);
  display: inline-flex;
  flex: 0 0 38px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.95rem;
  height: 38px;
  justify-content: center;
  letter-spacing: 0.08em;
  width: 38px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.9rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  align-items: center;
  color: var(--muted);
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.86rem;
  font-weight: 600;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--accent-dark);
}

.hero {
  min-height: 720px;
  position: relative;
}

.hero img {
  height: 720px;
  object-fit: cover;
  width: 100%;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(246, 244, 237, 0.96) 0%, rgba(246, 244, 237, 0.72) 38%, rgba(246, 244, 237, 0.12) 74%);
  inset: 0;
  position: absolute;
}

.hero-content {
  left: clamp(20px, 7vw, 96px);
  max-width: 610px;
  position: absolute;
  top: 54%;
  transform: translateY(-42%);
}

.eyebrow {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.04;
  margin: 0;
}

h1 {
  font-size: clamp(2.75rem, 4.8vw, 4.6rem);
  max-width: 680px;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.85rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-content p:not(.eyebrow) {
  color: #4f4941;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  margin: 20px 0 0;
  max-width: 560px;
}

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

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--ink);
  color: var(--surface);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--accent-dark);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(122, 84, 29, 0.25);
  color: var(--ink);
}

.section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 80px);
}

.intro {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.intro > p,
.about-copy p,
.trade-panel p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.section-heading {
  margin: 0 auto 42px;
  max-width: 980px;
  text-align: center;
}

.service-grid,
.portfolio-grid {
  display: grid;
  gap: 24px;
  margin: 0 auto;
  max-width: 1180px;
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
}

.service-card span {
  color: var(--sage);
  display: block;
  font-weight: 800;
  margin-bottom: 26px;
}

.service-card p {
  color: var(--muted);
  margin: 16px 0 0;
}

.trade {
  background: #ebe8df;
}

.trade-panel {
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(30px, 5vw, 56px);
}

.trade-panel p {
  margin-top: 22px;
}

.trade-list {
  background: var(--ink);
  border-radius: 8px;
  color: var(--surface);
  margin: 0;
  padding: 28px;
}

.trade-list div + div {
  border-top: 1px solid rgba(255, 253, 248, 0.18);
  margin-top: 16px;
  padding-top: 16px;
}

.trade-list dt {
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.trade-list dd {
  margin: 0;
}

.trade-list a,
.contact-form a,
.site-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.project-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.project-card img {
  aspect-ratio: 1.28;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.project-card div {
  padding: 22px;
}

.project-card p {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.about {
  align-items: start;
  background: var(--fog);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
}

.about-copy {
  max-width: 820px;
}

.about-copy p {
  margin-top: 24px;
}

.stat-panel {
  background: var(--ink);
  border-radius: 8px;
  color: var(--surface);
  padding: 34px;
}

.stat-panel div + div {
  border-top: 1px solid rgba(255, 253, 248, 0.18);
  margin-top: 24px;
  padding-top: 24px;
}

.stat-panel strong,
.stat-panel span {
  display: block;
}

.stat-panel strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 7px;
}

.stat-panel span {
  color: rgba(255, 253, 248, 0.76);
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 1px;
  list-style: none;
  margin: 0 auto;
  max-width: 980px;
  padding: 0;
}

.process-list li {
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 180px minmax(0, 1fr);
  padding: 28px;
}

.process-list strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
}

.process-list span {
  color: var(--muted);
}

.testimonial {
  background: var(--ink);
  color: var(--surface);
  text-align: center;
}

.testimonial blockquote {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  margin: 0 auto;
  max-width: 980px;
}

.testimonial p {
  color: rgba(255, 253, 248, 0.72);
  font-weight: 700;
  margin: 28px 0 0;
}

.contact {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.8fr);
  margin: 0 auto;
  max-width: 1180px;
}

.contact h2 {
  margin-bottom: 22px;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: 30px;
}

label {
  color: var(--muted);
  display: grid;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  appearance: none;
  background: #fbfaf4;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  padding: 14px 15px;
  text-transform: none;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(185, 131, 45, 0.18);
  outline: none;
}

.contact-form .button {
  border: 0;
  cursor: pointer;
  justify-self: start;
}

.form-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 80px);
}

.site-footer p {
  margin: 0;
}

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

  .nav {
    flex-wrap: wrap;
  }

  .hero,
  .hero img {
    min-height: 720px;
  }

  .hero-content {
    max-width: 620px;
    top: 55%;
  }

  .intro,
  .about,
  .trade-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .project-card img {
    aspect-ratio: 1.7;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .hero,
  .hero img {
    min-height: 700px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(251, 248, 241, 0.96) 0%, rgba(251, 248, 241, 0.8) 58%, rgba(251, 248, 241, 0.2) 100%);
  }

  .hero-content {
    left: 20px;
    right: 20px;
    top: 56%;
  }

  h1 {
    font-size: 3rem;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .service-card,
  .stat-panel {
    padding: 24px;
  }

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