:root {
  --ink: #151210;
  --muted: #6c615c;
  --paper: #fffdf9;
  --cream: #f8efe5;
  --blush: #fff3f5;
  --rose: #f7a8b6;
  --color-hot-pink: #ff1493;
  --color-hot-pink-dark: #e6007e;
  --color-hot-pink-soft: #ffe4f3;
  --coral: var(--color-hot-pink);
  --mint: #a6cdbb;
  --blue: #80a8c9;
  --yellow: #f4ca62;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --line: #eaded5;
  --shadow: 0 24px 70px rgba(38, 27, 20, 0.14);
  --soft-shadow: 0 16px 45px rgba(38, 27, 20, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 20, 147, 0.055) 0 1px, transparent 1px 100%),
    var(--paper);
  background-size: 92px 92px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 18px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.topbar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: 12px 0;
}

.brand img {
  width: 102px;
  height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: var(--ink);
}

.nav-cta.whatsapp-button,
.button.whatsapp-button,
.button.primary.whatsapp-button {
  gap: 9px;
  border-color: var(--whatsapp);
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.26);
  animation: whatsapp-breathe 2.8s ease-in-out infinite;
}

.nav-cta.whatsapp-button:hover,
.button.whatsapp-button:hover,
.button.primary.whatsapp-button:hover {
  border-color: var(--whatsapp-dark);
  background: var(--whatsapp-dark);
  box-shadow: 0 18px 42px rgba(18, 140, 126, 0.26);
  transform: translateY(-2px);
}

.button.primary.hero-whatsapp {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(38, 27, 20, 0.18);
  animation: none;
}

.button.primary.hero-whatsapp:hover {
  border-color: var(--whatsapp);
  background: var(--whatsapp);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.26);
}

.whatsapp-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background: currentColor;
  mask: url("assets/whatsapp-mark.svg") center / contain no-repeat;
  -webkit-mask: url("assets/whatsapp-mark.svg") center / contain no-repeat;
}

main {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 0 18px;
  animation: fade-up 720ms ease both;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(520px, 72svh, 760px);
  padding:
    clamp(42px, 7vw, 88px)
    max(18px, calc((100vw - 1220px) / 2 + clamp(30px, 5vw, 72px)));
  background:
    radial-gradient(circle at 14% 10%, rgba(244, 202, 98, 0.62), transparent 26%),
    var(--color-hot-pink);
  box-shadow: inset 0 0 0 1px rgba(21, 18, 16, 0.05);
  isolation: isolate;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -10% 10% 42%;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(2px);
  animation: float-soft 7s ease-in-out infinite;
  z-index: -1;
}

.hero-copy::after {
  content: "Maat 92 t/m 164";
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 950;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  font-size: clamp(17px, 1.9vw, 23px);
}

.hero-copy > * {
  max-width: 900px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(58px, 9vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-subtitle {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 950;
  line-height: 1.05;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.08;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.intro {
  color: rgba(21, 18, 16, 0.82);
  font-size: 20px;
  line-height: 1.72;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 8px;
}

.hero-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(21, 18, 16, 0.14);
  border-radius: 999px;
  color: rgba(21, 18, 16, 0.82);
  background: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 900;
  animation: tag-pop 680ms ease both;
}

.hero-tags span:nth-child(2) {
  animation-delay: 90ms;
}

.hero-tags span:nth-child(3) {
  animation-delay: 180ms;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 10px 0 54px;
}

.motion-strip {
  width: 100vw;
  margin: 0 0 26px calc(50% - 50vw);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.motion-strip div {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 18px;
  padding: 13px 0;
  animation: marquee 26s linear infinite;
}

.motion-strip span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.motion-strip span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-hot-pink);
}

.quick-links a {
  display: grid;
  gap: 8px;
  min-height: 124px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 34px rgba(38, 27, 20, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quick-links a:hover {
  border-color: var(--ink);
  box-shadow: var(--soft-shadow);
  transform: translateY(-3px);
}

.quick-links span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 950;
}

.quick-links strong {
  font-size: 21px;
}

.quick-links small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

.section,
.brand-section,
.about-section,
.video-section,
.visit-section,
.contact-section {
  padding: clamp(48px, 7vw, 86px) 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.3fr) minmax(0, 0.74fr) minmax(260px, 0.44fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head p {
  margin-bottom: 18px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.collection-grid article {
  position: relative;
  display: grid;
  min-height: 510px;
  overflow: hidden;
  background: var(--cream);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.collection-grid article:hover {
  box-shadow: var(--soft-shadow);
  transform: translateY(-4px);
}

.collection-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.collection-grid article:hover img {
  transform: scale(1.04);
}

.collection-grid article::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(21, 18, 16, 0.82));
}

.collection-grid div {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 24px;
  color: #fff;
}

.collection-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--color-hot-pink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.collection-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.brand-section {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(440px, 0.86fr);
  gap: 44px;
  align-items: center;
  padding-right: clamp(0px, 2vw, 24px);
  padding-left: clamp(0px, 2vw, 24px);
  background:
    linear-gradient(135deg, var(--color-hot-pink-soft), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(255, 20, 147, 0.22);
  box-shadow: 0 14px 40px rgba(255, 20, 147, 0.08);
}

.brand-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.brand-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 20px 22px;
  border: 1px solid rgba(230, 0, 126, 0.22);
  border-radius: 8px;
  color: #fff;
  background: var(--color-hot-pink);
  box-shadow: 0 14px 34px rgba(255, 20, 147, 0.18);
  overflow: hidden;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.brand-tile:hover {
  background: var(--color-hot-pink-dark);
  box-shadow: 0 18px 38px rgba(230, 0, 126, 0.24);
  transform: translateY(-2px);
}

.brand-tile img {
  width: min(100%, 210px);
  max-height: 64px;
  object-fit: contain;
}

.brand-tile-text {
  display: grid;
  gap: 4px;
  align-content: center;
}

.brand-tile-text strong {
  color: #fff;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 950;
}

.brand-tile-text span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.visit-copy {
  padding: clamp(28px, 4.6vw, 56px);
  background: #fce7f3;
}

.about-section,
.visit-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 0.62fr);
  gap: 42px;
  align-items: center;
}

.about-section img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 420ms ease, box-shadow 420ms ease;
}

.about-section img:hover {
  box-shadow: 0 28px 78px rgba(38, 27, 20, 0.18);
  transform: translateY(-4px) scale(1.01);
}

.video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(420px, 0.86fr);
  gap: 42px;
  align-items: center;
}

.featured-video {
  margin-top: 10px;
  padding-right: clamp(0px, 2vw, 24px);
  padding-left: clamp(0px, 2vw, 24px);
  background: linear-gradient(135deg, #fff, var(--color-hot-pink-soft));
  border: 1px solid rgba(255, 20, 147, 0.18);
  animation: fade-up 720ms ease 160ms both;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.video-frame:hover {
  box-shadow: 0 28px 78px rgba(38, 27, 20, 0.2);
  transform: translateY(-4px);
}

.video-link {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 0;
  border: 0;
  color: #fff;
  background: var(--ink);
  cursor: pointer;
}

.video-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 180ms ease, opacity 180ms ease;
}

.video-link:hover img {
  opacity: 0.66;
  transform: scale(1.03);
}

.play-button {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--color-hot-pink);
  box-shadow: 0 16px 34px rgba(21, 18, 16, 0.28);
  animation: pulse-play 2.4s ease-in-out infinite;
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid #fff;
}

.video-link strong {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: #fff;
  font-size: clamp(18px, 2.5vw, 28px);
  text-align: center;
  text-shadow: 0 2px 18px rgba(21, 18, 16, 0.55);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hours {
  margin: 0;
  padding: 8px 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.hours div:last-child {
  border-bottom: 0;
}

.hours dt {
  font-weight: 950;
}

.hours dd {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-cards a {
  display: grid;
  gap: 5px;
  padding: 24px;
  border: 1px solid rgba(230, 0, 126, 0.2);
  border-radius: 8px;
  color: #fff;
  background: var(--color-hot-pink);
  box-shadow: 0 14px 34px rgba(255, 20, 147, 0.17);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-cards .whatsapp-card {
  border-color: rgba(230, 0, 126, 0.2);
  background: var(--color-hot-pink);
  box-shadow: 0 14px 34px rgba(255, 20, 147, 0.17);
}

.contact-cards .whatsapp-card:active,
.contact-cards .whatsapp-card:focus-visible {
  border-color: var(--whatsapp-dark);
  background: var(--whatsapp);
  box-shadow: 0 18px 40px rgba(18, 140, 126, 0.24);
}

.contact-cards .whatsapp-card strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.contact-cards a:hover {
  border-color: var(--color-hot-pink-dark);
  background: var(--color-hot-pink-dark);
  box-shadow: 0 18px 40px rgba(230, 0, 126, 0.24);
  transform: translateY(-2px);
}

.section,
.brand-section,
.about-section,
.visit-section,
.contact-section {
  animation: fade-up 720ms ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slow-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.055);
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-16px, -18px, 0) scale(1.04);
  }
}

@keyframes pulse-play {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes whatsapp-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-1px) scale(1.025);
  }
}

@keyframes tag-pop {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.contact-cards span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-cards strong {
  color: #fff;
  font-size: clamp(20px, 3vw, 30px);
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 30px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

footer img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

@media (max-width: 1040px) {
  .topbar {
    display: none;
  }

  .nav {
    grid-template-columns: auto 1fr;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    justify-content: end;
    overflow-x: auto;
  }

  .section-head,
  .brand-section,
  .about-section,
  .video-section,
  .visit-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
  }

  .quick-links,
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  main,
  .nav {
    width: min(100% - 24px, 1220px);
  }

  .brand img {
    width: 84px;
    height: 48px;
  }

  .nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav-links {
    justify-content: start;
    gap: 16px;
    padding-bottom: 5px;
    font-size: 14px;
  }

  .hero {
    padding-bottom: 20px;
  }

  .hero-copy,
  .visit-copy {
    padding: 24px;
  }

  .hero-copy::after {
    position: static;
    align-self: flex-start;
    margin-top: 16px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  .quick-links,
  .collection-grid,
  .brand-wall {
    grid-template-columns: 1fr;
  }

  .collection-grid article {
    min-height: 330px;
  }

  .button {
    width: 100%;
  }

  .whatsapp-button {
    animation-duration: 3.4s;
  }

  .motion-strip div {
    animation-duration: 18s;
  }

  .hours {
    padding: 4px 16px;
  }

  .hours div {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
