/* ===== Why Choose Us ===== */
.why-choose-section {
  display: flex;
  flex-direction: column;
  gap: 128px;
  align-items: center;
}

.features-row {
  display: flex;
  border: 1px solid var(--border-blue);
  width: 100%;
}

.feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transition: background-color 0.3s;
}

.feature-item:hover {
  background-color: rgba(108, 177, 211, 0.06);
}

.feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  background-color: var(--border-blue);
}

.feature-title {
  font-family: 'PT Sans', sans-serif;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 1px;
  color: var(--dark);
}

.feature-desc {
  font-size: 14px;
  line-height: 24px;
  color: var(--text-muted);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===== Benefits ===== */
.benefits-content {
  padding: 32px 0;
}

.benefit-item {
  padding: 12px;
  margin: -12px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.benefit-item:hover {
  background-color: rgba(108, 177, 211, 0.06);
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-text h4 {
  font-family: 'PT Sans', sans-serif;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 1px;
  color: var(--dark);
}

.benefit-text p {
  font-size: 14px;
  line-height: 14px;
  color: var(--text-muted);
}

/* ===== Shutter Range ===== */
.shutter-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.shutter-card {
  flex: 1;
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}

.shutter-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}

.shutter-card-image {
  height: 472px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition: height 0.35s ease 0.1s;
}

.shutter-card:hover .shutter-card-image {
  height: 300px;
  transition: height 0.35s ease;
}

.shutter-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shutter-card-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  transition: gap 0.2s ease;
}

.shutter-card:hover .shutter-card-body {
  gap: 32px;
  transition: gap 0.35s ease 0.15s;
}

.shutter-card-bullets {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  list-style: disc;
  padding-left: 21px;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-muted);
  transition: max-height 0.2s ease, opacity 0.15s ease;
}

.shutter-card:hover .shutter-card-bullets {
  max-height: 200px;
  opacity: 1;
  transition: max-height 0.35s ease 0.15s, opacity 0.3s ease 0.2s;
}

.shutter-card-bullets li {
  margin-bottom: 8px;
}

.shutter-card-bullets li:last-child {
  margin-bottom: 0;
}

.shutter-card-bullets li::marker {
  color: var(--waltham-blue);
}

.shutter-card-body h3 {
  font-family: 'PT Sans', sans-serif;
  font-size: 20px;
  line-height: 20px;
  color: var(--waltham-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.shutter-card-body p {
  font-size: 14px;
  line-height: 24px;
  color: var(--text-muted);
}

/* ===== Shutter Styles ===== */
.styles-grid {
  flex-wrap: wrap;
}

.style-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.style-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.style-card-img {
  height: 350px;
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
}

.style-card-img img {
width: 100%;
height: 100%;
object-fit: cover;
}

.style-card-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.style-card-body h3 {
  font-family: 'PT Sans', sans-serif;
  font-size: 20px;
  line-height: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.style-card-body p {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== Louvre Widths ===== */
.louvre-desc {
  max-width: 840px;
}

.louvre-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.louvre-size-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid var(--border-blue-half);
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--waltham-gray);
  letter-spacing: 1px;
  line-height: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.louvre-size-btn:hover,
.louvre-size-btn.active {
  background: var(--waltham-blue);
  color: var(--white);
  border-color: var(--waltham-blue);
}

.louvre-size-btn:hover {
  transform: translateY(-2px);
}

/* -- Louvre Visual Panel -- */
.louvre-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  width: 384px;
}

.louvre-visual-title {
  font-family: 'PT Sans', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 1px;
  color: var(--dark);
  text-align: center;
  transition: opacity 0.2s ease;
  min-width: 100px;
}

.louvre-visual-title.changing {
  opacity: 0;
}

/* -- Louvre SVG Illustration -- */
.louvre-shutter-img {
  width: 165px;
  height: 280px;
  object-fit: contain;
  flex-shrink: 0;
}

/* -- Scale Bar -- */
.louvre-scale {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.louvre-scale-track {
  width: 100%;
  height: 1px;
  background: var(--border-blue);
  position: relative;
  margin-bottom: 0;
}

.louvre-scale-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--waltham-blue);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
  box-shadow: 0 0 0 3px rgba(108, 177, 211, 0.2);
  cursor: grab;
}

.louvre-scale-dot:active,
.louvre-scale-dot.dragging {
  cursor: grabbing;
  box-shadow: 0 0 0 5px rgba(108, 177, 211, 0.3);
  transition: left 0s, box-shadow 0.2s;
}

.louvre-scale-items {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.louvre-scale-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 64px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  position: relative;
}

.louvre-scale-item:hover {
  opacity: 0.7;
}

.louvre-scale-item .tick {
  width: 1px;
  height: 13px;
  background: var(--border-blue);
  transition: height 0.3s ease, background 0.3s ease;
}

.louvre-scale-item.active .tick {
  height: 8px;
  background: var(--waltham-blue);
}

.louvre-scale-item span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  transition: color 0.3s ease, font-weight 0.3s ease;
  line-height: 14px;
  margin-top: 2px;
}

.louvre-scale-item.active span {
  font-weight: 700;
  color: var(--waltham-blue);
}

/* ===== Finishing Touches ===== */
.finishing-titles {
  margin-bottom: 48px;
}

.accordion-container {
  width: 100%;
}

.accordion-item {
  border-top: 1px solid var(--border-blue);
  transition: background-color 0.3s;
}

.accordion-item:hover {
  background-color: rgba(108, 177, 211, 0.04);
}

.accordion-item:last-child {
  border-bottom: 1px solid var(--border-blue);
}

.accordion-header {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  width: 100%;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  text-align: left;
}

.accordion-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 24px;
  width: 200px;
  flex-shrink: 0;
}

.accordion-label .number {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--waltham-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.accordion-label h3 {
  font-family: 'PT Sans', sans-serif;
  font-size: 24px;
  line-height: 20px;
  letter-spacing: 1px;
  color: var(--dark);
}

.accordion-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border-blue);
  flex-shrink: 0;
}

.accordion-body {
  flex: 1;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-muted);
  padding: 48px 0;
  padding-left: 24px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body ul {
  list-style: disc;
  padding-left: 21px;
  margin: 16px 0;
}

.accordion-body li {
  margin-bottom: 4px;
}

.accordion-body .bold {
  font-weight: 700;
}

.accordion-body .note {
  font-style: italic;
  font-size: 12px;
}

/* ===== Year Round ===== */
.year-round-cards {
  display: flex;
  width: 100%;
}

.year-round-card {
  flex: 1;
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.year-round-card.dark {
  background-color: var(--waltham-gray);
  color: var(--white);
}

.year-round-card.light {
  background-color: var(--light-bg);
}

.year-round-card .card-label {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--waltham-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.year-round-card.dark h3 {
  font-family: 'PT Sans', sans-serif;
  font-size: 24px;
  line-height: 20px;
  letter-spacing: 1px;
  color: var(--white);
}

.year-round-card.light h3 {
  font-family: 'PT Sans', sans-serif;
  font-size: 24px;
  line-height: 20px;
  letter-spacing: 1px;
  color: var(--waltham-gray);
}

.year-round-card ul {
  list-style: disc;
  padding-left: 21px;
}

.year-round-card.dark ul li {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.year-round-card.light ul li {
  font-size: 14px;
  line-height: 24px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.year-round-card ul li:last-child {
  margin-bottom: 0;
}

/* ===== Shutters & Shade ===== */
.shade-text {
  padding: 32px 0;
}

.shade-note {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shade-note::before {
  content: '';
  width: 1px;
  height: 24px;
  background: var(--border-blue);
  flex-shrink: 0;
}

.shade-note p {
  font-style: italic;
  font-size: 12px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== Testimonials ===== */
.testimonial-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonial-slider {
  width: 100%;
}

#testimonialSlider.tns-slider {
  display: flex !important;
  align-items: stretch;
}

.testimonial-slide {
  padding: 0 12px;
  display: flex !important;
  align-items: stretch;
}

.testimonial-card {
  background: rgba(108, 177, 211, 0.08);
  padding: 48px;
  display: flex;
  flex-direction: column;
  flex: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card-top {
  margin-bottom: 24px;
}

.testimonial-card .testimonial-author {
  margin-top: auto;
  padding-top: 24px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(87, 107, 121, 0.1);
}

/* Tiny-slider arrow controls */
.tns-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.tns-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-blue);
  background: var(--white);
  color: var(--waltham-gray);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tns-controls button:hover {
  background: var(--waltham-blue);
  border-color: var(--waltham-blue);
  color: var(--white);
  transform: scale(1.08);
}

.tns-controls button:active {
  transform: scale(0.95);
}

/* Tiny-slider nav dots */
.tns-nav {
  text-align: center;
  margin-top: 16px;
}

.tns-nav button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border-blue);
  margin: 0 6px;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.tns-nav button.tns-nav-active {
  background: var(--waltham-blue);
  transform: scale(1.3);
}

.testimonial-card-top {
  display: block;
}

.testimonial-card-top .testimonial-stars {
  margin-bottom: 24px;
}

.testimonial-stars {
  height: 12px;
  width: 92px;
  object-fit: contain;
}

.testimonial-text {
  font-style: italic;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-muted);
}

.testimonial-author {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--waltham-blue);
  letter-spacing: 1px;
}

/* ===== Request a Survey ===== */
.survey-info {
  justify-content: center;
}

.survey-contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.survey-contacts .contact-divider {
  height: 1px;
  width: 100%;
  background: var(--border-blue);
}

.contact-item a,
.contact-item p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 1px;
}

.contact-item a {
  color: var(--waltham-blue);
  transition: opacity 0.3s;
}

.contact-item a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.contact-item .contact-address {
  color: var(--waltham-gray);
}

/* Survey Form */
.survey-form-container {
  flex: 1;
  background: var(--white);
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.survey-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-label .required {
  color: var(--waltham-blue);
  font-size: 10px;
}

.form-label span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--waltham-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 28px;
}

.form-input {
  width: 100%;
  height: 40px;
  background: rgba(108, 177, 211, 0.05);
  border: 1px solid rgba(108, 177, 211, 0.25);
  border-radius: 0;
  padding: 0 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--waltham-blue);
}

.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 36px;
  cursor: pointer;
  background-image: url('../img/arrow-down.svg');
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px 5px;
}

.form-select:invalid,
.form-select option[value=''] {
  color: var(--text-muted);
}

.form-submit {
  width: 100%;
  height: 40px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--waltham-gray);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 28px;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s;
  -webkit-appearance: none;
}

.form-submit:hover {
  background-color: #465862;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(87, 107, 121, 0.25);
}

.form-success-msg {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--waltham-blue);
  background: rgba(108, 177, 211, 0.12);
  border: 1px solid var(--border-blue);
  padding: 24px;
  text-align: center;
}

/* Pristine validation */
.form-group.has-error .form-input {
  border-color: #e74c3c;
}

.form-group.has-success .form-input {
  border-color: var(--waltham-blue);
}

.pristine-error {
  display: block;
  margin-top: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #e74c3c;
  line-height: 1.4;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--waltham-gray);
  padding: 64px 24px 24px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
}

.footer-contact-item img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links-col h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-col a {
  font-size: 14px;
  color: var(--white);
  transition: opacity 0.3s;
}

.footer-links-col a:hover {
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-text {
  font-size: 11px;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 24px;
}

.footer-legal-text strong {
  font-weight: 700;
}

.footer-legal-text a {
  text-decoration: underline;
  color: var(--white);
}

.footer-site-by {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-family: 'Saira Semi Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-site-by img {
  width: 66.783px;
  height: 16px;
  object-fit: contain;
}

/* ===== Interior Page Hero ===== */
.page-hero {
  background-color: var(--light-bg);
  padding: 96px 24px;
}

.page-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.page-hero-title {
  font-family: 'PT Sans', sans-serif;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: 1px;
  color: var(--dark);
}

.page-hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 28px;
  line-height: 36px;
  color: var(--waltham-blue);
}

.page-hero .body-text {
  max-width: 840px;
}

/* Page hero with the copy on the left and a supporting image on the right,
   mirroring the homepage hero. Scoped with both classes so it outranks the
   plain .page-hero padding overrides in the breakpoints further down. */
.page-hero.page-hero--split {
  padding: 0;
  display: flex;
  align-items: stretch;
  min-height: 560px;
}

.page-hero--split .page-hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 96px 0 96px 48px;
}

.page-hero--split .page-hero-inner {
  max-width: 700px;
  margin: 0;
  padding-right: 96px;
  align-items: flex-start;
  text-align: left;
}

.page-hero--split .breadcrumb,
.page-hero--split .page-cta-buttons {
  justify-content: flex-start;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--waltham-blue);
}

.breadcrumb a {
  color: var(--waltham-gray);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--waltham-blue);
}

.breadcrumb span {
  opacity: 0.5;
}

/* ===== Info Cards (interior pages) ===== */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

.info-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border-blue);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-blue-half);
  box-shadow: 0 12px 32px rgba(87, 107, 121, 0.1);
}

.info-card--half {
  flex: 1 1 calc(50% - 12px);
}

.info-card h3 {
  font-family: 'PT Sans', sans-serif;
  font-size: 20px;
  line-height: 26px;
  color: var(--waltham-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.info-card h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--waltham-gray);
  margin-top: 8px;
}

.info-card p {
  font-size: 14px;
  line-height: 24px;
  color: var(--text-muted);
}

.info-card ul {
  list-style: disc;
  padding-left: 21px;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-muted);
}

.info-card ul li {
  margin-bottom: 8px;
}

.info-card ul li:last-child {
  margin-bottom: 0;
}

.info-card ul li::marker {
  color: var(--waltham-blue);
}

/* ===== Bulleted "reasons" list ===== */
.reasons-list {
  list-style: disc;
  padding-left: 21px;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-muted);
  max-width: 840px;
}

.reasons-list li {
  margin-bottom: 8px;
}

.reasons-list li:last-child {
  margin-bottom: 0;
}

.reasons-list li::marker {
  color: var(--waltham-blue);
}

.section--gray .section-desc,
.section--gray .reasons-list,
.section--gray .info-card p,
.section--gray .info-card ul {
  color: rgba(255, 255, 255, 0.75);
}

.section--gray .body-text {
  color: rgba(255, 255, 255, 0.75);
}

.section--gray .info-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
}

.section--gray .info-card h3 {
  color: var(--white);
}

.section--gray .info-card h4 {
  color: rgba(255, 255, 255, 0.75);
}

/* ===== Tips & Advice ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.faq-item {
  border-top: 1px solid var(--border-blue);
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border-blue);
}

.faq-item h4 {
  font-family: 'PT Sans', sans-serif;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
  color: var(--dark);
  max-width: 840px;
}

.faq-item p {
  font-size: 14px;
  line-height: 24px;
  color: var(--text-muted);
  max-width: 840px;
}

.section--gray .faq-item {
  border-color: rgba(255, 255, 255, 0.25);
}

.section--gray .faq-item h4 {
  color: var(--white);
}

.section--gray .faq-item p {
  color: rgba(255, 255, 255, 0.75);
}

/* ===== Product intro block ===== */
.product-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.product-block .body-text {
  max-width: 840px;
}

.block-subheading {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--waltham-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== Interior page CTA ===== */
.page-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.page-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: transparent;
  border: 1px solid var(--waltham-gray);
  color: var(--waltham-gray);
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 28px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn-outline:hover {
  background-color: var(--waltham-gray);
  color: var(--white);
}

.section--gray .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.section--gray .btn-outline:hover {
  background-color: var(--white);
  color: var(--waltham-gray);
}

/* The gray band shares the primary button's fill — switch it to brand blue */
.section--gray .btn-primary {
  background-color: var(--waltham-blue);
}

.section--gray .btn-primary:hover {
  background-color: #5a9cbc;
}

/* ===== Below-the-fold Responsive ===== */
@media (max-width: 1200px) {
  .footer-links {
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  /* Center everything on mobile except accordion */
  .section-titles--left {
    text-align: center;
  }

  .split-text {
    align-items: center;
    text-align: center;
  }

  /* Bulleted lists keep their text left-aligned, otherwise centring pulls the
     text away from its marker and the two stop reading as one line. */
  .split-text .reasons-list {
    text-align: left;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-text {
    align-items: center;
  }

  /* Keep accordion left-aligned */
  .accordion-container {
    text-align: left;
  }

  .accordion-header {
    text-align: left;
  }

  .features-row {
    flex-direction: column;
  }

  .feature-item {
    padding: 24px;
    gap: 24px;
  }

  .feature-item:not(:last-child)::after {
    right: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(50%);
    width: 80%;
    height: 1px;
  }

  .shutter-card-bullets {
    max-height: none;
    opacity: 1;
  }

  .shutter-card:hover .shutter-card-image {
    height: 472px;
  }

  .shutter-card:hover .shutter-card-body {
    gap: 16px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer {
    padding: 40px 24px 24px;
  }

  .footer-content {
    gap: 32px;
  }

  .year-round-card {
    padding: 32px 24px;
  }

  .survey-form-container {
    padding: 40px 24px;
    gap: 32px;
  }

  .why-choose-section {
    gap: 48px;
  }

  .page-hero {
    padding: 48px 24px;
  }

  /* Stack the split hero and hand the copy back to the centred mobile
     treatment used everywhere else on the site. */
  .page-hero.page-hero--split {
    flex-direction: column;
    min-height: 0;
  }

  .page-hero--split .page-hero-content {
    padding: 48px 24px;
    justify-content: center;
  }

  .page-hero--split .page-hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding-right: 0;
    align-items: center;
    text-align: center;
  }

  .page-hero--split .breadcrumb,
  .page-hero--split .page-cta-buttons {
    justify-content: center;
  }

  .page-hero-title {
    font-size: 40px;
    line-height: 48px;
  }

  .page-hero-subtitle {
    font-size: 24px;
    line-height: 32px;
  }

  .info-card {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    gap: 32px;
  }

  .page-hero {
    padding: 40px 20px;
  }

  .page-hero--split .page-hero-content {
    padding: 40px 20px;
  }

  .page-hero-title {
    font-size: 32px;
    line-height: 40px;
  }

  .page-hero-subtitle {
    font-size: 20px;
    line-height: 28px;
  }

  .info-card,
  .info-card--half {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .faq-item {
    padding: 24px 0;
  }

  .faq-item h4 {
    font-size: 18px;
    line-height: 26px;
  }

  .page-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 16px;
  }

  /* Stretched to full width by the stacking above, so centre the label and
     arrow instead of leaving them against the left edge. */
  .page-cta-buttons .btn-text {
    justify-content: center;
  }

  .feature-item {
    padding: 20px;
    gap: 20px;
  }

  .shutter-card-image {
    height: 260px;
  }

  .shutter-card:hover .shutter-card-image {
    height: 260px;
  }

  .shutter-card-body {
    padding: 32px;
    gap: 12px;
  }

  .style-card {
    min-width: 100%;
  }

  .style-card-body {
    padding: 32px;
  }

  .year-round-cards {
    flex-direction: column;
  }

  .year-round-card {
    padding: 24px 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 8px;
  }

  .accordion-header {
    flex-direction: column;
    gap: 16px;
  }

  .accordion-label {
    width: 100%;
    padding-top: 32px;
    padding-bottom: 0;
    padding-left: 24px;
  }

  .accordion-divider {
    display: none;
  }

  .accordion-body {
    padding: 16px 0 32px;
    padding-left: 24px;
  }

  .survey-form-container {
    padding: 24px 20px;
  }

  .survey-content {
    gap: 24px;
  }

  .louvre-visual {
    width: 100%;
    max-width: 384px;
    margin: 0 auto;
  }

  .louvre-shutter-img {
    width: 140px;
    height: 240px;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-legal-text {
    font-size: 10px;
    line-height: 20px;
  }

  .shade-content {
    gap: 24px;
  }

  .footer-content {
    gap: 24px;
  }

  .contact-item a,
  .contact-item p {
    font-size: 16px;
  }

  .testimonial-card {
    padding: 32px;
    min-height: auto;
  }

  .feature-title {
    font-size: 18px;
  }

  .benefit-text h4 {
    font-size: 18px;
  }

  .footer-links {
    gap: 24px 32px;
  }

  .footer-logo img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 32px 16px;
  }

  .page-hero-title {
    font-size: 26px;
    line-height: 34px;
  }

  .page-hero-subtitle {
    font-size: 18px;
    line-height: 26px;
  }

  .info-card {
    padding: 24px;
  }

  .info-card h3 {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .shutter-card-image {
    height: 220px;
  }

  .shutter-card:hover .shutter-card-image {
    height: 220px;
  }

  .shutter-card-body {
    padding: 24px;
  }

  .shutter-card-body h3 {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .shutter-card-body p {
    font-size: 13px;
    line-height: 22px;
  }

  .shutter-card-bullets {
    font-size: 13px;
    line-height: 22px;
  }

  .style-card-body {
    padding: 24px;
  }

  .louvre-sizes {
    gap: 6px;
  }

  .louvre-size-btn {
    padding: 6px 12px;
    font-size: 11px;
  }

  .louvre-visual {
    max-width: 300px;
  }

  .louvre-shutter-img {
    width: 100px;
    height: 170px;
  }

  .louvre-visual-title {
    font-size: 24px;
  }

  .louvre-scale-item {
    width: 48px;
  }

  .louvre-scale-item span {
    font-size: 9px;
  }

  .finishing-content {
    gap: 32px;
  }

  .accordion-label h3 {
    font-size: 20px;
  }

  .contact-item a,
  .contact-item p {
    font-size: 14px;
  }

  .survey-form-container {
    padding: 20px 16px;
  }

  .form-submit {
    min-height: 48px;
    font-size: 13px;
  }

  .form-input {
    height: 44px;
    font-size: 16px;
  }

  .year-round-card {
    padding: 20px 16px;
  }

  .year-round-card h3 {
    font-size: 20px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-text {
    font-size: 13px;
    line-height: 22px;
  }

  .footer {
    padding: 32px 16px 16px;
  }

  .footer-content {
    gap: 24px;
  }

  .footer-top {
    gap: 24px;
  }

  .footer-logo img {
    height: 48px;
  }

  .footer-links-col h4 {
    font-size: 14px;
  }

  .footer-links-col a {
    font-size: 13px;
  }

  .footer-site-by {
    font-size: 12px;
  }

  .footer-site-by img {
    width: 56px;
    height: 14px;
  }
}
