/* --- VARIABLES & RESET --- */
:root {
  --bg-color: #fafaf9; /* Warm Alabaster */
  --bg-card: #ffffff;
  --text-main: #1c1917; /* Warm Black */
  --text-muted: #57534e;
  --accent: #d946ef; /* Fuschia pop (subtle) or stick to elegant orange */
  --primary: #ea580c; /* Burnt Orange */

  --font-head: "Playfair Display", serif;
  --font-body: "Space Grotesk", sans-serif;

  --gap-lg: 120px;
  --gap-md: 60px;
  --gap-sm: 24px;

  --radius: 16px;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
ul {
  list-style: none;
}
img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --- UTILITY CLASSES --- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-padding {
  padding: var(--gap-lg) 0;
}

/* Typography Utility */
.display-text {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem); /* Responsive giant text */
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.section-title {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--gap-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
}
.btn-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--text-main);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.btn-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- NAVIGATION (Glassmorphism Pill) --- */
nav {
  position: sticky;
  top: 20px;
  max-width: 1200px;
  margin: auto;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  padding: 15px 30px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.nav-logo {
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--font-head);
}
.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--primary);
}
/* --- FOOTER --- */
.footer-cta {
    text-align: center;
    padding: 100px 0;
    background-color: var(--text-main);
    color: var(--bg-color);
    border-radius: var(--radius);
    margin-bottom: 40px;
}
.footer-cta h2 { font-family: var(--font-head); font-size: 4rem; margin-bottom: 30px; color: white; }
@media (max-width: 768px) {
    .nav-links { display: none; }
    .container { padding: 0 20px; }
    .display-text { font-size: 3.5rem; }
}