:root {
  --ivory: #faf8f3;
  --ink: #1b1b18;
  --muted: #726b5e;
  --brass: #97753a;
  --hairline: #e4ddd0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Site nav */

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 28px;
  border-bottom: 1px solid var(--hairline);
}

.nav-logo svg {
  width: 34px;
  height: 34px;
  display: block;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

.site-nav a.nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--ink);
  background-image: linear-gradient(var(--brass), var(--brass));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
  transition: background-size 0.3s ease;
}

.site-nav a.nav-link:hover,
.site-nav a.nav-link:focus-visible {
  background-size: 100% 1px;
}

/* Hero */

.hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10vh 28px;
  opacity: 0;
  animation: rise 1.1s ease-out 0.15s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero { opacity: 1; animation: none; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.monogram {
  width: 76px;
  height: 76px;
  margin: 0 0 1.75rem;
}

.wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.75rem, 8vw, 5.25rem);
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.05;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--muted);
  max-width: 34ch;
  margin: 1.75rem auto 0;
  line-height: 1.55;
}

/* Services */

.services {
  padding: 6rem 0 5rem;
  border-top: 1px solid var(--hairline);
}

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--muted);
  margin: 0 0 2.75rem;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-top: 1px solid var(--hairline);
}

.service-row:last-child {
  border-bottom: 1px solid var(--hairline);
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.65rem;
  margin: 0;
}

.service-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 46ch;
  margin: 0;
}

@media (max-width: 620px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

/* Contact */

.contact {
  text-align: center;
  padding: 6rem 28px 7rem;
}

.contact-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.contact-form {
  max-width: 440px;
  margin: 2.5rem auto 0;
  text-align: left;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.field {
  margin-bottom: 1.6rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.field input,
.field textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  padding: 0.5rem 0;
  resize: vertical;
}

.field textarea {
  border: 1px solid var(--hairline);
  padding: 0.7rem;
  border-radius: 2px;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
}

.submit-btn {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  background-image: linear-gradient(var(--brass), var(--brass));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 4px;
  transition: background-size 0.35s ease;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  background-size: 100% 1px;
}

.form-status {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  margin-top: 1.5rem;
}

/* Careers page */

.careers {
  padding: 9vh 28px 10vh;
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.careers h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin: 0 0 1.5rem;
}

.careers p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.careers a {
  color: var(--brass);
  text-decoration: underline;
  text-underline-offset: 2px;
}

footer {
  text-align: center;
  padding: 0 28px 3rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.access-note {
  max-width: 46ch;
  margin: 0.6rem auto 0;
  line-height: 1.6;
}

.access-note a {
  color: var(--brass);
  text-decoration: underline;
  text-underline-offset: 2px;
}
