/* ==========================================================================
   Irish Properties WNY — Base Styles
   Light-background site. Single global palette (no per-property theming).
   ========================================================================== */

:root {
  /* Brand colors */
  --color-ground: #f3f2f2;   /* page background */
  --color-ink: #201f1d;      /* primary text, logo linework, headings */
  --color-gold: #b68235;     /* primary accent — links, buttons, dividers */
  --color-gold-dark: #7d5411; /* hover / pressed states, eyebrow labels */

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;

  /* Type scale */
  --text-4xl: 3rem;      /* 48px — page titles */
  --text-3xl: 2.25rem;   /* 36px — section headings */
  --text-2xl: 1.75rem;   /* 28px — sub-headings */
  --text-xl: 1.375rem;   /* 22px — lead paragraph / callouts */
  --text-md: 1rem;       /* 16px — body */
  --text-xs: 0.75rem;    /* 12px — eyebrow labels, captions */

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Layout */
  --max-width: 1100px;
  --max-width-wide: 1400px;
  --radius: 4px;

  /* Section band backgrounds — for alternating white/tinted sections */
  --color-band: #ebe8e5;
  --color-overlay-text: #f3f2f2; /* text sitting on top of a photo */
}

/* ---- Base ---- */

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--color-ground);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.65;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 var(--space-sm);
}

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

p { margin: 0 0 var(--space-sm); }

a {
  color: var(--color-gold-dark);
  text-decoration: none;
}
a:hover { color: var(--color-gold); text-decoration: underline; }

/* ---- Reusable pieces ---- */

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-xs);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.btn {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-gold-dark);
  color: var(--color-ground);
  font-family: var(--font-body);
  font-size: var(--text-md);
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--color-ink); }

.divider {
  border: none;
  border-top: 1px solid var(--color-gold);
  opacity: 0.4;
  margin: var(--space-lg) 0;
}

/* ---- Logo ---- */
/* Light-background site: only the ink logo variant is used. */

.logo {
  height: 64px;
  width: auto;
}
