@import url("https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,300;6..72,400;6..72,500&family=Nunito+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --background: #f6f1ea;
  --foreground: #241815;
  --card: #fffaf4;
  --card-foreground: #241815;
  --muted-foreground: #6f625d;
  --accent: #b45b35;
  --accent-foreground: #fff7ef;
  --secondary: #ead9ca;
  --border: rgba(64, 43, 36, 0.14);
  --input: rgba(64, 43, 36, 0.16);
  --ring: rgba(180, 91, 53, 0.35);
  --primary-foreground: #fffaf4;
  --radius: 0.75rem;
  --shadow-soft: 0 20px 45px rgba(36, 24, 21, 0.08);
  --shadow-strong: 0 30px 60px rgba(36, 24, 21, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--foreground);
  font-family: "Nunito Sans", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

.font-heading {
  font-family: "Newsreader", serif;
  font-weight: 400;
}

.font-body {
  font-family: "Nunito Sans", sans-serif;
}

.nav-logo {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.footer-store-badges a {
  display: inline-flex;
  flex: 0 0 auto;
  width: auto;
}

.footer-store-badge {
  width: auto;
  max-width: 170px;
  height: 2.75rem;
  max-height: 2.75rem;
  width: auto;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}

.footer-social-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.faq-answer {
  padding-bottom: 1.25rem;
}

.page-shell {
  background:
    radial-gradient(circle at 0% 0%, rgba(180, 91, 53, 0.12), transparent 24%),
    radial-gradient(circle at 100% 10%, rgba(111, 98, 93, 0.1), transparent 18%),
    linear-gradient(180deg, #fbf7f2 0%, var(--background) 100%);
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--input);
  background: rgba(255, 250, 244, 0.88);
  color: var(--foreground);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 200ms ease;
}

.button-link:hover {
  background: var(--accent);
  border-color: transparent;
  color: var(--accent-foreground);
}

.button-link-secondary {
  background: transparent;
}

.meta-note {
  min-height: 1.5rem;
}

.consent-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 120;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.consent-banner__card {
  width: min(100%, 42rem);
  padding: 1rem 1rem 1.125rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 250, 244, 0.98);
  box-shadow: var(--shadow-strong);
  pointer-events: auto;
}

.consent-banner__title {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 1.375rem;
  color: var(--foreground);
}

.consent-banner__body {
  margin: 0.625rem 0 0;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.consent-banner__button {
  appearance: none;
  border: 1px solid var(--input);
  border-radius: 999px;
  padding: 0.75rem 1.125rem;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.consent-banner__button:hover {
  border-color: var(--accent);
}

.consent-banner__button--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-foreground);
}

.consent-banner__button--primary:hover {
  filter: brightness(0.98);
}

.consent-banner__button--secondary:hover {
  background: rgba(36, 24, 21, 0.04);
}

.min-h-screen {
  min-height: 100vh;
}

.min-h-\[500px\] {
  min-height: 500px;
}

.h-\[85vh\] {
  height: 85vh;
}

.h-full {
  height: 100%;
}

.h-40 {
  height: 10rem;
}

.h-12 {
  height: 3rem;
}

.h-10 {
  height: 2.5rem;
}

.h-9 {
  height: 2.25rem;
}

.h-5 {
  height: 1.25rem;
}

.h-4 {
  height: 1rem;
}

.w-full {
  width: 100%;
}

.w-32 {
  width: 8rem;
}

.w-12 {
  width: 3rem;
}

.w-5 {
  width: 1.25rem;
}

.w-4 {
  width: 1rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-xl {
  max-width: 36rem;
}

.container {
  width: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

.block {
  display: block;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.flex-1 {
  flex: 1 1 0%;
}

.shrink-0 {
  flex-shrink: 0;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-12 {
  gap: 3rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-2 {
  gap: 0.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-2\.5 > * + * {
  margin-top: 0.625rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded-3xl {
  border-radius: 1.75rem;
}

.rounded-2xl {
  border-radius: 1.25rem;
}

.rounded-xl {
  border-radius: 1rem;
}

.rounded-lg {
  border-radius: 0.75rem;
}

.rounded-md {
  border-radius: 0.5rem;
}

.border {
  border: 1px solid var(--border);
}

.border-2 {
  border: 2px solid transparent;
}

.border-b {
  border-bottom: 1px solid var(--border);
}

.border-t {
  border-top: 1px solid var(--border);
}

.border-border {
  border-color: var(--border);
}

.border-input {
  border-color: var(--input);
}

.border-accent {
  border-color: var(--accent);
}

.border-background\/40 {
  border-color: rgba(246, 241, 234, 0.4);
}

.bg-background {
  background-color: var(--background);
}

.bg-background\/80 {
  background-color: rgba(246, 241, 234, 0.8);
}

.bg-card {
  background-color: var(--card);
}

.bg-foreground {
  background-color: var(--foreground);
}

.bg-secondary\/50 {
  background-color: rgba(234, 217, 202, 0.5);
}

.bg-accent\/10 {
  background-color: rgba(180, 91, 53, 0.1);
}

.bg-accent\/5 {
  background-color: rgba(180, 91, 53, 0.05);
}

.bg-gradient-to-t {
  background-image: linear-gradient(
    to top,
    var(--tw-gradient-from, transparent),
    var(--tw-gradient-via, transparent),
    var(--tw-gradient-to, transparent)
  );
}

.from-background {
  --tw-gradient-from: var(--background);
}

.via-background\/60 {
  --tw-gradient-via: rgba(246, 241, 234, 0.6);
}

.to-transparent {
  --tw-gradient-to: transparent;
}

.object-cover {
  object-fit: cover;
}

.social-image-frame {
  height: 18rem;
}

.social-image {
  object-position: center center;
}

.intro-image-frame {
  height: 20rem;
}

.intro-image {
  object-position: center center;
}

.intro-cta {
  justify-content: flex-start;
  width: auto;
}

.intro-actions {
  width: 100%;
}

.p-8 {
  padding: 2rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.text-left {
  text-align: left;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.9375rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.375rem;
  line-height: 1.3;
}

.text-3xl {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.1;
}

.text-4xl {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 1.02;
}

.text-5xl {
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 0.98;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-\[0\.25em\] {
  letter-spacing: 0.25em;
}

.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

.tracking-\[0\.15em\] {
  letter-spacing: 0.15em;
}

.leading-\[1\.05\] {
  line-height: 1.05;
}

.leading-relaxed {
  line-height: 1.75;
}

.leading-tight {
  line-height: 1.15;
}

.leading-snug {
  line-height: 1.3;
}

.text-foreground {
  color: var(--foreground);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.text-accent {
  color: var(--accent);
}

.text-accent\/30 {
  color: rgba(180, 91, 53, 0.3);
}

.text-accent-foreground\/80 {
  color: rgba(255, 247, 239, 0.8);
}

.text-primary-foreground {
  color: var(--primary-foreground);
}

.fill-current {
  fill: currentColor;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.shadow-lg {
  box-shadow: var(--shadow-soft);
}

.shadow-2xl {
  box-shadow: var(--shadow-strong);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.sticky {
  position: sticky;
}

.inset-0 {
  inset: 0;
}

.top-0 {
  top: 0;
}

.top-8 {
  top: 2rem;
}

.right-6 {
  right: 1.5rem;
}

.right-0 {
  right: 0;
}

.left-0 {
  left: 0;
}

.bottom-0 {
  bottom: 0;
}

.z-50 {
  z-index: 50;
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.transition-colors,
.transition-all,
.transition-transform {
  transition-duration: 200ms;
  transition-timing-function: ease;
}

.transition-colors {
  transition-property: color, background-color, border-color, fill, stroke, opacity,
    box-shadow, transform;
}

.transition-all {
  transition-property: all;
}

.transition-transform {
  transition-property: transform;
}

.duration-200 {
  transition-duration: 200ms;
}

.hover\:text-foreground:hover {
  color: var(--foreground);
}

.hover\:text-accent-foreground:hover {
  color: var(--accent-foreground);
}

.hover\:bg-accent:hover {
  background-color: var(--accent);
}

.hover\:no-underline:hover {
  text-decoration: none;
}

.ring-offset-background {
  --ring-offset-color: var(--background);
}

.focus-visible\:outline-none:focus-visible {
  outline: none;
}

.focus-visible\:ring-2:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}

.focus-visible\:ring-offset-2:focus-visible {
  box-shadow:
    0 0 0 2px var(--ring-offset-color, var(--background)),
    0 0 0 4px var(--ring);
}

.focus-visible\:ring-ring:focus-visible {
  --ring-color: var(--ring);
}

.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.lucide {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.\[\&_svg\]\:pointer-events-none svg {
  pointer-events: none;
}

.\[\&_svg\]\:size-4 svg {
  width: 1rem;
  height: 1rem;
}

.\[\&_svg\]\:shrink-0 svg {
  flex-shrink: 0;
}

.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state="open"] > svg {
  transform: rotate(180deg);
}

.data-\[state\=closed\]\:animate-accordion-up[data-state="closed"] {
  animation: accordion-up 0.2s ease-out;
}

.data-\[state\=open\]\:animate-accordion-down[data-state="open"] {
  animation: accordion-down 0.2s ease-out;
}

@keyframes accordion-down {
  from {
    opacity: 0;
    max-height: 0;
  }

  to {
    opacity: 1;
    max-height: 16rem;
  }
}

@keyframes accordion-up {
  from {
    opacity: 1;
    max-height: 16rem;
  }

  to {
    opacity: 0;
    max-height: 0;
  }
}

button[class*="border-input"],
button[class*="rounded-md"] {
  border-radius: 0.75rem;
  border: 1px solid var(--input);
  background: rgba(255, 250, 244, 0.78);
  color: var(--foreground);
  cursor: pointer;
}

button[class*="border-input"]:hover,
button[class*="rounded-md"]:hover {
  border-color: transparent;
}

nav a,
button {
  transition: all 200ms ease;
}

section,
footer,
nav {
  position: relative;
}

@media (min-width: 640px) {
  .sm\:block {
    display: block;
  }

  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (max-width: 639px) {
  .footer-store-badges {
    align-items: flex-start;
  }

  .footer-store-badge {
    max-width: 148px;
    height: auto;
    max-height: 2.5rem;
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .md\:text-4xl {
    font-size: 2.5rem;
    line-height: 1.08;
  }

  .md\:text-5xl {
    font-size: 3.5rem;
    line-height: 1;
  }

  .md\:text-6xl {
    font-size: 4.5rem;
    line-height: 0.95;
  }

  .md\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .md\:pb-20 {
    padding-bottom: 5rem;
  }

  .md\:p-16 {
    padding: 4rem;
  }

  .md\:w-48 {
    width: 12rem;
  }

  .md\:h-60 {
    height: 15rem;
  }

  .md\:top-12 {
    top: 3rem;
  }

  .md\:right-12 {
    right: 3rem;
  }

  .md\:order-1 {
    order: 1;
  }

  .md\:order-2 {
    order: 2;
  }

  .social-image-frame {
    height: 22rem;
  }

  .intro-copy {
    grid-column: 1 / -1;
  }

  .intro-details {
    grid-column: 1;
  }

  .intro-image-frame {
    grid-column: 2;
    grid-row: 2;
  }

  .intro-actions {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .intro-image-frame {
    height: 100%;
    min-height: 28rem;
  }
}

@media (min-width: 1024px) {
  .lg\:text-7xl {
    font-size: 5rem;
    line-height: 0.95;
  }
}
