/* Newberry House "lite" site for newberryhouse.com.
   Mirrors the newberry.co.za design tokens (globals.css) in plain CSS. */
:root {
  --newberry-green: #3A913F;
  --dark-green: #2D5016;
  --forest-green: #1B5E20;
  --gold: #D4A843;
  --accent-light: #6AAF6E;
  --near-black: #1A1A1A;
  --charcoal: #333333;
  --warm-grey: #6B6B6B;
  --light-grey: #F5F5F0;
  --off-white: #FAFAF7;
  --footer-bg: #1A2F0E;
  --font-heading: "Montserrat", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-elevated: 0 4px 16px rgba(0, 0, 0, 0.12);
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--near-black);
  background: var(--off-white);
  line-height: 1.65;
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; color: var(--dark-green); line-height: 1.2; margin: 0; }
p { margin: 0 0 1.25rem; color: var(--charcoal); }
p:last-child { margin-bottom: 0; }
a { color: var(--newberry-green); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }
.section-alt { background: var(--light-grey); }
.section-label {
  position: relative; display: inline-block; text-transform: uppercase; font-size: 14px; font-weight: 700;
  color: var(--newberry-green); letter-spacing: 0.1em; padding-left: 44px;
}
.section-label::before { content: ""; position: absolute; left: 0; top: 50%; width: 32px; height: 2px; background: var(--newberry-green); }
.section-label.no-line { padding-left: 0; }
.section-label.no-line::before { display: none; }
.section-title { font-size: 32px; margin-top: 24px; }
@media (min-width: 768px) { .section-title { font-size: 48px; } }
.section-title.sm { font-size: 28px; }
@media (min-width: 768px) { .section-title.sm { font-size: 36px; } }
.centre { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.lede { font-size: 1.1rem; }
.mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; } .mt-12 { margin-top: 48px; } .mt-20 { margin-top: 80px; }

/* Buttons (same shapes as newberry.co.za) */
.btn { display: inline-block; text-decoration: none; text-transform: uppercase; font-weight: 600; font-size: 14px; letter-spacing: 0.05em; border-radius: var(--radius-md); padding: 14px 32px; transition: all 200ms ease; cursor: pointer; }
.btn-primary { background: var(--newberry-green); color: #fff; }
.btn-primary:hover { background: var(--dark-green); }
.btn-secondary { background: transparent; color: var(--newberry-green); border: 2px solid var(--newberry-green); padding: 12px 30px; }
.btn-secondary:hover { background: var(--newberry-green); color: #fff; }
.btn-white { background: #fff; color: var(--dark-green); }
.btn-white:hover { background: var(--light-grey); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); padding: 12px 30px; }
.btn-outline-white:hover { background: #fff; color: var(--dark-green); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row.centre { justify-content: center; }
.text-link { font-weight: 600; text-decoration: none; color: var(--newberry-green); }
.text-link:hover { color: var(--dark-green); text-decoration: underline; }

/* Moved notice */
.moved-bar { background: var(--dark-green); color: #fff; font-size: 14px; text-align: center; padding: 10px 16px; }
.moved-bar a { color: var(--gold); font-weight: 600; text-decoration: none; white-space: nowrap; }
.moved-bar a:hover { text-decoration: underline; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: var(--shadow-card); }
.site-header .bar { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.site-header .logo img { height: 44px; width: auto; }
.nav { display: none; align-items: center; gap: 4px; }
.nav a { padding: 8px 16px; font-size: 14px; font-weight: 500; color: var(--near-black); text-decoration: none; transition: color 200ms; }
.nav a:hover { color: var(--dark-green); }
.nav a[aria-current="page"] { color: var(--dark-green); font-weight: 600; position: relative; }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 0; height: 2px; border-radius: 999px; background: var(--newberry-green); }
.header-cta { display: none; }
.menu-btn { background: none; border: 0; padding: 8px; color: var(--near-black); cursor: pointer; }
.menu-btn svg { width: 28px; height: 28px; display: block; }
@media (min-width: 1024px) { .nav, .header-cta { display: flex; } .menu-btn { display: none; } }
.mobile-nav { display: none; background: #fff; border-top: 1px solid rgba(58,145,63,0.1); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 16px 24px; border-bottom: 1px solid rgba(58,145,63,0.08); color: var(--near-black); text-decoration: none; font-weight: 500; }
.mobile-nav a[aria-current="page"] { color: var(--dark-green); font-weight: 600; }
.mobile-nav .btn { margin: 16px 24px 24px; display: inline-block; border: 0; }

/* Hero */
.hero { position: relative; background: var(--dark-green); color: #fff; overflow: hidden; }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.hero .inner { position: relative; padding: 96px 0; max-width: 760px; }
@media (min-width: 768px) { .hero .inner { padding: 140px 0; } }
.hero .section-label { color: #fff; }
.hero .section-label::before { background: var(--gold); }
.hero h1 { color: #fff; font-size: 40px; margin-top: 20px; }
@media (min-width: 768px) { .hero h1 { font-size: 60px; } }
.hero p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-top: 24px; }
.hero .btn-row { margin-top: 32px; }

/* Cards */
.grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); border: 1px solid rgba(58,145,63,0.15); padding: 24px; }
.card h3 { font-size: 22px; margin-top: 8px; }
.card .kicker { text-transform: uppercase; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--newberry-green); }
.card p { margin-top: 12px; }
.card .text-link { display: inline-block; margin-top: 12px; }
.card.link { text-decoration: none; display: block; transition: box-shadow 200ms, transform 200ms; }
.card.link:hover { box-shadow: var(--shadow-elevated); transform: translateY(-2px); }
.card.link h3 { color: var(--dark-green); }

/* Two column feature */
.feature { display: grid; gap: 40px; align-items: center; }
@media (min-width: 768px) { .feature { grid-template-columns: 1fr 1fr; gap: 48px; } .feature.flip > .media { order: -1; } }
.feature .media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); }
.feature h2 { font-size: 30px; margin-top: 24px; }
@media (min-width: 768px) { .feature h2 { font-size: 38px; } }
.feature p { margin-top: 20px; }
.banner img { width: 100%; border-radius: var(--radius-xl); }

/* Info rows */
.info-list { list-style: none; padding: 0; margin: 20px 0 0; }
.info-list li { padding: 12px 0; border-bottom: 1px solid rgba(58,145,63,0.12); display: flex; gap: 12px; flex-wrap: wrap; }
.info-list li strong { color: var(--dark-green); min-width: 140px; font-weight: 600; }
.pill { display: inline-block; background: var(--gold); color: var(--near-black); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 12px; border-radius: 999px; }

/* CTA band */
.cta-band { background: var(--newberry-green); color: #fff; text-align: center; padding: 80px 0; }
.cta-band h2 { color: #fff; font-size: 30px; }
@media (min-width: 768px) { .cta-band h2 { font-size: 40px; } }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 640px; margin: 20px auto 0; }
.cta-band .btn-row { margin-top: 32px; }

/* Footer */
.site-footer { background: var(--footer-bg); color: rgba(255,255,255,0.7); font-size: 14px; }
.site-footer .top { padding: 64px 0; display: grid; gap: 40px; }
@media (min-width: 768px) { .site-footer .top { grid-template-columns: repeat(3, 1fr); } }
.site-footer img.logo { height: 48px; width: auto; margin-bottom: 24px; }
.site-footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 12px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: rgba(255,255,255,0.85); text-decoration: underline; }
.site-footer .social { display: flex; gap: 16px; margin-top: 8px; }
.site-footer .social a { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; }
.site-footer .social svg { width: 18px; height: 18px; }
.site-footer .bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; }
.site-footer .legal { display: flex; flex-wrap: wrap; gap: 16px; }

/* 404 */
.notfound { padding: 120px 0; text-align: center; }
