:root {
  --ct-orange: #e07a00;
  --ct-orange-hover: #325a20;
  --ct-green: #335a27;
  --ct-green-dark: #28501f;
  --ct-text: #1d1d1b;
  --ct-muted: #666;
  --ct-soft: #ededed;
  --ct-border: #d6d6d6;
  --ct-white: #fff;
  --ct-font-title: "Mulish", Arial, sans-serif;
  --ct-font-body: "Mulish", Arial, sans-serif;
  --ct-radius: 8px;
  --ct-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ct-text);
  font-family: var(--ct-font-body);
  font-size: 16px;
  line-height: 1.5;
  background: var(--ct-white);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0 0 30px;
  color: var(--ct-green);
  font-family: var(--ct-font-title);
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2 {
  font-size: 24px;
  line-height: 1.2;
}

h3 {
  font-size: 17px;
}

p {
  margin: 0 0 16px;
}

.container {
  width: min(calc(100% - 32px), 1000px);
  margin: 0 auto;
}

.container--narrow {
  width: min(calc(100% - 32px), 980px);
}

/* .container--timeline {
  width: min(100% - 32px, 850px);
} */

.section {
  padding: 72px 0;
}

.section--soft {
  background: var(--ct-soft);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.button,
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 22px;
  border: 0;
  border-radius: 7px;
  background: var(--ct-orange);
  color: var(--ct-white);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.button:hover,
button[type="submit"]:hover {
  background: var(--ct-orange-hover);
  transform: translateY(-1px);
}

.button--small {
  min-height: 26px;
  padding: 6px 14px;
  font-size: 13px;
}

.button--large {
  min-height: 46px;
  padding: 12px 28px;
}

.topbar {
  background: #e7e7e7;
  font-size: 13px;
  font-weight: 700;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 34px;
  align-items: center;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--ct-green);
}

.topbar__item span {
  min-width: 0;
}

.topbar__item i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ct-orange);
  color: var(--ct-white);
  font-size: 12px;
}

.mainbar {
  position: relative;
  z-index: 20;
  background: var(--ct-white);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.mainbar__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 70px;
}

.site-logo {
  flex: 0 0 auto;
}

.site-logo img {
  width: 180px;
  height: auto;
}

.primary-nav {
  flex: 1 1 auto;
}

.primary-nav__list,
.footer-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.primary-nav__list {
  justify-content: center;
}

.primary-nav__list li + li::before {
  content: "|";
  margin: 0 12px;
  color: #939393;
}

.primary-nav__list a {
  font-weight: normal;
}

.primary-nav__list a:hover,
.primary-nav__list .current-menu-item > a {
  color: var(--ct-orange);
}

.header-social,
.footer-social__icons {
  display: flex;
  align-items: center;
  gap: 9px;
}

.header-social a,
.footer-social__icons a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--ct-white);
  font-size: 13px;
}

.header-social a:nth-child(1),
.footer-social__icons a:nth-child(1) {
  background: #4267b2;
}

.header-social a:nth-child(2),
.footer-social__icons a:nth-child(2) {
  background: linear-gradient(135deg, #7a3cff, #ff4d78, #ffd23f);
}

.header-social a:nth-child(3),
.footer-social__icons a:nth-child(3) {
  background: #19c55a;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--ct-green);
}

.menu-toggle::before,
.menu-toggle::after {
  content: none;
}

.floating-social {
  position: fixed;
  z-index: 50;
  right: 20px;
  top: 45%;
  display: grid;
  gap: 8px;
}

.floating-social a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: var(--ct-white);
  font-size: 26px;
  box-shadow: var(--ct-shadow);
}

.floating-social__instagram {
  background: linear-gradient(135deg, #7a3cff, #ff4d78, #ffd23f);
}

.floating-social__whatsapp {
  background: #22c55e;
}

.home-hero {
  position: relative;
  background: #2f285e;
}

.home-hero__slider {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.home-hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: 520px;
  opacity: 0;
  background-image: var(--hero-desktop);
  background-position: center;
  background-size: cover;
  transition: opacity 0.6s ease;
}

.home-hero__slide.is-active {
  position: relative;
  opacity: 1;
}

.home-hero__slide--fallback {
  min-height: 520px;
}

.home-hero__dots {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 18px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
}

.home-hero__dot {
  display: block;
  width: 13px;
  height: 13px;
  min-height: 0;
  padding: 0;
  background-color: var(--ct-white);
  border: 0;
  border-radius: 50px;
}

.home-hero__dot.is-active,
.home-hero__dot:hover,
.home-hero__dot:focus-visible {
  background: var(--ct-orange);
  border-color: var(--ct-orange);
}

.benefits-band {
  background: var(--ct-green);
  color: var(--ct-white);
}

.benefits-band__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  min-height: 96px;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  line-height: 1.12;
}

.benefit-item i {
  flex: 0 0 auto;
  font-size: 32px;
}

.benefit-item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.home-departments {
  padding-top: 64px;
  padding-bottom: 0px;
}

.home-departments h2,
.departments-page h1,
.wedding-intro h1,
.wedding-items h2,
.about-page h1,
.timeline-section h2,
.testimonials h2,
.contact-section h2 {
  text-align: center;
}

.department-carousel {
  position: relative;
  width: 100%;
}

.department-strip {
  position: relative;
  display: flex;
  overflow-x: auto;
  border-radius: 0;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.department-strip::-webkit-scrollbar {
  display: none;
}

.department-tile {
  position: relative;
  flex: 0 0 calc(100% / 6);
  min-width: 170px;
  height: 630px;
  overflow: hidden;
  background: #222;
  scroll-snap-align: start;
}

.department-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.department-tile img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.department-tile:hover img {
  transform: scale(1.05);
}

.department-tile span {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 24px;
  color: var(--ct-white);
  font-weight: 800;
  text-align: center;
}

.department-carousel__nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ct-green);
  font-size: 18px;
  box-shadow: var(--ct-shadow);
  transform: translateY(-50%);
}

.department-carousel__nav:hover,
.department-carousel__nav:focus-visible {
  background: var(--ct-orange);
  color: var(--ct-white);
  transform: translateY(-50%);
}

.department-carousel__nav--prev {
  left: 18px;
}

.department-carousel__nav--next {
  right: 18px;
}

.brand-strip {
  background: var(--ct-white);
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}

.brand-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 32px;
  min-height: 110px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.brand-strip__inner::-webkit-scrollbar {
  display: none;
}

.brand-logo {
  flex: 0 0 auto;
  color: #777;
  font-size: 27px;
  font-weight: 800;
  white-space: nowrap;
  scroll-snap-align: start;
}

.brand-logo img {
  max-width: 150px;
  max-height: 54px;
  object-fit: contain;
}

.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: url(../images/depoimentos-logo.png) right / contain no-repeat;
}

.testimonials__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.testimonials__image img,
.testimonial-card,
.department-card img,
.product-card img,
.wedding-card img,
.wedding-intro img,
.about-grid img {
  border-radius: var(--ct-radius);
}

.testimonial-list {
  display: grid;
  gap: 18px;
}

.testimonial-card {
  padding: 30px;
  background: var(--ct-white);
  box-shadow: var(--ct-shadow);
}

.testimonial-card h3,
.testimonial-card p {
  margin-bottom: 0px;
}

.testimonial-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--ct-orange);
  font-size: 13px;
  font-weight: 800;
}

.page-hero {
  min-height: 178px;
  background-position: center;
  background-size: cover;
}

.cards-grid {
  display: grid;
  gap: 32px;
}

.cards-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.department-card,
.product-card,
.wedding-card,
.post-card {
  min-width: 0;
}

.department-card img,
.wedding-card img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.department-card h2,
.product-card h2,
.wedding-card h3 {
  margin: 16px 0 8px;
  font-size: 16px;
}

.department-card p,
.wedding-card p {
  min-height: 48px;
  color: var(--ct-text);
  font-size: 14px;
}

.brand-strip--department {
  margin: 0;
}

.products-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.products-heading h1 {
  margin-bottom: 0;
}

.products-heading label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ct-green);
  font-size: 14px;
  font-weight: 800;
}

.products-heading select {
  min-width: 260px;
  height: 36px;
  border: 1px solid #aaa;
  border-radius: 4px;
  background: var(--ct-white);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  background: var(--ct-white);
}

.product-card h2 {
  min-height: 38px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.2;
}

.wedding-intro__grid,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px 72px;
  align-items: center;
}

.about-grid--reverse > *:first-child {
  order: 2;
}

.about-grid--reverse > *:last-child {
  order: 1;
}

.about-grid--reverse{
  margin-top: 50px;
}

.content-block h2 {
  margin-top: 0;
  font-size: 18px;
  text-align: left;
}

.content-block p {
  font-size: 15px;
}

.section-cta {
  margin-top: 36px;
  text-align: center;
}

.timeline {
  position: relative;
  display: grid;
  gap: 72px;
  margin-top: 42px;
  --timeline-progress: 0%;
  padding-bottom: 70px;
}
.timeline-section {
  padding: 72px 0 0 0;
}

.timeline::before,
.timeline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  border-radius: 99px;
  transform: translateX(-50%);
  pointer-events: none;
}

.timeline::before {
  z-index: 0;
  bottom: 0;
  background: var(--ct-green);
}

.timeline::after {
  z-index: 1;
  height: var(--timeline-progress);
  max-height: 100%;
  background: var(--ct-orange);
  transition: height 0.12s linear;
}

.timeline-group {
  position: relative;
  display: grid;
  gap: 58px;
}

.timeline-group__year {
  position: relative;
  z-index: 4;
  justify-self: center;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--ct-white);
  color: var(--ct-green);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
  box-shadow: var(--ct-shadow);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 200px;
  align-items: center;
}

.timeline-item::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--ct-orange) url("../images/logo-icone.png") center / 36px
    auto no-repeat;
  box-shadow: var(--ct-shadow);
  transform: translate(-50%, -50%);
}

.timeline-item__year {
  position: absolute;
  z-index: 4;
  left: calc(50% + 48px);
  top: 50%;
  color: var(--ct-green);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.timeline-item__content {
  padding: 24px;
  border-radius: var(--ct-radius);
  background: var(--ct-white);
  box-shadow: var(--ct-shadow);
}

.timeline-item__media {
  overflow: hidden;
  border-radius: var(--ct-radius);
}

.timeline-item__content h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.timeline-item__content p {
  font-size: 16px;
}

.timeline-item__media img {
  width: 100%;
  height: 100%;
}

.timeline-item--left .timeline-item__content {
  grid-column: 1;
}

.timeline-item--left .timeline-item__year {
  left: calc(50% + 48px);
  right: auto;
}

.timeline-item--left .timeline-item__media {
  grid-column: 2;
}

.timeline-item--right .timeline-item__content {
  grid-column: 2;
}

.timeline-item--right .timeline-item__year {
  right: calc(50% + 48px);
  left: auto;
}

.timeline-item--right .timeline-item__media {
  grid-column: 1;
  grid-row: 1;
}

.contact-section {
  background: var(--ct-white);
  padding-top: 72px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  margin-top: 54px;
}

.contact-info {
  display: grid;
  gap: 44px;
}

.contact-info__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  align-items: start;
}

.contact-info__item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.contact-info__item h3,
.contact-form h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-info__item p,
.contact-info__item small {
  font-weight: 700;
}

.contact-info__item small {
  display: block;
  color: var(--ct-muted);
}

.contact-form,
.newsletter-form {
  min-width: 0;
}

.contact-form input,
.contact-form textarea,
.newsletter-form input {
  width: 100%;
  min-height: 34px;
  margin-bottom: 9px;
  padding: 8px 12px;
  border: 1px solid #8d8d8d;
  border-radius: 5px;
  background: var(--ct-white);
  font-size: 13px;
}

.contact-form textarea {
  min-height: 106px;
  resize: vertical;
}

.form-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-form .form-actions {
  flex-wrap: nowrap;
}

.form-actions .privacy-check {
  flex: 1 1 auto;
  min-width: min(100%, 260px);
}

.form-actions button[type="submit"] {
  flex: 0 0 auto;
  margin-left: auto;
}

.privacy-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0px 0 12px;
  color: var(--ct-text);
  font-weight: normal;
  line-height: 18px;
}

.privacy-check input {
  width: 14px;
  min-height: 14px;
  margin: 0;
}

.privacy-check a {
  color: var(--ct-text);
}
.privacy-check a:hover {
  color: var(--ct-orange);
}

.form-feedback {
  display: none;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 800;
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback.is-success {
  color: var(--ct-green);
}

.form-feedback.is-error {
  color: #b42318;
}

.map-strip {
  margin-top: 62px;
  height: 260px;
  overflow: hidden;
  background: #dfe8ee;
}

.map-strip iframe,
.map-strip img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.newsletter-band {
  background: #3c3c3c;
  color: var(--ct-white);
  padding: 50px 0px;
}

.newsletter-band__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 70px;
  align-items: center;
}

.newsletter-band h2 {
  margin-bottom: 0px;
  color: var(--ct-white);
}

.newsletter-band p {
  margin: 0;
}

.newsletter-form__fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: center;
}

.newsletter-form input {
  margin-bottom: 0;
  border-color: #bcbcbc;
  background: transparent;
  color: var(--ct-white);
}

.newsletter-form input::placeholder {
  color: #e2e2e2;
}

.newsletter-form .privacy-check {
  color: var(--ct-white);
  margin-bottom: 0px;
}

.newsletter-form .form-actions {
  margin-top: 12px;
  flex-wrap: nowrap;
}
.newsletter-form .form-actions .privacy-check a{
  color: var(--ct-white);
}
.newsletter-form .form-actions .privacy-check a:hover{
  color: var(--ct-orange);
}

.footer-main {
  background: var(--ct-green);
  color: var(--ct-white);
}

.footer-main__inner {
  display: grid;
  grid-template-columns: 170px 1fr 160px 210px;
  gap: 54px;
  align-items: center;
}

.footer-main__inner {
  padding: 70px 0px;
}

.footer-address {
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.footer-brand img {
  width: 143px;
}

.footer-address {
  font-style: normal;
}

.footer-nav__list {
  display: grid;
  gap: 7px;
}

.footer-nav__list a,
.footer-social p,
.footer-social small {
  font-weight: normal;
}

.footer-social p {
  margin-bottom: 10px;
}

.footer-social__icons {
  margin-bottom: 30px;
}

.footer-social small {
  display: block;
  font-size: 11px;
  line-height: 1.35;
}

.footer-social small a:hover {
  color: var(--ct-orange);
}

.post-list {
  display: grid;
  gap: 18px;
}

.post-card {
  padding: 24px;
  border-radius: var(--ct-radius);
  background: var(--ct-white);
  box-shadow: var(--ct-shadow);
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-detail__image img {
  width: 100%;
  border-radius: var(--ct-radius);
  background: var(--ct-soft);
}

.product-detail__content .button {
  margin-top: 18px;
}

@media (max-width: 1080px) {
  .department-tile {
    flex-basis: 220px;
    min-width: 220px;
    min-height: 390px;
  }

  .department-tile img {
    min-height: 390px;
  }

  .floating-social {
    right: 10px;
  }
}

@media (max-width: 860px) {
  .topbar {
    font-size: 12px;
  }

  .topbar__inner {
    display: grid;
    justify-content: stretch;
    gap: 6px;
    padding: 8px 0;
  }

  .topbar__item {
    align-items: flex-start;
  }

  .topbar__item span {
    overflow-wrap: anywhere;
  }

  .mainbar__inner {
    position: relative;
    flex-wrap: wrap;
    min-height: 66px;
    gap: 14px;
    padding: 10px 0 12px;
  }

  .site-logo img {
    width: 150px;
  }

  .menu-toggle {
    display: none !important;
    position: absolute !important;
    left: calc(100vw - 58px);
    right: auto;
    top: 50%;
    z-index: 25;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    transform: translateY(-50%);
  }

  .menu-toggle::before,
  .menu-toggle::after {
    content: none;
  }

  .menu-toggle span:nth-child(2) {
    position: static;
    left: auto;
    top: auto;
    margin: 0;
  }

  .menu-toggle span {
    display: block !important;
    flex: 0 0 auto;
    margin: 0;
  }

  .primary-nav {
    position: static;
    display: block;
    flex: 0 0 100%;
    order: 3;
    padding: 0;
    background: var(--ct-white);
    box-shadow: none;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    overflow-x: visible;
    white-space: normal;
    scrollbar-width: none;
    -ms-overflow-style: none;
    

  }

  .primary-nav__list::-webkit-scrollbar {
    display: none;
  }

  .primary-nav__list li {
    flex: 0 0 auto;
  }

  .primary-nav__list li:last-child {
    flex-basis: 100%;
  }

  .primary-nav__list a {
    font-size: 12px;
  }

  .primary-nav__list li + li::before {
    display: none;
  }

  .header-social {
    display: none;
  }

  .home-hero__slider,
  .home-hero__slide,
  .home-hero__slide--fallback {
    min-height: 360px;
  }

  .home-hero__slide {
    background-image: var(--hero-mobile);
  }

  .benefits-band__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px 0;
  }

  .cards-grid--three,
  .testimonials__grid,
  .wedding-intro__grid,
  .about-grid,
  .product-detail__grid,
  .contact-grid,
  .newsletter-band__inner,
  .footer-main__inner {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .about-grid > *,
  .content-block,
  .timeline,
  .timeline-group,
  .timeline-item,
  .timeline-item__content,
  .timeline-item__media {
    min-width: 0;
    max-width: 100%;
  }

  .content-block p,
  .timeline-item__content p {
    overflow-wrap: break-word;
  }

  .footer-main__inner {
    padding: 70px;
  }

  .products-heading {
    display: grid;
  }

  .products-heading label {
    display: grid;
  }

  .products-heading select {
    min-width: 0;
    width: 100%;
  }

  .newsletter-form__fields {
    grid-template-columns: 1fr;
  }

  .timeline::before,
  .timeline::after {
    left: 20px;
  }

  .timeline {
    gap: 52px;
    padding-bottom: 42px;
  }

  .timeline-group {
    gap: 42px;
  }

  .timeline-group__year {
    justify-self: start;
    font-size: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    padding-left: 54px;
  }

  .timeline-item::before {
    left: 20px;
  }

  .timeline-item__year,
  .timeline-item--left .timeline-item__year,
  .timeline-item--right .timeline-item__year {
    right: auto;
    left: 54px;
    top: -28px;
    transform: none;
  }

  .timeline-item--left .timeline-item__content,
  .timeline-item--right .timeline-item__content,
  .timeline-item--left .timeline-item__media,
  .timeline-item--right .timeline-item__media {
    grid-column: 1;
  }

  .timeline-item--right .timeline-item__media {
    grid-row: auto;
  }

  .timeline-item__media img {
    height: auto;
  }

  .floating-social a {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

@media (max-width: 560px) {
  .container,
  .container--narrow,
  .container--timeline {
    width: calc(100% - 24px);
    max-width: calc(100vw - 24px);
  }

  .section {
    padding: 52px 0;
  }

  .page-hero {
    min-height: 135px;
  }

  .home-hero__slider,
  .home-hero__slide,
  .home-hero__slide--fallback {
    min-height: clamp(130px, 33.5vw, 188px);
  }

  .home-hero__slide--fallback {
    background-color: #33235f;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .benefits-band__inner {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    justify-content: flex-start;
  }

  .department-tile {
    flex-basis: 72vw;
    min-width: 240px;
    min-height: 340px;
  }

  .department-tile img {
    min-height: 340px;
  }

  .department-carousel__nav {
    width: 40px;
    height: 40px;
  }

  .department-carousel__nav--prev {
    left: 10px;
  }

  .department-carousel__nav--next {
    right: 10px;
  }

  .brand-strip__inner {
    padding: 0 12px;
    min-height: 86px;
  }

  .brand-logo {
    font-size: 22px;
  }

  .contact-info__item {
    grid-template-columns: 58px 1fr;
  }

  .contact-info__item img {
    width: 52px;
    height: 52px;
  }

  .map-strip {
    height: 190px;
  }

  .footer-main__inner {
    gap: 24px;
    padding: 42px 0;
  }

  .newsletter-form .form-actions {
    display: grid;
    justify-content: start;
    justify-items: start;
  }

  .newsletter-form .form-actions button[type="submit"] {
    margin-left: 0;
  }
}
