body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.aspect,.responsive{position:relative;height:0}.aspect iframe,.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.aspect--16\:9,.responsive.ratio-169{padding-bottom:56.25%}.aspect--16\:10,.responsive.ratio-1610{padding-bottom:62.5%}.aspect--21\:9,.responsive.ratio-219{padding-bottom:42.8571%}.aspect--4\:3,.responsive.ratio-43{padding-bottom:75%}.aspect--3\:2,.responsive.ratio-32{padding-bottom:66.6666%}.aspect--9\:16,.responsive.ratio-916{padding-bottom:177.7777%}.aspect--1\:1,.responsive.ratio-11{padding-bottom:100%}
:root {
  --color-primary: #f00000;
  --color-primary-dark: #c00000;
  --color-secondary: #5F7D8F;
  --color-secondary-dark:#4e6878;
  --color-btn-blue: #628395;
  --color-text: #000000;
  --color-text-light: #ffffff;
  --color-bg: #ffffff;
  --color-bg-dark: #000000;
  --container-max: 1440px;
  --container-padding: 104px;
  --section-padding-y: 80px;
}

@font-face {
  font-family: "Inter";
  src: url("../../files/fonts/InterVariable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  margin: 0;
  font-optical-sizing: auto;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
}

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

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

.ammann-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
@media (max-width: 1280px) {
  .ammann-container {
    padding: 0 48px;
  }
}
@media (max-width: 768px) {
  .ammann-container {
    padding: 0 24px;
  }
}

.ammann-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid currentColor;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.ammann-btn--primary {
  background: transparent;
  color: var(--color-text-light);
  border-color: var(--color-text-light);
}
.ammann-btn--primary:hover {
  background: var(--color-text-light);
  color: var(--color-primary);
}
.ammann-btn--dark {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}
.ammann-btn--dark:hover {
  background: var(--color-text);
  color: var(--color-text-light);
}

.ammann-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(140px, 15vw, 216px);
  height: clamp(52px, 5.56vw, 80px);
  padding: clamp(16px, 2.19vw, 31.5px) clamp(24px, 2.95vw, 42.5px);
  font-size: clamp(16px, 1.67vw, 24px);
  font-family: inherit;
  font-weight: 400;
  border-radius: clamp(100px, 13.89vw, 200px);
  background: var(--color-btn-blue);
  color: var(--color-text-light);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ammann-pill-btn:hover {
  background: var(--color-secondary-dark);
}
.ammann-pill-btn--wide {
  padding-left: clamp(48px, 6.25vw, 90px);
  padding-right: clamp(48px, 6.25vw, 90px);
  min-width: 0;
}
.ammann-pill-btn--outline {
  background: transparent;
  border: 2px solid var(--color-text-light);
  color: var(--color-text-light);
}
.ammann-pill-btn--outline:hover {
  background: var(--color-text-light);
  color: var(--color-btn-blue);
}

.ammann-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.ammann-arrow-link__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid currentColor;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.ammann-arrow-link__circle svg {
  width: 24px;
  height: 24px;
}
.ammann-arrow-link:hover .ammann-arrow-link__circle {
  background: currentColor;
}
.ammann-arrow-link:hover .ammann-arrow-link__circle svg path {
  stroke: var(--color-primary);
}
.ammann-arrow-link--on-red:hover .ammann-arrow-link__circle {
  background: var(--color-text-light);
  border-color: var(--color-text-light);
}
.ammann-arrow-link--on-red:hover .ammann-arrow-link__circle svg path {
  stroke: var(--color-primary);
}
.ammann-arrow-link--on-blue:hover .ammann-arrow-link__circle {
  background: var(--color-text-light);
  border-color: var(--color-text-light);
}
.ammann-arrow-link--on-blue:hover .ammann-arrow-link__circle svg path {
  stroke: var(--color-btn-blue);
}
.ammann-arrow-link__label {
  text-align: left;
  line-height: 1.45;
}
.ammann-arrow-link--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  animation: header-shadow linear both;
  animation-timeline: scroll(root);
  animation-range: 0px 40px;
}
#header .inside {
  padding: 0;
  margin: 0;
}

@keyframes header-shadow {
  from {
    box-shadow: none;
  }
  to {
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  }
}
.ammann-header {
  padding: 40px 0;
}
.ammann-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ammann-header__logo-dealer {
  height: 116px;
  width: auto;
  display: block;
}
.ammann-header__logo-dealer img {
  height: 100%;
  width: auto;
  display: block;
}
.ammann-header__logo-ammann {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.ammann-header__logo-ammann a {
  display: block;
  height: 100%;
}
.ammann-header__logo-ammann img {
  height: 100%;
  width: auto;
  display: block;
}
@media (max-width: 1280px) {
  .ammann-header {
    padding: 32px 0;
  }
  .ammann-header__logo-dealer {
    height: 96px;
  }
  .ammann-header__logo-ammann {
    height: 32px;
  }
}
@media (max-width: 1024px) {
  .ammann-header {
    padding: 24px 0;
  }
  .ammann-header__logo-dealer {
    height: 72px;
  }
  .ammann-header__logo-ammann {
    height: 26px;
  }
}
@media (max-width: 768px) {
  .ammann-header {
    padding: 20px 0;
  }
  .ammann-header__logo-dealer {
    height: 52px;
  }
  .ammann-header__logo-ammann {
    height: 20px;
  }
}
@media (max-width: 480px) {
  .ammann-header {
    padding: 16px 0;
  }
  .ammann-header__logo-dealer {
    height: 40px;
  }
  .ammann-header__logo-ammann {
    height: 16px;
  }
}
@media (max-width: 375px) {
  .ammann-header {
    padding: 14px 0;
  }
  .ammann-header__logo-dealer {
    height: 34px;
  }
  .ammann-header__logo-ammann {
    height: 14px;
  }
}

.ammann-footer {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: 0;
}
.ammann-footer__main {
  padding: clamp(80px, 15vw, 216px) 0 clamp(40px, 5.56vw, 80px);
}
.ammann-footer__logo {
  height: 100px;
  width: auto;
  display: block;
  margin-bottom: clamp(40px, 5.56vw, 80px);
}
.ammann-footer__logo img {
  height: 100%;
  width: auto;
  display: block;
}
.ammann-footer__contact-block {
  margin-bottom: 0;
}
.ammann-footer__company {
  font-size: clamp(22px, 2.22vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(8px, 0.83vw, 12px);
}
.ammann-footer__contact-line {
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 500;
  line-height: 1.6;
}
.ammann-footer__contact-line a {
  color: inherit;
  text-decoration: none;
}
.ammann-footer__contact-line a:hover {
  text-decoration: underline;
}
.ammann-footer__address {
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 500;
  margin-top: clamp(20px, 2.22vw, 32px);
}
.ammann-footer__legal {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: clamp(16px, 1.67vw, 24px) 0 clamp(24px, 2.78vw, 40px);
}
.ammann-footer__legal-left {
  font-size: clamp(13px, 1.11vw, 16px);
  opacity: 0.85;
}
.ammann-footer__legal-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.ammann-footer__legal-link {
  font-size: clamp(13px, 1.11vw, 16px);
  color: var(--color-text-light);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
}
.ammann-footer__legal-link:hover {
  text-decoration: underline;
}
.ammann-footer__copyright {
  font-size: clamp(13px, 1.11vw, 16px);
}
@media (max-width: 768px) {
  .ammann-footer__legal {
    flex-direction: column;
    gap: 16px;
  }
  .ammann-footer__legal-right {
    align-items: flex-start;
  }
}

.ammann-intro {
  padding: var(--section-padding-y) 0;
  background: var(--color-bg);
}
.ammann-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.ammann-intro__heading {
  font-size: clamp(36px, 5.56vw, 80px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
}
.ammann-intro__subtext {
  font-size: clamp(18px, 1.67vw, 24px);
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-text);
  margin: 0;
}
@media (max-width: 900px) {
  .ammann-intro__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.ammann-hero-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.ammann-hero-image__img {
  display: block;
  width: 100%;
  height: clamp(300px, 43.89vw, 632px);
  object-fit: cover;
  object-position: center;
}
.ammann-hero-image__badge {
  position: absolute;
  top: clamp(20px, 2.78vw, 40px);
  right: var(--container-padding);
  background: rgba(40, 40, 40, 0.85);
  color: #ffffff;
  font-size: clamp(16px, 2.08vw, 30px);
  font-weight: 400;
  padding: 0.55em 1.4em;
  border-radius: 100px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media (max-width: 1280px) {
  .ammann-hero-image__badge {
    right: 48px;
  }
}
@media (max-width: 768px) {
  .ammann-hero-image__badge {
    right: 24px;
    top: 16px;
  }
}
.ammann-hero-image__badge-bold {
  font-weight: 700;
}

.ammann-cta-text {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: clamp(48px, 5.56vw, 80px) 0;
}
.ammann-cta-text__heading {
  font-size: clamp(28px, 3.89vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: clamp(16px, 2.22vw, 32px);
}
.ammann-cta-text__text {
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: clamp(48px, 6.67vw, 96px);
}
.ammann-cta-text__link.ammann-arrow-link {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.ammann-cta-text__link.ammann-arrow-link .ammann-arrow-link__label {
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 700;
}

.ammann-text-image {
  padding: clamp(80px, 12.78vw, 184px) 0;
  background: var(--color-bg);
}
.ammann-text-image__inner {
  display: grid;
  grid-template-columns: clamp(280px, 36.11vw, 520px) 1fr;
  gap: clamp(48px, 7.22vw, 104px);
  align-items: center;
}
.ammann-text-image__image {
  width: 100%;
  aspect-ratio: 520/576;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  display: block;
}
.ammann-text-image__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 2.22vw, 32px);
}
.ammann-text-image__heading {
  font-size: clamp(28px, 3.89vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
}
.ammann-text-image__text {
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text);
}
@media (max-width: 900px) {
  .ammann-text-image__inner {
    grid-template-columns: 1fr;
  }
  .ammann-text-image__image {
    aspect-ratio: 4/3;
  }
}

.ammann-heading-text {
  padding: var(--section-padding-y) 0;
  background: var(--color-bg);
}
.ammann-heading-text__heading {
  font-size: clamp(28px, 3.89vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: clamp(24px, 2.78vw, 40px);
}
.ammann-heading-text__text {
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text);
}

.ammann-product-cards-hero {
  padding: var(--section-padding-y) 0;
  background: var(--color-bg);
}
.ammann-product-cards-hero__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .ammann-product-cards-hero__grid {
    grid-template-columns: 1fr;
  }
}

.ammann-product-cards {
  padding: var(--section-padding-y) 0;
  background: var(--color-bg);
}
.ammann-product-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.ammann-product-cards__cta {
  text-align: center;
}
@media (max-width: 900px) {
  .ammann-product-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .ammann-product-cards__grid {
    grid-template-columns: 1fr;
  }
}

.ammann-product-card {
  display: flex;
  flex-direction: column;
}
.ammann-product-card__category {
  display: inline-block;
  align-self: flex-start;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 18px;
  background: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 80px;
  margin-bottom: 24px;
  line-height: 1;
}
.ammann-product-card__divider {
  width: 100%;
  height: 1px;
  background: var(--color-text);
  margin-bottom: 24px;
}
.ammann-product-card__name {
  font-size: clamp(18px, 1.67vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: clamp(20px, 2.22vw, 32px);
}
.ammann-product-card__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: clamp(24px, 2.78vw, 40px);
}
.ammann-product-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
}
.ammann-product-card__box {
  background: var(--color-primary);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: clamp(320px, 30.56vw, 440px);
  align-items: stretch;
  flex: 1;
}
.ammann-product-card__box-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 0;
  align-self: stretch;
}
.ammann-product-card__box-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: clamp(16px, 1.67vw, 24px);
  box-sizing: border-box;
}
.ammann-product-card__box-content {
  padding: clamp(20px, 2.22vw, 32px) clamp(20px, 2.22vw, 32px) 24px 16px;
  color: var(--color-text-light);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
}
@media (max-width: 768px) {
  .ammann-product-card__box {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .ammann-product-card__box-image-wrap {
    height: 220px;
  }
  .ammann-product-card__box-content {
    align-self: stretch;
    padding: 20px;
  }
}
.ammann-product-card__box-heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}
.ammann-product-card__box-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ammann-product-card__box-list li {
  padding-left: 14px;
  position: relative;
}
.ammann-product-card__box-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  background: currentColor;
  flex-shrink: 0;
}

.ammann-breakout {
  padding: 104px 0;
  background: var(--color-btn-blue);
  color: var(--color-text-light);
}
.ammann-breakout__heading {
  font-size: clamp(28px, 3.89vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 43px;
}
.ammann-breakout__image {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/7;
  border-radius: 40px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 43px;
}
.ammann-breakout__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 43px;
}
.ammann-breakout__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.ammann-breakout__text {
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 48px;
}
.ammann-breakout__text strong, .ammann-breakout__text b {
  font-weight: 700;
}
.ammann-breakout__text p {
  margin-bottom: 1em;
}
.ammann-breakout__text p:last-child {
  margin-bottom: 0;
}

.ammann-contact-image {
  background: var(--color-btn-blue);
  margin-top: clamp(80px, 12.78vw, 184px);
  margin-bottom: clamp(80px, 12.78vw, 184px);
}
.ammann-contact-image__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  color: var(--color-text-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(400px, 50.56vw, 728px);
}
.ammann-contact-image__image-wrap {
  overflow: hidden;
  min-width: 0;
}
.ammann-contact-image__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.ammann-contact-image__content {
  padding: clamp(40px, 7.22vw, 104px) clamp(32px, 5.56vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.ammann-contact-image__heading {
  font-size: clamp(28px, 3.89vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 40px;
  overflow-wrap: break-word;
}
.ammann-contact-image__text {
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 48px;
  overflow-wrap: break-word;
}
@media (max-width: 1280px) {
  .ammann-contact-image__inner {
    padding: 0 48px;
  }
}
@media (max-width: 900px) {
  .ammann-contact-image__inner {
    grid-template-columns: 1fr;
    height: auto;
  }
  .ammann-contact-image__image-wrap {
    height: 320px;
  }
}
@media (max-width: 768px) {
  .ammann-contact-image__inner {
    padding: 0 24px;
  }
  .ammann-contact-image__image-wrap {
    height: 260px;
  }
  .ammann-contact-image__content {
    padding: 32px 0 40px;
  }
  .ammann-contact-image__heading {
    margin-bottom: 24px;
  }
  .ammann-contact-image__text {
    margin-bottom: 32px;
  }
}

.ammann-email-cta {
  background: var(--color-btn-blue);
  padding: clamp(36px, 5vw, 72px) 0;
}
.ammann-email-cta__label {
  font-size: clamp(24px, 3.89vw, 56px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
  margin: 0 0 0.1em;
}
.ammann-email-cta__email {
  display: block;
  font-size: clamp(24px, 3.89vw, 56px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  text-decoration: none;
}
.ammann-email-cta__email:hover {
  text-decoration: underline;
}

.ammann-locations {
  background: var(--color-btn-blue);
  color: var(--color-text-light);
  padding: clamp(80px, 13.89vw, 200px) 0 var(--section-padding-y);
}
.ammann-locations__subtext {
  font-size: clamp(18px, 2.22vw, 32px);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 48px;
  opacity: 0.6;
}
.ammann-locations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .ammann-locations__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .ammann-locations__subtext {
    margin-bottom: 32px;
  }
  .ammann-locations__grid {
    gap: 16px;
  }
}

.ammann-location-card__icon {
  width: 40px;
  height: auto;
  margin-bottom: 24px;
}
.ammann-location-card__icon img {
  width: 100%;
  height: auto;
  display: block;
}
.ammann-location-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 4px;
}
.ammann-location-card__address {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light);
  opacity: 0.85;
}

.ammann-sticky-form {
  --sf-panel-w: 310px;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: stretch;
  z-index: 900;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.ammann-sticky-form.is-collapsed {
  transform: translateY(-50%) translateX(var(--sf-panel-w));
}
.ammann-sticky-form.is-collapsed .ammann-sticky-form__toggle-icon {
  transform: rotate(180deg);
}
@media (max-width: 600px) {
  .ammann-sticky-form {
    flex-direction: column;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .ammann-sticky-form.is-collapsed {
    transform: translateY(calc(100% - 48px));
  }
  .ammann-sticky-form.is-collapsed .ammann-sticky-form__toggle-icon {
    transform: rotate(-90deg);
  }
  .ammann-sticky-form .ammann-sticky-form__toggle {
    width: 100%;
    height: 48px;
    min-height: auto;
    flex-direction: row;
    justify-content: center;
    border-radius: 8px 8px 0 0;
    padding: 0 16px;
    gap: 10px;
  }
  .ammann-sticky-form .ammann-sticky-form__toggle-text {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 12px;
    letter-spacing: 0.08em;
  }
  .ammann-sticky-form .ammann-sticky-form__toggle-icon {
    transform: rotate(90deg);
  }
  .ammann-sticky-form .ammann-sticky-form__panel {
    width: 100%;
    max-height: 60vh;
    padding: 16px 16px 20px;
  }
}
.ammann-sticky-form__toggle {
  width: 40px;
  flex-shrink: 0;
  background: rgba(95, 97, 103, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px 0 0 6px;
  padding: 16px 0;
  min-height: 160px;
}
.ammann-sticky-form__toggle-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ammann-sticky-form__toggle-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.ammann-sticky-form__panel {
  width: var(--sf-panel-w);
  flex-shrink: 0;
  background: rgba(95, 97, 103, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  padding: 20px 18px 24px;
  overflow-y: auto;
  max-height: 90vh;
}
.ammann-sticky-form__title {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 14px;
}
@media (max-width: 600px) {
  .ammann-sticky-form__title {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
.ammann-sticky-form__checkboxes {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
}
.ammann-sticky-form__check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}
.ammann-sticky-form__check input[type=checkbox] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  background: transparent;
}
.ammann-sticky-form__check input[type=checkbox]:checked {
  background: rgba(255, 255, 255, 0.9);
  border-color: #fff;
}
.ammann-sticky-form__input, .ammann-sticky-form__textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  padding: 10px 12px;
  margin-bottom: 8px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.ammann-sticky-form__input::placeholder, .ammann-sticky-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.ammann-sticky-form__input:focus, .ammann-sticky-form__textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.25);
}
.ammann-sticky-form__textarea {
  resize: vertical;
  min-height: 90px;
}
.ammann-sticky-form__privacy {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 14px;
}
.ammann-sticky-form__privacy a, .ammann-sticky-form__privacy-link {
  color: inherit;
  text-decoration: underline;
}
.ammann-sticky-form__privacy a:hover, .ammann-sticky-form__privacy-link:hover {
  color: #fff;
}
.ammann-sticky-form__privacy-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.ammann-sticky-form__submit {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  padding: 13px;
  cursor: pointer;
  transition: background 0.2s;
}
.ammann-sticky-form__submit:hover {
  background: rgba(255, 255, 255, 0.28);
}
.ammann-sticky-form__success {
  padding: 40px 0;
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
}
.ammann-sticky-form__error-msg {
  font-size: 13px;
  color: rgb(255, 190, 190);
  margin-bottom: 10px;
}
.ammann-sticky-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.ammann-sticky-form__panel--native form {
  margin: 0;
}
.ammann-sticky-form__panel--native .formbody {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ammann-sticky-form__panel--native .widget {
  margin-bottom: 8px;
}
.ammann-sticky-form__panel--native .widget > label,
.ammann-sticky-form__panel--native .widget > legend {
  display: none;
}
.ammann-sticky-form__panel--native .widget-text input,
.ammann-sticky-form__panel--native .widget-email input,
.ammann-sticky-form__panel--native .widget-tel input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.ammann-sticky-form__panel--native .widget-text input::placeholder,
.ammann-sticky-form__panel--native .widget-email input::placeholder,
.ammann-sticky-form__panel--native .widget-tel input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.ammann-sticky-form__panel--native .widget-text input:focus,
.ammann-sticky-form__panel--native .widget-email input:focus,
.ammann-sticky-form__panel--native .widget-tel input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.25);
}
.ammann-sticky-form__panel--native .widget-textarea textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  padding: 10px 12px;
  outline: none;
  resize: vertical;
  min-height: 90px;
  transition: border-color 0.2s, background 0.2s;
}
.ammann-sticky-form__panel--native .widget-textarea textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.ammann-sticky-form__panel--native .widget-textarea textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.25);
}
.ammann-sticky-form__panel--native .widget-checkbox {
  margin-bottom: 14px;
}
.ammann-sticky-form__panel--native .widget-checkbox > legend {
  display: none;
}
.ammann-sticky-form__panel--native .widget-checkbox fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.ammann-sticky-form__panel--native .widget-checkbox .checkbox_container,
.ammann-sticky-form__panel--native .widget-checkbox fieldset > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-right: 20px;
}
.ammann-sticky-form__panel--native .widget-checkbox input[type=checkbox] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  background: transparent;
}
.ammann-sticky-form__panel--native .widget-checkbox input[type=checkbox]:checked {
  background: rgba(255, 255, 255, 0.9);
  border-color: #fff;
}
.ammann-sticky-form__panel--native .widget-checkbox label {
  display: inline;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
.ammann-sticky-form__panel--native .widget-text.honeypot,
.ammann-sticky-form__panel--native input[name=website] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.ammann-sticky-form__panel--native .widget-submit {
  margin-top: 4px;
  margin-bottom: 0;
}
.ammann-sticky-form__panel--native .widget-submit button,
.ammann-sticky-form__panel--native .widget-submit input[type=submit] {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  padding: 13px;
  cursor: pointer;
  transition: background 0.2s;
}
.ammann-sticky-form__panel--native .widget-submit button:hover,
.ammann-sticky-form__panel--native .widget-submit input[type=submit]:hover {
  background: rgba(255, 255, 255, 0.28);
}
.ammann-sticky-form__panel--native p.confirmation,
.ammann-sticky-form__panel--native .message.confirmation {
  padding: 40px 0;
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
  color: #fff;
  margin: 0;
}
.ammann-sticky-form__panel--native .widget.error input, .ammann-sticky-form__panel--native .widget.error textarea {
  border-color: rgba(255, 150, 150, 0.7);
}
.ammann-sticky-form__panel--native p.error,
.ammann-sticky-form__panel--native .error > span {
  display: block;
  font-size: 13px;
  color: rgb(255, 190, 190);
  margin-top: 4px;
}

.ammann-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.ammann-modal[hidden] {
  display: none;
}
.ammann-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}
.ammann-modal__panel {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 760px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 4px;
  padding: clamp(28px, 4vw, 56px) clamp(24px, 4vw, 56px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}
.ammann-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #5a5a5a;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.ammann-modal__close svg {
  width: 20px;
  height: 20px;
}
.ammann-modal__close:hover {
  background: rgba(0, 0, 0, 0.07);
  color: #000;
}
.ammann-modal__title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 clamp(20px, 2.5vw, 32px);
  padding-right: 40px;
}
.ammann-modal__body {
  font-size: clamp(14px, 1.11vw, 16px);
  line-height: 1.75;
  color: #333;
}
.ammann-modal__body h2, .ammann-modal__body h3, .ammann-modal__body h4 {
  font-weight: 700;
  color: #1a1a1a;
  margin: 1.6em 0 0.5em;
  line-height: 1.25;
}
.ammann-modal__body h2 {
  font-size: clamp(17px, 1.39vw, 20px);
}
.ammann-modal__body h3 {
  font-size: clamp(15px, 1.25vw, 18px);
}
.ammann-modal__body p {
  margin: 0 0 1em;
}
.ammann-modal__body a {
  color: var(--color-btn-blue, #628395);
  text-decoration: underline;
}
.ammann-modal__body a:hover {
  color: #1a1a1a;
}
.ammann-modal__body ul, .ammann-modal__body ol {
  margin: 0 0 1em 1.4em;
  padding: 0;
}
.ammann-modal__body ul li, .ammann-modal__body ol li {
  margin-bottom: 0.35em;
}

/*# sourceMappingURL=main.css.map */

