@import url("https://fonts.googleapis.com/css2?family=Gloock&family=JetBrains+Mono:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #f4f4f6;
  --ink: #18181b;
  --muted: #7a7a85;
  --accent: #dadbe1;
  --accent-dark: #a8a9b3;
  --card: #ffffff;
  --shadow: 0 16px 36px rgba(24, 24, 27, 0.08);
  --grid-line: rgba(24, 24, 27, 0.08);
  --radius: 20px;
  --font-h1: "Gloock", "Times New Roman", serif;
  --font-heading: "Gloock", "Times New Roman", serif;
  --font-display: "Satoshi", "Mulish", "SF Pro Display", "Helvetica Neue", "Arial", sans-serif;
  --font-body: "Plus Jakarta Sans", "Satoshi", "Mulish", "SF Pro Text", "Helvetica Neue", "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, #f2f2f4 0%, #f7f7f9 100%);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: repeating-linear-gradient(
    90deg,
    var(--grid-line) 0,
    var(--grid-line) 1px,
    transparent 1px,
    transparent 25%
  );
  background-size: auto;
  background-position: 0 0;
}



h1 {
  font-family: var(--font-h1);
  letter-spacing: 0.07em;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.07em;
}

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

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

.page {
  width: min(1150px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(244, 244, 246, 0.85);
  border-bottom: 1px solid rgba(24, 24, 27, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}

.brand-logo {
  display: block;
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.nav-toggle {
  display: none;
  border: 1px solid rgba(60, 40, 30, 0.2);
  background: var(--card);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  filter: blur(0px);
  opacity: 0.9;
  pointer-events: none;
}

.shape-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #f3d8a6 0%, rgba(243, 216, 166, 0) 70%);
  top: -60px;
  right: -40px;
}

.shape-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(214, 106, 94, 0.5) 0%, rgba(214, 106, 94, 0) 70%);
  bottom: -100px;
  left: -80px;
}

.shape-3 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(95, 120, 123, 0.4) 0%, rgba(95, 120, 123, 0) 70%);
  top: 40%;
  left: 70%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 80px 0 40px;
  align-items: start;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--grid-line);
}

.hero-copy h1 {
  font-family: var(--font-h1);
  font-size: clamp(2.7rem, 3.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 700;
  font-family: "JetBrains Mono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", monospace;
  margin: 0 0 12px;
}

.lead {
  font-family: "Plus Jakarta Sans", "Satoshi", "Mulish", "SF Pro Text", "Helvetica Neue", "Arial", sans-serif;
  font-size: 1.5rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 24px 0 32px;
  justify-content: center;
}

.hero-highlights {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hero-highlights h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-family: "JetBrains Mono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", monospace;
  border: none;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.btn-ghost {
  background: var(--ink);
  color: #fff;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(40, 30, 20, 0.18);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(46, 39, 33, 0.06);
}

.btn-small {
  padding: 6px 12px;
  font-size: 0.85rem;
}

.hero-chat {
  display: grid;
  gap: 20px;
  align-content: start;
  align-self: start;
}

.chat-card,
.media-panel,
.feature-card,
.project-card,
.case-card,
.contact-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: none;
  padding: 24px;
  border: 1px solid rgba(60, 40, 30, 0.15);
}

.chat-card,
.media-panel,
.media-card,
.feature-card,
.feature-card-wide,
.project-card,
.case-card,
.contact-card,
.video-card,
.locked-card,
.booking-card,
.booking-slots {
  position: relative;
  transition: transform 600ms ease;
  will-change: transform;
}

.chat-card:hover,
.media-panel:hover,
.media-card:hover,
.feature-card:hover,
.feature-card-wide:hover,
.project-card:hover,
.case-card:hover,
.contact-card:hover,
.video-card:hover,
.locked-card:hover,
.booking-card:hover,
.booking-slots:hover {
  transform: translateY(-6px) scale(1.01);
}

.chat-card::before,
.media-panel::before,
.media-card::before,
.feature-card::before,
.feature-card-wide::before,
.project-card::before,
.case-card::before,
.contact-card::before,
.video-card::before,
.locked-card::before,
.booking-card::before,
.booking-slots::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 24px 50px rgba(40, 30, 20, 0.18);
  opacity: 0;
  transition: opacity 900ms ease 200ms;
  z-index: -1;
}

.chat-card:hover::before,
.media-panel:hover::before,
.media-card:hover::before,
.feature-card:hover::before,
.feature-card-wide:hover::before,
.project-card:hover::before,
.case-card:hover::before,
.contact-card:hover::before,
.video-card:hover::before,
.locked-card:hover::before,
.booking-card:hover::before,
.booking-slots:hover::before {
  opacity: 1;
}

.project-card .media-frame img,
.video-card .video-frame iframe,
.project-card img.project-thumb {
  transition: transform 300ms ease;
}

.project-card:hover .media-frame img,
.video-card:hover .video-frame iframe,
.project-card:hover img.project-thumb {
  transform: scale(1.02);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.chat-title {
  margin: 0;
  font-weight: 700;
}

.chat-subtitle {
  margin: 2px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.chat-status {
  font-size: 0.8rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.chat-messages {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 12px;
  max-height: 260px;
  overflow-y: auto;
}

.message {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.95rem;
  white-space: pre-line;
}

.message.bot {
  background: #ededf2;
}

.message.user {
  background: #d9dbe2;
  color: #18181b;
  margin-left: auto;
}

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

.chat-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.chat-chips button {
  border: none;
  background: #ededf2;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
}

.chat-form {
  display: flex;
  gap: 10px;
}

.chat-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(60, 40, 30, 0.15);
}

.media-panel {
  display: grid;
  gap: 16px;
}

.media-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.media-card {
  border-radius: 16px;
  padding: 12px;
  min-height: 110px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.2));
}

.media-card .media-label {
  position: relative;
  z-index: 1;
}

.media-image {
  background: linear-gradient(140deg, #5a4f45, #9d7b68);
}

.media-gif {
  background: linear-gradient(140deg, #3f6c73, #8ab3b8);
  animation: shimmer 4s linear infinite;
}

.media-video {
  background: linear-gradient(140deg, #d66a5e, #e9b44c);
}

.media-video::before {
  content: "?";
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.1rem;
  z-index: 1;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}


@keyframes card-fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.section {
  padding: 60px 0;
  border-top: 1px solid var(--grid-line);
}

.section-title h2 {
  font-family: var(--font-heading);
  margin: 0 0 12px;
}

.feature-grid,
.projects-grid,
.stats {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}



.skills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.skills-row span {
  background: #ededf2;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
}

.logo-marquee {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 18px;
  padding: 8px 0;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 28px;
  align-items: center;
  width: max-content;
  animation: marquee 18s linear infinite;
  padding: 0 18px;
}

.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--muted);
}

.logo-item svg {
  width: 100%;
  height: 100%;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 1;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f6f0e8 0%, rgba(246, 240, 232, 0) 100%);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f6f0e8 0%, rgba(246, 240, 232, 0) 100%);
}

.video-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.video-grid-wide {
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
}



.video-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: none;
  border: 1px solid rgba(60, 40, 30, 0.15);
  padding: 18px;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  margin-bottom: 14px;
}

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

.media-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  background: #efe2d4;
  margin-bottom: 14px;
}

.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-thumb {
  width: 100%;
  height: 210px;
  border-radius: 16px;
  background: linear-gradient(120deg, #f4e7d2, #e9b44c);
  display: block;
  object-fit: cover;
  margin-bottom: 16px;
}

.card-body {
  display: grid;
  gap: 10px;
}

p {
  font-size: 1.2rem;
}

.card-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin: 0;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.contact {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 10px;
}

.site-footer {
  border-top: 1px solid rgba(60, 40, 30, 0.08);
  padding: 30px 0 40px;
  margin-top: 40px;
  font-family: "JetBrains Mono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", monospace;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.page-hero {
  padding: 70px 0 20px;
  border-top: 1px solid var(--grid-line);
}

.case-cover {
  position: relative;
  width: 100%;
  margin: 20px 0 0;
  border-radius: 0;
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.case-cover img {
  width: 100%;
  height: clamp(260px, 40vw, 460px);
  object-fit: cover;
  display: block;
}

.case-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20, 18, 16, 0.65), rgba(20, 18, 16, 0.2));
}

.case-cover-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 32px;
  color: #fff;
  z-index: 1;
}

.case-cover-content h1 {
  margin: 0 0 8px;
  font-family: var(--font-h1);
  font-size: clamp(2rem, 3vw, 3rem);
}

.case-cover-content p {
  font-size: 1rem;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.case-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.case-card {
  border-left: 4px solid var(--accent);
}

.two-col {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.visual-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.visual-media img {
  width: 100%;
  border-radius: 0;
  display: block;
  box-shadow: none;
  height: 320px;
  object-fit: cover;
}

.visual-text h2 {
  margin-top: 0;
  font-family: var(--font-heading);
}

.visual-band {
  background: transparent;
  border-top: none;
  border-bottom: none;
}

.feature-visual-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}







.feature-card-wide {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  border-radius: 24px;
  border: 1px solid rgba(60, 40, 30, 0.12);
  padding: 22px;
}

.feature-media img {
  width: 100%;
  border-radius: 18px;
  display: block;
  height: 320px;
  object-fit: cover;
}

.feature-media video {
  width: 100%;
  border-radius: 18px;
  display: block;
  height: 320px;
  object-fit: cover;
}

.feature-text h3 {
  margin-top: 0;
}

.feature-visual.compact img {
  border-radius: 0;
  height: 240px;
}

.stat-strip {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 20px 0 24px;
}

.stat-strip div {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.quote-block {
  margin-top: 24px;
  padding: 22px 26px;
  border-radius: 0;
  background: transparent;
  border-left: 4px solid var(--accent-dark);
}

.quote-block span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.details-panel {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.next-project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.callout {
  background: #ededf2;
  padding: 16px;
  border-radius: 16px;
  border-left: 4px solid var(--accent-dark);
}

.list {
  padding-left: 18px;
  margin: 16px 0 0;
}

.color-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.color-row span {
  height: 40px;
  border-radius: 12px;
}

.video-placeholder {
  border-radius: 24px;
  border: 2px dashed rgba(60, 40, 30, 0.2);
  padding: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tag-row span {
  background: #ededf2;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
}

.locked-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: none;
  border: 1px solid rgba(60, 40, 30, 0.15);
  padding: 32px;
  text-align: center;
}

.locked-card h2 {
  margin-top: 0;
  font-family: var(--font-heading);
}

.projects-grid > *,
.feature-grid > *,
.stats > *,
.video-grid > * {
  animation-delay: 80ms;
}

.projects-grid > *:nth-child(2),
.feature-grid > *:nth-child(2),
.stats > *:nth-child(2),
.video-grid > *:nth-child(2) {
  animation-delay: 140ms;
}

.projects-grid > *:nth-child(3),
.feature-grid > *:nth-child(3),
.stats > *:nth-child(3),
.video-grid > *:nth-child(3) {
  animation-delay: 200ms;
}

.projects-grid > *:nth-child(4),
.video-grid > *:nth-child(4) {
  animation-delay: 260ms;
}

.projects-grid > *:nth-child(5),
.video-grid > *:nth-child(5) {
  animation-delay: 320ms;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1200ms cubic-bezier(0.22, 1, 0.36, 1), transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .chat-card,
  .media-panel,
  .feature-card,
  .project-card,
  .case-card,
  .contact-card,
  .video-card,
  .locked-card {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .video-grid,
  .video-grid-wide,
  .feature-grid,
  .projects-grid,
  .stats,
  .case-meta,
  .case-grid,
  .two-col,
  .visual-grid,
  .feature-visual-grid,
  .stat-strip,
  .color-row {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 700px) {
  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .chat-form {
    flex-direction: column;
  }

  .video-grid,
  .video-grid-wide {
    grid-template-columns: 1fr;
  }
}






.booking {
  display: grid;
  gap: 24px;
}

.booking-embed {
  background: transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
}

.booking-embed .calendly-inline-widget {
  min-width: 320px;
  height: 720px;
}

.booking {
  display: grid;
  gap: 24px;
}

.booking-panel {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.booking-card,
.booking-slots {
  border: 1px solid rgba(60, 40, 30, 0.15);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--card);
}

.booking-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.booking-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(60, 40, 30, 0.12);
}

.booking-name {
  margin: 0;
  font-weight: 700;
}

.booking-title {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-note {
  margin: 0 0 16px;
  color: var(--muted);
}

.booking-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-meta i {
  margin-right: 8px;
}

.booking-slots-header {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
}

.booking-slots-title {
  margin: 0;
  font-weight: 700;
}

.booking-slots-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.slot-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(60, 40, 30, 0.18);
  font-weight: 600;
  color: var(--ink);
  background: rgba(246, 240, 232, 0.4);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.slot:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(40, 30, 20, 0.12);
  background: rgba(246, 240, 232, 0.75);
}

@media (max-width: 900px) {
  .booking-panel {
    grid-template-columns: 1fr;
  }
}
