/* ============================================
   LAURA ORBAN — Stylesheet v2
   Creative with edge. Burgundy. Textured.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #f7f3ee;
  --warm-white: #fdfaf6;
  --charcoal: #1e1d1b;
  --slate: #5a5550;
  --accent: #7c2d3e;
  --accent-light: #b06070;
  --accent-pale: #f0e0e3;
  --gold: #c9a84c;
  --rule: #e0d9d0;
  --dark-bg: #1a1816;
  --texture-color: #ede7df;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* NAV */
nav {
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--warm-white);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 3rem;
  right: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  text-decoration: none;
}

.nav-logo::after {
  content: '.';
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-dark {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 45, 62, 0.25);
}

.btn-wine {
  background: var(--accent);
  color: var(--cream);
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  transition: all 0.25s;
}

.btn-wine:hover {
  background: #6a2535;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 45, 62, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.4);
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  transition: all 0.25s;
}

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

/* SECTION LABELS */
.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: block;
  position: relative;
  padding-left: 1.5rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.9rem;
  height: 1px;
  background: var(--accent);
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }

/* TEXTURED SECTIONS */
.textured {
  background-color: var(--texture-color);
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 4px,
      rgba(124, 45, 62, 0.03) 4px,
      rgba(124, 45, 62, 0.03) 8px
    );
}

.textured-dark {
  background-color: var(--dark-bg);
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 6px,
      rgba(255,255,255,0.015) 6px,
      rgba(255,255,255,0.015) 12px
    );
}

/* DIVIDER */
hr.divider {
  border: none;
  border-top: 1px solid var(--rule);
  max-width: 860px;
  margin: 0 auto;
}

.accent-rule {
  width: 3rem;
  height: 2px;
  background: var(--accent);
  margin-bottom: 2rem;
}

/* FOOTER */
footer {
  background: var(--dark-bg);
  padding: 3rem 3rem 2rem;
  color: #6b6860;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: 'LO';
  position: absolute;
  right: 2rem;
  bottom: -1rem;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(124, 45, 62, 0.08);
  line-height: 1;
  pointer-events: none;
}

.footer-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid #2a2825;
  margin-bottom: 1.5rem;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.footer-name::after {
  content: '.';
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.8rem;
  font-weight: 300;
  color: #6b6860;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6860;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--accent-light); }

.footer-copy {
  max-width: 860px;
  margin: 0 auto;
  font-size: 0.75rem;
  color: #3a3835;
}

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

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }

/* RESPONSIVE */
@media (max-width: 680px) {
  nav { padding: 1rem 1.5rem; }
  nav::after { left: 1.5rem; right: 1.5rem; }
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.72rem; }
  footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-nav { flex-wrap: wrap; gap: 1rem; }
}
