@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;600;700&display=swap');

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

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

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }

ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 80px 0; }
.section--cream { background: var(--cream); }
.section--brown { background: var(--brown-deep); color: var(--white); }
.section--brown h2, .section--brown h3 { color: var(--white); }
.section--brown p { color: rgba(255,255,255,0.85); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-header .subtitle {
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary-dark);
  color: var(--white);
  padding: 10px 20px;
  z-index: 10000;
}
.skip-link:focus { top: 0; }

.page-hero {
  background: var(--brown-deep);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,47,40,0.95), rgba(139,94,60,0.85));
  z-index: 1;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 15px; }
.page-hero p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.breadcrumb {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 15px;
}
.breadcrumb a { color: var(--gold-light); }

.content-page { padding: 60px 0 80px; }
.container--narrow { max-width: 900px; margin-left: auto; margin-right: auto; }
.content-page .container--narrow { max-width: 900px; }
.content-page h2 { margin: 2rem 0 1rem; }
.content-page h3 { margin: 1.5rem 0 0.75rem; color: var(--primary-dark); }
