@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --bg:     #edeae4;
  --text:   #0e0e0c;
  --mid:    #1c1c1a;
  --light:  #5a5a56;
  --border: #d8d4cc;
  --navy:   #1e3350;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* NAV */
.site-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.5; }

.nav-contact-btn {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--text);
  padding: 7px 16px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-contact-btn:hover { background: var(--text); color: var(--bg); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
}

.mobile-menu {
  display: none;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 32px 20px;
}

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

.mobile-menu a {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border-bottom: none; }

/* BUTTONS */
.btn-pill {
  display: inline-block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  border: 1px solid var(--text);
  border-radius: 100px;
  padding: 13px 36px;
  transition: background 0.25s, color 0.25s;
}

.btn-pill:hover { background: var(--text); color: var(--bg); }

/* FOOTER */
footer {
  background: var(--navy);
  padding: 48px 32px;
  color: #fff;
}

.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  display: block;
  margin-bottom: 32px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav li { border-top: 1px solid rgba(255,255,255,0.15); }
.footer-nav li:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }

.footer-nav a {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  padding: 14px 0;
  transition: opacity 0.2s;
}

.footer-nav a:hover { opacity: 0.7; }

.footer-bottom {
  margin-top: 32px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .nav-links, .nav-contact-btn { display: none; }
  .nav-hamburger { display: flex; }
  .site-nav { padding: 18px 24px; }
}

@media (min-width: 861px) {
  .nav-hamburger { display: none; }
}
