/* By Bella Cooks - site.css */

:root {
  --color-cream: #f6f4c3;
  --color-wine: #823d3d;
  --color-wine-soft: rgba(130, 61, 61, 0.12);
  --color-text: #823d3d;
  --font-primary: "Ubuntu", Arial, sans-serif;
  --font-script: "Safira March", "Brush Script MT", "Lucida Handwriting", cursive;
  --page-max: 1200px;
  --shadow-soft: 0 18px 40px rgba(130, 61, 61, 0.08);
  --transition-default: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-cream);
  color: var(--color-text);
  font-family: var(--font-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--color-wine);
  color: var(--color-cream);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: top var(--transition-default);
}

.skip-link:focus {
  top: 1rem;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
}

.hero {
  width: 100%;
}

.hero-inner {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.82rem;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-wine);
  opacity: 0.92;
}

.coming-soon-card {
  width: min(100%, 760px);
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.18);
}

.coming-soon-card img {
  width: 100%;
}

.intro-copy {
  width: min(100%, 720px);
  margin: 1.75rem auto 0;
}

.lead {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.65;
  font-weight: 500;
}

.supporting-text {
  margin: 0.85rem 0 0;
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.95;
}

.brand-bella {
  font-family: var(--font-primary);
}

.brand-cooks {
  font-family: var(--font-script);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) {
  .page {
    padding: 1.25rem 1rem 2rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.9rem;
  }

  .intro-copy {
    margin-top: 1.25rem;
  }

  .lead {
    font-size: 1rem;
  }

  .supporting-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
