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

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

:root {
  --background: hsl(30, 20%, 97%);
  --foreground: hsl(30, 10%, 12%);
  --gold: hsl(36, 60%, 42%);
  --gold-light: hsl(36, 50%, 72%);
  --gold-dark: hsl(36, 55%, 28%);
  --champagne: hsl(35, 30%, 88%);
  --velvet: hsl(260, 20%, 12%);
  --cream: hsl(35, 40%, 96%);
  --muted-foreground: hsl(30, 8%, 50%);
  --primary-foreground: hsl(36, 20%, 98%);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.5s;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.navbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.navbar-logo {
  height: 3.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: color 0.3s;
  color: rgba(255,255,255,0.8);
}

.navbar.scrolled .nav-link {
  color: var(--foreground);
}

.nav-link:hover {
  color: var(--gold);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-foreground);
  font-size: 1.5rem;
}

.navbar.scrolled .menu-toggle {
  color: var(--foreground);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 0;
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(8px);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .nav-link {
  color: var(--foreground);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 35, 0.6);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  z-index: 10;
}

.hero-subtitle {
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-title {
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: var(--primary-foreground);
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  margin-bottom: 2.5rem;
  max-width: 28rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: rgba(191, 173, 142, 0.8);
}

.hero-btn {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 0.75rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.5s;
}

.hero-btn:hover {
  background: var(--gold);
  color: var(--primary-foreground);
}

/* ─── ABOUT ─── */
.about {
  padding: 6rem 1.5rem;
  background: var(--background);
  text-align: center;
}

.about-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.section-label {
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--foreground);
}

.section-desc {
  max-width: 40rem;
  margin: 0 auto 4rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

@media (max-width: 768px) {
  .features { grid-template-columns: 1fr; }
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(163, 121, 44, 0.3);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
}

.feature h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--foreground);
}

.feature p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

/* ─── CONTACT ─── */
.contact {
  padding: 6rem 1.5rem;
  background: var(--velvet);
  text-align: center;
}

.contact .section-label {
  color: var(--gold-light);
}

.contact .section-title {
  margin-bottom: 3rem;
  color: var(--cream);
}

.contact-grid {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-light);
  stroke-width: 1.5;
  fill: none;
  margin-bottom: 1rem;
}

.contact-item h3 {
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-item p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.7);
  white-space: pre-line;
}

.footer-bar {
  max-width: 56rem;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(163, 121, 44, 0.2);
}

.footer-bar p {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}
