@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,200;1,9..40,300&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #F7F5F0;
  --black: #111110;
  --gray:  #6B6B68;
  --line:  #DDDBD4;
  --hover: #F0EDE6;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site { max-width: 1080px; margin: 0 auto; padding: 0 36px; }

/* ── NAV ── */
nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 0;
}

.nav-logo-left {
  display: flex;
  align-items: center;
  padding-left: 36px;
}

.nav-logo-left img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.nav-logo-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 36px;
}

.nav-logo-right img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  justify-content: center;
}

.nav-links a {
  color: var(--gray);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--black); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.82; }

.btn-primary-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary-white:hover { opacity: 0.88; }

.btn-ghost {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: color 0.2s;
  cursor: pointer;
}

.btn-ghost:hover { color: #fff; }

/* ── SHARED TYPOGRAPHY ── */
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 400;
  margin-bottom: 44px;
}

.section-title {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 200;
  letter-spacing: -0.02em;
  color: var(--black);
}

.link-arrow {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}

.link-arrow:hover { color: var(--black); border-color: var(--gray); }

/* ── PAGE HEADER ── */
.page-header {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}

.page-header .eyebrow { margin-bottom: 16px; }

.page-header h1 {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 24px;
}

.page-header h1 em { font-style: italic; font-weight: 300; }

.page-header p {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  max-width: 500px;
  line-height: 1.85;
}

/* ── FOOTER ── */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
}

.footer-left { display: flex; align-items: center; gap: 14px; }
.footer-left img { width: 32px; height: 32px; object-fit: contain; opacity: 0.45; }

.footer-wordmark {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.footer-copy { font-size: 11px; color: var(--gray); font-weight: 300; }

.footer-links { display: flex; gap: 22px; list-style: none; }

.footer-links a {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--black); }

/* ── FORMS ── */
.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 11px 0;
  outline: none;
  transition: border-color 0.2s;
}

.form-input::placeholder { color: var(--gray); }
.form-input:focus { border-color: var(--black); }

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B6B68' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 20px;
}

select.form-input option { background: var(--cream); }
textarea.form-input { resize: vertical; min-height: 80px; line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site { padding: 0 20px; }
  .nav-links { gap: 20px; }
}

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