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

:root {
  --crimson: #8B1A1A;
  --crimson-dark: #6B1414;
  --gold: #C9A84C;
  --near-black: #1A1714;
  --white: #FFFFFF;
  --light-gray: #F5F3F0;
  --text-body: #444;
  --text-muted: #777;
  --border-color: #E0DCD6;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Source Sans 3', system-ui, sans-serif;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); font-size: 16px; line-height: 1.6; color: #333; background: var(--white); }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* UTILITY BAR */
.utility-bar { background: var(--crimson); color: #fff; font-size: 0.8125rem; font-weight: 500; padding: 0.5rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.utility-bar a { color: #fff; transition: opacity 0.2s; }
.utility-bar a:hover { opacity: 0.8; }
.utility-info { display: flex; gap: 1.5rem; align-items: center; }
.utility-info span { display: flex; align-items: center; gap: 0.4rem; }
.utility-social { display: flex; gap: 1rem; }
.utility-social a { display: flex; align-items: center; }
.utility-social svg { width: 16px; height: 16px; fill: #fff; }

/* HEADER */
.main-header { background: var(--white); padding: 0.75rem 2rem; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.logo { display: flex; align-items: center; }
.logo-img { height: auto !important; width: 220px !important; max-width: 220px !important; display: block; }
.logo-img--footer { height: auto !important; width: 150px !important; max-width: 150px !important; border-radius: 6px; opacity: 0.95; }
.main-nav { display: flex; align-items: center; }
.main-nav a { font-family: var(--sans); font-weight: 600; font-size: 0.875rem; color: var(--near-black); padding: 0.5rem 1.25rem; transition: color 0.2s; }
.main-nav a:hover, .main-nav a.active { color: var(--crimson); }
.btn-apply { background: var(--crimson); color: #fff; font-family: var(--sans); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.75rem 1.75rem; border-radius: 4px; border: none; cursor: pointer; margin-left: 1.25rem; transition: background 0.2s; display: inline-block; }
.btn-apply:hover { background: var(--crimson-dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--near-black); margin: 5px 0; }

/* HERO */
.hero { position: relative; height: 440px; min-height: 440px; max-height: 440px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,23,20,0.75) 0%, rgba(26,23,20,0.45) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 2rem; }
.hero-content h1 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 600; line-height: 1.15; margin-bottom: 0.75rem; }
.hero-content p { font-size: clamp(1rem, 1.5vw, 1.125rem); opacity: 0.9; max-width: 560px; margin: 0 auto; }
.hero-breadcrumb { position: absolute; bottom: 1.5rem; left: 2rem; z-index: 3; font-size: 0.8125rem; font-weight: 500; color: rgba(255,255,255,0.7); }
.hero-breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.hero-breadcrumb a:hover { color: #fff; }
.hero-breadcrumb .sep { margin: 0 0.4rem; }

/* PAGE LAYOUT */
.page-body { max-width: 1140px; margin: 0 auto; padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2rem); display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }

/* SIDEBAR */
.sidebar { position: sticky; top: 90px; }
.sidebar-label { font-family: var(--sans); font-size: 0.9375rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--near-black); margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border-color); }
.sidebar-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.sidebar-nav a { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; border-radius: 6px; font-family: var(--sans); font-weight: 600; font-size: 0.9rem; color: var(--text-body); transition: background 0.2s, color 0.2s; border: 1px solid transparent; }
.sidebar-nav a:hover { background: var(--light-gray); color: var(--crimson); }
.sidebar-nav a.active { background: rgba(139,26,26,0.07); color: var(--crimson); border-color: rgba(139,26,26,0.15); }
.sidebar-nav a svg { width: 18px; height: 18px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.sidebar-nav a .sidebar-nav__icon-img { width: 18px; height: 18px; flex-shrink: 0; object-fit: contain; }
.sidebar-cta { margin-top: 1.75rem; background: var(--crimson); border-radius: 8px; padding: 1.5rem; text-align: center; }
.sidebar-cta p { font-size: 0.875rem; color: rgba(255,255,255,0.85); margin-bottom: 1rem; }
.sidebar-cta > a { display: block; background: var(--white); color: var(--crimson); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.7rem 1rem; border-radius: 4px; transition: background 0.2s; text-decoration: none; }
.sidebar-cta > a:hover { background: var(--light-gray); text-decoration: none; }
.sidebar-phone { margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.sidebar-phone svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.75); }
.sidebar-phone a { color: rgba(255,255,255,0.75); background: none; display: inline; padding: 0; border-radius: 0; font-size: inherit; font-weight: inherit; text-transform: none; letter-spacing: normal; text-decoration: none; }
.sidebar-phone a:hover { color: #fff; text-decoration: none; }

/* CONTENT AREA */
.section-label { font-family: var(--sans); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--crimson); margin-bottom: 0.5rem; }
.content-area h2 { font-family: var(--serif); font-size: clamp(1.65rem, 2.8vw, 2.35rem); font-weight: 600; color: var(--near-black); line-height: 1.2; margin-bottom: 1.5rem; }
.content-area h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--near-black); margin-bottom: 0.9rem; }
.content-divider { border: none; border-top: 1px solid var(--border-color); margin: 2.25rem 0; }
.note-box { background: rgba(139,26,26,0.05); border-left: 3px solid var(--crimson); border-radius: 0 6px 6px 0; padding: 0.9rem 1.25rem; margin: 1rem 0; font-size: 0.9rem; color: var(--text-body); font-style: italic; }

/* CTA SECTION */
.cta-section { background: var(--crimson); text-align: center; padding: clamp(3rem, 6vw, 4.5rem) 2rem; }
.cta-section h2 { font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 600; color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--crimson); font-family: var(--sans); font-weight: 700; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.875rem 2rem; border-radius: 4px; display: inline-block; transition: background 0.2s, transform 0.2s; }
.btn-white:hover { background: var(--light-gray); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; font-family: var(--sans); font-weight: 700; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.875rem 2rem; border-radius: 4px; border: 2px solid rgba(255,255,255,0.5); display: inline-block; transition: border-color 0.2s, background 0.2s; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }


/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .page-body { grid-template-columns: 1fr; }
  .sidebar { position: static; top: auto; transform: none; margin-bottom: 2rem; }
  .sidebar-nav { flex-direction: column; gap: 0.25rem; }
  .sidebar-nav a { width: 100%; flex: none; min-width: 0; }
}
@media (max-width: 768px) {
  .utility-social { display: none; }
  .main-header { padding: 0.5rem 1rem; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 1rem 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
  .main-nav.active { display: flex; }
  .main-nav a { border-right: none; border-bottom: 1px solid var(--border-color); padding: 0.75rem 1.5rem; }
  .main-nav a:first-child { border-left: none; }
  .btn-apply { margin: 0.75rem 1.5rem; display: block; text-align: center; }
  .nav-toggle { display: block; }
  .hero { height: 440px; min-height: 440px; max-height: 440px; }
.cta-buttons { flex-direction: column; align-items: center; }
}

/* ── FOOTER ── */
.footer {
  background: #1a1714;
  border-top: 3px solid #C9A84C;
  color: rgba(255,255,255,0.65);
  font-family: var(--sans);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-img--footer {
  height: auto !important;
  width: 180px !important;
  max-width: 180px !important;
  border-radius: 6px;
  opacity: 0.95;
  margin-bottom: 0.9rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.footer-social a:hover { background: #C9A84C; }
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
.footer-col h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.1rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.55rem;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col ul li a:hover { color: #C9A84C; }
.footer-contact-list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.55rem;
  line-height: 1.4;
}
.footer-contact-list li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-list li a:hover { color: #C9A84C; }
.footer-bottom {
  max-width: 100%;
  padding: 1.2rem 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.footer-legal {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-legal { justify-content: center; gap: 1rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
