:root {
  --teal: #03989e;
  --teal-dark: #027478;
  --gold: #b49826;
  --gold-dark: #7b681c;
  --ink: #1a1a1a;
  --paper: #ffffff;
  --muted: #5a5a5a;
  --border: #e6e6e6;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--teal-dark);
}

a:hover {
  color: var(--gold-dark);
}

.hero {
  background: var(--teal);
  line-height: 0;
}

.hero img {
  width: 100%;
  height: auto;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.company-name {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 0 0 1rem;
}

.intro p {
  margin: 0 0 1rem;
  color: var(--ink);
  max-width: 60em;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.services h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--teal-dark);
}

.services p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.contact h2 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--teal-dark);
}

.contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact li {
  margin-bottom: 0.5rem;
}

.contact a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.contact a:hover {
  border-bottom-color: var(--gold);
}

.portrait {
  text-align: center;
}

.portrait img {
  width: 140px;
  height: 168px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.portrait figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 600px) {
  .contact {
    grid-template-columns: 1fr;
  }
  .portrait {
    text-align: left;
  }
}
