/* Huthouse — site stylesheet
   Recreates the live huthouse.uk design (light theme, orange accent)
   as a self-contained static site. */

:root {
  --orange: #B4501B;
  --orange-dark: #964014;
  --ink: #1B1B1B;
  --gray: #5B6470;
  --gray-light: #7C8B9A;
  --line: #E7E5E2;
  --bg: #FFFFFF;
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: "Archivo Black", Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.15;
}

h1 { font-size: 44px; }
h2 { font-size: 34px; text-transform: uppercase; letter-spacing: 0.5px; }
h3 { font-size: 22px; }

p { margin: 0 0 16px; color: var(--gray); font-size: 17px; }

a { color: inherit; text-decoration: none; }

img, svg { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Announcement bar */
.announce {
  background: var(--orange);
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 10px 16px;
}

/* Header */
header.site-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.logo img { height: 42px; width: auto; }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

nav.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

nav.main-nav a.active,
nav.main-nav a:hover { color: var(--orange); }

.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover { background: var(--orange-dark); }

.btn.btn-light {
  background: #fff;
  color: var(--orange) !important;
}

.btn.btn-light:hover { background: #f4f1ee; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 880px) {
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-inner { position: relative; }
  .header-cta { display: none; }
}

/* Hero */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}

.hero p.lead {
  font-size: 22px;
  color: var(--ink);
  max-width: 760px;
  margin: 0 auto 28px;
}

.hero .phone {
  font-size: 20px;
  margin-bottom: 8px;
}

.hero .btn { margin-top: 8px; }

/* Section */
section { padding: 70px 0; }
section.alt { background: #FAF9F7; }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.section-head h2 { margin-bottom: 14px; }
.section-head .rule {
  width: 60px;
  height: 2px;
  background: var(--line);
  margin: 0 auto;
}

/* Card grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.grid .card h3 { margin-bottom: 10px; }
.grid .card p { margin-bottom: 0; }

.grid.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* Callout box */
.callout {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}
.callout h3 { margin-bottom: 10px; }

/* Two column layout (hero split) */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
}

.split h1 { text-align: left; }
.split p.lead { text-align: left; margin-left: 0; }

.detail-rows { margin-top: 32px; border-top: 1px solid var(--line); }
.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.detail-row .label { color: var(--ink); font-weight: 500; }
.detail-row .value { color: var(--gray); text-align: right; }

.hero-page {
  padding: 70px 0 20px;
  text-align: center;
}
.hero-page.split-hero { text-align: left; padding-top: 60px; }

/* CTA banner */
.cta-banner {
  background: var(--orange);
  color: #fff;
  padding: 60px 0;
}
.cta-banner .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2, .cta-banner p { color: #fff; }
.cta-banner .copy { max-width: 640px; }
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 0; }

/* Illustration panel (replaces stock photo) */
.illo {
  border-radius: 10px;
  background: linear-gradient(135deg, #F3EFEA 0%, #ECE7E0 100%);
  padding: 30px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin: 16px 0 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { margin-top: 20px; }
.contact-info h3 { margin-top: 28px; }
.contact-info h3:first-child { margin-top: 0; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-light);
}

/* Utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
