@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

/* Homepage-only reset, tokens and layout primitives. */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  max-width: 100vw;
  overflow-x: hidden;
  background: #fffdf8;
  color: #333;
  font-family: 'Be Vietnam Pro', Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

:root {
  --font-heading: 'Montserrat', Arial, sans-serif;
  --font-body: 'Be Vietnam Pro', Arial, sans-serif;
  --font-serif: 'Playfair Display', serif;
  --gold: #d4af37;
  --gold-dark: #b68d40;
  --gold-soft: #fdf9ee;
  --gold-bright: #e6c34a;
  --forest-deep: #0e3d28;
  --forest: #185a38;
  --forest-2: #1f6e45;
  --forest-soft: #ecf3ed;
  --forest-line: rgba(14, 61, 40, 0.14);
  --dark: #1a1d24;
  --cream: #faf8f4;
  --hero-cream: #fbf7ec;
  --card-border: #efece6;
}

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

.section-padding {
  padding: 120px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
  font-family: var(--font-heading);
  line-height: 1.3;
}

.btn-primary-orange,
.btn-outline-brown {
  display: inline-flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 32px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-orange {
  border: 0;
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  color: #fff;
  box-shadow: 0 8px 20px rgba(14, 61, 40, 0.22);
}

.btn-primary-orange:hover {
  color: #fff;
  box-shadow: 0 12px 26px rgba(14, 61, 40, 0.3);
  transform: translateY(-3px);
}

.btn-outline-brown {
  border: 2px solid var(--gold-dark);
  background: #fff;
  color: var(--forest);
}

.btn-outline-brown:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }

  .section-padding {
    padding: 40px 0;
  }

  .btn-primary-orange {
    width: 100%;
    height: 48px;
    border: 0;
    background: #b26535;
    font-size: 14px;
    font-weight: 500;
  }

  .btn-outline-brown {
    width: 100%;
    height: 48px;
    border: 2px solid #c28965;
    background: #fff;
    color: #b25b24;
    font-size: 15px;
    font-weight: 500;
  }
}
