@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Libre Baskerville";
  src: url("../fonts/LibreBaskerville-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f6f3ef;
  --panel: #ffffff;
  --ink: #2c2826;
  --muted: #7a746f;
  --line: #ddd7d1;
  --primary: #6b432d;
  --primary-dark: #533221;
  --soft: #f1e3d8;
  --radius-large: 26px;
  --radius-medium: 16px;
  --shadow: 0 18px 55px rgba(73, 51, 38, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
}

a {
  color: inherit;
}

.site-container {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.site-header {
  padding: 22px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: 18px;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-family: "Libre Baskerville", serif;
  font-size: 24px;
  font-weight: 500;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.hero {
  padding: 80px 0 64px;
  text-align: center;
}

.hero-inner {
  max-width: 760px;
}

.eyebrow,
.tool-type {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 78px);
  line-height: 1.02;
}

.hero-text {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.tools-section {
  padding: 0 0 70px;
}

.tool-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 50px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.tool-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
}

.tool-copy p:not(.tool-type) {
  max-width: 56ch;
  margin: 20px 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

.primary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

.primary-button:hover {
  background: var(--primary-dark);
}

.tool-preview {
  min-height: 400px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-medium);
  background: linear-gradient(#ece8e2, #ddd5ce);
}

.mini-polaroid {
  width: min(270px, 72%);
  padding: 18px 18px 34px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(45, 34, 27, 0.16);
  text-align: center;
  transform: rotate(2deg);
}

.mini-photo {
  aspect-ratio: 1 / 1.05;
  background:
    linear-gradient(145deg, #8eaa72, #d7bc7b);
}

.mini-polaroid span {
  display: block;
  margin-top: 25px;
  color: var(--muted);
}

.privacy-section {
  padding: 70px 0;
  background: var(--primary);
  color: #fff;
}

.privacy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.privacy-section .eyebrow {
  color: #e7c7af;
}

.privacy-section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
}

.privacy-list {

  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.privacy-list li::before {
  content: "✓";
  margin-right: 10px;
}

.site-footer {
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 760px) {
  .hero {
    padding: 50px 0;
  }

  .tool-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .tool-preview {
    min-height: 330px;
  }

  .privacy-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-inner {
    display: block;
    line-height: 1.8;
    text-align: center;
  }
}

