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

/* Base */
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
h3 { font-size: 1.15rem; }
p { margin-bottom: 1rem; max-width: 70ch; }

a { color: var(--color-primary); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

/* Layout */
.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.5rem 0; }
.section--alt { background-color: var(--color-surface); }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

.section-title--center { text-align: center; margin-bottom: 2.5rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}
.btn-primary { background-color: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover { background-color: #3a2258; border-color: #3a2258; text-decoration: none; }
.btn-secondary { background-color: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-secondary:hover { background-color: var(--color-primary); color: #fff; text-decoration: none; }
.btn-outline { background-color: transparent; color: var(--color-text); border-color: currentColor; }
.btn-outline:hover { background-color: var(--color-text); color: var(--color-bg); text-decoration: none; }
.btn-book { background-color: var(--color-accent); color: #fff; border-color: var(--color-accent); font-size: 0.875rem; padding: 0.6rem 1.25rem; }
.btn-book:hover { background-color: #c98820; border-color: #c98820; text-decoration: none; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; text-align: center; display: block; }

/* Site Header */
.site-header {
  background-color: var(--color-bg);
  border-bottom: 1px solid rgba(74,44,110,0.1);
  padding: 1.1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; flex-direction: column; text-decoration: none; gap: 0.1rem; }
.brand-name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--color-primary); line-height: 1.1; }
.brand-tag { font-size: 0.7rem; color: var(--color-text); opacity: 0.55; font-style: italic; }
.brand:hover { text-decoration: none; }

/* Navigation */
.site-nav .nav-menu { display: flex; gap: 1.75rem; list-style: none; }
.nav-link { color: var(--color-text); font-size: 0.875rem; font-weight: 500; opacity: 0.8; transition: opacity 0.2s, color 0.2s; }
.nav-link:hover { opacity: 1; color: var(--color-primary); text-decoration: none; }

/* Footer */
.site-footer { background-color: var(--color-text); color: rgba(255,255,255,0.85); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; }
.footer-name { font-family: var(--font-heading); font-size: 1.1rem; color: #fff; margin-bottom: 0.25rem; }
.footer-tag { font-size: 0.8rem; opacity: 0.6; font-style: italic; margin-bottom: 0.4rem; }
.footer-location { font-size: 0.8rem; opacity: 0.5; }
.footer-nav h3, .footer-contact h3 { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.75rem; font-family: var(--font-body); }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav a { color: rgba(255,255,255,0.75); font-size: 0.875rem; }
.footer-nav a:hover { color: #fff; text-decoration: none; }
.footer-contact a { color: rgba(255,255,255,0.75); font-size: 0.875rem; }
.footer-contact a:hover { color: #fff; text-decoration: none; }
.footer-contact p { margin-bottom: 0.4rem; }
.social-links { display: flex; gap: 1rem; list-style: none; margin-top: 0.75rem; }
.social-link { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.social-link:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; font-size: 0.78rem; opacity: 0.45; }
.footer-bottom p { max-width: none; }

/* Page hero */
.page-hero { background-color: var(--color-surface); padding: 3.5rem 0 2.5rem; border-bottom: 1px solid rgba(74,44,110,0.08); }
.page-hero h1 { margin-bottom: 0.5rem; }
.page-subtitle { font-size: 1.05rem; opacity: 0.7; margin: 0; font-style: italic; font-family: var(--font-heading); }

@media (max-width: 860px) {
  .site-header .container { flex-wrap: wrap; }
  .site-nav { order: 3; width: 100%; }
  .site-nav .nav-menu { gap: 1.25rem; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .btn-book { display: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 2.75rem 0; }
}
