:root {
  --brand-cream: #FBF6ED;
  --brand-sand: #F3EBDD;
  --brand-ink: #15181A;
  --brand-gold: #B59058;
  --brand-gold-deep: #8A6A3B;
  --brand-stone: #5B6064;
  --brand-line: #E4DAC6;
  --brand-white: #FFFFFF;
  --brand-sale: #A8322D;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--brand-stone);
}

h1, h2, h3, h5, h6, .heading-font {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--brand-ink);
}

h1 { font-size: 72px; line-height: 1.05; letter-spacing: -0.5px; }
h2 { font-size: 48px; line-height: 1.15; }
h3 { font-size: 30px; line-height: 1.2; }
h4 { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 16px; color: var(--brand-ink); margin: 0; }

@media (max-width: 1024px) {
  h1 { font-size: 56px; }
  h2 { font-size: 40px; }
  h3 { font-size: 26px; }
}
@media (max-width: 767px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
}

.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--brand-gold-deep);
  display: flex;
  align-items: center;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--brand-gold);
  margin-right: 12px;
}

.btn-primary, .btn-outline, .btn-gold {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 34px;
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--brand-ink);
  color: var(--brand-cream);
  border: none;
}
.btn-primary:hover {
  background-color: var(--brand-gold);
  color: var(--brand-ink);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--brand-ink);
  color: var(--brand-ink);
}
.btn-outline:hover {
  background-color: var(--brand-ink);
  color: var(--brand-cream);
}

.btn-gold {
  background-color: var(--brand-gold);
  color: var(--brand-ink);
  border: none;
}
.btn-gold:hover {
  background-color: var(--brand-cream);
  color: var(--brand-ink);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}
@media (max-width: 1024px) {
  .section { padding: 72px 0; }
}
@media (max-width: 767px) {
  .section { padding: 56px 0; }
}

.grid-gap {
  display: grid;
  gap: 24px;
}
@media (max-width: 767px) {
  .grid-gap { gap: 16px; }
}

.img-zoom {
  overflow: hidden;
  display: block;
}
.img-zoom img {
  transition: transform 0.5s ease;
  width: 100%;
  display: block;
}
.img-zoom:hover img {
  transform: scale(1.04);
}

.section-cream { background-color: var(--brand-cream); }
.section-sand { background-color: var(--brand-sand); }
.section-ink {
  background-color: var(--brand-ink);
  color: #D9D2C3;
}
.section-ink h1, .section-ink h2, .section-ink h3, .section-ink h4, .section-ink h5, .section-ink h6 {
  color: var(--brand-cream);
}
