/* Fixes applied to the static build. Not part of the original theme.
   Loaded after the theme stylesheet so these win. */

/* The enquiry form's inputs are a fixed 378px wide. Plus padding and the
   15px page margin that is 11px past a 390px phone screen, which makes the
   whole page scroll sideways. Let them shrink to fit instead. */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea,
.wpcf7-form select {
    max-width: 100%;
    box-sizing: border-box;
}

/* Hide the spam honeypot without parking it 9999px off to the left, which
   can itself create a sideways scroll. */
.gwc-hp {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}
