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

html { scroll-behavior: smooth; font-size: var(--text-base); }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--stone);
  background-color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p { margin-bottom: var(--sp-5); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }

/* Announcement bar */
.announce-bar {
  background: var(--green);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-xs);
  text-align: center;
  padding: var(--sp-3) var(--sp-5);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Photo placeholder */
.ph {
  background: linear-gradient(145deg, var(--green), var(--green-md), var(--ink));
  position: relative;
  overflow: hidden;
}
.ph::after {
  content: attr(data-lbl);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.28);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  padding: var(--sp-5);
}

/* Eyebrow label */
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
  display: block;
}

/* Gold rule accent */
.gold-rule {
  display: block;
  width: 72px;
  height: 3px;
  background: var(--gold);
  margin: var(--sp-6) 0;
}

/* Section padding */
.section { padding: var(--sp-20) 0; }
.section--sm { padding: var(--sp-12) 0; }
.section--lg { padding: var(--sp-24) 0; }

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-head);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
  margin-bottom: var(--sp-8);
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.4); }
