:root {
  --brand-primary: #ff6f91;
  --brand-secondary: #ffe24b;
  --brand-text: #212121;
  --brand-background: #ffffff;
  --brand-on-primary: #ffffff;
  --surface-card: #ffffff;
}

body {
  color: var(--brand-text);
  background-color: var(--brand-background);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.theme-primary {
  background-color: var(--brand-primary) !important;
}

.theme-secondary {
  background-color: var(--brand-secondary) !important;
}

nav a.brand-logo,
nav ul a {
  color: var(--brand-on-primary);
}

nav .nav-wrapper {
  display: flex;
  align-items: center;
}

nav .brand-logo {
  position: static;
  transform: none;
  white-space: nowrap;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

nav .nav-wrapper ul {
  margin-left: auto;
}

.palette-chip {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.palette-chip:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.3);
}

.palette-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

footer.page-footer {
  margin-top: 0;
  padding-bottom: 0;
}

.top-bar {
  color: var(--brand-on-primary);
  font-size: 0.9rem;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding: 0.5rem 0;
}

.top-bar .social-links,
.top-bar .contact-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand-on-primary);
  font-weight: 500;
  text-decoration: none;
}

.top-bar a:hover,
.top-bar a:focus {
  color: var(--brand-on-primary);
  opacity: 0.85;
}

.top-bar .fa-brands,
.top-bar .material-icons {
  font-size: 1rem;
}

.top-bar .material-icons {
  line-height: 1;
}

.contact-links .material-icons {
  font-size: 1.1rem;
}

.footer-description {
  margin-bottom: 0;
}

.footer-list {
  margin: 8px 0 0;
  padding-left: 0;
  list-style: none;
}

.footer-list li {
  margin-bottom: 4px;
}

.about-wrapper h2 {
  margin-bottom: 1.5rem;
}

.about-wrapper p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-text {
  text-align: left;
}

.about-media {
  text-align: center;
  margin-top: 2rem;
}

.about-image {
  max-width: 420px;
  border-radius: 16px;
}

.testimonials-section h2 {
  margin-bottom: 0.5rem;
  font-size: 2.2rem;
}

.heading-divider {
  width: 80px;
  height: 4px;
  background: var(--brand-primary);
  margin: 0.75rem auto 2.5rem;
  border-radius: 999px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 220px;
  max-width: 260px;
  background-color: var(--brand-background);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--brand-primary);
  display: block;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  color: var(--brand-primary);
}

.contact-section {
  margin-top: 2rem;
}

.contact-wrapper {
  align-items: stretch;
  gap: 2.5rem;
}

.contact-section h2 {
  margin-bottom: 1rem;
}

.contact-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 1.5rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-details .material-icons {
  font-size: 2rem;
  color: var(--brand-primary);
}

.contact-details strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-card {
  background-color: var(--surface-card);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-card .card-content {
  padding: 2.5rem;
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.contact-form .input-field input,
.contact-form .input-field textarea {
  color: var(--brand-text);
}

.contact-form .input-field input:focus,
.contact-form .input-field textarea:focus {
  border-bottom: 2px solid var(--brand-primary);
  box-shadow: none;
}

.contact-form .btn.theme-primary {
  margin-top: 0.5rem;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__status {
  display: none;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form__status.is-visible {
  display: block;
}

.contact-form__status--success {
  background-color: rgba(76, 175, 80, 0.15);
  color: #1b5e20;
}

.contact-form__status--error {
  background-color: rgba(244, 67, 54, 0.15);
  color: #b71c1c;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--brand-secondary);
  color: var(--brand-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.contact-button:hover,
.contact-button:focus {
  background-color: var(--brand-secondary);
  color: var(--brand-text);
  opacity: 0.9;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.highlight-section {
  margin-bottom: 2rem;
}

.highlight-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}

.highlight-grid > .col {
  display: flex;
  padding: 0 0.75rem;
  margin-bottom: 2rem;
}

.highlight-card {
  background-color: var(--brand-background);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.14);
}

.highlight-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.highlight-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.highlight-card p {
  line-height: 1.7;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.highlight-button {
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--brand-on-primary);
}

.highlight-button.theme-secondary {
  color: var(--brand-text);
}

.highlight-button.theme-secondary:hover,
.highlight-button.theme-secondary:focus {
  color: var(--brand-text);
}

.hero-highlight {
  margin: 0 0 3rem;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
}

.hero-image {
  width: 100%;
  display: block;
  height: 60vh;
  min-height: 480px;
  object-fit: cover;
}

.hero-caption {
  position: absolute;
  inset: 0 0 0 0;
  padding: 3rem 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-caption-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.25rem 3rem;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-caption h1 {
  font-size: 3.2rem;
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.hero-caption p {
  font-size: 1.3rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.hero-caption .btn {
  font-weight: 600;
  letter-spacing: 0.08em;
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  bottom: calc(2rem + env(safe-area-inset-bottom, 0));
  right: calc(2rem + env(safe-area-inset-right, 0));
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  transform: translateY(15px);
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top .material-icons {
  font-size: 28px;
  color: var(--brand-on-primary);
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.scroll-to-top:focus {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
}

.services-section {
  margin-top: 3rem;
}

.service-category {
  margin-top: 3rem;
}

.service-category:first-of-type {
  margin-top: 2.5rem;
}

.service-category-title {
  font-size: 2rem;
  margin: 0;
  font-weight: 600;
  color: var(--brand-primary);
}

.heading-divider.align-left {
  margin: 0.5rem 0 1.75rem;
}

.service-grid {
  margin-bottom: 1.5rem;
  align-items: stretch;
}

.service-grid > .col {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.service-image {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-list li {
  background: var(--surface-card);
  color: var(--brand-text);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.service-list h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: var(--brand-text);
}

.service-list p {
  margin: 0;
  color: inherit;
  line-height: 1.6;
}

.map-wrapper {
  margin-top: 2rem;
  text-align: center;
}

.map-image {
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.map-image:hover,
.map-image:focus {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.gallery-carousel {
  margin-top: 2rem;
}

.gallery-carousel .carousel-item {
  width: 100%;
}

.gallery-slide {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.gallery-slide img {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 0;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.gallery-carousel .indicators .indicator-item {
  background-color: rgba(255, 255, 255, 0.4);
}

.gallery-carousel .indicators .indicator-item.active {
  background-color: var(--brand-primary);
}

@media (max-width: 600px) {
  .top-bar-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

.top-bar .social-links,
.top-bar .contact-links {
  gap: 1rem;
}

  .about-media {
    margin-top: 1.5rem;
  }

  .wide-layout {
    width: 95%;
  }

  .testimonial-grid {
    gap: 1rem;
  }

  .testimonial-card {
    flex: 1 1 280px;
    max-width: none;
  }

  .contact-wrapper {
    gap: 2rem;
  }

  .contact-card .card-content {
    padding: 2rem;
  }

  .contact-details {
    gap: 1rem;
  }

  .contact-details li {
    align-items: center;
  }

  .contact-details .material-icons {
    font-size: 1.8rem;
  }

  .contact-section h2,
  .contact-intro {
    text-align: center;
  }

  .contact-button {
    width: 100%;
    justify-content: center;
  }

  .map-image {
    border-radius: 18px;
  }

  .highlight-card {
    padding: 1.5rem;
    text-align: center;
  }

  .highlight-card h2 {
    font-size: 1.4rem;
  }

  .highlight-card p {
    margin-bottom: 1.25rem;
  }

  .highlight-button {
    width: 100%;
  }

  .hero-highlight {
    margin: 0 0 2rem;
    border-radius: 0;
  }

  .hero-image {
    height: 400px;
    min-height: 400px;
  }

  .hero-caption {
    position: absolute;
    inset: 0;
    padding: 2.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-caption-content {
    padding: 2.5rem 1.5rem;
    width: 90%;
    max-width: 640px;
    background: rgba(0, 0, 0, 0.42);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-caption h1 {
    font-size: 2.4rem;
  }

  .hero-caption p {
    margin: 0 0 1.25rem;
    font-size: 1.15rem;
  }

  .scroll-to-top {
    bottom: 1rem;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0));
    right: calc(1rem + env(safe-area-inset-right, 0));
    width: 44px;
    height: 44px;
  }

  .service-category {
    margin-top: 2.5rem;
  }

  .service-category-title {
    text-align: center;
  }

  .service-grid > .col {
    margin-bottom: 1.5rem;
  }

  .service-list li {
    padding: 0.9rem 1rem;
  }

  .gallery-slide img {
    height: 200px;
  }
}

@media (min-width: 601px) {
  nav .brand-logo {
    margin-right: 1.5rem;
  }
}

@media (max-width: 992px) {
  nav .sidenav-trigger {
    display: flex;
  }

  nav .brand-logo {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  nav .brand-logo {
    font-size: 1.4rem;
  }
}

@media (min-width: 993px) {
  .wide-layout {
    width: 90%;
    max-width: 1200px;
  }

  .about-media {
    text-align: right;
    margin-top: 0;
  }

  nav .sidenav-trigger {
    display: none !important;
  }
}

nav .sidenav-trigger {
  align-items: center;
  margin-left: auto;
  position: static;
}
