/* vue+ marketing site.
 *
 * Hand-written CSS. The block below the banner is all that Tailwind ever
 * contributed to this site — its preflight reset plus the one .visible
 * utility the markup uses — inlined here from the last Tailwind build so
 * that editing this file needs no toolchain at all. There was never any
 * @apply in the 881 lines that follow it; the design was plain CSS from the
 * start, and the build step it used to carry was buying the reset only.
 *
 * Everything from ":root {" onward is the original source, unchanged.
 * Edit it directly. See web/README.md.
 */
@layer theme{:root,:host{--default-font-family:Arial, Helvetica, sans-serif;--default-mono-font-family:monospace}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring:where(:not(iframe)){outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::placeholder{color:color-mix(in oklab, currentcolor 50%, transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.visible{visibility:visible}.block{display:block}}

/* ---- end of the inlined Tailwind reset; hand-written CSS follows ---- */

:root {
  --background: #f8f7f3;
  --foreground: #282b27;
  --orange: #ee5b26;
  --muted: #74756d;
  --line: #deded5;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 6px;
}
button,
a {
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
svg {
  flex-shrink: 0;
}
.site-header {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.2%;
  border-bottom: 1px solid var(--line);
  gap: 28px;
}
.brand img {
  width: 119px;
  height: auto;
}
.site-header nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
}
.site-header nav a:hover {
  color: var(--orange);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background: var(--orange);
  color: white;
  padding: 19px 25px;
  font-size: 13px;
  font-weight: 500;
  border: 0;
  cursor: pointer;
}
.button:hover {
  background: #c94413;
}
.button span {
  font-size: 22px;
  line-height: 1;
}
.button-small {
  padding: 14px 20px;
  font-size: 12px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.9px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.6;
}
.orange-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  flex-shrink: 0;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 660px;
}
.hero-copy {
  padding: 65px 10.4% 25px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.hero h1 {
  font-size: clamp(48px, 5.3vw, 79px);
  line-height: 1.07;
  letter-spacing: -3.4px;
  margin: 31px 0 24px;
}
.hero h1 > span {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: var(--orange);
  font-weight: 400;
}
.hero-copy > p {
  font-size: 14px;
  line-height: 1.85;
  max-width: 400px;
}
.hero-copy > .button {
  margin-top: 29px;
}
.hero-notes {
  display: flex;
  gap: 22px;
  margin-top: 23px;
  font-size: 10px;
  color: var(--muted);
}
.hero-notes > span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-notes svg {
  color: #858977;
  width: 14px;
}
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding-top: 39px;
  font-size: 9px;
  letter-spacing: 1.6px;
  color: var(--muted);
}
.hero-bottom a {
  font-size: 23px;
  color: var(--foreground);
}
.hero-photo {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}
.hero-photo > img {
  object-fit: cover;
  object-position: center 54%;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 65% 0 0;
  background: linear-gradient(transparent, #0006);
}
.photo-label {
  position: absolute;
  top: 27px;
  left: 28px;
  background: #f8f7f3ee;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  letter-spacing: 1.1px;
}
.photo-caption {
  position: absolute;
  bottom: 28px;
  left: 30px;
  right: 30px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.photo-caption span:first-child {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 23px;
}
.photo-caption span:last-child {
  font-size: 10px;
  letter-spacing: 2px;
}
.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 29px 5.2%;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.benefit-strip > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11px;
  border-right: 1px solid var(--line);
}
.benefit-strip > span:last-child {
  border: 0;
}
.benefit-strip svg {
  color: #767d65;
}
.section {
  padding: 90px 7.5%;
  max-width: 1600px;
  margin: auto;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 45px;
}
h2 {
  font-size: 44px;
  letter-spacing: -1.8px;
  line-height: 1.16;
}
.section-heading h2 {
  margin-top: 17px;
}
.section-heading > p {
  max-width: 365px;
  font-size: 14px;
}
.product-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 8%;
}
.product-visual {
  position: relative;
  background: #eeeee7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 30px;
}
.product-tag {
  font-size: 9px;
  letter-spacing: 1.5px;
  align-self: flex-start;
  border: 1px solid #c9cbc0;
  padding: 8px 10px;
}
.product-visual > img {
  width: 84%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  align-self: center;
  margin: 15px 0;
}
.product-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  border-top: 1px solid #d3d6c9;
  padding-top: 20px;
}
.product-caption span:last-child {
  font-size: 8px;
  letter-spacing: 1px;
}
.product-details {
  padding: 25px 0;
}
.product-details h3 {
  font-size: 37px;
  letter-spacing: -1.2px;
  line-height: 1.2;
  margin: 16px 0;
}
.product-details > p {
  font-size: 14px;
}
.feature {
  display: flex;
  gap: 21px;
  padding-top: 23px;
}
.feature > span {
  color: #9d9e93;
  font-size: 10px;
  padding-top: 5px;
}
.feature h4 {
  font-size: 14px;
  font-weight: 500;
}
.feature p {
  font-size: 12px;
  margin-top: 4px;
}
.text-link {
  display: inline-flex;
  gap: 40px;
  align-items: center;
  font-size: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 9px;
  margin-top: 28px;
}
.text-link:hover {
  color: var(--orange);
}
.text-link span {
  font-size: 20px;
}
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #eaece3;
}
.about-photo {
  position: relative;
  min-height: 450px;
}
.about-photo img {
  object-fit: cover;
}
.about-copy {
  padding: 65px 13%;
}
.about-copy h2 {
  font-size: 37px;
  margin: 20px 0;
}
.about-copy p {
  font-size: 13px;
  margin-top: 13px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {
  border-top: 1px solid var(--line);
  padding-top: 23px;
}
.step-number {
  font-family: Georgia, serif;
  font-size: 30px;
  color: var(--orange);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.step-number span {
  font-size: 22px;
  color: #959889;
}
.step h3 {
  font-size: 19px;
  margin: 23px 0 10px;
}
.step p {
  font-size: 13px;
  max-width: 280px;
}
.installation-banner {
  height: 250px;
  position: relative;
  margin-top: 45px;
  overflow: hidden;
}
.installation-banner img {
  object-fit: cover;
  object-position: center;
}
.installation-banner:after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, #0008);
}
.installation-banner > span {
  position: absolute;
  z-index: 1;
  bottom: 25px;
  left: 30px;
  color: white;
  font:
    italic 25px Georgia,
    serif;
}
.faq-section {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 9%;
  padding-top: 75px;
}
.faq-section h2 {
  margin: 17px 0;
}
.faq-section > div > p {
  max-width: 300px;
  font-size: 13px;
}
.questions details {
  border-bottom: 1px solid var(--line);
}
.questions details:first-child {
  border-top: 1px solid var(--line);
}
.questions summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 14px;
}
.questions summary::-webkit-details-marker {
  display: none;
}
.questions summary > span {
  font-size: 22px;
  color: var(--muted);
}
.questions details[open] summary > span {
  transform: rotate(45deg);
}
.questions details p {
  font-size: 13px;
  padding: 0 30px 23px 0;
}
.enquiry-section {
  background: #eaece3;
  padding: 75px 7.5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7%;
}
.enquiry-copy h2 {
  font-size: 48px;
  letter-spacing: -2px;
  margin: 24px 0;
}
.enquiry-copy h2 span {
  color: var(--orange);
}
.enquiry-copy > p {
  font-size: 14px;
}
.enquiry-note {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-top: 50px;
  color: #707863;
  font-size: 12px;
  line-height: 1.7;
}
.enquiry-note svg {
  width: 35px;
  height: 35px;
}
.enquiry-form h3 {
  font-size: 23px;
  margin-bottom: 25px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.enquiry-form label {
  font-size: 11px;
  display: block;
  margin-bottom: 18px;
}
.enquiry-form label > span {
  color: var(--muted);
}
input,
select,
textarea {
  display: block;
  width: 100%;
  background: #f8f7f3;
  border: 1px solid #d6d9ce;
  border-radius: 0;
  padding: 13px 12px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--foreground);
  outline-offset: 2px;
}
input:focus,
select:focus,
textarea:focus {
  outline: 1px solid var(--orange);
}
textarea {
  resize: vertical;
}
.enquiry-form .button {
  width: 100%;
}
/* The consent row. Not part of the original design — the form this replaced
   asked for a name and an email and promised nothing about them, so there was
   nothing to agree to. The checkbox has to opt out of the `input, select,
   textarea` rule above: left on width:100% it renders as a 400px-wide, 13px-tall
   bar with the sentence stranded underneath. */
/* Scoped to .enquiry-form so it outranks `.enquiry-form label`, which is one
   element more specific than a bare .consent and would otherwise keep the row
   display:block and leave the checkbox on its own line. */
.enquiry-form .consent {
  align-items: flex-start;
  gap: 10px;
  display: flex;
  margin-bottom: 18px;
}
.consent input {
  width: auto;
  flex-shrink: 0;
  margin-top: 1px;
  padding: 0;
  accent-color: var(--orange);
}
.consent span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
.form-note {
  font-size: 10px;
  margin-top: 12px;
  line-height: 1.6;
}
.form-status {
  font-size: 12px;
  margin-top: 8px;
  color: #47593a;
}
footer {
  padding: 45px 5.2% 23px;
  background: #282d27;
  color: #fff;
}
.footer-main {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-bottom: 38px;
}
.footer-main p {
  font-size: 12px;
  color: #b7bcb1;
}
.footer-main > a:last-child {
  margin-left: auto;
  font-size: 11px;
}
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid #454a42;
  display: flex;
  justify-content: space-between;
  color: #a4ab9d;
  font-size: 10px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 15px;
  background: #fff;
  padding: 15px;
  z-index: 100;
}
.skip-link:focus {
  top: 15px;
}
@media (min-width: 1500px) {
  .hero-copy {
    padding-top: 85px;
    padding-bottom: 35px;
  }
  .hero {
    min-height: 760px;
  }
  .hero-photo {
    min-height: 760px;
  }
  .hero h1 {
    font-size: 85px;
  }
  .hero-copy > p {
    font-size: 16px;
  }
}
@media (max-width: 1000px) {
  .site-header nav {
    gap: 20px;
  }
  .hero-copy {
    padding-left: 8%;
    padding-right: 8%;
  }
  .hero h1 {
    font-size: 55px;
  }
  .hero-notes {
    gap: 12px;
    flex-wrap: wrap;
  }
  .desktop-break {
    display: none;
  }
  .benefit-strip {
    gap: 10px;
    padding-left: 3%;
    padding-right: 3%;
  }
  .benefit-strip > span {
    font-size: 10px;
    gap: 8px;
  }
  .section {
    padding: 70px 6%;
  }
  .about-copy {
    padding: 45px 9%;
  }
  .about-copy h2 {
    font-size: 32px;
  }
  .enquiry-section {
    padding: 65px 6%;
    gap: 5%;
  }
  .enquiry-copy h2 {
    font-size: 39px;
  }
  .form-row {
    gap: 12px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 20px;
  }
  .site-header {
    height: 80px;
    padding: 0 6%;
    gap: 12px;
  }
  .brand img {
    width: 100px;
  }
  .site-header nav {
    display: none;
  }
  .button-small {
    font-size: 10px;
    padding: 13px 15px;
    gap: 16px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 45px 7% 25px;
  }
  .hero h1 {
    font-size: clamp(51px, 10vw, 72px);
    letter-spacing: -2.5px;
    margin-top: 24px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .hero-notes {
    gap: 22px;
  }
  .hero-bottom {
    padding-top: 35px;
  }
  .hero-photo {
    min-height: 490px;
    max-height: 650px;
    height: 120vw;
  }
  .hero-photo > img {
    object-position: center 55%;
  }
  .photo-label {
    left: 22px;
    top: 22px;
  }
  .benefit-strip {
    grid-template-columns: 1fr 1fr;
    padding: 26px 5%;
    gap: 24px 10px;
  }
  .benefit-strip > span {
    font-size: 10px;
    justify-content: flex-start;
    gap: 9px;
    border: 0;
  }
  .benefit-strip svg {
    width: 20px;
  }
  .section {
    padding: 58px 7%;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  h2 {
    font-size: 36px;
  }
  .section-heading > p {
    margin-top: 20px;
    max-width: 100%;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .product-visual {
    padding: 22px;
  }
  .product-visual > img {
    max-height: 350px;
  }
  .product-details {
    padding: 20px 0 0;
  }
  .product-details h3 {
    font-size: 33px;
  }
  .about-section {
    grid-template-columns: 1fr;
  }
  .about-photo {
    min-height: 300px;
  }
  .about-copy {
    padding: 42px 7%;
  }
  .about-copy h2 {
    font-size: 34px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .step {
    padding-top: 16px;
  }
  .step h3 {
    margin: 12px 0 7px;
  }
  .step p {
    max-width: 100%;
  }
  .installation-banner {
    height: 220px;
    margin-top: 35px;
  }
  .installation-banner > span {
    font-size: 20px;
    left: 20px;
    right: 20px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-section > div > p {
    max-width: 100%;
  }
  .questions summary {
    font-size: 13px;
  }
  .enquiry-section {
    grid-template-columns: 1fr;
    padding: 50px 7%;
    gap: 35px;
  }
  .enquiry-copy h2 {
    font-size: 42px;
  }
  .enquiry-note {
    display: none;
  }
  .form-row {
    gap: 14px;
  }
  footer {
    padding: 35px 7% 25px;
  }
  .footer-main {
    flex-wrap: wrap;
    gap: 19px;
    padding-bottom: 25px;
  }
  .footer-main img {
    width: 100px;
    height: auto;
  }
  .footer-main p {
    font-size: 10px;
  }
  .footer-main > a:last-child {
    width: 100%;
    margin-left: 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 13px;
    font-size: 9px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
