/* Mug Finds – shared styles */
:root {
  --ink: #3b2a1e;
  --muted: #8c7568;
  --paper: #fefbf7;
  --card: #fffdf9;
  --cream: #f5efe6;
  --terracotta: #c47a52;
  --coffee: #6b4226;
  --latte: #e8d5c0;
  --line: #e6d8ca;
  --sage: #d9e4d6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #fefbf7 0%, #f8f0e6 48%, #f2e8dc 100%);
  color: var(--ink);
  line-height: 1.55;
}

a { color: inherit; }

/* ── Container ── */
.wrap {
  width: min(1120px, calc(100% - 36px));
  margin: auto;
}

/* ── Navigation ── */
.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.brand span {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  position: absolute;
  left: 4px;
  transition: .3s;
}

.nav-toggle span:nth-child(1) { top: 8px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 22px; }

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 15px;
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 15px;
}

/* ── Hero ── */
.hero {
  padding: 62px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
  color: var(--terracotta);
  text-transform: uppercase;
}

.h1 {
  font-family: Georgia, serif;
  font-size: clamp(48px, 7vw, 86px);
  line-height: .95;
  letter-spacing: -.055em;
  margin: 16px 0 22px;
}

.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 650px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--ink);
  transition: opacity .2s;
}

.btn:hover { opacity: .85; }

.btn.primary {
  background: var(--coffee);
  color: #fff;
  border-color: var(--coffee);
}

.btn.secondary {
  background: rgba(255, 255, 255, .6);
}

.hero-card {
  background: rgba(255, 253, 249, .75);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 18px;
  box-shadow: 0 30px 80px rgba(59, 42, 30, .12);
}

.hero-card img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.pill {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .55);
  border-radius: 22px;
  padding: 16px;
}

.pill b {
  display: block;
}

/* ── Sections ── */
.section {
  padding: 54px 0;
}

.section h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  margin: 0 0 14px;
  letter-spacing: -.035em;
}

.sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

/* ── Product Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.product {
  background: rgba(255, 253, 249, .82);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(59, 42, 30, .07);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}

.product:hover {
  box-shadow: 0 24px 56px rgba(59, 42, 30, .13);
  transform: translateY(-2px);
}

.tag {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 900;
}

.product h3 {
  font-family: Georgia, serif;
  font-size: 34px;
  margin: 12px 0 8px;
  letter-spacing: -.03em;
}

.product p {
  color: var(--muted);
  margin: 0 0 18px;
}

.mock {
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 22px;
  overflow: hidden;
  margin: 8px 0 18px;
  border: 1px solid var(--line);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mock-placeholder {
  font-size: 64px;
  opacity: .6;
}

.product .btn {
  margin-top: auto;
}

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

/* ── Product Page Hero ── */
.product-hero {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* ── Product Page Content ── */
.product-content {
  padding: 54px 0;
}

.product-content .eyebrow {
  margin-bottom: 8px;
}

.product-content h1 {
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.04em;
  margin: 12px 0 20px;
}

.product-content .desc {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
  line-height: 1.65;
  margin-bottom: 30px;
}

.use-cases {
  background: rgba(255, 255, 255, .55);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  margin: 28px 0;
}

.use-cases h3 {
  font-family: Georgia, serif;
  font-size: 22px;
  margin: 0 0 14px;
}

.use-cases ul {
  margin: 0;
  padding-left: 20px;
}

.use-cases li {
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 16px;
}

/* ── Related Mugs ── */
.related {
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.related h2 {
  font-family: Georgia, serif;
  font-size: 34px;
  margin: 0 0 22px;
  letter-spacing: -.03em;
}

.related .cards {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* ── Blog Layout ── */
.blog-content {
  max-width: 720px;
  margin: auto;
  padding: 40px 0 60px;
}

.blog-content h1 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 20px 0 22px;
}

.blog-content .eyebrow {
  margin-top: 8px;
}

.blog-content .lead {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: none;
}

.blog-content h2 {
  font-family: Georgia, serif;
  font-size: 28px;
  margin: 40px 0 14px;
  letter-spacing: -.02em;
}

.blog-content h3 {
  font-family: Georgia, serif;
  font-size: 22px;
  margin: 30px 0 10px;
}

.blog-content p {
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.7;
}

.blog-content ul,
.blog-content ol {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.7;
  padding-left: 22px;
  margin: 0 0 18px;
}

.blog-content li {
  margin-bottom: 8px;
}

.blog-content blockquote {
  border-left: 3px solid var(--terracotta);
  margin: 28px 0;
  padding: 16px 24px;
  background: rgba(255, 255, 255, .5);
  border-radius: 0 14px 14px 0;
  font-style: italic;
  color: var(--muted);
}

.font-callout {
  background: rgba(255, 255, 255, .6);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  margin: 24px 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.font-callout img {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.font-callout-text h4 {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-size: 20px;
}

.font-callout-text p {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--muted);
}

.font-callout-text .btn {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 14px;
}

/* ── About Page ── */
.about-content {
  max-width: 720px;
  margin: auto;
  padding: 40px 0 60px;
}

.about-content h1 {
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.04em;
  margin: 20px 0 22px;
}

.about-content h2 {
  font-family: Georgia, serif;
  font-size: 28px;
  margin: 40px 0 14px;
}

.about-content p {
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.65;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.value-card {
  background: rgba(255, 255, 255, .55);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.value-card h3 {
  font-family: Georgia, serif;
  font-size: 22px;
  margin: 0 0 8px;
}

.value-card p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

/* ── Privacy Page ── */
.privacy-content {
  max-width: 720px;
  margin: auto;
  padding: 40px 0 60px;
}

.privacy-content h1 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 20px 0 22px;
}

.privacy-content h2 {
  font-family: Georgia, serif;
  font-size: 24px;
  margin: 36px 0 12px;
}

.privacy-content p {
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.7;
}

.privacy-content ul {
  font-size: 17px;
  line-height: 1.7;
  padding-left: 22px;
  margin: 0 0 16px;
}

.privacy-content li {
  margin-bottom: 6px;
}

/* ── Footer ── */
.footer {
  padding: 42px 0 70px;
  color: var(--muted);
  font-size: 14px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--ink);
}

.disclosure {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 850px) {
  .nav { height: auto; padding: 18px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    gap: 14px;
    z-index: 100;
  }
  .hero { padding-top: 26px; }
  .hero-grid,
  .cards { grid-template-columns: 1fr; }
  .related .cards { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .h1 { font-size: 52px; }
  .lead { font-size: 18px; }
}

@media (max-width: 520px) {
  .wrap { width: min(100% - 24px, 1120px); }
  .product { padding: 18px; }
  .hero-card { padding: 10px; }
  .h1 { font-size: 43px; }
  .actions .btn { width: 100%; }
  .font-callout {
    flex-direction: column;
    text-align: center;
  }
  .product-hero img { height: 300px; }
}
