/* Restaurantul Pescăruș Brașov — pagină „În lucru” */

:root {
  --green-950: oklch(0.18 0.025 150);
  --gold: oklch(0.82 0.085 85);
  --gold-soft: oklch(0.86 0.06 88);
  --cream: oklch(0.96 0.012 90);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Jost", sans-serif;
  color: var(--cream);
  background: var(--green-950);
  min-height: 100vh;
}

.page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 6vw, 72px);
}
.bg {
  position: absolute; inset: 0;
  background-image: url("assets/lake.jpg");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.04);
}
/* Tratamentul cinematic al fundalului (din varianta 1) */
.scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 38%, transparent 0%, rgba(18,26,20,0.38) 70%, rgba(14,20,16,0.82) 100%),
    linear-gradient(180deg, rgba(16,24,18,0.60) 0%, rgba(16,24,18,0.22) 40%, rgba(13,19,15,0.86) 100%);
}

.card {
  position: relative;
  width: min(720px, 100%);
  padding: clamp(38px, 5.4vw, 64px) clamp(28px, 5vw, 72px);
  background: oklch(0.20 0.022 150 / 0.50);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  border: 1px solid oklch(0.9 0.02 90 / 0.16);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  animation: fade 1s ease both .08s;
}
.logo {
  display: block;
  width: clamp(230px, 42vw, 360px);
  height: auto;
  margin-bottom: clamp(22px, 3.4vw, 30px);
}
.eyebrow {
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.4vw, 14px);
  color: var(--gold);
  margin: 0 0 16px;
  white-space: nowrap;
}
.headline {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(34px, 5.6vw, 56px);
  line-height: 1.07;
  margin: 0 0 14px;
  text-wrap: balance;
}
.sub {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(19px, 2.5vw, 23px);
  line-height: 1.5;
  max-width: 480px;
  margin: 0;
  color: oklch(0.94 0.01 90 / 0.92);
  text-wrap: pretty;
}
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2px, 1vw, 14px) clamp(28px, 5vw, 48px);
  margin: clamp(30px, 4.4vw, 40px) 0 0;
  width: 100%; max-width: 480px;
}
.feat {
  display: flex; align-items: center; gap: 13px;
  font-weight: 300; font-size: clamp(14px, 1.8vw, 16px);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: oklch(0.95 0.01 90 / 0.95);
  padding: clamp(9px, 1.4vw, 11px) 0;
  border-bottom: 1px solid oklch(0.9 0.02 90 / 0.14);
  text-align: left;
}
.feat .mk { width: 7px; height: 7px; transform: rotate(45deg); background: var(--gold); flex: none; }
@media (max-width: 480px) { .features { grid-template-columns: 1fr; } }

.ddiv {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin: clamp(28px, 4vw, 36px) 0 clamp(20px, 3vw, 24px);
}
.ddiv .ln { height: 1px; width: clamp(44px, 7vw, 64px); background: var(--gold-soft); opacity: 0.7; }
.ddiv .dot { width: 6px; height: 6px; transform: rotate(45deg); background: var(--gold); }

.contact-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px 28px;
  font-weight: 300;
  letter-spacing: 0.16em; text-transform: uppercase;
  font-size: clamp(11px, 1.3vw, 13px);
  color: oklch(0.95 0.01 90 / 0.92);
}
.contact-row a { color: inherit; text-decoration: none; }
.contact-row .sep { width: 5px; height: 5px; transform: rotate(45deg); background: var(--gold); opacity: 0.85; }
@media (max-width: 480px) { .contact-row .sep { display: none; } }

@keyframes fade { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }
