/* Pedro Barn Hotel — Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=Lato:wght@300;400;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  --background: hsl(36, 56%, 92%);
  --foreground: hsl(23, 56%, 7%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(23, 56%, 7%);
  --primary: hsl(24, 46%, 16%);
  --primary-foreground: hsl(27, 55%, 79%);
  --secondary: hsl(27, 40%, 69%);
  --secondary-foreground: hsl(24, 46%, 16%);
  --muted: hsl(36, 30%, 88%);
  --muted-foreground: hsl(20, 20%, 40%);
  --accent: hsl(152, 47%, 55%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(27, 25%, 82%);
  --radius: 0.25rem;
  --barn-brown: hsl(20, 44%, 28%);
  --warm-white: hsl(27, 55%, 79%);
  --hotel-dark: hsl(23, 56%, 7%);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ===== Typography ===== */
.font-heading { font-family: 'Fraunces', serif; }
.font-body { font-family: 'Lato', sans-serif; }

/* ===== Layout ===== */
.container-hotel {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
}

.section-padding {
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .section-padding { padding: 6rem 3rem; }
}

@media (min-width: 1024px) {
  .section-padding { padding: 7rem 6rem; }
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-up { animation: fadeUp 0.8s ease-out forwards; }
.animate-fade-in { animation: fadeIn 1s ease-out forwards; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Navigation ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.5s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(var(--background-rgb, 244, 232, 212), 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .header-inner { padding: 0 3rem; }
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.logo-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-family: 'Lato', sans-serif;
  transition: color 0.3s;
}

.header-transparent .logo-name,
.header-transparent .logo-sub { color: var(--primary-foreground); }

.header-transparent .logo-sub { opacity: 0.7; }

.site-header.scrolled .logo-name { color: var(--primary); }
.site-header.scrolled .logo-sub { color: var(--muted-foreground); }

.main-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .main-nav { display: flex; }
}

.main-nav a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  transition: opacity 0.3s;
}

.main-nav a:hover { opacity: 0.7; }

.header-transparent .main-nav a { color: var(--primary-foreground); }
.site-header.scrolled .main-nav a { color: var(--foreground); }

.header-book {
  display: none;
}

@media (min-width: 1024px) {
  .header-book { display: block; }
}

/* ===== Buttons ===== */
.btn {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.75rem 2rem;
  display: inline-block;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover { background: var(--barn-brown); }

.btn-outline {
  border: 1px solid var(--primary-foreground);
  color: var(--primary-foreground);
}

.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-hero {
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  padding: 1rem 2.5rem;
}

.btn-hero:hover { background: var(--barn-brown); }

.btn-ghost-white {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--warm-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.75rem 2rem;
  display: inline-block;
  transition: all 0.3s;
}

.btn-ghost-white:hover { background: rgba(255,255,255,0.1); }

.link-underline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.link-underline:hover { opacity: 0.7; }

/* ===== Mobile Menu ===== */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: color 0.3s;
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.header-transparent .menu-toggle { color: var(--primary-foreground); }
.site-header.scrolled .menu-toggle { color: var(--foreground); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--primary);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.mobile-menu.open { display: flex; animation: fadeIn 0.3s ease; }

.mobile-menu a {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--primary-foreground);
  transition: opacity 0.3s;
}

.mobile-menu a:hover { opacity: 0.7; }

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--primary-foreground);
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 5rem 1.5rem 2rem;
}

@media (min-width: 1024px) {
  .site-footer { padding: 5rem 3rem 2rem; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-logo-name {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
}

.footer-contact a {
  font-size: 0.875rem;
  opacity: 0.7;
  font-family: 'Lato', sans-serif;
  display: block;
  margin-bottom: 0.25rem;
  transition: opacity 0.3s;
}

.footer-contact a:hover { opacity: 1; }

.footer-heading {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-links a {
  font-size: 0.875rem;
  opacity: 0.7;
  font-family: 'Lato', sans-serif;
  transition: opacity 0.3s;
}

.footer-links a:hover { opacity: 1; }

.footer-badges {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-badge {
  font-size: 0.75rem;
  opacity: 0.5;
  font-family: 'Lato', sans-serif;
}

.footer-bottom {
  max-width: 80rem;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.5;
  font-family: 'Lato', sans-serif;
}

.footer-map {
  font-size: 0.75rem;
  opacity: 0.5;
  font-family: 'Lato', sans-serif;
  transition: opacity 0.3s;
}

.footer-map:hover { opacity: 0.7; }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 10, 5, 0.5);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 48rem;
}

.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(229, 193, 148, 0.8);
  font-family: 'Lato', sans-serif;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: hsl(27, 55%, 79%);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-sub {
  font-family: 'Lato', sans-serif;
  color: rgba(229, 193, 148, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

/* ===== Promo Banner ===== */
.promo-banner {
  background: var(--accent);
  padding: 1rem 1.5rem;
  text-align: center;
}

.promo-banner a {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-foreground);
}

.promo-banner a:hover { text-decoration: underline; }

/* ===== Page Header ===== */
.page-hero {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 8rem 1.5rem 3rem;
}

@media (min-width: 1024px) {
  .page-hero { padding: 9rem 3rem 3rem; }
}

.page-hero-inner { max-width: 80rem; margin: 0 auto; }

.page-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.6;
  font-family: 'Lato', sans-serif;
  margin-bottom: 0.75rem;
}

.page-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
}

/* ===== Cards / Grid ===== */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
}

.card-simple {
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: box-shadow 0.3s;
}

.card-simple:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.card-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== Sections ===== */
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  font-family: 'Lato', sans-serif;
  margin-bottom: 1rem;
}

.section-label-light {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.6;
  font-family: 'Lato', sans-serif;
  margin-bottom: 1rem;
}

.section-label-accent {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-family: 'Lato', sans-serif;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-title-light {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-body {
  font-family: 'Lato', sans-serif;
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* ===== Image Sections ===== */
.image-text-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .image-text-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.aspect-45 { aspect-ratio: 4/5; overflow: hidden; }
.aspect-sq { aspect-ratio: 1/1; overflow: hidden; }
.aspect-169 { aspect-ratio: 16/9; overflow: hidden; }

.aspect-45 img,
.aspect-sq img,
.aspect-169 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.aspect-45 img:hover,
.aspect-sq img:hover,
.aspect-169 img:hover { transform: scale(1.05); }

/* ===== Image Hero Overlay ===== */
.img-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.img-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 10, 5, 0.6);
}

.img-hero-content {
  position: relative;
  z-index: 10;
  padding: 3rem 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .img-hero-content { padding: 5rem 3rem; }
}

/* ===== Accommodation Section ===== */
.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.bg-muted { background: var(--muted); }
.bg-card { background: var(--card); }
.bg-background { background: var(--background); }
.text-primary { color: var(--primary); }
.text-primary-fg { color: var(--primary-foreground); }
.text-secondary-fg { color: var(--secondary-foreground); }
.text-foreground { color: var(--foreground); }
.text-muted { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }
.text-warm-white { color: var(--warm-white); }

/* ===== Accommodation Cards ===== */
.room-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.room-card:hover img { transform: scale(1.03); }

.room-card-inner {
  overflow: hidden;
}

.room-card-body {
  padding: 1.5rem 0;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1.5rem;
}

.room-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.room-card-desc {
  font-size: 0.875rem;
  opacity: 0.7;
  font-family: 'Lato', sans-serif;
  margin-bottom: 1rem;
}

/* ===== Awards Bar ===== */
.awards-bar {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 1.5rem;
}

.awards-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
}

.award-item {
  max-width: 200px;
  font-family: 'Fraunces', serif;
  font-size: 0.875rem;
}

/* ===== Reviews ===== */
.review-card {
  border: 1px solid var(--border);
  padding: 2rem;
}

.review-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.review-author {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
}

.review-origin {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ===== Gallery Grid ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item { overflow: hidden; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item:first-child {
  aspect-ratio: 16/9;
}

@media (min-width: 768px) {
  .gallery-item:first-child {
    grid-column: span 2;
  }
}

.gallery-item:not(:first-child) {
  aspect-ratio: 1/1;
}

/* ===== Sustainability ===== */
.sustainability-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== Form ===== */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--foreground);
  font-family: 'Lato', sans-serif;
}

.form-input,
.form-textarea {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.75rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus { border-color: var(--primary); }

.form-textarea { resize: vertical; min-height: 150px; }

.form-success {
  display: none;
  background: var(--accent);
  color: white;
  padding: 1rem 1.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  text-align: center;
}

.form-success.show { display: block; }

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

.italic { font-style: italic; }
.font-bold { font-weight: 700; }

.flex-center-gap { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) {
  .flex-center-gap { flex-direction: row; }
}

.badge {
  display: inline-block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

/* ===== Policies ===== */
.policy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .policy-grid { grid-template-columns: repeat(2, 1fr); }
}

.policy-link {
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: block;
  transition: box-shadow 0.3s;
}

.policy-link:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.policy-link-title {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.policy-link-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== Payment Options ===== */
.payment-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.payment-item {
  font-family: 'Lato', sans-serif;
  font-size: 0.9375rem;
  color: var(--foreground);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .security-grid { grid-template-columns: repeat(4, 1fr); }
}

.security-item {
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
}

.security-title {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.security-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-family: 'Lato', sans-serif;
}

/* ===== Feature List ===== */
.feature-list { display: flex; flex-direction: column; gap: 0.5rem; }
.feature-item {
  font-family: 'Lato', sans-serif;
  font-size: 0.9375rem;
  color: var(--foreground);
}

/* ===== 404 ===== */
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 2rem;
}

.not-found-num {
  font-family: 'Fraunces', serif;
  font-size: 8rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
}

.not-found-title {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.not-found-desc {
  font-family: 'Lato', sans-serif;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* ===== Responsive helpers ===== */
.hidden-mobile { display: none; }
@media (min-width: 768px) {
  .hidden-mobile { display: block; }
}

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
