/* CSS RESET & VARIABLES */
*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --black: #1B1D1F;
  --field: #F5F5F2;
  --board: #FFFFFF;
  --blue: #2E5E9E;
  --red: #C22F38;
  --blue-ink: #24497C;
  --red-ink: #9E2530;
  --muted: #5A5E62;
  --text: #1B1D1F;
  --accent-blue: #2E5E9E;
  --accent-red: #C22F38;
  --cta-bg: #1B1D1F;
  --cta-text: #FFFFFF;
  --border-color: #DDDEDA;
  --font-display: 'Libre Caslon Text', serif;
  --font-body: 'Red Hat Text', sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --field: #17191B;
    --board: #202326;
    --text: #E8E9EA;
    --muted: #B9BEC4;
    --accent-blue: #8FB0DC;
    --accent-red: #E89AA0;
    --black: #E8E9EA;
    --cta-bg: #FFFFFF;
    --cta-text: #1B1D1F;
    --border-color: #33363A;
  }
}

:root[data-theme="dark"] {
  --field: #17191B;
  --board: #202326;
  --text: #E8E9EA;
  --muted: #B9BEC4;
  --accent-blue: #8FB0DC;
  --accent-red: #E89AA0;
  --black: #E8E9EA;
  --cta-bg: #FFFFFF;
  --cta-text: #1B1D1F;
  --border-color: #33363A;
}

:root[data-theme="light"] {
  --black: #1B1D1F;
  --field: #F5F5F2;
  --board: #FFFFFF;
  --blue: #2E5E9E;
  --red: #C22F38;
  --blue-ink: #24497C;
  --red-ink: #9E2530;
  --muted: #5A5E62;
  --text: #1B1D1F;
  --accent-blue: #2E5E9E;
  --accent-red: #C22F38;
  --cta-bg: #1B1D1F;
  --cta-text: #FFFFFF;
  --border-color: #DDDEDA;
}

/* self-hosted fonts */
@font-face {
  font-family: 'Libre Caslon Text';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/caslon-400-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Libre Caslon Text';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/caslon-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Libre Caslon Text';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/caslon-700-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Libre Caslon Text';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/caslon-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Red Hat Text';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/redhat-var-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Red Hat Text';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/redhat-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* GENERAL BASE STYLES */
body {
  margin: 0;
  padding: 0;
  background-color: var(--field);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent-blue);
  outline-offset: 2px;
}

/* PREVIEW RIBBON */
.preview-ribbon {
  background-color: #24497C;
  color: #FFFFFF;
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1005;
}
.preview-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.preview-text {
  line-height: 1.4;
}
.preview-chips {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.preview-chip {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  transition: background-color 0.2s;
  white-space: nowrap;
}
.preview-chip:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.preview-dismiss {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.preview-dismiss:hover {
  opacity: 0.8;
}

/* MASTHEAD */
.site-header {
  background-color: #1B1D1F;
  position: static;
  z-index: 100;
}
.masthead {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 64px;
  height: 76px;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}
.lockup {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wordmark-link {
  text-decoration: none;
}
.wm {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.wm2 {
  color: #B9BEC4;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
}
.masthead-nav {
  display: flex;
  align-items: center;
}
.nav-details {
  width: 100%;
}
.nav-hamburger {
  display: none;
}
.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #E8E9EA;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #FFFFFF;
}
.nav-cta-item a {
  background-color: #FFFFFF;
  color: #1B1D1F !important;
  padding: 10px 18px;
  border-radius: 3px;
  font-weight: 700;
}
.nav-cta-item a:hover {
  opacity: 0.9;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  background-color: var(--field);
  min-height: 720px;
  overflow: hidden;
  width: 100%;
}
.hero-background {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('img/hero-ground.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #101112;
  opacity: 0.34;
  z-index: 1;
}
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 64px 64px 64px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 720px;
  box-sizing: border-box;
}
.copy-panel {
  background-color: var(--board);
  border-radius: 4px;
  padding: 40px 44px;
  width: 640px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  box-sizing: border-box;
}
.kicker {
  color: var(--blue-ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.hero-h1 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 54px;
  margin: 0;
}
.hero-sub {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
.hero-ctas {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.btn-black {
  background-color: var(--cta-bg);
  color: var(--cta-text);
  border: 1px solid var(--cta-bg);
}
.btn-outline {
  background-color: transparent;
  color: var(--cta-bg);
  border: 2px solid var(--cta-bg);
}
.btn-black:hover {
  opacity: 0.9;
}
.btn-outline:hover {
  background-color: rgba(27,29,31,0.05);
}
.hero-proof {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-family: var(--font-body);
}
.proof-reviews {
  color: var(--text);
  font-weight: 500;
  text-decoration: underline;
}
.proof-divider {
  color: var(--muted);
}
.proof-license {
  color: var(--muted);
}

/* YARD SIGN */
.sign-wrapper {
  position: absolute;
  left: 940px;
  top: 210px;
  width: 360px;
}
.legs {
  position: absolute;
  left: 62px;
  top: 170px;
  width: 240px;
  height: 300px;
  z-index: 1;
}
.leg {
  background-color: #83878B;
  width: 4px;
  height: 300px;
  position: absolute;
}
.leg-1 { left: 30px; }
.leg-2 { left: 200px; }

.yard-sign {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 2px;
  box-shadow: 0px 14px 34px 0px rgba(0,0,0,0.4);
  width: 360px;
  transform-origin: top left;
  transform: rotate(-2deg);
  text-decoration: none;
}
.sign-top {
  background-color: #1B1D1F;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 18px;
  gap: 2px;
}
.sign-top-s1 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.sign-top-s2 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}
.sign-checker {
  display: flex;
  flex-direction: row;
  gap: 6px;
  justify-content: center;
  padding: 10px 18px;
  width: 100%;
}
.sign-square {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.sign-square:nth-child(odd) { background-color: #2E5E9E; }
.sign-square:nth-child(even) { background-color: #C22F38; }

.sign-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 18px;
  gap: 1px;
}
.sign-wm-1 {
  color: #1B1D1F;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
}
.sign-wm-2 {
  color: #5A5E62;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 6px;
}
.sign-phone {
  background-color: #1B1D1F;
  display: flex;
  justify-content: center;
  padding: 12px 18px;
}
.sign-phone-text {
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* DOCTRINE BAND */
.doctrine-band {
  background-color: #1B1D1F;
  color: #FFFFFF;
  width: 100%;
}
.doctrine-top {
  display: flex;
  flex-direction: row;
  gap: 56px;
  padding: 72px 64px 48px 64px;
  max-width: 1440px;
  margin: 0 auto;
}
.doctrine-rules {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.doctrine-kicker {
  color: #8FB0DC;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
}
.doctrine-h2 {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 39px;
  margin: 0;
}
.doctrine-item {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.doctrine-num {
  color: #8FB0DC;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
}
.doctrine-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.doctrine-title {
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.8px;
}
.doctrine-desc {
  color: #B9BEC4;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
}
.doctrine-photo-col {
  width: 560px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.doctrine-photo {
  background-image: url('img/pour-crew.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
  height: 430px;
  width: 100%;
}
.doctrine-caption {
  color: #B9BEC4;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

/* CURE STRIP */
.cure-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px 64px 56px 64px;
  max-width: 1440px;
  margin: 0 auto;
}
.cure-label {
  color: #B9BEC4;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}
.cure-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  width: 100%;
}
.cure-day {
  background-color: #212326;
  border: 1px solid #33363A;
  border-radius: 3px;
  padding: 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 58px;
}
.cure-day-active {
  background-color: #26282B;
}
.cure-day-title {
  color: #B9BEC4;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.cure-day-active .cure-day-title {
  color: #FFFFFF;
}
.cure-day-desc {
  color: #B9BEC4;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

/* WORK SECTION */
.work-section {
  background-color: var(--field);
  padding: 72px 64px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}
.work-header-l {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.work-kicker {
  color: var(--blue-ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
}
.work-h2 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  margin: 0;
}
.work-link {
  color: var(--blue-ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.work-link:hover {
  text-decoration: underline;
}
.work-row-1, .work-row-2 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 20px;
  width: 100%;
}
.work-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.work-img-wrapper {
  border-radius: 3px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.work-card-cap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.work-card-title {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
}
.work-card-desc {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.wd-driveways { width: 760px; }
.wd-driveways .work-img-wrapper { height: 400px; background-image: url('img/work-driveway.jpg'); }

.wd-stamped { width: 532px; }
.wd-stamped .work-img-wrapper { height: 400px; background-image: url('img/work-stamped.jpg'); }

.wd-stoops { width: 400px; }
.wd-stoops .work-img-wrapper { height: 330px; background-image: url('img/work-stoop.jpg'); }

.wd-patios { width: 552px; }
.wd-patios .work-img-wrapper { height: 330px; background-image: url('img/work-patio.jpg'); }

.wd-commercial { width: 320px; }
.wd-commercial .work-img-wrapper { height: 330px; background-image: url('img/work-commercial.jpg'); }

/* OUTFIT SECTION */
.outfit-section {
  background-color: var(--board);
  display: flex;
  flex-direction: row;
  gap: 56px;
  padding: 72px 64px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: center;
  width: 100%;
}
.outfit-photo {
  background-image: url('img/crew-truck.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
  width: 600px;
  height: 460px;
  flex-shrink: 0;
}
.outfit-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.outfit-kicker {
  color: var(--blue-ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
}
.outfit-h2 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 39px;
  margin: 0;
}
.outfit-body {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.outfit-chips {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}
.outfit-chip {
  border: 1px solid var(--border-color);
  border-radius: 3px;
  padding: 9px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

/* BREADTH SECTION */
.breadth-section {
  background-color: var(--field);
  padding: 72px 64px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.breadth-kicker {
  color: var(--blue-ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
}
.breadth-h2 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  margin: 0;
}
.breadth-grid {
  display: flex;
  flex-direction: row;
  gap: 48px;
  width: 100%;
}
.breadth-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.breadth-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}
.breadth-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: var(--accent-blue);
}
.breadth-item span {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
}
.breadth-notes {
  display: flex;
  flex-direction: row;
  gap: 48px;
  margin-top: 12px;
}
.breadth-note {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.breadth-note-title {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
}
.breadth-note-desc {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

/* CONTACT SECTION */
.contact-section {
  background-color: var(--board);
  display: flex;
  flex-direction: row;
  gap: 64px;
  padding: 72px 64px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: flex-start;
  width: 100%;
}
.contact-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-checker {
  display: flex;
  flex-direction: row;
  gap: 6px;
  justify-content: flex-start;
  align-items: center;
}
.contact-square {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.contact-square:nth-child(odd) { background-color: #2E5E9E; }
.contact-square:nth-child(even) { background-color: #C22F38; }

.contact-h2 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
  margin: 0;
}
.contact-sub {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.contact-phone-btn {
  background-color: var(--cta-bg);
  color: var(--cta-text);
  padding: 16px 28px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  transition: opacity 0.2s;
}
.contact-phone-btn:hover {
  opacity: 0.9;
}
.contact-license {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
}

/* MOCK FORM */
.mock-form {
  background-color: var(--field);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 30px 32px;
  width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}
.form-title {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
}
.form-input {
  background-color: var(--board);
  color: var(--text);
  border: 1px solid var(--border-color);
  border-radius: 3px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  width: 100%;
}
.form-input::placeholder {
  color: #9CA0A3;
}
.form-input:focus {
  border-color: var(--accent-blue);
}
.btn-submit {
  background-color: var(--cta-bg);
  color: var(--cta-text);
  padding: 14px 0;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
}
.btn-submit:hover {
  opacity: 0.9;
}
.form-disclaimer {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

/* FOOTER */
.site-footer {
  background-color: #1B1D1F;
  color: #FFFFFF;
  padding: 56px 64px 40px 64px;
  width: 100%;
}
.footer-container {
  max-width: 1440px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.footer-lockup {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-wm {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
}
.footer-wm2 {
  color: #B9BEC4;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
}
.footer-sign {
  color: #B9BEC4;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-top: 2px;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.footer-phone {
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}
.footer-license {
  color: #B9BEC4;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
}
.footer-towns {
  color: #8A8F93;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  border-top: 1px solid #2D3033;
  padding-top: 24px;
  width: 100%;
}

/* STICKY CALL BAR FOR MOBILE */
.sticky-call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background-color: #1B1D1F;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  text-decoration: none;
  border-top: 1px solid #33363A;
}
.sticky-call-text {
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
}

/* WORK.HTML STYLES */
.page-header {
  background-color: var(--field);
  padding: 140px 64px 48px 64px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.text-center {
  text-align: center;
}
.page-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  margin: 10px 0 0 0;
  color: var(--text);
}

.work-page-section {
  padding: 56px 64px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.work-page-section:nth-child(even) {
  background-color: var(--board);
}
.work-page-section:nth-child(odd) {
  background-color: var(--field);
}
.work-page-section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text);
}
.work-page-section-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 24px 0;
  color: var(--muted);
  max-width: 800px;
}
.work-gallery-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}
.work-gallery-item {
  border-radius: 3px;
  overflow: hidden;
  background-color: var(--board);
  display: flex;
  flex-direction: column;
}
.work-gallery-img {
  width: 100%;
  height: 360px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.2s ease;
}
.work-gallery-img:hover {
  transform: scale(1.02);
}

.delivery-note-card {
  background-color: var(--board);
  border-left: 4px solid var(--accent-blue);
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  max-width: 800px;
}
.delivery-note-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

/* RESPONSIVE MEDIA QUERIES */
@media (min-width: 768px) {
  .sticky-call-bar {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .site-header {
    position: static;
    background-color: #1B1D1F;
  }
  .masthead {
    flex-wrap: wrap;
    height: auto;
    padding: 14px 18px;
  }
  .masthead-nav {
    width: auto;
  }
  .nav-hamburger {
    display: flex;
    list-style: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px 6px;
    border: none;
    background: transparent;
  }
  .nav-hamburger::-webkit-details-marker {
    display: none;
  }
  .nav-hamburger .bar {
    background-color: #FFFFFF;
    height: 2px;
    width: 22px;
    display: block;
  }
  .nav-links {
    display: none;
  }
  .masthead-nav:has(.nav-details[open]) {
    width: 100%;
  }
  .nav-details[open] {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    padding: 0;
  }
  .nav-details[open] .nav-hamburger {
    position: static;
    align-self: flex-end;
  }
  .nav-details[open] .nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    width: 100%;
    padding: 0 0 12px 0;
  }
  .nav-links li.home-only {
    display: block;
  }
  .nav-links li a {
    display: block;
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #2D3033;
  }
  .nav-cta-item a {
    background-color: transparent;
    color: #E8E9EA !important;
    padding: 12px 0;
    font-weight: 500;
    border-radius: 0;
  }

  .preview-ribbon {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .preview-dismiss {
    position: absolute;
    right: 8px;
    top: 8px;
  }

  .hero-container {
    flex-direction: column;
    padding: 40px 18px 160px 18px;
    align-items: center;
    min-height: auto;
  }
  .copy-panel {
    width: 100%;
    padding: 30px 24px;
    gap: 12px;
  }
  .hero-h1 {
    font-size: 32px;
    line-height: 38px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 8px;
  }
  .btn {
    width: 100%;
  }
  .hero-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .sign-wrapper {
    position: relative;
    left: auto;
    transform: none;
    top: auto;
    margin: 24px auto 0 auto;
    width: 200px;
  }
  .yard-sign {
    width: 200px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.4);
  }
  .sign-top {
    padding: 8px 10px;
  }
  .sign-top-s1 {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .sign-top-s2 {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
  .sign-checker {
    padding: 6px 10px;
    gap: 3px;
  }
  .sign-square {
    width: 11px;
    height: 11px;
  }
  .sign-wordmark {
    padding: 2px 10px;
  }
  .sign-wm-1 {
    font-size: 15px;
  }
  .sign-wm-2 {
    font-size: 6px;
    letter-spacing: 3px;
  }
  .sign-phone {
    padding: 6px 10px;
  }
  .sign-phone-text {
    font-size: 15px;
  }
  .legs {
    left: 30px;
    top: 110px;
    width: 140px;
    height: 150px;
  }
  .leg {
    height: 150px;
    width: 3px;
  }
  .leg-1 { left: 17px; }
  .leg-2 { left: 126px; }

  .doctrine-top {
    flex-direction: column;
    padding: 48px 18px 24px 18px;
    gap: 32px;
  }
  .doctrine-photo-col {
    width: 100%;
  }
  .doctrine-photo {
    height: 250px;
  }
  .cure-strip {
    padding: 10px 18px 48px 18px;
  }
  .cure-row {
    flex-direction: column;
    gap: 6px;
  }
  .cure-day {
    min-height: auto;
  }

  .work-section {
    padding: 48px 18px;
  }
  .work-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .work-row-1, .work-row-2 {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }
  .work-card {
    width: 100% !important;
  }
  .work-img-wrapper {
    height: 240px !important;
  }

  .outfit-section {
    flex-direction: column;
    padding: 48px 18px;
    gap: 28px;
  }
  .outfit-photo {
    width: 100%;
    height: 250px;
  }

  .breadth-section {
    padding: 48px 18px;
  }
  .breadth-grid {
    flex-direction: column;
    gap: 0;
  }
  .breadth-notes {
    flex-direction: column;
    gap: 24px;
  }

  .contact-section {
    flex-direction: column;
    padding: 48px 18px;
    gap: 32px;
  }
  .contact-phone-btn {
    width: 100%;
    text-align: center;
  }
  .mock-form {
    width: 100%;
    padding: 24px 20px;
  }

  .site-footer {
    padding: 48px 18px 100px 18px;
  }
  .footer-row {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-right {
    align-items: flex-start;
  }

  .page-header {
    padding: 48px 18px 24px 18px;
  }
  .page-title {
    font-size: 36px;
  }
  .work-page-section {
    padding: 32px 18px;
  }
  .work-gallery-row {
    flex-direction: column;
    gap: 16px;
  }
  .work-gallery-item {
    max-width: 100% !important;
  }
  .work-gallery-img {
    height: 240px;
  }
}
