/* ====== Editorial / premium import aesthetic ====== */
:root {
  --bg: #efe9dd;          /* warm bone */
  --bg-2: #e8e1d2;
  --ink: #1c1c1c;
  --ink-muted: #6b665d;
  --ink-soft: #8c8678;
  --accent: #7a1d12;       /* deep aged burgundy */
  --rule: rgba(28,28,28,.14);
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}

a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 400;
}

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

::selection { background: var(--accent); color: #fff; }

/* ----- Wrapper / layout shell ----- */
.wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 180px;
  position: relative;
  box-sizing: border-box;
}

/* ----- Header ----- */
header {
  z-index: 10;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header-wrapper { width: 100%; display: flex; flex-direction: column; }
.header-inside {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 40px;
  border-bottom: 1px solid var(--rule);
}

.shutdown-notice {
  background: var(--ink);
  color: #efe9dd;
  width: 100%;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.shutdown-notice a { color: #efe9dd; font-weight: 400; letter-spacing: .14em; }

.logo a { display: flex; align-items: center; }
.logo .icon { width: 34px; height: 34px; }
.logo .text { height: 20px; margin-left: 14px; }

header nav ul.menu { display: flex; gap: 36px; list-style: none; margin: 0; padding: 0; }
header nav li { list-style: none; }
header nav a {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color .2s;
}
header nav a:hover { color: var(--ink); }

/* ----- Hero ----- */
.home-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}
.hero { margin: 0; }
.hero img {
  width: 620px;
  max-width: 90vw;
  margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(28,28,28,.08));
}

.wrapper-inside {
  width: 640px;
  max-width: 92vw;
  z-index: 10;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-family: 'EB Garamond', 'Times New Roman', serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -1px;
  margin-top: 70px;
  font-feature-settings: "lnum" 0, "onum" 1, "liga" 1;
}

.wrapper-inside > p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 28px auto 0;
  max-width: 520px;
}

.wrapper-inside nav {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.wrapper-inside nav a {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: opacity .2s;
}
.wrapper-inside nav a:hover { opacity: .6; }
.wrapper-inside nav a img { width: 14px; height: 14px; }

/* ----- Features intro ----- */
.features-page {
  margin-top: 140px;
  padding-top: 80px;
  position: relative;
  text-align: left;
}
.features-page > p {
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 560px;
  margin: 0 auto 100px;
  text-align: center;
}
.features-page::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--ink);
}

/* ----- Feature rows ----- */
.feature {
  display: flex;
  width: 1040px;
  max-width: 92vw;
  margin: 0 auto;
  padding: 70px 0;
  align-items: center;
  gap: 80px;
  border-bottom: 1px solid var(--rule);
}
.feature:last-of-type { border-bottom: none; }

.feature figure {
  flex: 0 0 460px;
  margin: 0;
}
.feature figure img {
  width: 100%;
  height: auto;
  display: block;
}

.feature aside {
  flex: 1;
  padding: 0;
}
.feature h3 {
  font-family: 'EB Garamond', serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin: 0 0 22px;
  font-feature-settings: "onum" 1, "liga" 1;
}
.feature p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 440px;
  margin: 0;
}
.feature aside::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 22px;
}

/* alternating direction handled by HTML order, but ensure flex works on both */
.feature:nth-of-type(even) {
  /* image is in DOM second; this keeps natural order */
}

/* ----- Partner block ----- */
.partners {
  width: 1040px;
  max-width: 92vw;
  margin: 80px auto 0;
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid var(--rule);
}
.partners .partner h3 {
  font-family: 'EB Garamond', serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
}
.partners .partner p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ----- CTA ----- */
.cta { margin-top: 80px; display: flex; justify-content: center; }
a.download-big {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--bg);
  padding: 18px 34px;
  border-radius: 0;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .25s, color .25s;
  border: 1px solid var(--ink);
}
a.download-big:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
a.download-big img { width: 16px; height: 16px; filter: invert(1); margin: 0; }

/* ----- Footer ----- */
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--rule);
  background: var(--bg);
  z-index: 10;
}
footer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-muted);
  letter-spacing: .04em;
}
footer p a { color: var(--ink); font-weight: 400; }
footer nav { display: flex; gap: 28px; }
footer nav a {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
footer nav a:hover { color: var(--ink); }

/* ----- Mobile ----- */
@media (max-width: 800px) {
  .header-inside { padding: 20px; }
  header nav ul.menu { gap: 20px; }
  h1 { font-size: 42px; margin-top: 36px; }
  .home-wrapper { padding-top: 50px; }
  .features-page { margin-top: 80px; padding-top: 50px; }
  .feature {
    flex-direction: column;
    gap: 32px;
    padding: 48px 0;
    width: 100%;
  }
  .feature:nth-of-type(2n) { flex-direction: column; }
  .feature figure { flex: none; width: 90%; }
  .feature aside { text-align: center; padding: 0 20px; }
  .feature aside::before { margin-left: auto; margin-right: auto; }
  .feature p { margin: 0 auto; }
  .partners { padding: 40px 20px; }
  footer {
    position: static;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 32px 20px;
  }
  footer p { text-align: center; }
  .wrapper { padding-bottom: 0; }
}
