:root {
  --bg: #f2f0eb;
  --text: #1f1b16;
  --muted: #5f5a54;
  --accent: #7a5c3a;
  --accent-dark: #5f452c;
  --card: #ffffff;
  --line: #d8d2ca;
  --shadow: 0 12px 30px rgba(32, 24, 15, 0.08);
  --radius: 14px;
  --font-head: "Source Serif 4", Georgia, serif;
  --font-body: "Source Sans 3", "Helvetica Neue", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23ded8d1'/%3E%3Ccircle cx='61' cy='61' r='1' fill='%23ded8d1'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 24px 72px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: #fdfbf8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand-mark.small {
  width: 34px;
  height: 34px;
  font-size: 12px;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-sub {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav a {
  color: var(--muted);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 10px 16px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  width: 190px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fdfbf8;
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(122, 92, 58, 0.2);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-ghost {
  background: #ffffff;
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.full-width {
  width: 100%;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  padding: 32px 0 24px;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  margin: 10px 0 16px;
  line-height: 1.2;
}

.lede {
  color: var(--muted);
  max-width: 620px;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
}

.hero-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.overview {
  padding: 0 0 24px;
}

.subsection {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.subsection.no-divider {
  border-top: none;
  padding-top: 20px;
}

.section {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.page-hero {
  padding: 32px 0 16px;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 36px);
  margin: 8px 0 12px;
}

.page-hero .lede {
  max-width: 760px;
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 32px);
  margin: 8px 0 10px;
}

.section-lede {
  color: var(--muted);
  max-width: 720px;
}

.section-grid.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: center;
}

.about-text p {
  margin: 0;
  color: var(--muted);
}

.about-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  font-family: var(--font-head);
  font-size: 20px;
}

.product {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.product h3 {
  font-family: var(--font-head);
  margin-top: 0;
}

.feature-list {
  padding-left: 18px;
  margin: 14px 0 0;
  color: var(--muted);
}

.feature-list li {
  margin-bottom: 8px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.product-card ul {
  margin: 12px 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

.checklist {
  display: grid;
  gap: 16px;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.check-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.check-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.check-desc {
  color: var(--muted);
}

.job-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.job-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.job-sub {
  color: var(--muted);
  margin: 4px 0 0;
}

.job-tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-dark);
  background: #f7f3ee;
}

.job-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.job-list li {
  margin-bottom: 8px;
}

.job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  margin: 14px 0 18px;
}

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

.contact-table {
  grid-column: 1 / -1;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
  margin-top: 12px;
}

.contact-table h3 {
  margin: 0 0 12px;
  font-family: var(--font-head);
}

.contact-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.contact-table th,
.contact-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.contact-table th {
  color: var(--accent-dark);
  font-weight: 600;
  background: #f7f3ee;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-table tbody tr:nth-child(even) td {
  background: #fbfaf7;
}

.contact-table tbody tr:last-child td {
  border-bottom: none;
}

.contact-table a {
  color: var(--accent-dark);
  font-weight: 600;
}

.contact-table a:hover {
  color: var(--accent);
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.contact-title {
  font-family: var(--font-head);
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-line {
  margin: 6px 0;
  color: var(--muted);
}

.contact-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  background: #ffffff;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
}

.footer {
  margin-top: 56px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.08s;
}

.delay-2 {
  animation-delay: 0.16s;
}

.delay-3 {
  animation-delay: 0.24s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
  }

  .product {
    grid-template-columns: 1fr;
  }

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

  .site-header {
    align-items: flex-start;
  }
}
