:root {
  --black: #161616;
  --off-black: #1f1f1f;
  --orange: #f2621a;
  --white: #ffffff;
  --grey: #6b6b6b;
  --light-grey: #f4f4f4;
  --max-width: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  padding-bottom: 6px;
}

.logo-img { height: 132px; width: auto; display: block; }

.site-nav { display: flex; gap: 28px; }

.site-nav a {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.site-nav a:hover { color: var(--orange); }

/* Hero */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  background: var(--white);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero h1 .accent { color: var(--orange); }

.hero-sub {
  max-width: 560px;
  margin: 22px auto 34px;
  font-size: 1.15rem;
  color: var(--grey);
}

.cta {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border: 2px solid var(--black);
  border-radius: 4px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cta:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* Brands */
.brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--light-grey);
}

.brand-block {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}

.brand-garden {
  background-color: #12271a;
  background-image: url("assets/garden-bg.jpg");
  background-size: cover;
  background-position: center;
}

.brand-electronics {
  background-color: #131a26;
  background-image: url("assets/electricals-bg.jpg");
  background-size: cover;
  background-position: center;
}

.brand-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.brand-overlay {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 32px 40px;
  max-width: 520px;
  text-align: center;
  background: rgba(0,0,0,0.35);
  border-radius: 8px;
}

.brand-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 10px;
}

.brand-overlay h2 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  white-space: nowrap;
}

.brand-overlay p {
  font-size: 1rem;
  color: #e7e7e7;
}

.more-brands {
  grid-column: 1 / -1;
  text-align: center;
  padding: 22px 0;
  background: var(--light-grey);
  color: var(--grey);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* About */
.about {
  padding: 90px 0;
  background: var(--white);
}

.about-inner { max-width: 720px; margin: 0 auto; text-align: center; }

.about h2 {
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.about p {
  font-size: 1.08rem;
  color: var(--grey);
}

.about p + p {
  margin-top: 16px;
}

/* Contact */
.contact {
  padding: 90px 0;
  background: var(--light-grey);
}

.contact-inner { max-width: 520px; margin: 0 auto; text-align: center; }

.contact h2 {
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.contact-sub {
  color: var(--grey);
  margin-bottom: 30px;
}

.contact-form {
  text-align: left;
}

.form-message {
  display: none;
  padding: 14px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  text-align: left;
}

.form-message.is-visible { display: block; }

.form-success {
  background: #e9f7ee;
  color: #1b6d3a;
  border: 1px solid #bfe6cd;
}

.form-error {
  background: #fdecea;
  color: #a4271f;
  border: 1px solid #f4c7c2;
}

.field-error {
  display: block;
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 2px;
}

[aria-invalid="true"] {
  border-color: #c0392b !important;
}

.form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.form-row input,
.form-row textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 2px solid #ddd;
  border-radius: 4px;
  background: var(--white);
  color: var(--black);
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.cta-dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  cursor: pointer;
}

.cta-dark:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 44px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-logo {
  height: 90px;
  width: auto;
}

.footer-disclaimer {
  max-width: 640px;
  color: #888;
  font-size: 0.78rem;
  line-height: 1.5;
  margin-top: 4px;
}

.footer-copy { color: #888; font-size: 0.85rem; }

/* Responsive */
@media (max-width: 760px) {
  .brands { grid-template-columns: 1fr; }
  .brand-block { min-height: 340px; }
  .brand-overlay h2 { font-size: 1.6rem; }
  .site-nav { gap: 18px; }
  .hero { padding: 70px 0 56px; }
  .logo-img { height: 72px; }
}
