/* The Little Dutch Bakery — built directly from their own Facebook/Instagram identity:
   terracotta roundel badge, white windmill-flower line art, "Dutch" script wordmark,
   "BAKERY" ribbon, EST. 2025. No invented visual "world" — this IS their look. */

@font-face {
  font-family: "Pacifico";
  src: url("../assets/fonts/pacifico.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --terracotta: #de5430;
  --terracotta-deep: #b64527;
  --terracotta-light: #e87a54;
  --teal: #17515a;
  --teal-light: #3d8a99;
  --timber: #885f42;
  --sand: #c0956c;
  --cream: #fdf8f1;
  --tan: #f3e6d4;
  --ink: #3a2c1f;
  --ink-soft: #6b5844;
  --line: #e6d7c1;
  --gold: #e0a458;
  --open-green: #6f9b5a;
  --max: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

::selection { background: var(--terracotta); color: var(--cream); }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 2px; }
html { scrollbar-color: var(--terracotta) var(--tan); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--tan); }
::-webkit-scrollbar-thumb { background: var(--terracotta); border: 3px solid var(--tan); border-radius: 20px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 248, 241, 0.94);
  backdrop-filter: blur(6px);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: var(--ink);
}
.brand-logo { display: block; width: 68px; height: 68px; border-radius: 50%; object-fit: cover; }

.nav-actions { display: inline-flex; align-items: center; gap: 10px; }
.nav-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--terracotta);
  background: var(--terracotta);
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-btn:hover { background: var(--terracotta-deep); border-color: var(--terracotta-deep); }
.nav-btn-ghost { background: transparent; color: var(--terracotta-deep); }
.nav-btn-ghost:hover { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); }
@media (max-width: 520px) {
  .brand-logo { width: 58px; height: 58px; }
  .nav-actions { gap: 6px; }
  .nav-btn { padding: 8px 12px; font-size: 13px; }
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta-deep);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-soft); flex-shrink: 0; }
.status-pill[data-state="open"] { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); }
.status-pill[data-state="open"] .status-dot { background: var(--open-green); box-shadow: 0 0 0 3px rgba(111,155,90,0.25); }
.status-pill[data-state="closed"] .status-dot { background: #b0483a; }

/* ---------- Hero — modeled on their own Facebook cover: full terracotta band, ---------- */
/* ---------- the roundel badge front and center, wordmark stacked below it.   ---------- */

.hero-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--cream);
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding: 22px 0 22px;
  background: var(--terracotta);
  background-image: radial-gradient(circle at 12% 15%, rgba(255,255,255,0.13), transparent 46%),
                    radial-gradient(circle at 92% 90%, rgba(120,30,8,0.16), transparent 52%);
}
/* their own windmill emblem, tone on tone, half-drop repeat */
.hero-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url('../assets/img/emblem-cream.png') 0 0 / 118px auto repeat,
              url('../assets/img/emblem-cream.png') 59px 56px / 118px auto repeat;
}
.hero-band .hero-grid { width: 100%; max-width: 1380px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.hero-copy { text-align: center; }

.hero-logo {
  position: relative;
  width: 100%;
  max-width: clamp(220px, calc((100vh - 420px) * 0.84), 385px);
  aspect-ratio: 710 / 1050;
  margin: 0 auto;
}
.hero-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
  user-select: none;
}
.logo-blades {
  transform-origin: 48.94% 28.14%;
  animation: windmill-spin 28s linear infinite;
}
@keyframes windmill-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .logo-blades { animation: none; } }

.hero-tagline {
  max-width: 54ch;
  margin: 20px auto 0;
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.5;
  color: var(--cream);
}

.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.hero-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 34px;
  border-radius: 999px;
  border: 2px solid var(--teal);
  background: var(--teal);
  color: var(--cream);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.hero-btn { box-shadow: 0 10px 22px rgba(23, 81, 90, 0.35); }
.hero-btn:hover { transform: translateY(-2px); background: #1d6470; border-color: #1d6470; }
.hero-btn-ghost { background: transparent; border-color: var(--cream); color: var(--cream); box-shadow: none; }
.hero-btn-ghost:hover { background: var(--cream); border-color: var(--cream); color: var(--terracotta-deep); }

.hero-photos {
  position: relative;
  justify-self: center;
  width: min(100%, 540px, calc((100vh - 240px) * 0.75));
}
.hero-photo {
  position: relative;
  z-index: 2;
  margin: 0;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(40, 16, 6, 0.4);
}
.hero-photo > img { display: block; width: 100%; height: auto; }

.hero-arch {
  position: absolute;
  z-index: 0;
  inset: -34px;
  background: var(--cream);
  border-radius: 58px;
  box-shadow: 0 28px 60px rgba(120, 30, 8, 0.26);
}


@media (max-width: 760px) {
  .hero-band { padding: 40px 0 48px; min-height: 0; display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-logo { max-width: 250px; }
  .hero-photos { width: min(100%, 280px); }
  .hero-arch { inset: -18px; border-radius: 40px; }
}

/* ---------- Our endless selection: minimal button + scrollable photo rail ---------- */

.oven { padding: 12px 0 84px; }
.oven-head { display: flex; align-items: center; justify-content: center; margin-bottom: 30px; }
.rail-frame { position: relative; }
.selection-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1.5px solid var(--teal);
  border-radius: 999px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.selection-btn svg { transition: transform 0.2s ease; }
.selection-btn:hover { background: var(--teal); color: var(--cream); }
.selection-btn:hover svg { transform: translateX(4px); }

.rail-arrows { display: contents; }
.rail-arrow {
  position: absolute;
  top: 118px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: rgba(253, 248, 241, 0.94);
  box-shadow: 0 6px 18px rgba(58, 44, 31, 0.16);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.rail-arrow[data-rail="-1"] { left: max(10px, calc((100vw - var(--max)) / 2 - 8px)); }
.rail-arrow[data-rail="1"] { right: max(10px, calc((100vw - var(--max)) / 2 - 8px)); }
.rail-arrow:hover { background: var(--teal); border-color: var(--teal); color: var(--cream); }

.rail {
  --gutter: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  display: flex;
  gap: 24px;
  padding: 6px var(--gutter) 22px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--gutter);
  scrollbar-width: thin;
  scrollbar-color: var(--terracotta) transparent;
  cursor: grab;
}
.rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 6px; border: 0; }
.rail::-webkit-scrollbar-track { background: transparent; }

.rail-item { flex: 0 0 auto; width: 270px; margin: 0; scroll-snap-align: start; }
.rail-photo { border-radius: 16px; overflow: hidden; aspect-ratio: 1 / 1; background: var(--tan); }
.rail-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
  user-select: none;
  -webkit-user-drag: none;
}
.rail-item:hover .rail-photo img { transform: scale(1.06); }
.rail-item figcaption { padding-top: 14px; }
.rail-item strong {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 3px;
}
.rail-item strong::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.35s ease;
}
.rail-item:hover strong::after { width: 100%; }
.rail-item span { display: block; margin-top: 6px; font-size: 14px; line-height: 1.5; color: var(--ink-soft); }

@media (max-width: 700px) {
  .oven { padding-bottom: 56px; }
  .rail-arrows { display: none; }
  .oven-head { justify-content: center; }
  .rail-item { width: 230px; }
}

/* ---------- Cabinet / menu categories ---------- */

.cabinet {
  padding: 72px 0;
}
.cabinet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.cabinet-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.cabinet-card:hover {
  transform: translateY(-4px);
  border-color: var(--terracotta);
  box-shadow: 0 14px 30px -18px rgba(161, 78, 38, 0.45);
}
.cabinet-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.cabinet-icon svg { width: 22px; height: 22px; stroke: var(--terracotta-deep); }
.cabinet-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
}
.cabinet-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ---------- Story ---------- */

.story {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--terracotta);
  background-image: radial-gradient(circle at 10% 10%, rgba(255,255,255,0.13), transparent 46%),
                    radial-gradient(circle at 92% 92%, rgba(120,30,8,0.16), transparent 52%);
  padding: 88px 0;
}
.story::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url('../assets/img/emblem-cream.png') 0 0 / 118px auto repeat,
              url('../assets/img/emblem-cream.png') 59px 56px / 118px auto repeat;
}
.story-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: center;
  margin-top: 8px;
}
.story h2 {
  font-family: "Pacifico", cursive;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--cream);
  margin: 0 0 20px;
  line-height: 1.15;
  text-shadow: 0 3px 18px rgba(90, 24, 6, 0.25);
}
.story p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(253, 248, 241, 0.96);
  max-width: 62ch;
  margin: 0 0 16px;
}
.story-figures {
  display: grid;
  gap: 16px;
}
.figure-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 26px 28px;
  border-bottom: 5px solid var(--teal);
  box-shadow: 0 22px 44px rgba(90, 24, 6, 0.28);
}
.figure-number {
  font-family: "Pacifico", cursive;
  font-size: 42px;
  color: var(--terracotta);
  line-height: 1;
}
.figure-label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ---------- Visit ---------- */

.visit { padding: 72px 0; }
.visit h2 {
  font-family: "Pacifico", cursive;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--terracotta-deep);
  margin: 8px 0 30px;
}
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.visit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 16px 34px rgba(58, 44, 31, 0.08);
}
.visit-card h3 {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 7px 0;
  border-top: 1px solid var(--line);
}
.hours-row:first-of-type { border-top: none; }
.hours-row .v { font-weight: 600; font-variant-numeric: tabular-nums; }

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--cream);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cta-button:hover { background: #1d6470; transform: translateY(-2px); }

.contact-line { display: block; font-size: 14px; margin: 5px 0; color: var(--ink-soft); }

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

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--teal);
  color: var(--cream);
  padding: 30px 0;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url('../assets/img/emblem-cream.png') 0 0 / 96px auto repeat,
              url('../assets/img/emblem-cream.png') 48px 46px / 96px auto repeat;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.site-footer a { text-decoration: none; opacity: 0.85; }
.site-footer a:hover { opacity: 1; color: #fff; text-decoration: underline; }
.footer-links { display: flex; gap: 18px; }

/* ---------- Motion ---------- */

[data-reveal] { opacity: 0; will-change: transform, opacity; }
[data-reveal="rise"] { transform: translateY(26px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .info-strip .wrap { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
  .info-cell:nth-child(2) { border-right: none; }
  .cabinet-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .hero-band { padding: 48px 0 40px; }
  .hero-badge { width: 130px; height: 130px; }
  .cabinet-grid { grid-template-columns: 1fr; }
  .info-strip .wrap { grid-template-columns: 1fr 1fr; }
  .site-footer .wrap { flex-direction: column; align-items: flex-start; }
}
