:root {
  --bg: #faf9f6;
  --surface: #ffffff;
  --surface-2: #f2f0ec;
  --fg: #1c1b1a;
  --muted: #6b6860;
  --border: #e5e2dc;
  --accent: #DAA520;
  --accent-light: #DAA520;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --radius: 2px;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.font-display { font-family: var(--font-display); }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 600; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.upper { text-transform: uppercase; letter-spacing: 0.08em; }
.accent { color: var(--accent); }
.muted { color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 32px; font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; border: 1.5px solid var(--accent);
  background: transparent; color: var(--accent); cursor: pointer;
  transition: all var(--transition); border-radius: var(--radius);
}
.btn:hover { background: var(--accent); color: #1c1b1a; transform: translateY(-2px); }
.btn-solid { background: var(--accent); color: #1c1b1a; }
.btn-solid:hover { background: var(--accent-light); border-color: var(--accent-light); }
.btn-lg { padding: 18px 40px; font-size: 13px; }

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 249, 246, 0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: background var(--transition);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { display: inline-flex; align-items: center; }
.logo-header-img { height: 64px; width: auto; display: block; }
.logo-footer-img { max-width: 320px; width: 100%; height: auto; display: block; margin-bottom: 16px; transform: scale(1.25); transform-origin: left center; }

.nav-desktop { display: none; align-items: center; gap: 36px; }
.nav-desktop a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); transition: color var(--transition); position: relative;
}
.nav-desktop a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width var(--transition); }
.nav-desktop a:hover { color: var(--accent); opacity: 0.7; }
.nav-desktop a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-actions .btn { padding: 10px 20px; font-size: 11px; }
.social-icon {
  width: 36px; height: 36px; display: grid; place-items: center;
  border: 1px solid var(--border); border-radius: 50%; color: var(--accent);
  transition: all var(--transition);
}
.social-icon:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.menu-toggle { display: grid; place-items: center; width: 40px; height: 40px; background: none; border: none; cursor: pointer; color: var(--accent); }
.mobile-nav {
  position: fixed; inset: 0; background: rgba(250, 249, 246, 0.98); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a { font-family: var(--font-display); font-size: 28px; color: var(--accent); transition: color var(--transition); }
.mobile-nav a:hover { color: var(--accent); opacity: 0.7; }
.mobile-nav .close-btn { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--accent); font-size: 32px; cursor: pointer; }

.page-hero {
  position: relative; min-height: 50vh; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: var(--surface);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, var(--bg) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 800px; padding: 120px 24px 60px; }
.page-hero h1 { font-size: clamp(36px, 6vw, 64px); font-weight: 700; margin-bottom: 16px; }
.page-hero p { font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 auto; }

.section { padding: 100px 0; position: relative; }
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 600; margin-bottom: 16px; }
.section-subtitle { font-size: 15px; color: var(--muted); max-width: 600px; margin-bottom: 60px; }

.footer {
  background: #f2f0ec; border-top: 1px solid var(--border); padding: 60px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 48px;
}
.footer-col h4 {
  font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 20px; color: var(--accent);
}
.footer-col a, .footer-col p { display: block; font-size: 14px; color: var(--accent); margin-bottom: 10px; transition: opacity var(--transition); }
.footer-col a:hover { opacity: 0.7; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center;
}
.footer-bottom p { font-size: 12px; color: var(--accent); }

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
@media (max-width: 767px) {
  .header-inner { height: 68px; }
  .page-hero-content { padding-top: 100px; }
  .section { padding: 64px 0; }
}

/* Accessibility */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--accent); color: var(--bg);
  padding: 8px 16px; font-size: 13px; font-weight: 600;
  z-index: 10000; transition: top 0.2s;
}
.skip-link:focus { top: 0; }
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.visible { transition: none !important; opacity: 1 !important; transform: none !important; }
  .room-img img, .service-card, .room-card, .btn, .social-icon, .nav-desktop a::after { transition: none !important; }
}
