/* ============================================================
   INTERLINK TORONTO DOORS — MAIN STYLESHEET (v2)
   ------------------------------------------------------------
   All brand values below were eyedropper-sampled from a
   full-page screenshot of the original site.
   Contents
   1. Design tokens        8. Feature cards
   2. Reset & base         9. Product cards
   3. Utilities            10. Promo banner
   4. Buttons              11. Testimonials
   5. Topbar & header      12. Process steps
   6. Hero & quote form    13. Final CTA
   7. Trust bar            14. Footer
============================================================ */

/* ============================================================
   1. DESIGN TOKENS  (sampled from the original)
============================================================ */
:root {
  /* Brand palette */
  --green-900: #000000;     /* headings, topbar, footer, icons, step circles */
  --green-hero-a: #68359f;  /* hero/promo gradient — teal side */
  --green-hero-b: #f0edf7;  /* hero/promo gradient — mid */
  --green-hero-c: #f0edf7;  /* hero/promo gradient — olive side */
  --green-hero-d: #0e2b1a;  /* hero gradient — darkened corner */
  --yellow-500: #ffd586;    /* buttons, stars, checks, highlights */
  --yellow-600: #ecc405;    /* button hover */
  --yellow-100: #fef4c1;    /* feature icon chips */
  --btn-ink: #112620;       /* text on yellow buttons */

  /* Semantic colors */
  --clr-bg: #ffffff;
  --clr-yellowbg: #ffd586;
  --clr-mint: #f0edf7;      /* alt sections + trust bar */
  --clr-ink: var(--green-900);
  --clr-body: #000;      /* paragraph gray-green */
  --clr-muted: #788583;     /* secondary / eyebrows */
  --clr-border: #e2eae7;    /* card borders */
  --clr-input-border: #d5dfdc;
  --clr-success: #1f9d55;
  --clr-error: #d64545;

  /* Typography — single family, matching the original */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout (container matches original: 1152px) */
  --container: 1152px;
  --gutter: 24px;
  --section-y: clamp(64px, 8vw, 96px);
  --header-h: 76px;

  /* Shape & elevation */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-circle: 50%;
  --radius-lg: 12px;
  --shadow-card: 0 1px 2px rgba(20, 70, 62, 0.05);
  --shadow-form: 0 18px 44px rgba(1, 40, 34, 0.35);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --speed: 200ms;
}

/* ============================================================
   2. RESET & BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--clr-body);
  background-color: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4 {
  color: var(--clr-ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

:focus-visible {
  outline: 3px solid var(--yellow-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--green-900);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top var(--speed) var(--ease);
}

.skip-link:focus {
  top: 0;
}

/* ============================================================
   3. UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: calc(var(--container) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--star {
  fill: var(--yellow-500);
  stroke: var(--yellow-500);
  width: 0.95em;
  height: 0.95em;
}

.icon--check {
  color: var(--yellow-500);
  stroke-width: 2.75;
}

.stars {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.section {
  padding-block: var(--section-y);
  background: var(--clr-bg);
}

.section--mint {
  background: var(--clr-mint);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head .eyebrow {
  display: block;
  margin-bottom: 14px;
}

.section-head__title {
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  font-weight: 800;
}

.section-head__sub {
  margin: 14px auto 0;
  max-width: 560px;
  font-size: 0.98rem;
  color: var(--clr-body);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ============================================================
   4. BUTTONS  (all yellow, dark text — as on the original)
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--yellow-500);
  color: var(--btn-ink);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color var(--speed) var(--ease),
              transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease);
}

.btn span {
  transition: transform var(--speed) var(--ease);
}

.btn:hover {
  background: var(--yellow-600);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(253, 213, 6, 0.28);
}

.btn:hover span {
  transform: translateX(3px);
}

.btn:active {
  transform: translateY(0);
}

.btn_purple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 0;
  border-radius: var(--radius-md);
  background: #68359f;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color var(--speed) var(--ease),
              transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease);
}

.btn_purple span {
  transition: transform var(--speed) var(--ease);
}

.btn_purple:hover {
  background: #77559e;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(119, 85, 158, 0.4);
}

.btn_purple:hover span {
  transform: translateX(3px);
}

.btn_purple:active {
  transform: translateY(0);
}

.btn--sm  { padding: 10px 18px; font-size: 0.9rem; }
.btn--lg  { padding: 15px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ============================================================
   5. TOPBAR & HEADER
============================================================ */
.topbar {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
}

.topbar__text {
  padding-block: 8px;
  text-align: center;
}

.topbar__text strong {
  color: #fff;
  font-weight: 700;
}

.topbar__dot {
  margin-inline: 6px;
  opacity: 0.6;
}

.wpcf7-list-item label{
	display:flex;
	gap:5px;
    align-items: flex-start;
}

.wpcf7-list-item label{
	display:flex;
	gap:5px;
    align-items: flex-start;
}

span.wpcf7-list-item-label {
    font-size: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--speed) var(--ease),
              border-color var(--speed) var(--ease);
}

/* toggled by main.js */
.site-header.is-scrolled {
  border-color: var(--clr-border);
  box-shadow: 0 2px 12px rgba(20, 70, 62, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}

.brand img {
  height: 50px;
  width: auto;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-900);
  transition: opacity var(--speed) var(--ease);
}

.phone-link .icon {
  width: 1.05em;
  height: 1.05em;
}

.phone-link:hover {
  opacity: 0.75;
}

/* ============================================================
   6. HERO & QUOTE FORM
   Gradient sampled from the original: teal-green (left) into
   olive-green (right), darkening toward the bottom-right.
============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
	background: radial-gradient(circle at 85% 20%,oklch(55% .15 100/.25),#260c41 35%),radial-gradient(circle at 10% 90%,oklch(40% .08 180/.5),#572b87 60%),linear-gradient(135deg,oklch(28% .05 180),oklch(22% .04 180));
/*	background:#68359f;*/
/*   background:
    radial-gradient(1100px 760px at 88% 112%, rgba(2, 14, 8, 0.55), transparent 62%),
    radial-gradient(860px 640px at -4% 104%, rgba(1, 84, 72, 0.35), transparent 58%),
    linear-gradient(97deg, #f0edf7 0%, var(--green-hero-b) 48%, var(--green-hero-c) 100%); */
  padding-block: clamp(48px, 6vw, 80px);
}

.hero__grid {
  position: relative;
  display: grid;
  /* right column measured at 448px on the original (1920px viewport) */
  grid-template-columns: minmax(0, 1fr) 448px;
  gap: clamp(36px, 4vw, 56px);
  align-items: center;
}

/* Eyebrow pill with yellow dot */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.eyebrow-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow-500);
}

.hero__title {
  margin-top: 20px;
  color: #fff;
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
}

.hero__title .accent {
  color: var(--yellow-500);
}

.hero__lede {
  margin-top: 20px;
  max-width: 46ch;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.82);
}

/* Offer chips — translucent green pills, yellow value text */
.offers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  transition: background-color var(--speed) var(--ease);
}

.offer:hover {
  background: rgba(255, 255, 255, 0.2);
}

.offer__value {
  font-weight: 700;
  color: var(--yellow-500);
}

.hero__cta {
  margin-top: 28px;
}

.hero__note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ✓ badges row */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.hero-badge .icon {
  width: 1em;
  height: 1em;
}

/* Quote form card */
.quote-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-form);
  padding: 28px 26px 24px;
  color: var(--clr-body);
}

.quote-card__title {
  font-size: 1.5rem;
  font-weight: 800;
}

.quote-card__sub {
  margin-top: 6px;
  font-size: 0.88rem;
  color: var(--clr-body);
}

.quote-form {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #24332f;
}

.field__input {
  width: 100%;
  padding: 10px 13px;
  background: #fff;
  border: 1px solid var(--clr-input-border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: #24332f;
  transition: border-color var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease);
}

.field__input::placeholder {
  color: #a0aca9;
}

.field__input:focus {
  outline: none;
  border-color: var(--green-900);
  box-shadow: 0 0 0 3px rgba(20, 70, 62, 0.14);
}

.field__input[aria-invalid="true"] {
  border-color: var(--clr-error);
}

.field__textarea {
  resize: vertical;
  min-height: 80px;
}

.field__select-wrap {
  position: relative;
}

.field__select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
  cursor: pointer;
}

.field__select:invalid {
  color: #a0aca9;
}

.field__chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  color: #7a8784;
  pointer-events: none;
}

.field__error {
  font-size: 0.78rem;
  color: var(--clr-error);
}

.quote-form__consent {
    font-size: 0.75rem;
    text-align: center;
    color: var(--clr-muted);
    position: relative;
    top: 3px;
}

.quote-success {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
  padding: 34px 8px 22px;
}

.quote-success__icon {
  width: 52px;
  height: 52px;
  color: var(--clr-success);
}

.quote-success__title {
  font-size: 1.25rem;
  font-weight: 800;
}

.quote-success__text {
  max-width: 34ch;
  font-size: 0.9rem;
}

/* ============================================================
   7. TRUST BAR  (static light strip)
============================================================ */
.trustbar {
  background: var(--clr-yellowbg);
  padding-block: 22px;
}

.trustbar__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 48px;
  flex-wrap: wrap;
}

.trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-900);
}

.trustbar__item .icon {
  width: 1.2em;
  height: 1.2em;
}

/* ============================================================
   8. FEATURE CARDS (Why Interlink)
============================================================ */
.feature-card {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(20, 70, 62, 0.10);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-circle);
  background: #f0edf7;
  color: var(--green-900);
  margin-bottom: 16px;
}

.feature-card__icon .icon {
  width: 40px;
  height: 40px;
}

.feature-card__title {
  font-size: 1.08rem;
  font-weight: 700;
}

.feature-card__text {
  margin-top: 8px;
  font-size: 0.9rem;
}

/* ============================================================
   9. PRODUCT CARDS
============================================================ */
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(20, 70, 62, 0.12);
}

.product-card__media {
  overflow: hidden;
/*   aspect-ratio: 2 / 3; */
  background: var(--clr-mint);
}
.space-top{
	margin-top:15px;
}
.btn--xs {
    padding: 7px 13px;
    font-size: 0.9rem;
    font-weight: 500;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 20px 22px 24px;
}

.product-card__title {
  font-size: 1.08rem;
  font-weight: 700;
}

.product-card__text {
  margin-top: 8px;
  font-size: 0.9rem;
}

/* ============================================================
   10. PROMO BANNER  (centered on dark green gradient)
============================================================ */
.promo {
  color: #fff;
	background: radial-gradient(circle at 85% 20%,oklch(55% .15 100/.25),#260c41 35%),radial-gradient(circle at 10% 90%,oklch(40% .08 180/.5),#572b87 60%),linear-gradient(135deg,oklch(28% .05 180),oklch(22% .04 180));
/* 	background: var(--green-hero-a); */
/*   background:
    radial-gradient(900px 560px at 92% 120%, rgba(2, 14, 8, 0.5), transparent 60%),
    linear-gradient(97deg, var(--green-hero-a) 0%, var(--green-hero-b) 52%, #193119 100%); */
  padding-block: clamp(52px, 6vw, 84px);
}

.promo__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.promo__title {
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
}

.promo__text {
  margin: 14px 0 26px;
  max-width: 640px;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.82);
}

/* ============================================================
   11. TESTIMONIALS
============================================================ */
.review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(20, 70, 62, 0.10);
}

.review-card__quote {
  font-size: 0.93rem;
  color: var(--clr-body);
}

.review-card__meta {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

.review-card__name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--clr-ink);
}

.review-card__source {
  font-size: 0.8rem;
  color: var(--clr-muted);
}

/* ============================================================
   12. PROCESS STEPS
============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
  transition: transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(20, 70, 62, 0.10);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-900);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.step__title {
  font-size: 1.02rem;
  font-weight: 700;
}

.step__text {
  margin-top: 8px;
  font-size: 0.88rem;
}

/* ============================================================
   13. FINAL CTA  (white, centered, 2×2 checklist)
============================================================ */
.cta {
  background: var(--clr-bg);
  padding-block: var(--section-y);
}

.cta__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.cta__title {
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  font-weight: 800;
}

.cta__text {
  margin: 14px 0 30px;
  max-width: 600px;
  font-size: 0.98rem;
  color: var(--clr-body);
}

.cta__list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 14px 48px;
  margin-bottom: 34px;
  text-align: left;
}

.cta__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  font-weight: 500;
  color: #3d4c48;
}

.cta__item .icon {
  width: 1.05em;
  height: 1.05em;
}

/* ============================================================
   14. FOOTER  (dark green, two columns)
============================================================ */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 34px;
}

.site-footer__col {
  display: grid;
  gap: 4px;
}

.site-footer__col--right {
  text-align: right;
  justify-items: end;
}

.site-footer__copy {
  font-weight: 700;
  color: #fff;
}

.site-footer__phone a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #fff;
  transition: color var(--speed) var(--ease);
}

.site-footer__phone .icon {
  width: 1em;
  height: 1em;
}

.site-footer__email a {
  transition: color var(--speed) var(--ease);
}

.site-footer__phone a:hover,
.site-footer__email a:hover {
  color: var(--yellow-500);
}
