@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&display=swap');

:root {
  --orange: #f4821f;
  --orange-dark: #d9700f;
  --dark: #1a1a1a;
  --dark-alt: #222222;
  --white: #ffffff;
  --bg-light: #f9f9f9;
  --text: #333333;
  --text-light: #666666;
  --text-on-dark: rgba(255,255,255,0.85);
  --border: #e0e0e0;
  --nav-height: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; margin: 0; padding: 0; }

body { margin: 0; padding: 0;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--orange); color: #fff;
  padding: 0.5rem 1rem; border-radius: 3px;
  font-size: 0.875rem; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* NAV */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img { height: 50px; width: auto; }
.nav-logo-text strong {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-light);
}
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
}
.nav-menu a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.18s;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--orange); text-decoration: none; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  padding: 6px 9px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); }

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--orange);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  cursor: pointer;
}
.btn:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}

/* HERO & PAGE BANNER — identical on all pages */
.hero,
.page-banner {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 5rem;
  text-align: center;
  background: var(--dark);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
}
.hero-bg,
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.hero-bg { background-image: url('images/Homopage_top.jpg'); }
.hero-inner,
.page-banner-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.hero h1,
.page-banner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 900;
}
.hero p,
.page-banner p {
  font-size: 1.15rem;
  color: var(--text-on-dark);
  margin-bottom: 2rem;
}

/* LAYOUT */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }

main { display: block; width: 100%; overflow-x: hidden; }
main > .hero,
main > .page-banner,
main > section.hero {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  box-sizing: border-box !important;
  display: block !important;
}

.section       { padding: 4.5rem 0; background: var(--white); }
.section-light { padding: 4.5rem 0; background: var(--bg-light); }
.section-dark  { padding: 4.5rem 0; background: var(--dark); }

.section h2, .section-light h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 1.25rem;
}
.section-dark h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}
.section-dark h3,
.section-dark p { color: var(--text-on-dark); }

/* TWO COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.two-col img { width: 100%; border-radius: 4px; }

/* INTRO QUESTIONS */
.intro-questions { list-style: none; margin: 1.25rem 0 2rem; }
.intro-questions li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.intro-questions li:last-child { border-bottom: none; }

/* PRICING CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.card-label {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.card-price { font-size: 2.8rem; font-weight: 900; color: var(--dark); line-height: 1; }
.card-price sup { font-size: 1.1rem; vertical-align: super; }
.card-price-note { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1.25rem; }
.card-price-text { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 1.25rem; font-style: italic; }
.card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; flex-grow: 1; margin-bottom: 1.5rem; }
.card .btn { font-size: 0.78rem; padding: 0.55rem 1.1rem; align-self: center; }
.card-note { font-size: 0.8rem; color: var(--text-light); margin-top: 1.25rem; font-style: italic; text-align: center; }

/* SERVICES LIST */
.services-list { columns: 2; column-gap: 2rem; list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.services-list li { padding: 0.3rem 0 0.3rem 1.5rem; position: relative; font-size: 0.95rem; break-inside: avoid; }
.services-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* ACCORDION */
.accordion { margin-top: 2.5rem; }
.accordion-item { border: 1px solid var(--border); border-radius: 3px; margin-bottom: 0.5rem; overflow: hidden; }
.accordion-btn {
  width: 100%; background: var(--white); border: none;
  padding: 1rem 1.5rem; text-align: left;
  font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: background 0.18s;
}
.accordion-btn:hover,
.accordion-btn[aria-expanded="true"] { background: var(--bg-light); }
.accordion-icon { font-size: 1.4rem; color: var(--orange); font-weight: 300; transition: transform 0.25s; line-height: 1; flex-shrink: 0; margin-left: 1rem; }
.accordion-btn[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 1.5rem; font-size: 0.92rem; color: var(--text-light); border-top: 1px solid var(--border); background: var(--bg-light); }
.accordion-body.open { display: block; }
.accordion-body p { margin-bottom: 0.85rem; }
.accordion-body p:last-child { margin-bottom: 0; }
.accordion-body ol, .accordion-body ul { margin: 0.75rem 0 0.75rem 1.5rem; }
.accordion-body li { margin-bottom: 0.4rem; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.testimonial { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 1.75rem; position: relative; }
.testimonial::before { content: '\201C'; font-size: 5rem; color: var(--orange); opacity: 0.15; position: absolute; top: 0; left: 1rem; line-height: 1; pointer-events: none; }
.testimonial blockquote { font-style: italic; font-size: 0.93rem; color: var(--text); line-height: 1.7; margin-bottom: 1.1rem; }
.testimonial cite { font-style: normal; font-weight: 700; font-size: 0.875rem; color: var(--text); display: block; }
.testimonial cite span { font-weight: 400; color: var(--text-light); display: block; }

/* WHO WE ARE */
.full-width-img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
.profile-block { max-width: 860px; margin: 0 auto; }
.profile-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.15rem; }
.profile-quals { font-size: 0.88rem; color: var(--text-light); letter-spacing: 0.04em; margin-bottom: 1.5rem; }
.profile-block p { margin-bottom: 1rem; font-size: 0.97rem; }

/* ABOUT BLOCK (homepage) */
.about-content { display: grid; grid-template-columns: 180px 1fr; gap: 2.5rem; align-items: start; }
.about-content img { border-radius: 4px; width: 100%; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1rem; }
.about-text .btn { margin-top: 1.5rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: stretch; }
.contact-info p { margin-bottom: 1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.97rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.form-group input,
.form-group textarea {
  border: 1px solid var(--border); border-radius: 3px; padding: 0.65rem 0.9rem;
  font-family: 'Lato', sans-serif; font-size: 0.95rem; color: var(--text);
  background: var(--white); width: 100%; transition: border-color 0.18s, box-shadow 0.18s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,130,31,0.12); }
.form-group textarea { min-height: 130px; resize: vertical; }

/* FOOTER */
.site-footer { background: var(--dark-alt); color: var(--text-on-dark); padding: 3rem 0 1.5rem; }
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 1.5rem; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--text-on-dark); font-size: 0.88rem; padding: 0.2rem 0; text-decoration: none; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-col p { font-size: 0.88rem; line-height: 1.6; }
.footer-badge { margin-top: 1.25rem; }
.footer-badge img { height: 36px; width: auto; }
.footer-bottom { text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 160px 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: var(--nav-height); left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); padding: 1rem; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 0.75rem 1rem; width: 100%; }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr; }
  .services-list { columns: 1; }
  .cards-grid { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .about-content img { max-width: 160px; }
}

/* Who We Are responsive grid */
.who-we-are-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 680px) {
  .who-we-are-grid {
    grid-template-columns: 1fr;
  }
  .who-we-are-grid > div:first-child {
    max-width: 220px;
    margin: 0 auto;
  }
}
