/* Hugo's Paella — under construction site */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #fffdfb;
  --bg-soft: #faf6f1;
  --text: #2b2622;
  --text-soft: #6b6259;
  --accent: #c8532b;
  --accent-dark: #a5401e;
  --olive: #6b7a4f;
  --line: #ece5dd;
  --radius: 16px;
  --shadow: 0 14px 34px rgba(43, 38, 34, 0.10);
  --shadow-sm: 0 4px 14px rgba(43, 38, 34, 0.08);
  --max: 1140px;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

a { color: var(--accent-dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 251, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: var(--text);
  text-decoration: none;
}

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

.brand span {
  color: var(--accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: #fbe9e0;
  border: 1px solid #f2cdb9;
  padding: 7px 14px;
  border-radius: 999px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
}

.lang-switch a {
  color: var(--text-soft);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 6px;
}

.lang-switch a.active {
  color: var(--accent-dark);
  background: #fbe9e0;
}

.lang-switch a:not(.active):hover {
  color: var(--text);
}

.lang-switch .sep {
  color: var(--line);
}

@media (max-width: 560px) {
  .badge { display: none; }
}

.badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* Intro / Hero text */
.intro {
  padding: 88px 0 56px;
  text-align: center;
}

.intro h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.intro .subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  margin: 0 0 32px;
}

.intro p {
  max-width: 620px;
  margin: 0 auto 14px;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.intro .teaser {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: 1.08rem;
}

.stay-tuned {
  display: inline-block;
  margin-top: 34px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--olive);
  position: relative;
  padding-bottom: 6px;
}

.stay-tuned::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  transform: translateX(-50%);
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Hero gallery */
.hero-gallery {
  padding: 0 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-areas: "video photo1" "video photo2";
  gap: 18px;
}

.hero-grid .media-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}

.hero-grid .video-cell { grid-area: video; }
.hero-grid .photo1-cell { grid-area: photo1; }
.hero-grid .photo2-cell { grid-area: photo2; }

.hero-grid .video-cell video,
.hero-grid .media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.hero-grid .video-cell video {
  aspect-ratio: auto;
}

@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "video" "photo1" "photo2";
  }
  .hero-grid .media-box img,
  .hero-grid .video-cell video {
    aspect-ratio: 4 / 3;
  }
}

/* Section heading shared */
.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-heading .kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--olive);
  margin-bottom: 12px;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin: 0 0 16px;
}

.section-heading p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.recipe-intro {
  padding: 40px 0 20px;
  border-top: 1px solid var(--line);
}

/* Steps */
.steps {
  padding: 20px 0 100px;
  display: flex;
  flex-direction: column;
  gap: 84px;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.step:nth-child(even) .step-media { order: 2; }
.step:nth-child(even) .step-content { order: 1; }

.step-number {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0 0 14px;
}

.step-content p {
  color: var(--text-soft);
  margin: 0 0 12px;
}

.step-content strong { color: var(--text); }

.step-media {
  display: grid;
  gap: 10px;
}

.step-media.count-1 { grid-template-columns: 1fr; }
.step-media.count-2 { grid-template-columns: 1fr 1fr; }
.step-media.count-3 { grid-template-columns: 1fr 1fr; }
.step-media.count-3 > :first-child { grid-column: 1 / -1; }

.step-media .media-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--bg-soft);
}

.step-media .media-item img,
.step-media .media-item video {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.step-media.tall .media-item img {
  aspect-ratio: 3 / 4;
}

@media (max-width: 860px) {
  .step {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .step:nth-child(even) .step-media,
  .step:nth-child(even) .step-content {
    order: initial;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
  text-align: center;
  background: var(--bg-soft);
}

.footer-logo {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  opacity: 0.85;
}

.site-footer .closing {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent-dark);
  margin: 0 0 18px;
}

.site-footer p {
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto 24px;
}

.site-footer .domains {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 6px;
}

.site-footer .fine {
  font-size: 0.82rem;
  color: #a39a90;
  margin-top: 28px;
}
