﻿* { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { margin: 0; background: #F7F4EE; color: #20302B; font-family: 'Hanken Grotesk', sans-serif; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
  ::selection { background: #A98B5D; color: #fff; }
  a { color: inherit; text-decoration: none; }
  @keyframes flDrift { from { transform: translateY(0); } to { transform: translateY(-10px); } }
img { max-width: 100%; height: auto; }

.mdc-image-slot {
  overflow: hidden;
  background: #E8E2D6;
  border: 1px solid rgba(32, 48, 43, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}

.mdc-image-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mdc-image-slot__placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
  font-family: 'Marcellus', serif;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.25;
  color: #25463E;
  background:
    linear-gradient(135deg, rgba(247,244,238,0.86), rgba(216,203,174,0.58)),
    radial-gradient(circle at 26% 20%, rgba(169,139,87,0.20), transparent 34%),
    linear-gradient(160deg, #EEF0EA, #D8CBAE);
}

@media (max-width: 760px) {
  nav {
    gap: 12px !important;
  }

  header nav a:not(:last-child) {
    display: none !important;
  }
}