@charset "UTF-8";
@font-face {
  font-family: "Delightful Mono Line";
  src: url("/assets/fonts/delightful/delightfulmonoline-regular-webfont.woff2") format("woff2"), url("/assets/fonts/delightful/delightfulmonoline-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Delightful Mono Line Sans";
  src: url("/assets/fonts/delightful/delightfulmonolinesans-regular-webfont.woff2") format("woff2"), url("/assets/fonts/delightful/delightfulmonolinesans-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  color-scheme: light;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-family: "Source Sans Pro", Calibri, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #f7f9fa;
  color: #2b2b2b;
}

body {
  margin: 0;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

a:hover,
a:focus-visible {
  color: #2c6e7b;
}

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

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

:focus-visible {
  outline: 3px solid #f2a88d;
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: #2c6e7b;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 2.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 1.95rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 1.55rem);
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

small {
  font-size: 0.875rem;
}

.layout {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background-color: #f7f9fa;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background-color: #2c6e7b;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 0.375rem 0.375rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  background-color: #fff;
  border-bottom: 1px solid rgba(44, 110, 123, 0.1);
  z-index: 10;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2c6e7b;
}

.site-header__brand img {
  display: block;
  height: clamp(2.5rem, 5vw, 3.25rem);
  width: auto;
}

.site-nav {
  display: flex;
  gap: 1rem;
  font-weight: 500;
}

.site-nav a {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.site-nav a.is-active {
  background-color: rgba(44, 110, 123, 0.16);
  color: #2c6e7b;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background-color: rgba(44, 110, 123, 0.12);
}

.site-main {
  flex: 1;
}

.site-main > section {
  margin-bottom: clamp(3rem, 8vw, 4.5rem);
}

.site-footer {
  background-color: #fff;
  border-top: 1px solid rgba(44, 110, 123, 0.1);
  padding: 1.5rem;
  text-align: center;
}

.site-footer small {
  color: rgba(43, 43, 43, 0.7);
}

@media (max-width: 37.5rem) {
  .site-header__inner {
    flex-direction: column;
    gap: 0.75rem;
  }
  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background-color: #2c6e7b;
  color: #fff;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: #317988;
}

.btn--ghost {
  background-color: transparent;
  border-color: rgba(44, 110, 123, 0.3);
  color: #2c6e7b;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: #2c6e7b;
}

.hero {
  background: linear-gradient(135deg, rgba(44, 110, 123, 0.08), rgba(242, 168, 141, 0.15));
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.hero__content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.hero__eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f2a88d;
  margin-bottom: 0.75rem;
}

.hero__headline {
  margin-bottom: 1rem;
}

.hero__text {
  max-width: 40ch;
  color: rgba(43, 43, 43, 0.85);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.cta {
  background: linear-gradient(135deg, rgba(44, 110, 123, 0.05), rgba(242, 168, 141, 0.12));
  padding: clamp(2.75rem, 7vw, 4rem) 0;
}

.cta .container {
  display: flex;
  justify-content: center;
}

.cta__inner {
  max-width: 42rem;
  width: min(100%, 42rem);
  text-align: center;
  display: grid;
  gap: 1rem;
  margin-inline: auto;
}

.page-hero {
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(44, 110, 123, 0.1);
}

.eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f2a88d;
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.1rem;
  max-width: 60ch;
  color: rgba(43, 43, 43, 0.82);
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  padding: 0 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.feature-card {
  background-color: #fff;
  border-radius: 0.375rem;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(44, 110, 123, 0.12);
}

.feature-card__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-card__text {
  color: rgba(43, 43, 43, 0.75);
}

.service-grid {
  background-color: #f7f9fa;
}

.service-grid__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
}

.service-card {
  background-color: #fff;
  border-radius: 0.375rem;
  padding: 1.75rem;
  box-shadow: 0 12px 32px rgba(44, 110, 123, 0.12);
  display: grid;
  gap: 0.75rem;
}

.service-extra {
  background: linear-gradient(135deg, rgba(44, 110, 123, 0.05), rgba(242, 168, 141, 0.12));
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}

.service-extra__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 60rem) {
  .service-extra__layout {
    grid-template-columns: 2fr 1fr;
  }
}
.info-box {
  background-color: #fff;
  border-radius: 0.375rem;
  padding: 1.5rem;
  box-shadow: 0 10px 28px rgba(44, 110, 123, 0.14);
  display: grid;
  gap: 1rem;
}

.check-list {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
}

.check-list li::marker {
  content: "• ";
  color: #2c6e7b;
  font-size: 1.1rem;
}

.practice-overview__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 60rem) {
  .practice-overview__grid {
    grid-template-columns: 1.6fr 1fr;
  }
}
.definition-list {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.definition-list div {
  display: grid;
  gap: 0.25rem;
}

.definition-list dt {
  font-weight: 600;
  color: #2c6e7b;
}

.definition-list dd {
  margin: 0;
}

.practice-gallery__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 60rem) {
  .practice-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery-card {
  background-color: #fff;
  border-radius: 0.375rem;
  box-shadow: 0 12px 30px rgba(44, 110, 123, 0.12);
  overflow: hidden;
  display: grid;
  gap: 0;
}

.gallery-card__media {
  background: linear-gradient(120deg, rgba(44, 110, 123, 0.35), rgba(242, 168, 141, 0.45));
  min-height: 160px;
}

.gallery-card figcaption {
  padding: 1.25rem;
  color: rgba(43, 43, 43, 0.8);
}

.timeline {
  position: relative;
  background-color: #fff;
  padding: clamp(3rem, 7vw, 4rem) 0;
}

.timeline__grid {
  display: grid;
  gap: 2rem;
  position: relative;
  padding-left: clamp(1.5rem, 5vw, 3rem);
}

.timeline__grid::before {
  content: "";
  position: absolute;
  inset: 0;
  margin-left: clamp(0.5rem, 3vw, 1.75rem);
  width: 2px;
  background: linear-gradient(180deg, rgba(44, 110, 123, 0), rgba(44, 110, 123, 0.45));
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  position: relative;
}

.timeline-step__number {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background-color: #2c6e7b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  z-index: 1;
}

.timeline-step p {
  color: rgba(43, 43, 43, 0.82);
}

@media (min-width: 60rem) {
  .timeline__grid {
    gap: 2.5rem;
  }
}
.contact-section__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 60rem) {
  .contact-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.contact-list strong {
  color: #2c6e7b;
}

.contact-form {
  background-color: #fff;
  padding: 1.75rem;
  border-radius: 0.375rem;
  box-shadow: 0 14px 32px rgba(44, 110, 123, 0.15);
  display: grid;
  gap: 1rem;
}

.form-success {
  background-color: rgba(59, 167, 118, 0.12);
  border-left: 4px solid #3ba776;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  color: rgba(43, 43, 43, 0.85);
}

.form-error {
  background-color: rgba(210, 78, 78, 0.1);
  border-left: 4px solid #d64743;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  color: #cf312d;
  margin: 0;
  font-size: 0.95rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  padding: 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(44, 110, 123, 0.25);
  background-color: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field [aria-invalid=true] {
  border-color: #d64743;
  box-shadow: 0 0 0 3px rgba(210, 78, 78, 0.18);
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  border-color: #2c6e7b;
  box-shadow: 0 0 0 3px rgba(44, 110, 123, 0.18);
}

.form-field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-field--checkbox input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.25rem;
}

.form-field--honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.contact-widget {
  background-color: #fff;
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
  border-top: 1px solid rgba(44, 110, 123, 0.1);
}

.consent-box {
  background-color: #f7f9fa;
  border-radius: 0.375rem;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.consent-box__choice {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.consent-box__choice input {
  margin-top: 0.3rem;
}

.consent-box__feedback {
  color: #d9534f;
  min-height: 1.25rem;
}

.widget-frame {
  margin-top: 1.5rem;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(44, 110, 123, 0.1);
  background-color: #fff;
}

.widget-placeholder {
  padding: 2rem;
  text-align: center;
  color: rgba(43, 43, 43, 0.7);
}

@media (max-width: 37.5rem) {
  .hero__content {
    text-align: center;
    padding-inline: 1.5rem;
  }
  .hero__text {
    margin: 0 auto;
  }
  .hero__actions {
    justify-content: center;
  }
}
/* Praxis Status Banner */
.praxis-status-banner {
  background: linear-gradient(135deg, #C8C8D8, #cecedc);
  color: #2b2b2b;
  padding: 1rem 0;
  box-shadow: var(--shadow-soft);
}

.praxis-status-banner__content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.praxis-status-banner__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.9;
}
.praxis-status-banner__icon svg {
  width: 100%;
  height: 100%;
}

.praxis-status-banner__text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.4;
  min-width: 300px;
}
.praxis-status-banner__text strong {
  font-weight: 600;
}

.praxis-status-banner__cta {
  background: rgba(43, 43, 43, 0.1);
  color: #2b2b2b;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(43, 43, 43, 0.2);
  flex-shrink: 0;
}
.praxis-status-banner__cta:hover, .praxis-status-banner__cta:focus {
  background: rgba(43, 43, 43, 0.15);
  color: #2b2b2b;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .praxis-status-banner__content {
    text-align: center;
    flex-direction: column;
    gap: 0.75rem;
  }
  .praxis-status-banner__text {
    min-width: auto;
    font-size: 0.9rem;
  }
}
.home-modern-hero {
  position: relative;
  background: #F5EFE7;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}
.home-modern-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.home-modern-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(180deg, transparent 0%, rgba(200, 200, 216, 0.3) 100%);
  clip-path: ellipse(120% 100% at 50% 100%);
}
.home-modern-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 60rem) {
  .home-modern-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}
.home-modern-hero__content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.home-modern-hero__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.home-modern-hero__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E6B86D;
  margin-bottom: 1rem;
}
.home-modern-hero__logo {
  margin-bottom: 1.5rem;
}
.home-modern-hero__logo img {
  max-width: 100%;
  height: auto;
  width: clamp(280px, 50vw, 400px);
}
.home-modern-hero__text {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: #404040;
}
.home-modern-hero__cta {
  display: inline-block;
  background-color: #E6B86D;
  color: white;
  padding: 1.125rem 2.75rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 180ms ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(230, 184, 109, 0.3);
}
.home-modern-hero__cta:hover {
  background-color: #e1aa50;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 184, 109, 0.4);
}
.home-modern-hero__media {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.2s;
}
.home-modern-hero__media.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.home-modern-hero__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  clip-path: polygon(30% 0%, 100% 0%, 100% 70%, 70% 100%, 0% 100%, 0% 30%);
}
.home-modern-hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 60rem) {
  .home-modern-hero__image-wrapper {
    aspect-ratio: 1/1;
  }
}

.home-modern-features {
  background-color: white;
  padding: clamp(4rem, 10vw, 7rem) 0;
}
.home-modern-features__intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.home-modern-features__intro h2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: #E6B86D;
  margin-bottom: 1rem;
}
.home-modern-features__intro p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #4b4b4b;
  line-height: 1.6;
}
.home-modern-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 37.5rem) {
  .home-modern-features__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
  }
}

.home-modern-feature {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  position: relative;
  background: linear-gradient(135deg, #F5EFE7 0%, #f6f0e8 100%);
  padding: 3rem 2.5rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}
.home-modern-feature.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.home-modern-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #E6B86D, #D9A090);
  opacity: 0;
  transition: opacity 180ms ease;
}
.home-modern-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}
.home-modern-feature:hover::before {
  opacity: 1;
}
.home-modern-feature:hover .home-modern-feature__icon {
  transform: scale(1.1) rotate(5deg);
}
.home-modern-feature__number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(200, 127, 102, 0.2);
  line-height: 1;
}
.home-modern-feature__icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E6B86D, #eac383);
  border-radius: 50%;
  color: white;
  transition: transform 180ms ease;
}
.home-modern-feature__icon svg {
  width: 45px;
  height: 45px;
}
.home-modern-feature h3 {
  font-size: 1.625rem;
  color: #2b2b2b;
  margin-bottom: 1rem;
  font-weight: 600;
}
.home-modern-feature p {
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

.home-modern-cta {
  position: relative;
  background: linear-gradient(135deg, #C8C8D8, #cecedc);
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}
.home-modern-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.home-modern-cta__wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  clip-path: ellipse(120% 100% at 50% 0%);
}
.home-modern-cta__content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.home-modern-cta__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.home-modern-cta__content h2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: #2b2b2b;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.home-modern-cta__content p {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: 1.6;
  color: #404040;
  margin-bottom: 2.5rem;
}
.home-modern-cta__button {
  display: inline-block;
  background-color: #C87F66;
  color: #2b2b2b;
  padding: 1.25rem 3rem;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 180ms ease;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(200, 127, 102, 0.4);
}
.home-modern-cta__button:hover {
  background-color: #ce8c75;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 127, 102, 0.5);
}
.home-modern-cta__button:active {
  transform: translateY(-1px);
}

.practice-modern-hero {
  position: relative;
  background: #F5EFE7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}
.practice-modern-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.practice-modern-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(180deg, transparent 0%, rgba(200, 200, 216, 0.3) 100%);
  clip-path: ellipse(120% 100% at 50% 100%);
}
.practice-modern-hero__content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.practice-modern-hero__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.practice-modern-hero__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E6B86D;
  margin-bottom: 1rem;
}
.practice-modern-hero__headline {
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #2b2b2b;
}
.practice-modern-hero__headline-accent {
  display: block;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  color: #E6B86D;
  margin-top: 0.5rem;
}
.practice-modern-hero__lead {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.6;
  color: #4b4b4b;
  max-width: 650px;
  margin: 0 auto;
}

.practice-opening-announcement {
  background: linear-gradient(135deg, #D9A090, #e1b3a6);
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.practice-opening-announcement::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.practice-opening-announcement::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.practice-opening-announcement__card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  position: relative;
  z-index: 1;
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border: 3px solid rgba(230, 184, 109, 0.2);
}
.practice-opening-announcement__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.practice-opening-announcement__card h2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: #E6B86D;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.practice-opening-announcement__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E6B86D, #D9A090);
  border-radius: 50%;
  color: white;
  margin: 0 auto 2rem;
  box-shadow: 0 6px 20px rgba(230, 184, 109, 0.3);
}
.practice-opening-announcement__icon svg {
  width: 40px;
  height: 40px;
}
.practice-opening-announcement__text {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.7;
  color: #2b2b2b;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.practice-opening-announcement__highlights {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  text-align: left;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 37.5rem) {
  .practice-opening-announcement__highlights {
    gap: 1.5rem;
  }
}
.practice-opening-announcement__highlights li {
  position: relative;
  padding-left: 2.5rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #2b2b2b;
}
.practice-opening-announcement__highlights li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #E6B86D;
  font-size: 1.5rem;
  line-height: 1;
}
.practice-opening-announcement__note {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(230, 184, 109, 0.2);
  font-size: 1rem;
  line-height: 1.6;
  color: #4b4b4b;
  font-style: italic;
}

.practice-modern-values {
  background-color: white;
  padding: clamp(4rem, 10vw, 7rem) 0;
}
.practice-modern-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 60rem) {
  .practice-modern-values__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
  }
}
.practice-modern-values__content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.practice-modern-values__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.practice-modern-values__content h2 {
  font-size: clamp(1.875rem, 4.5vw, 2.5rem);
  color: #E6B86D;
  margin-bottom: 1.5rem;
}
.practice-modern-values__content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: #404040;
  margin-bottom: 2rem;
}
.practice-modern-values__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.practice-modern-values__list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #2b2b2b;
}
.practice-modern-values__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E6B86D;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
}
.practice-modern-values__list li:last-child {
  margin-bottom: 0;
}
.practice-modern-values__image {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.2s;
}
.practice-modern-values__image.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.practice-modern-values__image img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  clip-path: polygon(0% 20%, 20% 0%, 100% 0%, 100% 80%, 80% 100%, 0% 100%);
}

.practice-modern-info {
  background: linear-gradient(135deg, #C8C8D8, #cecedc);
  padding: clamp(3rem, 8vw, 5rem) 0;
}
.practice-modern-info__card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}
.practice-modern-info__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.practice-modern-info__card h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: #E6B86D;
  margin-bottom: 2.5rem;
  text-align: center;
}
.practice-modern-info__entries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 37.5rem) {
  .practice-modern-info__entries {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.practice-modern-info__entry {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.practice-modern-info__entry dt {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #E6B86D;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.practice-modern-info__entry dd {
  font-size: 1.0625rem;
  line-height: 1.5;
  color: #2b2b2b;
  margin: 0;
}
.practice-modern-info__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E6B86D, #D9A090);
  border-radius: 50%;
  color: white;
}
.practice-modern-info__icon svg {
  width: 24px;
  height: 24px;
}

.practice-modern-gallery {
  background-color: white;
  padding: clamp(4rem, 10vw, 7rem) 0;
}
.practice-modern-gallery__headline {
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: #E6B86D;
  text-align: center;
  margin-bottom: 4rem;
}
.practice-modern-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 37.5rem) {
  .practice-modern-gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
  }
}
.practice-modern-gallery__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  margin: 0;
}
.practice-modern-gallery__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.practice-modern-gallery__item figcaption {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #555555;
  text-align: center;
}
.practice-modern-gallery__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1rem;
  clip-path: polygon(10% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 10%);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.practice-modern-gallery__image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}
.practice-modern-gallery__image-wrapper:hover .practice-modern-gallery__overlay {
  opacity: 1;
}
.practice-modern-gallery__image-wrapper:hover img {
  transform: scale(1.05);
}
.practice-modern-gallery__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.practice-modern-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 184, 109, 0.7), rgba(200, 200, 216, 0.7));
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.contact-modern-hero {
  position: relative;
  background: linear-gradient(135deg, #f1d6aa 0%, #efd1a0 100%);
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}
.contact-modern-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact-modern-hero__shape {
  position: absolute;
  background: rgba(230, 184, 109, 0.06);
  border-radius: 50%;
}
.contact-modern-hero__shape--1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
}
.contact-modern-hero__shape--2 {
  width: 350px;
  height: 350px;
  bottom: -120px;
  left: -80px;
}
.contact-modern-hero__content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact-modern-hero__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.contact-modern-hero__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E6B86D;
  margin-bottom: 1rem;
}
.contact-modern-hero__headline {
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #2b2b2b;
}
.contact-modern-hero__headline-accent {
  display: block;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  color: #E6B86D;
  margin-top: 0.5rem;
}
.contact-modern-hero__lead {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.6;
  color: #404040;
}

.contact-modern-info {
  background-color: white;
  padding: clamp(4rem, 10vw, 6rem) 0;
}
.contact-modern-info__headline {
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: #E6B86D;
  text-align: center;
  margin-bottom: 3rem;
}
.contact-modern-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 37.5rem) {
  .contact-modern-info__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
.contact-modern-info__card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #F5EFE7, #f6f0e8);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.contact-modern-info__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.contact-modern-info__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.contact-modern-info__card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #E6B86D;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-modern-info__card p, .contact-modern-info__card a {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #2b2b2b;
  margin: 0;
  text-decoration: none;
  transition: color 180ms ease;
}
.contact-modern-info__card a:hover {
  color: #E6B86D;
}
.contact-modern-info__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E6B86D, #D9A090);
  border-radius: 50%;
  color: white;
}
.contact-modern-info__icon svg {
  width: 28px;
  height: 28px;
}

.contact-modern-hours {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, #cecedc, #d0d0de);
  border-radius: 1rem;
  text-align: center;
}
.contact-modern-hours h3 {
  font-size: 1.5rem;
  color: #E6B86D;
  margin-bottom: 1.5rem;
}
.contact-modern-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-modern-hours ul li {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #2b2b2b;
}

.contact-modern-form {
  background-color: #F5EFE7;
  padding: clamp(4rem, 10vw, 7rem) 0;
}
.contact-modern-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 60rem) {
  .contact-modern-form__grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
  }
}
.contact-modern-form__intro {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.contact-modern-form__intro.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.contact-modern-form__intro h2 {
  font-size: clamp(1.875rem, 4.5vw, 2.5rem);
  color: #E6B86D;
  margin-bottom: 1.5rem;
}
.contact-modern-form__intro p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: #404040;
}
.contact-modern-form__wrapper {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.2s;
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.contact-modern-form__wrapper.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.contact-modern-form__wrapper form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-modern-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-modern-field label {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #2b2b2b;
}
.contact-modern-field input,
.contact-modern-field textarea {
  padding: 1rem 1.25rem;
  border: 2px solid #f7f9fa;
  border-radius: 0.375rem;
  font-family: "Source Sans Pro", Calibri, sans-serif;
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.contact-modern-field input:focus,
.contact-modern-field textarea:focus {
  outline: none;
  border-color: #D9A090;
  box-shadow: 0 0 0 3px rgba(217, 160, 144, 0.15);
}
.contact-modern-field input[aria-invalid=true],
.contact-modern-field textarea[aria-invalid=true] {
  border-color: #d9534f;
}
.contact-modern-field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-modern-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-modern-checkbox input[type=checkbox] {
  margin-top: 0.25rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #E6B86D;
}
.contact-modern-checkbox label {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #2b2b2b;
  cursor: pointer;
}

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

.contact-modern-error-text {
  color: #d9534f;
  font-size: 0.875rem;
}

.contact-modern-submit {
  background: linear-gradient(135deg, #C87F66, #ce8c75);
  color: #2b2b2b;
  padding: 1.125rem 2.5rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 4px 15px rgba(200, 127, 102, 0.3);
}
.contact-modern-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 127, 102, 0.4);
}
.contact-modern-submit:active {
  transform: translateY(0);
}

.contact-modern-form-success {
  background: linear-gradient(135deg, #3ba776, #42bc85);
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}
.contact-modern-form-success p {
  font-size: 1.125rem;
  margin: 0;
}

.contact-modern-form-error {
  background: #fbeeed;
  border: 2px solid #d9534f;
  color: #d9534f;
  padding: 1rem;
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
}
.contact-modern-form-error p {
  margin: 0;
  font-weight: 600;
}

.contact-modern-widget {
  background: white;
  padding: clamp(4rem, 10vw, 6rem) 0;
}
.contact-modern-widget h2 {
  font-size: clamp(1.875rem, 4.5vw, 2.5rem);
  color: #E6B86D;
  text-align: center;
  margin-bottom: 1rem;
}
.contact-modern-widget__intro {
  text-align: center;
  font-size: 1.125rem;
  color: #4b4b4b;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.contact-modern-widget-consent {
  max-width: 600px;
  margin: 0 auto 2rem;
  padding: 2rem;
  background: #F5EFE7;
  border-radius: 1rem;
  border-left: 4px solid #E6B86D;
}
.contact-modern-widget-consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.contact-modern-widget-consent label input[type=checkbox] {
  margin-top: 0.25rem;
  width: 20px;
  height: 20px;
  accent-color: #E6B86D;
}
.contact-modern-widget-consent label span {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.contact-modern-widget-button {
  width: 100%;
  background: #E6B86D;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1.0625rem;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}
.contact-modern-widget-button:hover {
  background-color: #e1aa50;
}
.contact-modern-widget-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.contact-modern-widget-feedback {
  color: #d9534f;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.contact-modern-widget-frame {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: #f7f9fa;
  border-radius: 1rem;
}

.contact-modern-widget-placeholder {
  text-align: center;
  padding: 3rem;
  color: #6b6b6b;
}

.career-modern-hero {
  position: relative;
  background: linear-gradient(135deg, #f1d8af 0%, #efd1a0 100%);
  color: #2b2b2b;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}
.career-modern-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.career-modern-hero__shape {
  position: absolute;
  background: rgba(230, 184, 109, 0.08);
}
.career-modern-hero__shape--1 {
  width: 40%;
  height: 120%;
  top: -10%;
  right: -5%;
  transform: rotate(-15deg) skewY(-10deg);
}
.career-modern-hero__shape--2 {
  width: 30%;
  height: 100%;
  bottom: -20%;
  left: -10%;
  transform: rotate(25deg) skewY(15deg);
}
.career-modern-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 60rem) {
  .career-modern-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.career-modern-hero__content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.career-modern-hero__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.career-modern-hero__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E6B86D;
  margin-bottom: 1rem;
}
.career-modern-hero__headline {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #2b2b2b;
}
.career-modern-hero__headline-accent {
  display: block;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-style: italic;
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  color: #E6B86D;
  margin-top: 0.5rem;
}
.career-modern-hero__text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #4b4b4b;
}
.career-modern-hero__cta {
  display: inline-block;
  background-color: #C87F66;
  color: #2b2b2b;
  padding: 1rem 2.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 180ms ease;
  text-decoration: none;
}
.career-modern-hero__cta:hover {
  background-color: #ce8c75;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.career-modern-hero__media {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.2s;
}
.career-modern-hero__media.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.career-modern-hero__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1rem;
  clip-path: polygon(25% 0%, 100% 0%, 100% 75%, 75% 100%, 0% 100%, 0% 25%);
}
.career-modern-hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 60rem) {
  .career-modern-hero__image-wrapper {
    aspect-ratio: 1/1;
  }
}

.career-modern-main-benefits {
  background-color: #F5EFE7;
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.career-modern-main-benefits__intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.career-modern-main-benefits__intro h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #E6B86D;
  margin-bottom: 1rem;
}
.career-modern-main-benefits__tagline {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #C87F66;
}
.career-modern-main-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 37.5rem) {
  .career-modern-main-benefits__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.career-modern-main-benefit {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.career-modern-main-benefit.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.career-modern-main-benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.career-modern-main-benefit__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E6B86D, #D9A090);
  border-radius: 50%;
  color: white;
}
.career-modern-main-benefit__icon svg {
  width: 40px;
  height: 40px;
}
.career-modern-main-benefit__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.career-modern-main-benefit__icon:has(img) {
  background: none;
}
.career-modern-main-benefit h3 {
  font-size: 1.5rem;
  color: #E6B86D;
  margin-bottom: 1rem;
}
.career-modern-main-benefit p {
  color: #2b2b2b;
  line-height: 1.6;
  margin: 0;
}

.career-modern-benefits {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background-color: white;
}
.career-modern-benefits__headline {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: #E6B86D;
  margin-bottom: 3rem;
}
.career-modern-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 37.5rem) {
  .career-modern-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 60rem) {
  .career-modern-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.career-modern-benefit {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  padding: 1.5rem;
  background-color: #f7f9fa;
  border-radius: 0.375rem;
  border-left: 4px solid #D9A090;
  transition: border-color 180ms ease, transform 180ms ease;
}
.career-modern-benefit.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.career-modern-benefit:hover {
  border-color: #E6B86D;
  transform: translateX(5px);
}
.career-modern-benefit h3 {
  font-size: 1.125rem;
  color: #2b2b2b;
  margin-bottom: 0.5rem;
}
.career-modern-benefit p {
  font-size: 0.9375rem;
  color: #555555;
  margin: 0;
  line-height: 1.5;
}

.career-modern-about {
  background: linear-gradient(135deg, #C8C8D8, #cecedc);
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.career-modern-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 60rem) {
  .career-modern-about__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.career-modern-about__card, .career-modern-about__card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.career-modern-about__card.is-visible, .career-modern-about__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.career-modern-about__card h2, .career-modern-about__card h2 {
  color: #E6B86D;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.career-modern-about__card p, .career-modern-about__card p {
  line-height: 1.6;
  color: #2b2b2b;
}

.career-modern-profile__card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.career-modern-profile__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.career-modern-profile__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.career-modern-profile__list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.career-modern-profile__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E6B86D;
  font-weight: bold;
  font-size: 1.25rem;
}
.career-modern-profile__closing {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #F5EFE7;
  font-style: italic;
  color: #4b4b4b;
}

.career-modern-application {
  background-color: #F5EFE7;
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.career-modern-application__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 60rem) {
  .career-modern-application__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}
.career-modern-application__intro {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.career-modern-application__intro.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.career-modern-application__intro h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: #E6B86D;
  margin-bottom: 1rem;
}
.career-modern-application__intro p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #2b2b2b;
}
.career-modern-application__note {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: rgba(200, 127, 102, 0.1);
  border-left: 4px solid #C87F66;
  border-radius: 0.375rem;
  font-size: 0.9375rem;
}
.career-modern-application__form {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.2s;
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.career-modern-application__form.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.career-modern-application__form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.career-modern-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 37.5rem) {
  .career-modern-form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.career-modern-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.career-modern-form-field label {
  font-weight: 600;
  color: #2b2b2b;
  font-size: 0.9375rem;
}
.career-modern-form-field input,
.career-modern-form-field textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #f7f9fa;
  border-radius: 0.375rem;
  font-family: "Source Sans Pro", Calibri, sans-serif;
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.career-modern-form-field input:focus,
.career-modern-form-field textarea:focus {
  outline: none;
  border-color: #E6B86D;
  box-shadow: 0 0 0 3px rgba(230, 184, 109, 0.1);
}
.career-modern-form-field input[aria-invalid=true],
.career-modern-form-field textarea[aria-invalid=true] {
  border-color: #d9534f;
}
.career-modern-form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.career-modern-form-field input[type=file] {
  padding: 0.5rem;
  border: 2px dashed #f7f9fa;
  cursor: pointer;
}
.career-modern-form-field input[type=file]:hover {
  border-color: #E6B86D;
}
.career-modern-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.career-modern-form-checkbox input[type=checkbox] {
  margin-top: 0.25rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #E6B86D;
}
.career-modern-form-checkbox label {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #2b2b2b;
  cursor: pointer;
}
.career-modern-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.career-modern-form-error-text {
  color: #d9534f;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.career-modern-form-submit {
  background: linear-gradient(135deg, #C87F66, #ce8c75);
  color: #2b2b2b;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.career-modern-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 127, 102, 0.3);
}
.career-modern-form-submit:active {
  transform: translateY(0);
}

.career-modern-form-success {
  background: linear-gradient(135deg, #3ba776, #42bc85);
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}
.career-modern-form-success p {
  font-size: 1.125rem;
  margin: 0;
}

.career-modern-form-error {
  background: #fbeeed;
  border: 2px solid #d9534f;
  color: #d9534f;
  padding: 1rem;
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
}
.career-modern-form-error p {
  margin: 0;
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.simple-page {
  background-color: #F5EFE7;
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.simple-page__content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.simple-page__content h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: #E6B86D;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #F5EFE7;
}
.simple-page__content h2 {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  color: #E6B86D;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
.simple-page__content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #2b2b2b;
  margin-bottom: 1.25rem;
}
.simple-page__content a {
  color: #E6B86D;
  text-decoration: underline;
  transition: color 180ms ease;
}
.simple-page__content a:hover {
  color: #dfa342;
}
.simple-page__content ul, .simple-page__content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.simple-page__content ul li, .simple-page__content ol li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.not-found {
  background: linear-gradient(135deg, #e8c6bc 0%, #F5EFE7 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.not-found__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.not-found__number {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(230, 184, 109, 0.15);
  margin-bottom: 1rem;
}
.not-found__headline {
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #2b2b2b;
}
.not-found__headline-accent {
  display: block;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  color: #E6B86D;
  margin-top: 0.5rem;
}
.not-found__text {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.6;
  color: #404040;
  margin-bottom: 2.5rem;
}
.not-found__button {
  display: inline-block;
  background-color: #E6B86D;
  color: white;
  padding: 1.125rem 2.75rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 180ms ease;
  box-shadow: 0 4px 15px rgba(230, 184, 109, 0.3);
}
.not-found__button:hover {
  background-color: #e1aa50;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 184, 109, 0.4);
}
.not-found__suggestions {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(230, 184, 109, 0.2);
}
.not-found__suggestions-label {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 1.5rem;
}
.not-found__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.not-found__links a {
  padding: 0.75rem 1.5rem;
  background: white;
  color: #E6B86D;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 180ms ease;
}
.not-found__links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  background-color: #E6B86D;
  color: white;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
