/* ============================================================
   Chef Cut Meat House — Coming Soon landing page
   Component + layout styles. Tokens come from /tokens/*.css.
   ============================================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cc-white);
  font-family: var(--font-body);
  color: var(--cc-ink);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

@keyframes cc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes cc-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Shared type roles ---------- */

.eyebrow {
  display: block;
  margin: 0;
  font-family: var(--font-serif);
  font-weight: var(--fw-serif-demi);
  font-size: var(--serif-2);
  color: var(--cc-garnet);
  letter-spacing: var(--serif-tracking);
}

.eyebrow--ivory {
  color: var(--cc-ivory);
}

.script-accent {
  font-family: var(--font-script);
  color: var(--cc-ivory);
  line-height: 1;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-none);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur) var(--ease-standard), color var(--dur) var(--ease-standard);
}

.btn--sm { height: 32px; padding: 0 18px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.btn--md { height: 48px; padding: 0 24px; font-size: 13px; }
.btn--lg { height: 52px; padding: 0 32px; font-size: 14px; }

.btn--garnet,
.btn--primary {
  background: var(--cc-garnet);
  color: var(--cc-ivory);
}

.btn--garnet:hover,
.btn--primary:hover {
  background: var(--brand-hover);
}

.btn--outline {
  background: transparent;
  color: var(--cc-garnet);
  box-shadow: inset 0 0 0 1px var(--cc-garnet);
  height: 40px;
  padding: 0 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn--outline:hover {
  background: rgba(121, 0, 15, 0.08);
}

/* ---------- Nav ---------- */

.site-header {
  height: var(--nav-height);
  background: var(--cc-leather);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  position: sticky;
  top: 0;
  z-index: 30;
}

.site-header__logo img {
  height: 24px;
  width: auto;
  display: block;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-header__link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 240, 219, 0.72);
  text-decoration: none;
  transition: color var(--dur) var(--ease-standard);
}

.site-header__link:hover {
  color: var(--cc-ivory);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--cc-leather);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(28, 22, 18, 0.92) 0%,
    rgba(28, 22, 18, 0.75) 40%,
    rgba(28, 22, 18, 0.5) 65%,
    rgba(28, 22, 18, 0.38) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  max-width: 620px;
  padding: 0 90px;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-standard), transform 0.9s var(--ease-standard);
}

.hero__content.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.hero__script {
  display: block;
  font-size: 42px;
}

.hero__eyebrow {
  font-size: var(--serif-2);
}

.hero__body {
  margin: 0;
  max-width: 420px;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgba(249, 240, 219, 0.85);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.hero__directions {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cc-ivory);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__seal {
  position: absolute;
  right: 90px;
  bottom: 56px;
  z-index: 3;
  width: 120px;
  height: 120px;
  transform: rotate(-12deg);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.45));
  animation: cc-float 5s ease-in-out infinite;
}

/* ---------- Marquee ---------- */

.marquee {
  width: 100%;
  height: 58px;
  background: var(--cc-garnet);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: cc-marquee 22s linear infinite;
}

.marquee__item {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cc-ivory);
}

.marquee__dot {
  color: rgba(249, 240, 219, 0.5);
}

/* ---------- What's coming ---------- */

.coming {
  background: var(--cc-white);
  padding: 110px var(--page-gutter) 130px;
}

.coming__inner {
  max-width: var(--page-max);
  margin: 0 auto;
}

.coming__intro {
  max-width: 620px;
}

.coming__headline {
  display: block;
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cc-taupe);
}

.coming__body {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--cc-ink);
  max-width: 520px;
}

.coming__collage {
  margin-top: 56px;
}

.coming__collage img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Bakery & Cellar ---------- */

.crafts {
  background: var(--cc-leather);
  padding: 110px var(--page-gutter);
  overflow: hidden;
}

.crafts__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: center;
  flex-wrap: wrap;
}

.crafts__intro {
  flex: 1 1 380px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.crafts__title-wrap {
  position: relative;
  width: fit-content;
}

.crafts__headline {
  display: block;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 88px;
  line-height: 0.86;
  letter-spacing: -0.02em;
  color: var(--cc-ivory);
}

.crafts__script {
  position: absolute;
  right: 8px;
  bottom: -46px;
  font-size: 76px;
  color: var(--cc-garnet);
}

.crafts__body {
  margin: 34px 0 0;
  max-width: 440px;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgba(249, 240, 219, 0.82);
}

.crafts__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}

.crafts__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.crafts__tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cc-garnet);
  background: var(--cc-ivory);
  padding: 5px 10px;
}

.crafts__item-body {
  margin: 0;
  max-width: 400px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(249, 240, 219, 0.72);
}

.crafts__divider {
  height: 1px;
  background: rgba(249, 240, 219, 0.22);
}

.crafts__collage {
  flex: 1 1 460px;
  min-width: 340px;
  position: relative;
  height: 560px;
}

.crafts__photo {
  position: absolute;
  border-radius: 6px;
  background: var(--cc-ivory);
  padding: 10px 10px 12px;
}

.crafts__photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 3px;
}

.crafts__photo--baker {
  left: 0;
  top: 18px;
  width: 62%;
  transform: rotate(-3deg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
}

.crafts__photo--cellar {
  right: 0;
  bottom: 8px;
  width: 60%;
  transform: rotate(4deg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.crafts__photo--cellar img {
  height: 300px;
}

.crafts__seal {
  position: absolute;
  left: 46%;
  top: 44%;
  z-index: 3;
  width: 104px;
  height: 104px;
  transform: rotate(-10deg);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

/* ---------- Why Chef Cut ---------- */

.why {
  background: var(--cc-leather);
  padding: 110px var(--page-gutter) 100px;
}

.why__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  text-align: center;
}

.why__headline {
  display: block;
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 88px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cc-ivory);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  margin-top: 64px;
  text-align: left;
}

.why__grid img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.why__stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 72px;
  flex-wrap: wrap;
}

.why__stat {
  flex: 1 1 240px;
  padding: 0 32px;
  border-right: 1px solid rgba(249, 240, 219, 0.18);
}

.why__stat:last-child {
  border-right: none;
}

.why__stat-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--cc-ivory);
  letter-spacing: -0.01em;
}

.why__stat-body {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(249, 240, 219, 0.68);
}

/* ---------- Reserve ---------- */

.reserve {
  background: var(--cc-ivory);
  padding: 110px var(--page-gutter);
  display: flex;
  justify-content: center;
}

.reserve__card {
  max-width: 1080px;
  width: 100%;
  position: relative;
  min-height: 560px;
  display: flex;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.reserve__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reserve__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(28, 22, 18, 0.9) 0%,
    rgba(28, 22, 18, 0.74) 42%,
    rgba(28, 22, 18, 0.4) 70%,
    rgba(28, 22, 18, 0.18) 100%
  );
}

.reserve__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.reserve__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cc-ivory);
  background: rgba(249, 240, 219, 0.14);
  border: 1px solid rgba(249, 240, 219, 0.3);
  padding: 7px 14px;
}

.reserve__eyebrow {
  font-size: 24px;
  white-space: nowrap;
  margin-bottom: 2px;
  color: var(--cc-ivory);
}

.reserve__headline {
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cc-ivory);
}

.reserve__body {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(249, 240, 219, 0.85);
  max-width: 440px;
}

.reserve__form {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  width: 100%;
  max-width: 440px;
}

.reserve__input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(28, 22, 18, 0.18);
  border-radius: var(--radius-none);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--cc-ink);
  background: var(--cc-white);
}

.reserve__input:focus {
  outline: none;
  border-color: var(--cc-garnet);
}

.reserve__submit {
  flex-shrink: 0;
}

.reserve__confirm {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reserve__confirm-text {
  font-size: 15px;
  color: var(--cc-ivory);
}

.reserve__confirm-script {
  font-size: 30px;
}

.reserve__error {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--cc-ivory);
}

.reserve__fine-print {
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(249, 240, 219, 0.62);
}

.is-hidden {
  display: none !important;
}

/* ---------- Find us / Map ---------- */

.find {
  background: var(--cc-white);
  padding: 100px var(--page-gutter) 120px;
}

.find__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.find__info {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.find__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cc-taupe);
}

.find__city {
  margin: 0;
  font-size: 16px;
  color: var(--cc-ink);
}

.find__helper {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 420px;
}

.find__cta {
  margin-top: 12px;
}

.find__map-wrap {
  flex: 1 1 420px;
  min-width: 320px;
}

.find__map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  box-shadow: var(--ring-garnet);
  overflow: hidden;
  background-color: var(--cc-paper);
}

.find__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

.find__map-chip {
  position: absolute;
  left: 14px;
  top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cc-ivory);
  padding: 8px 14px;
  box-shadow: var(--shadow-md);
}

.find__map-chip img {
  width: 18px;
  height: auto;
}

.find__map-chip span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cc-garnet);
}

/* ---------- Footer ---------- */

.footer__watermark {
  background: var(--cc-white);
  padding: 40px var(--page-gutter);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.footer__watermark-logo {
  max-width: 100%;
  height: 180px;
  opacity: 0.06;
}

.footer__meat-cut {
  position: absolute;
  top: 50%;
  height: 190px;
  z-index: 1;
  filter: drop-shadow(0 14px 20px rgba(28, 22, 18, 0.12));
}

.footer__meat-cut--left {
  left: 14%;
  transform: translateY(-50%) rotate(-14deg);
}

.footer__meat-cut--right {
  right: 14%;
  height: 150px;
  transform: translateY(-50%) scaleX(-1) rotate(-20deg);
}

.footer__bottom {
  background: var(--cc-garnet);
  padding: 28px var(--page-gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__address {
  font-size: 13px;
  color: var(--cc-ivory);
  text-decoration: none;
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249, 240, 219, 0.9);
  text-decoration: none;
}

.footer__copyright {
  font-size: 12px;
  color: rgba(249, 240, 219, 0.7);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .site-header,
  .coming,
  .crafts,
  .why,
  .reserve,
  .find,
  .footer__watermark,
  .footer__bottom {
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero__content {
    padding: 0 48px;
    max-width: 560px;
  }

  .why__headline {
    font-size: 64px;
  }

  .coming__headline {
    font-size: 46px;
  }

  .crafts__headline {
    font-size: 64px;
  }

  .why__grid {
    grid-template-columns: 1fr 1fr;
  }

  .why__grid img:nth-child(2) {
    grid-column: span 2;
  }

  .reserve__content {
    padding: 48px 40px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0 20px;
  }

  .site-header__nav {
    gap: 16px;
  }

  .site-header__link {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .hero__content {
    padding: 0 24px;
    min-height: 640px;
  }

  .hero__script {
    font-size: 28px;
  }

  .hero__seal {
    right: 24px;
    bottom: 24px;
    width: 84px;
    height: 84px;
  }

  .coming,
  .crafts,
  .why,
  .reserve,
  .find,
  .footer__watermark,
  .footer__bottom {
    padding-left: 24px;
    padding-right: 24px;
  }

  .coming {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .coming__headline {
    font-size: 34px;
  }

  .crafts {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .crafts__inner {
    gap: 48px;
  }

  .crafts__headline {
    font-size: 42px;
  }

  .crafts__script {
    font-size: 44px;
    right: 4px;
    bottom: -28px;
  }

  .crafts__body {
    margin-top: 20px;
  }

  .crafts__collage {
    height: 420px;
  }

  .crafts__photo img {
    height: 260px;
  }

  .crafts__photo--cellar img {
    height: 220px;
  }

  .crafts__seal {
    width: 76px;
    height: 76px;
  }

  .why {
    padding-top: 72px;
    padding-bottom: 60px;
  }

  .why__headline {
    font-size: 40px;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .why__grid img:nth-child(2) {
    grid-column: span 1;
  }

  .why__grid img {
    height: 280px;
  }

  .why__stat {
    flex: 1 1 100%;
    border-right: none !important;
    border-bottom: 1px solid rgba(249, 240, 219, 0.18);
    padding: 20px 0;
  }

  .why__stat:last-child {
    border-bottom: none;
  }

  .reserve {
    padding: 60px 24px;
  }

  .reserve__content {
    padding: 32px 24px;
  }

  .reserve__headline {
    font-size: 36px;
  }

  .reserve__form {
    flex-direction: column;
  }

  .find {
    padding: 60px 24px 72px;
  }

  .find__headline {
    font-size: 34px;
  }

  .footer__meat-cut {
    height: 100px !important;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}
