/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HCR â€“ Horam Classic Restorations
   Shared Stylesheet
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

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

:root {
  --racing-green: #1a3a2a;
  --mid-green:    #2d5a3d;
  --light-green:  #3d7a55;
  --chrome:       #c0c0c0;
  --gold:         #c9a84c;
  --gold-light:   #d4b45a;
  --cream:        #f7f4ef;
  --white:        #ffffff;
  --dark:         #111111;
  --text:         #2a2a2a;
  --muted:        #666666;
  --border:       #e2ddd6;
  --nav-h:        70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

/* â”€â”€ TYPOGRAPHY â”€â”€ */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }

/* â”€â”€ UTILITIES â”€â”€ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-green);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--racing-green);
  margin-bottom: 18px;
}

.section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
}

/* â”€â”€ BUTTONS â”€â”€ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--racing-green);
  padding: 14px 34px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--racing-green);
  padding: 13px 34px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--racing-green);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--racing-green); color: #fff; }

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 13px 34px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* â”€â”€ NAV â”€â”€ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(26,58,42,0.97);
  backdrop-filter: blur(10px);
  height: var(--nav-h);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links .nav-cta a {
  background: var(--gold);
  color: var(--racing-green);
  font-weight: 700;
  padding: 8px 18px;
}
.nav-links .nav-cta a:hover { background: var(--gold-light); color: var(--racing-green); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--racing-green);
  z-index: 190;
  padding: 20px 24px 32px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.nav-drawer.open { display: block; }
.nav-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.nav-drawer a {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.nav-drawer a:hover,
.nav-drawer a.active { background: rgba(255,255,255,0.07); color: var(--gold); }
.nav-drawer .drawer-cta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-drawer .drawer-cta a {
  background: var(--gold);
  color: var(--racing-green);
  font-weight: 700;
  text-align: center;
}

/* â”€â”€ PAGE HERO (inner pages) â”€â”€ */
.page-hero {
  padding-top: var(--nav-h);
  min-height: 380px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,28,18,0.88) 0%, rgba(10,28,18,0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-content .section-label { color: var(--gold); }

.page-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  max-width: 680px;
  margin-bottom: 16px;
}

.page-hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  font-weight: 300;
  margin-bottom: 32px;
}

/* breadcrumb */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* â”€â”€ SECTIONS â”€â”€ */
.section { padding: 96px 0; }
.section-white { background: #fff; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--racing-green); }

/* â”€â”€ CARD â”€â”€ */
.card {
  background: var(--cream);
  border-radius: 4px;
  padding: 36px 30px;
  border-top: 3px solid var(--gold);
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }

.card-icon {
  width: 50px; height: 50px;
  background: var(--racing-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.card-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

.card h3 { font-size: 1.2rem; color: var(--racing-green); margin-bottom: 10px; }
.card p { font-family: 'Inter', sans-serif; font-size: 0.91rem; color: var(--muted); line-height: 1.7; }
.card-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem; font-weight: 600;
  color: var(--light-green); text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.card-link:hover { color: var(--racing-green); }

/* â”€â”€ CHECK LIST â”€â”€ */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-family: 'Inter', sans-serif; font-size: 0.92rem;
}
.check-dot {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.check-dot svg { width: 10px; height: 10px; stroke: var(--racing-green); fill: none; stroke-width: 2.5; }

/* â”€â”€ MGOC BANNER â”€â”€ */
.mgoc-strip {
  background: linear-gradient(135deg, var(--mid-green), var(--racing-green));
  padding: 56px 24px;
  text-align: center;
}
.mgoc-strip h2 { font-size: 1.75rem; color: #fff; margin-bottom: 10px; }
.mgoc-strip p { font-family: 'Inter', sans-serif; font-size: 0.97rem; color: rgba(255,255,255,0.7); margin-bottom: 26px; }
.mgoc-badge {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 9px 26px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* â”€â”€ FOOTER â”€â”€ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .f-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand .f-logo span { color: var(--gold); }
.footer-brand p { font-family: 'Inter', sans-serif; font-size: 0.87rem; line-height: 1.7; max-width: 260px; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-contact p {
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  margin-bottom: 8px;
}
.footer-contact a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }

.footer-divider {
  max-width: 1140px;
  margin: 0 auto;
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 28px;
}

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex; gap: 20px; list-style: none;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* â”€â”€ INFO BLOCK (contact details shared) â”€â”€ */
.info-row {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px;
}
.info-icon {
  width: 42px; height: 42px;
  background: var(--racing-green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.info-row h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 3px;
}
.info-row p, .info-row a {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; color: var(--text); font-weight: 500;
  text-decoration: none;
}
.info-row a:hover { color: var(--light-green); }

/* â”€â”€ FORM â”€â”€ */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.77rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--light-green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* â”€â”€ DIVIDER LINE â”€â”€ */
.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

/* â”€â”€ STAT ROW â”€â”€ */
.stat-row {
  display: flex; gap: 48px; flex-wrap: wrap;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 40px 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--racing-green); line-height: 1;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 4px;
}

/* â”€â”€ TABLE â”€â”€ */
.info-table { width: 100%; border-collapse: collapse; font-family: 'Inter', sans-serif; }
.info-table tr { border-bottom: 1px solid rgba(0,0,0,0.06); }
.info-table td { padding: 11px 0; font-size: 0.88rem; }
.info-table td:last-child { text-align: right; color: var(--muted); }

/* â”€â”€ NOTICE BOX â”€â”€ */
.notice {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 18px 24px;
  border-radius: 0 4px 4px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.notice a { color: var(--light-green); }

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .stat-row { gap: 28px; justify-content: center; }
}
        