/* ===========================
   Maison de Rozières — styles
   Palette : rouge cerise
   =========================== */
:root {
  --cherry: #c6112a;
  --cherry-600: #a90d23;
  --cherry-700: #8a0a1c;
  --cherry-50: #fdecee;
  --cherry-100: #fbd5da;
  --cream: #fff8f0;
  --ink: #1a1213;
  --ink-2: #3a2a2c;
  --muted: #6b5a5c;
  --line: #ecd9dc;
  --gold: #e8b24a;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(198, 17, 42, 0.08);
  --shadow-md: 0 18px 40px rgba(138, 10, 28, 0.15);
  --shadow-lg: 0 30px 60px rgba(138, 10, 28, 0.25);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--cherry); text-decoration: none; }
a:hover { color: var(--cherry-700); }

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.4rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 2.5vw + 1rem, 3rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 700; }
em { font-style: italic; color: var(--cherry); }

.script {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  color: var(--cherry);
  font-size: 1.1em;
}

.container { width: min(100% - 2.4rem, var(--max)); margin-inline: auto; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: .9rem;
}
.eyebrow.cherry { color: var(--cherry); }
.eyebrow.cherry.light { color: var(--cherry-100); }
.eyebrow.light { color: rgba(255,255,255,.85); }

.accent { color: var(--cherry); font-style: italic; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .78rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn-lg { padding: 1rem 1.6rem; font-size: 1rem; }
.btn-primary {
  background: var(--cherry);
  color: #fff;
  box-shadow: 0 10px 24px rgba(198,17,42,.35);
}
.btn-primary:hover { background: var(--cherry-700); color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--cherry);
  border-color: var(--cherry);
}
.btn-outline:hover { background: var(--cherry); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--cherry); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid rgba(198,17,42,.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--ink);
}
.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(198, 17, 42, 0.15));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--cherry);
}
.brand-tag {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--cherry);
  transition: width .25s ease;
}
.nav a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 0; background: transparent;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 4rem 0 5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  to { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 85% 20%, rgba(232, 178, 74, 0.15), transparent 60%),
    linear-gradient(135deg, rgba(138, 10, 28, 0.88) 0%, rgba(26, 18, 19, 0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 70vh;
}
.hero-text { max-width: 620px; }
.hero h1 {
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,.45);
  line-height: 1;
}
.hero h1 .script {
  color: #ffd166;
  font-size: 1.25em;
  display: inline-block;
  padding-right: .2em;
}
.hero .lead {
  font-size: 1.15rem;
  color: #ffe9ec;
  margin: 1.5rem 0 2rem;
  max-width: 46ch;
}
.hero-actions {
  display: flex; gap: .8rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-actions .btn-outline {
  color: #fff; border-color: #fff;
}
.hero-actions .btn-outline:hover { background: #fff; color: var(--cherry); }
.hero-rating {
  display: inline-flex; align-items: center; gap: .7rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  padding: .55rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: .95rem;
}
.hero-rating .stars { color: var(--gold); letter-spacing: 2px; }

.hero-logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(closest-side, rgba(255,209,102,.35), transparent 70%);
  filter: blur(10px);
}
.hero-logo img {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.section { padding: 6rem 0; }
.section-alt { background: #fff; }
.section-dark {
  background: linear-gradient(180deg, var(--ink) 0%, #2a1a1c 100%);
  color: #f5e9ea;
}
.section-dark h2 { color: #fff; }
.section-dark .section-sub { color: #e7c9cd; }

.section-head { max-width: 720px; margin: 0 auto 3rem; }
.section-head.center { text-align: center; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin-top: .4rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-reverse .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-media-logo {
  background: linear-gradient(135deg, var(--cherry-50) 0%, #fff 100%);
  padding: 2.5rem;
}
.split-media-logo img {
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(198, 17, 42, 0.25));
}
.split-body p { color: var(--ink-2); }

.feature-list {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid; gap: .6rem;
}
.feature-list li {
  display: flex; align-items: center; gap: .75rem;
  color: var(--ink-2);
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--cherry);
  box-shadow: 0 0 0 4px var(--cherry-50);
  flex-shrink: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card-featured {
  background: linear-gradient(180deg, var(--cherry) 0%, var(--cherry-700) 100%);
  color: #fff;
  border-color: transparent;
}
.card-featured h3 { color: #fff; }
.card-featured p { color: #ffe9ec; }
.card-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cherry-50);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.5rem; flex: 1; }
.card-body p { color: var(--ink-2); margin: .4rem 0 0; font-size: .97rem; }
.card-featured .card-body p { color: #ffe9ec; }
.badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.pastries {
  background: var(--cherry-50);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px dashed var(--cherry-100);
}
.pastries-head { text-align: center; margin-bottom: 1.5rem; }
.pastries-head h3 { margin-bottom: .4rem; }
.pastries-head p { color: var(--muted); margin: 0; }
.pastries-grid {
  display: flex; flex-wrap: wrap; gap: .7rem;
  justify-content: center;
}
.chip {
  background: #fff;
  border: 1px solid var(--cherry-100);
  color: var(--ink);
  padding: .6rem 1.1rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  box-shadow: 0 3px 10px rgba(198,17,42,.05);
  transition: background .2s, color .2s, transform .2s;
}
.chip:hover {
  background: var(--cherry);
  color: #fff;
  transform: translateY(-2px);
}

.hours {
  list-style: none; padding: 0; margin: 1.5rem 0;
  display: grid; gap: .8rem;
  max-width: 460px;
}
.hours li {
  display: flex; justify-content: space-between; align-items: center;
  padding: .8rem 1.2rem;
  background: var(--cherry-50);
  border-radius: var(--radius);
  border-left: 4px solid var(--cherry);
}
.hours li span { color: var(--ink-2); font-weight: 500; }
.hours li strong { color: var(--cherry); font-weight: 700; }
.hours-cta {
  display: flex; gap: .8rem; flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hours-card {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--cherry) 0%, var(--cherry-700) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff;
  padding: 2rem;
  gap: 1.5rem;
  order: initial !important;
  min-height: 360px;
}
.clock { width: 200px; height: 200px; position: relative; }
.clock-face {
  position: absolute; inset: 0;
  border: 4px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: rgba(0,0,0,.1);
}
.clock-face span {
  position: absolute;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.h-12 { top: 8px; left: 50%; transform: translateX(-50%); }
.h-3  { right: 12px; top: 50%; transform: translateY(-50%); }
.h-6  { bottom: 8px; left: 50%; transform: translateX(-50%); }
.h-9  { left: 14px; top: 50%; transform: translateY(-50%); }
.hand {
  position: absolute;
  left: 50%; bottom: 50%;
  transform-origin: bottom center;
  background: #fff;
  border-radius: 4px;
}
.hand-h { width: 4px; height: 55px; margin-left: -2px; }
.hand-m { width: 3px; height: 75px; margin-left: -1.5px; opacity: .85; }
.hand-center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #fff;
}
.hours-status {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.review {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform .3s, border-color .3s;
}
.review:hover {
  transform: translateY(-4px);
  border-color: var(--cherry);
}
.review .stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: .8rem; }
.review blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #f5e9ea;
}
.review footer { color: var(--cherry-100); font-weight: 600; font-size: .95rem; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-icon {
  font-size: 2.2rem;
  margin-bottom: .6rem;
}
.contact-card h3 { margin-bottom: .5rem; color: var(--cherry); }
.contact-card p { color: var(--ink-2); margin: 0; }

.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/7;
  border: 4px solid #fff;
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

.site-footer {
  background: var(--ink);
  color: #e9dcde;
  padding: 4rem 0 1.5rem;
}
.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 1rem;
}
.site-footer .brand-name { color: #ffd166; }
.site-footer .brand-tag { color: #b8a0a4; }
.site-footer a { color: var(--cherry-100); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.muted { color: #b8a0a4; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  color: #b8a0a4;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.2rem 1.4rem;
    box-shadow: 0 20px 30px rgba(0,0,0,.1);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s, opacity .25s;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a { padding: .8rem .4rem; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .nav .btn { margin-top: .5rem; justify-content: center; }

  .hero-content { grid-template-columns: 1fr; text-align: center; min-height: auto; }
  .hero-text { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-logo { order: -1; }
  .hero-logo img { max-width: 320px; }

  .split, .split-reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split-reverse .split-media { order: initial; }

  .cards { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .section { padding: 4rem 0; }
  .hours-card { aspect-ratio: auto; padding: 2.5rem 1.5rem; }
}

@media (max-width: 560px) {
  .brand-tag { display: none; }
  .brand-logo { height: 46px; }
  .brand-name { font-size: 1.2rem; }
  .hero-actions .btn { flex: 1; }
  .hours-cta .btn { flex: 1; }
  .pastries { padding: 1.8rem 1.2rem; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-bg img, .hero-logo img { transition: none; animation: none; transform: none; opacity: 1; }
}
