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

body {
  font-family: 'Inter', sans-serif;
  color: #0f172a;
}

/* TYPOGRAPHY */
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  line-height: 1.1;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  margin-bottom: 40px;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-top: 15px;
}

p {
  color: #475569;
}

/* LAYOUT */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.section.alt {
  background: #f8fafc;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 28px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}

.logo-box {
  width: 34px;
  height: 34px;
  background: #051C2C;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.logo .light {
  font-weight: 300;
}

/* NAV LINKS */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  color: #64748b;
  font-size: 14px;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #051C2C;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
}

/* DESKTOP DEFAULT */
.desktop-nav {
  display: flex;
}

.mobile-menu {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE BREAKPOINT */
@media (max-width: 1024px) {

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: left;
  padding-top: 100px;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: grayscale(100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    white 20%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0) 80%
  );
}

/* CONTENT */
.hero-inner {
  position: absolute;
}

.hero-content {
  max-width: 800px;
  margin: auto;
  padding: 0 24px;
}

/* TYPOGRAPHY */
.hero h1 {
  font-size: 76px;
  line-height: 1.05;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  margin-bottom: 30px;
}

.hero h1 span {
  font-style: italic;
}

.hero p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 16px;
}

.btn.primary {
  background: #051C2C;
  color: white;
  padding: 16px 32px;
}

.btn.outline {
  border: 1px solid #051C2C;
  color: #051C2C;
  padding: 16px 32px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card img {
  width: 100%;
}

.img-overlay {
  position: relative;
  overflow: hidden;
}

.img-overlay img {
  width: 100%;
  display: block;
}

.img-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 28, 44, 0.9);
}

/* SPLIT */


.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.list-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

/* FOOTER */
.footer {
  font-size: 10px;
  text-align: left;
  padding: 60px 0;
  border-top: 1px solid #eee;
}