/* ============ CSS RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --royal-navy: 220, 45%, 22%;
  --royal-gold: 40, 60%, 50%;
  --royal-cream: 40, 30%, 95%;
  --royal-burgundy: 345, 50%, 30%;
  --royal-warm: 30, 30%, 92%;
  --primary: 220, 45%, 22%;
  --primary-fg: 40, 30%, 95%;
  --muted-fg: 220, 15%, 45%;
  --background: 40, 20%, 97%;
  --foreground: 220, 30%, 15%;
  --border: 40, 20%, 85%;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ============ UTILITY CLASSES ============ */
.gold-text {
  background: linear-gradient(135deg, hsl(40, 60%, 50%), hsl(40, 70%, 65%), hsl(40, 60%, 50%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, hsl(var(--royal-gold)), transparent);
}

.royal-gradient {
  background: linear-gradient(135deg, hsl(var(--royal-navy)) 0%, hsl(220, 45%, 30%) 50%, hsl(var(--royal-navy)) 100%);
}

.royal-overlay {
  background: linear-gradient(180deg, hsl(269deg 45% 12% / 69%) 0%, hsl(220deg 45% 12% / 52%) 50%, hsla(220, 45%, 12%, 0.8) 100%);
}

.section-padding {
  padding: 5rem 1.5rem;
}

/* ============ ANIMATIONS ============ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-float { animation: float 6s ease-in-out infinite; }

.animate-slide-up {
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
}

.animate-slide-left {
  animation: slideLeft 0.8s ease-out forwards;
  opacity: 0;
}

.animate-slide-right {
  animation: slideRight 0.8s ease-out forwards;
  opacity: 0;
}

.hidden-before-animate { opacity: 0; }

/* ============ FOOTER ============ */
.footer-map {
  width: 100%;
  height: 400px;
  position: relative;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, transparent 60%, hsla(220, 45%, 22%, 0.6));
}

.footer-content {
  padding: 4rem 1.5rem;
}

.footer-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--royal-cream));
  margin-bottom: 0.5rem;
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsla(40, 30%, 95%, 0.6);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid hsla(40, 60%, 50%, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsla(40, 60%, 50%, 0.6);
  transition: all 0.3s;
}

.social-link:hover {
  background: hsl(var(--royal-gold));
  color: hsl(var(--royal-navy));
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--royal-gold));
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsla(40, 30%, 95%, 0.6);
  padding: 0.375rem 0;
  transition: color 0.3s;
}

.footer-link:hover { color: hsl(var(--royal-gold)); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item i, .footer-contact-item svg {
  color: hsl(var(--royal-gold));
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
}

.footer-contact-item p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsla(40, 30%, 95%, 0.6);
}

.footer-hours-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-hours-item i, .footer-hours-item svg {
  color: hsl(var(--royal-gold));
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

.footer-hours-day {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsla(40, 30%, 95%, 0.8);
  font-weight: 500;
}

.footer-hours-time {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: hsla(40, 30%, 95%, 0.5);
}

.footer-bottom {
  max-width: 80rem;
  margin: 0 auto;
}

.footer-bottom-text {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: hsla(40, 30%, 95%, 0.4);
  letter-spacing: 0.1em;
}

/* ============ RESPONSIVE ============ */
@media (min-width: 768px) {
  .section-padding { padding: 5rem 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .section-padding { padding: 7rem 6rem; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.footer-quick-links a {
    color: hsla(40, 30%, 95%, 0.8);
}

.footer-quick-links a:hover {
    color: hsl(var(--royal-gold));
}

.footer-contacts a {
    color: hsla(40, 30%, 95%, 0.8);
}

.footer-contacts a:hover {
    color: hsl(var(--royal-gold));
}

.footer-bottom a {
    color: hsl(var(--royal-gold));
}