/* ---------- Reset & base ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --tan: #e4d4c5;
  --offwhite: #f9f9f9;
  --grayblue: #bac1c5;
  --olive: #353c2f;
  --footer-muted: #b7bcae;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --input-bg: #eceeee;
  --line: #1a1a1a;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.5;
  background: var(--offwhite);
}

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

a {
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

h1, h2, h3, h4 {
  font-weight: 400;
  line-height: 1.15;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--tan);
  padding-top: 24px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
}

.logo {
  font-size: 0.95rem;
  color: var(--ink);
}

.nav a {
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
  margin-left: 28px;
}

.nav a:hover {
  text-decoration: underline;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--tan);
  padding-bottom: 90px;
}

.hero-image {
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 56px;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 300;
  max-width: 720px;
  margin-bottom: 40px;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 460px;
  margin-left: auto;
  margin-right: 0;
}

/* ---------- Services ---------- */
.services {
  background: var(--offwhite);
  padding: 90px 0;
}

.services h2 {
  font-size: 2.4rem;
  font-weight: 300;
  margin-bottom: 24px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(180px, 300px) 1fr minmax(220px, 320px);
  gap: 40px;
  align-items: center;
  padding: 48px 0;
}

.service-row h3 {
  font-size: 1.4rem;
  font-weight: 400;
}

.service-row p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 320px;
}

.service-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--grayblue);
  padding: 90px 0 110px;
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 100px;
  padding: 56px 0;
}

.contact-copy h2 {
  font-size: 2.6rem;
  font-weight: 300;
  margin-bottom: 40px;
}

.contact-copy p {
  font-size: 1rem;
  max-width: 260px;
  color: var(--ink);
}

.contact-form {
  max-width: 640px;
}

.name-field {
  border: none;
  margin-bottom: 24px;
}

.name-field legend {
  font-size: 1rem;
  margin-bottom: 10px;
  padding: 0;
}

.name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  margin-bottom: 24px;
}

.field label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.required {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--input-bg);
  border: none;
  border-bottom: 1px solid #8a9096;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--olive);
  outline-offset: -2px;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 18px;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-submit:hover {
  background: var(--ink);
  color: var(--offwhite);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--olive);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.footer-swoosh {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 90px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.footer-col h4 {
  color: #e6e6e6;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-col p {
  color: var(--footer-muted);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.footer-col a {
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-subtext {
    margin-left: 0;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }

  .service-image {
    max-width: 320px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }

  .name-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .container {
    padding: 0 24px;
  }
}
