:root {
  --ink: #182724;
  --muted: #61706b;
  --soft: #f7f1e8;
  --paper: #fffaf2;
  --sage: #a8b9a3;
  --teal: #1d5754;
  --clay: #a46345;
  --gold: #d2a650;
  --line: rgba(24, 39, 36, 0.16);
  --shadow: 0 22px 60px rgba(24, 39, 36, 0.16);
  font-family: "Instrument Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

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

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

.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: 18px clamp(20px, 5vw, 64px);
  color: #fffaf2;
  background: linear-gradient(180deg, rgba(15, 27, 24, 0.72), rgba(15, 27, 24, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.48);
  border-radius: 50%;
  font-size: 0.82rem;
  background: rgba(255, 250, 242, 0.12);
  backdrop-filter: blur(10px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: rgba(255, 250, 242, 0.9);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.24);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #23352f;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 21, 18, 0.72) 0%, rgba(11, 21, 18, 0.46) 34%, rgba(11, 21, 18, 0.12) 68%, rgba(11, 21, 18, 0.2) 100%),
    linear-gradient(0deg, rgba(11, 21, 18, 0.54) 0%, rgba(11, 21, 18, 0.02) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 92px);
  padding-top: 72px;
  color: #fffaf2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c979;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 4.4vw, 4.2rem);
}

h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  line-height: 1.25;
}

p {
  line-height: 1.7;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: #16231f;
  background: #f0c979;
}

.button.secondary {
  color: #fffaf2;
  border-color: rgba(255, 250, 242, 0.48);
  background: rgba(255, 250, 242, 0.12);
}

.section,
.section-band,
.contact {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 64px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-band {
  background: var(--soft);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.intro-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.role-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -18px 0 30px;
}

.role-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(168, 185, 163, 0.18);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 292px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 12px 34px rgba(24, 39, 36, 0.08);
}

.service-card .icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--clay);
  font-weight: 800;
}

.service-card p,
.planning-column p,
.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  background: #fffdf8;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.split-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle at center, var(--gold) 0 34%, transparent 38%), var(--teal);
}

.quote-panel {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 8px;
  color: #fffaf2;
  background: var(--teal);
  box-shadow: var(--shadow);
}

.quote-panel p {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.28;
}

.planning-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.planning-column {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.planning-column:last-child {
  border-right: 0;
}

.process {
  background: #fffdf8;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  padding: 28px;
  border-left: 4px solid var(--gold);
  background: var(--paper);
}

.timeline-item span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #fffaf2;
  background: var(--teal);
  font-weight: 800;
}

.contact {
  color: #fffaf2;
  background: #172723;
}

.contact .eyebrow {
  color: #f0c979;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.contact-grid p {
  color: rgba(255, 250, 242, 0.78);
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 242, 0.84);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: 6px;
  padding: 13px 14px;
  color: #fffaf2;
  background: rgba(255, 250, 242, 0.08);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(240, 201, 121, 0.34);
  border-color: #f0c979;
}

.contact-form .button {
  width: fit-content;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 64px);
  color: rgba(255, 250, 242, 0.72);
  background: #101c19;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

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

  .hero {
    min-height: 84vh;
  }

  .service-grid,
  .planning-layout,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .planning-column:nth-child(2) {
    border-right: 0;
  }

  .planning-column:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }
}

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

  .brand {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 88svh;
    align-items: end;
    padding-bottom: 48px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 21, 18, 0.66), rgba(11, 21, 18, 0.28)),
      linear-gradient(0deg, rgba(11, 21, 18, 0.84) 0%, rgba(11, 21, 18, 0.12) 62%);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.45rem);
  }

  .intro-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .planning-layout,
  .timeline {
    grid-template-columns: 1fr;
  }

  .planning-column,
  .planning-column:nth-child(2),
  .planning-column:last-child {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .planning-column:first-child {
    border-top: 0;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button,
  .contact-form .button {
    width: 100%;
  }
}
