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

:root {
  --accent: #7A1F2E;
  --accent-mid: #8F2D3D;
  --accent-light: #C4727F;
  --bg: #FAF8F5;
  --bg-2: #F2EDE6;
  --bg-3: #E9E2D8;
  --ink: #1A1614;
  --ink-2: #2A221F;
  --muted: #4A4039;
  --muted-light: #6B5F57;
  --border: rgba(122,31,46,0.15);
  --border-soft: rgba(26,22,20,0.10);
  --white: #FFFFFF;
  --footer-bg: #EDE6DC;
  --footer-muted: #4E463E;
  --footer-border: rgba(26,22,20,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--bg); color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* NAV */
nav { position: fixed; top: 0; width: 100%; z-index: 200; padding: 24px 60px; display: flex; align-items: center; justify-content: space-between; background: transparent; transition: all 0.4s; }
nav.scrolled { background: rgba(250,248,245,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 14px 60px; border-bottom: 1px solid var(--border-soft); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; letter-spacing: 5px; color: var(--accent); text-transform: uppercase; text-decoration: none; white-space: nowrap; }
.nav-logo span { color: var(--ink); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink-2); text-decoration: none; font-weight: 500; transition: color 0.3s; position: relative; white-space: nowrap; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--accent); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; inset: 0; background: rgba(250,248,245,0.99); z-index: 190; flex-direction: column; align-items: center; justify-content: center; gap: 36px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 400; color: var(--ink); text-decoration: none; letter-spacing: 2px; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--accent); }

/* BUTTONS */
.btn-primary { display: inline-block; padding: 14px 48px; border: 1px solid var(--accent); color: var(--accent); font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase; cursor: pointer; transition: all 0.4s; background: transparent; font-family: 'Jost', sans-serif; font-weight: 500; text-decoration: none; }
.btn-primary:hover { background: var(--accent); color: var(--white); }

/* SECTION COMMONS */
.section { padding: 108px 64px; }
.section-header { text-align: center; margin-bottom: 72px; }
.section-eyebrow { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--accent-mid); margin-bottom: 14px; display: block; font-weight: 500; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 58px); font-weight: 400; color: var(--ink); line-height: 1.2; }
.section-title em { font-style: italic; color: var(--accent); }
.section-desc { font-size: 15px; color: var(--muted); line-height: 2.0; max-width: 520px; margin: 18px auto 0; font-weight: 400; }

/* PAGE HERO */
.page-hero { position: relative; height: 52vh; min-height: 380px; display: flex; align-items: flex-end; padding: 56px 64px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(250,248,245,1) 0%, rgba(250,248,245,0.12) 100%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(44px, 7vw, 88px); font-weight: 400; color: var(--ink); line-height: 1.0; }
.page-hero-content h1 em { font-style: italic; color: var(--accent); }
.page-hero-content p { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 10px; font-weight: 500; }

/* FOOTER */
footer { background: var(--footer-bg); padding: 72px 64px 36px; border-top: 1px solid var(--footer-border); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 52px; }
.footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400; color: var(--accent); letter-spacing: 5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--footer-muted); line-height: 1.9; max-width: 260px; font-weight: 400; }
.footer-col h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-mid); margin-bottom: 20px; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13px; color: var(--footer-muted); text-decoration: none; transition: color 0.3s; font-weight: 400; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--footer-border); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--footer-muted); }
.footer-powered { font-size: 12px; color: var(--footer-muted); display: flex; align-items: center; gap: 6px; }
.footer-powered a { color: var(--accent-mid); text-decoration: none; transition: color 0.3s; }
.footer-powered a:hover { color: var(--accent); }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(250,248,245,0.97); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 88vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 24px; right: 32px; color: var(--accent); font-size: 28px; cursor: pointer; background: none; border: none; font-family: 'Playfair Display', serif; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  nav { padding: 18px 32px; }
  nav.scrolled { padding: 12px 32px; }
  .nav-links { gap: 22px; }
}
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 80px 32px; }
  footer { padding: 60px 32px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .page-hero { padding: 44px 32px; }
}
@media (max-width: 600px) {
  .section { padding: 60px 20px; }
  footer { padding: 52px 20px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .page-hero { padding: 36px 20px; min-height: 260px; }
}
@media (max-width: 420px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}
