@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600&display=swap');

:root {
  --orange: #B8592E;
  --orange-dark: #8F4321;
  --charcoal: #211E1B;
  --charcoal-soft: #4A443E;
  --cream: #F7F1E7;
  --cream-deep: #EDE2CF;
  --timber: #8A6640;
  --timber-light: #CBAE83;
  --white: #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.hru-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .hru-container { padding: 0 40px; }
}

/* ---------- Typography ---------- */
.hru-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 14px;
}
.hru-eyebrow--light { color: var(--timber-light); }

.hru-heading-lg {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  color: var(--charcoal);
  margin: 0 0 20px;
  max-width: 20ch;
}

.hru-body-lg {
  font-size: 16px;
  color: var(--charcoal-soft);
  max-width: 56ch;
  margin: 0;
}

/* ---------- Buttons ---------- */
.hru-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.hru-btn--sm { padding: 10px 20px; font-size: 13px; }
.hru-btn__icon { margin-right: 8px; }
.hru-btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.hru-btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.hru-btn--outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

/* ---------- Placeholder image ---------- */
.hru-placeholder {
  position: relative;
  width: 100%;
  background: var(--cream-deep);
  border: 1px solid var(--timber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hru-placeholder--dark {
  background: #33302B;
  border: 1px solid #4A443E;
}
.hru-placeholder__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--timber);
  text-align: center;
  padding: 0 16px;
}
.hru-placeholder--dark .hru-placeholder__label { color: rgba(255,255,255,0.55); }
.hru-placeholder__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--timber-light);
}
.hru-placeholder--dark .hru-placeholder__corner { border-color: rgba(255,255,255,0.3); }
.hru-placeholder__corner--tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.hru-placeholder__corner--tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.hru-placeholder__corner--bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.hru-placeholder__corner--br { bottom: 8px; right: 8px; border-left: none; border-top: none; }

/* Real photo: drop a file into /images with the matching name and it
   will automatically cover the placeholder (no code changes needed). */
.hru-placeholder__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* ---------- Header ---------- */
.hru-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--);
}
.hru-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.hru-header__logo { display: flex; align-items: center; text-decoration: none; }
.hru-header__logo-img { height: 44px; width: auto; }
.hru-header__nav { display: none; align-items: center; gap: 36px; }
.hru-header__link { font-size: 14px; font-weight: 500; color: var(--charcoal); text-decoration: none; }
.hru-header__actions { display: none; }
.hru-header__burger {
  background: none;
  border: 1px solid var(--cream-deep);
  border-radius: 2px;
  padding: 8px;
  color: var(--charcoal);
  display: flex;
}
@media (min-width: 900px) {
  .hru-header__nav { display: flex; }
  .hru-header__actions { display: flex; }
  .hru-header__burger { display: none; }
}
.hru-mobile-menu {
  display: none;
  border-top: 1px solid var(--cream-deep);
  background: var(--white);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
}
.hru-mobile-menu.is-open { display: flex; }
.hru-mobile-menu__link {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--cream-deep);
}
.hru-mobile-menu__cta { margin-top: 16px; width: 100%; }

/* ---------- Hero ---------- */
.hru-hero {
  position: relative;
  min-height: 640px;
  height: 92vh;
  max-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.hru-hero__slides { position: absolute; inset: 0; }
.hru-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hru-hero__slide.is-active { opacity: 1; }
.hru-hero__placeholder { height: 100%; border: none; border-radius: 0; }
.hru-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,21,18,0.72) 0%, rgba(24,21,18,0.52) 45%, rgba(24,21,18,0.78) 100%);
}
.hru-hero__content { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 90px; }
.hru-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 8vw, 84px);
  line-height: 1;
  color: var(--white);
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}
.hru-hero__logo-chip {
  display: inline-flex;
  padding: 16px 26px;
  border-radius: 2px;
  margin: 0 0 26px;
}
.hru-hero__logo-img {
  height: clamp(200px, 6vw, 76px);
  width: auto;
  display: block;
}
.hru-hero__subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.86);
  max-width: 46ch;
  margin: 0 0 36px;
}
.hru-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hru-hero__controls {
  position: absolute;
  left: 0; right: 0; bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.hru-hero__arrow {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  width: 32px;
  height: 32px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hru-hero__dashes { display: flex; gap: 8px; }
.hru-hero__dash {
  width: 22px;
  height: 3px;
  background: rgba(255,255,255,0.35);
  border: none;
  padding: 0;
  cursor: pointer;
}
.hru-hero__dash.is-active { background: var(--orange); }

/* ---------- Sections ---------- */
.hru-section { padding: 88px 0; }
.hru-section--cream { background: var(--cream); }
.hru-section-head { max-width: 640px; margin: 0 auto 52px; text-align: left; }
.hru-section-head__body { margin-top: 4px; }

/* ---------- Introduction ---------- */
.hru-intro { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.hru-intro__image { border-radius: 0; }
@media (min-width: 900px) {
  .hru-intro { grid-template-columns: 1.05fr 1fr; gap: 72px; }
}

/* ---------- Catalogue / schedule ---------- */
.hru-schedule-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 640px) { .hru-schedule-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hru-schedule-grid { grid-template-columns: repeat(3, 1fr); } }
.hru-schedule-card {
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-top: 3px solid var(--orange);
}
.hru-schedule-card__image { border-left: none; border-right: none; border-bottom: none; }
.hru-schedule-card__body { padding: 22px 22px 24px; }
.hru-schedule-card__top { display: flex; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.hru-schedule-card__code {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--timber);
  border: 1px solid var(--timber-light);
  padding: 2px 7px;
}
.hru-schedule-card__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0;
}
.hru-schedule-card__finishes { font-size: 14px; color: var(--charcoal-soft); margin: 0; }
.hru-schedule-card__note { font-size: 13px; font-style: italic; color: var(--timber); margin: 6px 0 0; }

/* ---------- Projects preview ---------- */
.hru-projects-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
@media (min-width: 768px) { .hru-projects-grid { grid-template-columns: repeat(3, 1fr); } }
.hru-project-card__image { margin-bottom: 18px; }
.hru-project-card__name { font-family: var(--font-display); font-size: 18px; font-weight: 500; margin: 0 0 4px; color: var(--charcoal); }
.hru-project-card__category { font-size: 13px; color: var(--charcoal-soft); margin: 0; }
.hru-projects-cta { text-align: center; }

/* ---------- CTA ---------- */
.hru-cta { position: relative; overflow: hidden; min-height: 420px; display: flex; align-items: center; }
.hru-cta__image { position: absolute; inset: 0; height: 100%; border: none; border-radius: 0; }
.hru-cta__overlay { position: absolute; inset: 0; background: rgba(20,18,15,0.66); }
.hru-cta__content { position: relative; z-index: 2; text-align: center; padding: 90px 24px; max-width: 680px; margin: 0 auto; }
.hru-cta__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 4vw, 40px); color: var(--white); margin: 0 0 16px; }
.hru-cta__subtitle { color: rgba(255,255,255,0.86); font-size: 16px; margin: 0 0 32px; }
.hru-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ---------- Footer ---------- */
.hru-footer { background: var(--charcoal); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.hru-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 768px) { .hru-footer__inner { grid-template-columns: 1.4fr 1fr 1fr; } }
.hru-footer__logo-chip { display: inline-flex; background: var(--cream); padding: 10px 16px; border-radius: 2px; }
.hru-footer__logo-img { height: 34px; width: auto; }
.hru-footer__desc { font-size: 14px; margin-top: 14px; max-width: 40ch; }
.hru-footer__nav { display: flex; flex-direction: column; gap: 12px; }
.hru-footer__link { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px; }
.hru-footer__contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--timber-light);
  margin: 0 0 8px;
}
.hru-footer__contact { display: flex; flex-direction: column; gap: 8px; }
.hru-footer__contact-link { font-size: 14px; color: rgba(255,255,255,0.85); text-decoration: none; width: fit-content; }
.hru-footer__contact-link:hover { color: var(--white); }
.hru-footer__bottom { padding: 22px 0; font-size: 12px; color: rgba(255,255,255,0.45); }

/* ---------- WhatsApp button ---------- */
.hru-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: 52px;
  height: 52px;
  border-radius: 2px;
  background: #25A75A;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
