@charset "UTF-8";
@import url("https://use.typekit.net/dsg6vtf.css");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --open: #dd6a55;
  --medium: #7a7f8e;
  --dark: #464B59;
  --darker: #2a2a2d;
  --proxigo: #ef7021;
  --zelty: #224B61;
  --uber: #0CC05B;
  --open-light: #ee9f91;
  --open-lighter: #f5beb4;
  --braise: #C0392B;
  --creme: #F5ECD7;
  --creme2: #fefaf1;
  --blanc: #FDF8F0;
  --text: #1E1008;
  --font-courant: 'itc-american-typewriter', serif;
  --font-titre: 'articulat-heavy-cf', sans-serif;
  --font-sans: 'DM Sans', sans-serif;
  --font-mano: 'emmascript-mvb-std', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--blanc);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

header {
  position: relative;
  min-height: 70svh;
  background: var(--open);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem 4rem;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201, 123, 43, 0.35) 0%, transparent 70%), radial-gradient(ellipse 50% 40% at 80% 10%, rgba(192, 57, 43, 0.2) 0%, transparent 60%);
}

img.logo-open-kitchen {
  width: 700px;
}

.badge {
  position: relative;
  z-index: 1;
  text-align: left;
  animation: fadeUp 0.7s ease both;
}
.badge p.manuscrit {
  font-family: var(--font-mano);
  font-size: 2rem;
  color: var(--open-lighter);
}
.badge .fleche {
  width: 30px;
}

.badge-sans {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--open-light);
  border: 1px solid rgba(201, 123, 43, 0.4);
  border-radius: 99px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.8rem;
}

h1 {
  font-family: var(--font-titre);
  font-size: clamp(3.2rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--creme);
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.15s ease both;
}

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

.hero-sub {
  font-family: var(--font-courant);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  color: var(--creme2);
  opacity: 0.8;
  margin-top: 1.4rem;
  max-width: 55ch;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.3s ease both;
}

.scroll-indic {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  animation: fadeUp 0.7s 0.6s ease both;
  color: rgba(245, 236, 215, 0.4);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-indic svg {
  animation: bounce 1.8s ease-in-out infinite;
}

/* ── PHOTOS STRIP ── */
.photos {
  background: var(--creme);
  padding: 2rem 0;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none;
}
.photos::-webkit-scrollbar {
  display: none;
}
.photos {
  scroll-snap-type: x mandatory;
}

.photos-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: slide 28s linear infinite;
}

.photos-track:hover {
  animation-play-state: paused;
}

.photo-card {
  scroll-snap-align: start;
  width: 260px;
  height: 310px;
  border-radius: 12px;
  overflow: hidden;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

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

.photo-card .ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--creme2) 0%, #d9c9a8 100%);
  color: var(--zelty);
  font-size: 2rem;
}

.photo-card .ph span {
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
}

.order-section {
  padding: 5rem 1.5rem 6rem;
  background: var(--blanc);
  position: relative;
}

.section-label {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--open-light);
  margin-bottom: 0.8rem;
}

.section-titre {
  font-family: var(--font-titre);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  text-align: center;
  color: var(--darker);
  margin-bottom: 0.8rem;
  line-height: 1;
}

.section-desc {
  text-align: center;
  font-family: var(--font-courant);
  color: var(--medium);
  font-size: 1rem;
  margin-bottom: 3.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.card {
  background: var(--creme);
  border-radius: 12px;
  padding: 2.2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.1s ease-in;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgb(242, 231, 202);
}
.card:hover {
  transform: translateY(-4px);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 123, 43, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover::before {
  opacity: 1;
}
.card img.mini-logo {
  width: 80px;
  border-radius: 12px;
  overflow: hidden;
}

.card-num {
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
  font-family: var(--font-titre);
  font-size: 3.5rem;
  color: rgba(74, 44, 26, 0.07);
  line-height: 1;
  user-select: none;
}

.card-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.25rem 0.7rem;
  border-radius: 6px;
  margin-bottom: 0.3rem;
  width: fit-content;
}

h2 {
  font-family: var(--font-titre);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--medium);
  flex: 1;
}

.tag-proxigo {
  background: rgba(226, 36, 1, 0.31);
  color: var(--creme);
}

.tag-uber {
  background: rgba(12, 192, 91, 0.72);
  color: #ffffff;
}

.tag-zelty {
  background: rgba(34, 75, 97, 0.54);
  color: #ffffff;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  margin-top: 0.5rem;
  transition: gap 0.2s;
}

.card:hover .card-btn {
  gap: 0.85rem;
}

/* ── CARD #1 accent ── */
.card.card--proxigo {
  background: var(--proxigo);
  border-color: transparent;
}

.card.card--proxigo .card-num {
  color: rgba(255, 255, 255, 0.23);
}

.card.card--proxigo h2 {
  color: var(--creme);
}

.card.card--proxigo p {
  color: var(--creme2);
  opacity: 0.75;
}

.card.card--proxigo .card-btn {
  color: var(--creme);
}

footer {
  background: var(--darker);
  color: var(--creme2);
  padding: 2.8rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
footer .info-block h3 {
  font-family: var(--font-titre);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--open);
  margin-bottom: 0.55rem;
}
footer .info-block p,
footer .info-block ul li,
footer .info-block address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.8;
}
footer a.tel {
  font-family: var(--font-titre);
  color: inherit;
  border-bottom: dashed 1px;
  text-decoration: none;
  font-size: 1.5rem;
  letter-spacing: 2px;
  transition: color 0.3s;
}
footer a.tel:hover {
  color: var(--open);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.25s ease;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-6px);
}

@media (max-width: 600px) {
  img.logo-open-kitchen {
    width: 90%;
  }
  .cards {
    grid-template-columns: 1fr;
  }
}