:root {
  --warm-white: #f7f4ee;
  --soft-white: #fffdf8;
  --linen: #e9dfd1;
  --oak: #b8956f;
  --sage: #9ca790;
  --charcoal: #2f302c;
  --muted: #6d6b63;
  --line: #ddd2c4;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 244, 238, 0.94);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

nav a:hover, .text-link:hover { color: var(--sage); }

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5vw;
  padding: 74px 6vw;
  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sage);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 18px;
}

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

h1 { font-size: clamp(48px, 6.4vw, 84px); }

h2 { font-size: clamp(38px, 5vw, 62px); }

h3 { font-size: 29px; }

.lead {
  margin: 28px 0 0;
  font-size: 20px;
  color: var(--muted);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.button, button {
  display: inline-block;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--soft-white);
  padding: 14px 24px;
  border-radius: 0;
  font: inherit;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.button:hover, button:hover {
  background: var(--sage);
  border-color: var(--sage);
}

.text-link {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  border-bottom: 1px solid currentColor;
}

.hero-media {
  margin: 0;
  height: min(68vh, 680px);
  min-height: 430px;
  overflow: hidden;
  background: var(--linen);
}

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

.intro {
  padding: 70px 12vw;
  background: var(--soft-white);
  text-align: center;
}

.intro p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.15;
  margin: 0 auto;
  max-width: 1040px;
}

.split-section, .contact-section {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 7vw;
  padding: 110px 6vw;
  border-top: 1px solid var(--line);
}

.split-section p {
  font-size: 18px;
  color: var(--muted);
}

.services-section, .portfolio-section, .quote-section {
  padding: 105px 6vw;
  border-top: 1px solid var(--line);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.card {
  background: var(--soft-white);
  border: 1px solid var(--line);
  padding: 34px;
  min-height: 245px;
}

.card p, .portfolio-section p, .contact-section p, .form-note {
  color: var(--muted);
}

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

.portfolio-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.portfolio-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  margin-bottom: 22px;
  background: var(--linen);
}

.quote-section {
  background: var(--sage);
  color: var(--soft-white);
  text-align: center;
}

blockquote {
  font-size: clamp(38px, 5vw, 70px);
  max-width: 920px;
  margin: 0 auto;
}

.contact-form {
  background: var(--soft-white);
  border: 1px solid var(--line);
  padding: 34px;
}

label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

input, textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: var(--warm-white);
  padding: 13px;
  font: inherit;
  color: var(--charcoal);
}

textarea { resize: vertical; }

.form-note {
  font-size: 13px;
  margin-bottom: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 6vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

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

  nav {
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero, .split-section, .contact-section, .cards, .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-media {
    height: 520px;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  nav {
    font-size: 12px;
  }

  .hero, .split-section, .services-section, .portfolio-section, .quote-section, .contact-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-media,
  .portfolio-image {
    height: 360px;
  }
}
