:root {
  --bg: #ffffff;
  --bg-soft: #ffffff;
  --ink: #111111;
  --muted: #4c4c4c;
  --line: #e7e2d8;
  --accent: #d08b00;
  --accent-soft: rgba(208, 139, 0, 0.1);
  --accent-pale: rgba(208, 139, 0, 0.08);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 12px 32px rgba(17, 17, 17, 0.04);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a {
  color: inherit;
  text-decoration: none;
}
p, h1, h2, h3 { margin-top: 0; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 9999;
}
.skip-link:focus { top: 16px; }

.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;
}
.hidden { display: none; }

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.narrow { width: min(920px, calc(100% - 48px)); }
.center { text-align: center; }
.section { padding: 54px 0; }
.section-divider { border-top: 1px solid var(--line); }
.section-soft { background: #ffffff; }

.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 138px; height: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: #161616;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hero {
  min-height: calc(100vh - 94px);
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 44px;
  align-items: center;
}
.hero-copy { max-width: 640px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-size: clamp(4rem, 9vw, 7.4rem);
  margin-bottom: 22px;
}
.hero h1 span { display: block; }
.hero h1 .accent { color: var(--accent); }
.hero-rule {
  width: 42px;
  height: 2px;
  background: var(--accent);
  margin: 0 0 22px;
}
.hero-text {
  max-width: 520px;
  font-size: clamp(1.14rem, 2.1vw, 1.5rem);
  color: #2f2f2f;
}
.button-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 1.02rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.button-primary {
  background: var(--accent);
  color: white;
}
.button-secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.hero-mark {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}
.slash-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 340px;
  transform: translate(-50%, -50%) rotate(20deg);
  background: linear-gradient(to bottom, rgba(208, 139, 0, 0.075), rgba(208, 139, 0, 0.035));
  border-radius: 999px;
}
.slash-caption {
  position: absolute;
  right: 20px;
  bottom: 52px;
  z-index: 1;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.slash-caption span {
  color: var(--accent);
  font-size: 2rem;
  line-height: 1;
}

h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  margin-bottom: 18px;
}
.section-title {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.section-title span {
  width: 52px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.three-up {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.reason-grid { margin-top: 24px; }
.icon-card, .feature-card {
  padding: 18px 18px 10px;
}
.icon-card h3,
.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.95rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.icon-card p,
.feature-card p,
.section-summary,
.newsletter-copy,
.form-note,
.footer-brand-block p,
.footer-list {
  color: var(--muted);
}
.section-summary {
  max-width: 740px;
  margin: 22px auto 0;
  font-size: 1.08rem;
}

.icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  position: relative;
}
.icon::before,
.icon::after {
  content: "";
  position: absolute;
  border-color: var(--accent);
}
.icon-pencil::before {
  width: 26px;
  height: 10px;
  border: 2px solid var(--accent);
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  transform: rotate(-35deg);
  left: 10px;
  top: 20px;
}
.icon-pencil::after {
  width: 0;
  height: 0;
  border-left: 8px solid var(--accent);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transform: rotate(-35deg);
  left: 30px;
  top: 14px;
}
.icon-search::before {
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  left: 11px;
  top: 9px;
}
.icon-search::after {
  width: 15px;
  border-top: 2px solid var(--accent);
  transform: rotate(45deg);
  left: 28px;
  top: 31px;
}
.icon-refresh::before,
.icon-refresh::after {
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  left: 11px;
  top: 11px;
}
.icon-refresh::before { transform: rotate(35deg); }
.icon-refresh::after {
  transform: rotate(215deg);
  opacity: 0.85;
}

.feature-grid { margin-top: 24px; }
.feature-card {
  position: relative;
}
.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  border-left: 1px solid var(--line);
}
.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.8rem;
}

.newsletter { padding-top: 44px; padding-bottom: 42px; }
.newsletter-copy { margin-top: -2px; font-size: 1.15rem; }
.newsletter-form { margin-top: 18px; }
.signup-row {
  display: flex;
  gap: 0;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
}
.signup-row input {
  flex: 1;
  min-height: 50px;
  border: 1px solid var(--line);
  border-right: 0;
  padding: 0 14px;
  font: inherit;
  background: #fff;
}
.signup-row button {
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.form-note {
  margin-top: 10px;
  font-size: 0.95rem;
}

.site-footer {
  padding: 20px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.footer-brand-block img {
  width: 92px;
  height: auto;
  margin-bottom: 12px;
}
.footer-brand-block p,
.footer-list li,
.footer-heading { font-size: 0.98rem; }
.footer-heading {
  margin: 0 0 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-list li { margin-bottom: 8px; }
.footer-list a:hover { color: var(--accent); }

@media (max-width: 960px) {
  .hero-grid,
  .footer-grid,
  .three-up {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: 48px 0 36px;
  }
  .hero-mark {
    min-height: 240px;
  }
  .slash-bg {
    width: 54px;
    height: 220px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(20deg);
  }
  .slash-caption {
    right: 8px;
    bottom: 20px;
    margin: 0;
    font-size: 1.4rem;
  }
  .feature-card:nth-child(2),
  .feature-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .footer-grid { gap: 18px; }
}

@media (max-width: 700px) {
  .container,
  .narrow { width: min(100% - 32px, 100%); }
  .nav-wrap {
    min-height: 80px;
    align-items: flex-start;
    padding: 14px 0;
    flex-direction: column;
  }
  .nav-links {
    gap: 16px;
    font-size: 0.95rem;
  }
  .hero h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }
  .button-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .button { width: 100%; }
  .signup-row {
    flex-direction: column;
    gap: 12px;
  }
  .signup-row input {
    border-right: 1px solid var(--line);
  }
  .section-title {
    gap: 14px;
  }
  .section-title span { width: 28px; }
}
