/* ------------------------------
   FONTS
--------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Crimson+Pro:wght@300;400;600&family=Playfair+Display:wght@400;500&display=swap');

/* ------------------------------
   RESET + BASE
--------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: #0d0b09;
  color: #e8dfd0;
  font-family: Inter, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

section {
  width: 100%;
}

.max-w-6xl {
  max-width: 72rem;
  margin: 0 auto;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* ------------------------------
   TYPOGRAPHY
--------------------------------*/
.heading-xl {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.heading-lg {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.heading-md {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.subtle-label {
  color: #7a6340;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: Inter, sans-serif;
}

/* ------------------------------
   NAVIGATION
--------------------------------*/
nav {
  border-bottom: 1px solid #1a1510;
  padding: 1.25rem 0;
}

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

nav a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 1.5rem;
  color: #a89880;
}

nav a:hover {
  color: #b8975a;
}

/* ------------------------------
   BUTTONS
--------------------------------*/
.btn-primary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #b8975a;
  color: #0d0b09;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-outline {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: 1px solid #2e2519;
  color: #a89880;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ------------------------------
   GRID HELPERS
--------------------------------*/
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

.grid-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

/* ------------------------------
   FORM STYLES
--------------------------------*/
input, textarea {
  background: #0d0b09;
  border: 1px solid #2e2519;
  padding: 0.875rem 1rem;
  color: #e8dfd0;
  width: 100%;
  font-family: Inter, sans-serif;
}

input:focus, textarea:focus {
  border-color: #7a6340;
  outline: none;
}

textarea {
  resize: vertical;
}
