:root {
  --bordeaux: #7E2638;
  --bordeaux-dark: #5B1C2A;
  --rose: #C69AA1;
  --taupe: #A7958A;
  --cream: #F7F2EE;
  --warm-white: #FCFAF8;
  --text: #3B2A2F;
  --line: rgba(126, 38, 56, 0.18);
  --shadow: 0 12px 35px rgba(59, 42, 47, 0.08);
}

/* =========================
   LOCAL FONTS
   ========================= */
/* =========================================================
   Montserrat
   ========================================================= */

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-latin-400-normal.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-latin-500-normal.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-latin-600-normal.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


/* =========================================================
   Cormorant Garamond – normale Schrift
   ========================================================= */

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond-latin-700-normal.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* =========================================================
   Cormorant Garamond – kursiv
   ========================================================= */

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond-latin-500-italic.woff2") format("woff2");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}


/* =========================================================
   Great Vibes
   ========================================================= */

@font-face {
    font-family: "Great Vibes";
    src: url("../fonts/great-vibes-latin-400-normal.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--text);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.7;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(252, 250, 248, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  color: var(--bordeaux);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-name {
  font-family: "Great Vibes", cursive;
  font-size: 2.35rem;
}

.brand span:not(.brand-name) {
  font-size: 0.68rem;
  color: var(--taupe);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-links a:not(.button):hover {
  color: var(--bordeaux);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  color: var(--bordeaux);
}

/* ========================================
   BUTTONS
   ======================================== */

.button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background: var(--bordeaux);
  color: #fff !important;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: 0.2s;
}

.button:hover {
  background: var(--bordeaux-dark);
  transform: translateY(-1px);
}

.button-small {
  padding: 11px 18px;
}

/* ========================================
   HERO
   ======================================== */

.hero {
  background: linear-gradient(
    135deg,
    var(--cream),
    var(--warm-white)
  );
  overflow: hidden;
}

.hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
}

.hero-copy {
  text-align: center;
  padding: 70px 40px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--taupe);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
  margin: 0.2em 0;
  color: var(--bordeaux);
}

h1 {
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
}

h3 {
  font-size: 1.8rem;
}

.hero-copy h2 {
  font-family: Montserrat, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.line-heart,
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--rose);
  font-size: 1.7rem;
  margin: 10px 10px;
}

.line-heart::before,
.line-heart::after {
  content: "";
  display: inline-block;
  flex: 1;
  border-top: 1px solid var(--rose);

}

.lead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: #6e555b;
  margin: 28px 0;
}

/* ========================================
   IMAGES
   ======================================== */

.image-placeholder {
  min-height: 520px;
  background: linear-gradient(
    135deg,
    rgba(126, 38, 56, 0.12),
    rgba(167, 149, 138, 0.22)
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}



.placeholder-label {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--bordeaux);
  padding: 30px;
  border: 1px dashed var(--rose);
  border-radius: 12px;
  background: rgba(252, 250, 248, 0.55);
}
.hero-image


 {
    overflow: hidden;
    position: relative;
    overflow: hidden;

    margin-top: -92px;



    /* Fade the image from opaque on the right
       to transparent on the left */

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 15%,
        black 97%,
        transparent 100%
    ),
      linear-gradient(
      to bottom,
      transparent 0%,
      black 3%,
      black 97%,
      transparent 100%
      );

    mask-composite: intersect;

}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


.hero-image img,
.portrait img
{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cta-image{

    min-height: 440px;
    height: 100%;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;


    /* Fade the image from opaque on the right
       to transparent on the left */

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 97%,
        transparent 100%
    ),
      linear-gradient(
      to bottom,
      transparent 0%,
      black 3%,
      black 97%,
      transparent 100%
      );

    mask-composite: intersect;


}

.cta-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.toplogo img{
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
}

.work-image{
  height: 100%;
  width: 100%;
  object-fit: contain;
  display:block;
  max-height: 450px;



}
/* ========================================
   GENERAL SECTIONS
   ======================================== */

.section {
  padding: 105px 0;
}

.two-col,
.cta-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 70px;
  align-items: center;
}

.portrait {
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
}

.content p {
  max-width: 680px;
}

.signature {
  font-family: "Great Vibes", cursive;
  color: var(--bordeaux);
  font-size: 2.8rem;
  margin-top: 30px !important;
}

.section-heading,
.section-heading .ornament{
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.impressum p{
  margin-bottom: 30px;
}

/* ========================================
   CARDS
   ======================================== */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid rgba(167, 149, 138, 0.22);
  border-radius: 16px;
  padding: 34px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 100px;
  height: 100px;
  border: 1px solid var(--rose);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--bordeaux);
  font-size: 3.5rem;
  margin: 0 auto;
  margin-bottom: 15px;
}

.card a {
  color: var(--bordeaux);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  margin-top: auto;
}

.cardh2{
    color: var(--taupe);
    font-weight: 500;
    font-size: 1.3rem;

}
.horse-icon {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    display: block;
}
/* ========================================
   OFFERS / BENEFITS
   ======================================== */

.offers {
  background: var(--cream);
}
.offers .container {
  width: min(1350px, 94%);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  align-items: start;
}


.benefit-grid > div {
  padding: 20px;
  border-right: 1px solid var(--line);
  display:flex;
  flex-direction: column;
  text-align: center;

}

.benefit-grid > div:last-child {
  border-right: 0;
}

.benefit-grid span {
  display: block;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 18px;
  color: var(--bordeaux);
}

/* Überschriften aller Karten gleich hoch */
.benefit-grid .cardh2 {
  color: var(--taupe);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.4;

  min-height: 3.64rem;

  margin: 0 0 1,5rem;
}

.benefit-grid > div > p:last-child {
  margin: 0;
}

/* ========================================
   CTA
   ======================================== */

.cta {
  background: linear-gradient(
    90deg,
    var(--cream),
    rgba(198, 154, 161, 0.18)
  );
  overflow: hidden;
}

.cta2{
 background:  var(--cream);
 border-radius: 24px;
 margin: 2rem auto 4rem;
 padding: 4rem 2rem;
 max-width: 90%;

}

.cta2 p{
  text-align: center;
  font-family: "Great Vibes";
  color: var(--bordeaux);
  font-size: 2.3rem;
}

.cta2 .button{
  display: block;
  width: fit-content;
  margin: 2rem auto 0;
}


.cta-grid {
  grid-template-columns: 1fr 1fr;
}

.cta-image {
  min-height: 440px;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background: var(--warm-white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.7fr;
  gap: 35px;
  padding: 50px 0;
  color: #6e555b;
  font-size: 0.85rem;
}

.footer-bottom {
  background: var(--bordeaux);
  color: #fff;
  padding: 16px 4%;
  font-size: 0.75rem;
}

.legal {
  align-self: end;
}

/* ========================================
   OFFER DETAIL PAGES
   ======================================== */

.offer-hero {
  background: linear-gradient(
    135deg,
    var(--cream),
    var(--warm-white)
  );
}

.offer-hero-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
}

.offer-copy {
  padding: 70px 40px;
}

.offer-copy h1 {
  font-size: 4rem;
}

.offer-copy h2 {
  font-family: Montserrat, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--bordeaux);
  line-height: 1.5;
}

.offer-image {
  min-height: 560px;
}

.offer-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--cream),
    transparent 40%
  );
}

/* ========================================
   OFFER SUPPORT
   ======================================== */

.offer-support {
  background: var(--warm-white);
}

.offer-support-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  align-items: center;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}

.offer-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.offer-list li::before {
  content: "♡";
  color: var(--bordeaux);
  margin-right: 10px;
}

.offer-quote {
  background: #fff;
  border: 1px solid rgba(167, 149, 138, 0.22);
  border-radius: 16px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.offer-quote .quote-heart {
  font-size: 2rem;
  color: var(--bordeaux);
}

.offer-quote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  line-height: 1.25;
  color: var(--bordeaux);
  margin: 10px 0 0;
}

/* ========================================
   OFFER WORK
   ======================================== */

.offer-work {
  background: var(--cream);
  border-radius: 24px;
  margin: 2rem auto 4rem;
  padding: 4rem 2rem;
  max-width: 90%;
}

.offer-work .content h2,
.offer-work .content .ornament{
  text-align:center;
}

.offer-work-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: start;
}

.offer-work .image-placeholder {
  min-height: 380px;
  border-radius: 18px;
  overflow: hidden;
}

/* ========================================
   OFFER AUDIENCE
   ======================================== */

.offer-audience .content {
  max-width: 820px;
  margin: auto;
  text-align: center;
}

.offer-audience .content p {
  max-width: none;
  font-size: 1.05rem;
}

.offer-note {
  font-size: 0.88rem;
  color: #6e555b;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* ========================================
   BREADCRUMBS
   ======================================== */

.breadcrumb {
  font-size: 0.78rem;
  color: var(--taupe);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--taupe);
  text-decoration: none;
}

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




/* ========================================
 *  KONTAKTSEITE
 *  ======================================== */

.contact-hero {
  background: linear-gradient(
    135deg,
    var(--cream),
                              var(--warm-white)
  );
  padding: 90px 0 70px;
}

.contact-hero .section-heading {
  margin-bottom: 0;
}

.contact-hero h1 {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
}

.contact-intro {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: #6e555b;
  margin: 25px auto 10px;
}

.contact-hero .section-heading > p:last-child {
  max-width: 600px;
  margin: 0 auto;
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 105px 20px;
  background: var(--warm-white);
}

.contact-form-card {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;

  background: #fff;
  border: 1px solid rgba(167, 149, 138, 0.22);
  border-radius: 16px;
  padding: 55px 70px;
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  text-align: center;
  font-size: 2.8rem;
}

.contact-form-card .ornament {
  justify-content: center;
  margin-bottom: 45px;
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.form-group label {
  color: var(--bordeaux);
  font-size: 0.85rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 17px 18px;
  border: 1px solid rgba(167, 149, 138, 0.45);
  border-radius: 8px;
  background: var(--warm-white);
  color: var(--text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-group textarea {
  resize: vertical;
  min-height: 300px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(126, 38, 56, 0.08);
}

.contact-form-card .button {
  align-self: center;
  border: 0;
  cursor: pointer;
  margin-top: 10px;
}



/* ========================================
 *  KONTAKTFORMULAR MODAL
 *  ======================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 1.5rem;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(59, 42, 47, 0.65);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  z-index: 1;

  width: min(100%, 520px);

  padding: 2.5rem 2rem;

  text-align: center;

  background: var(--warm-white);

  border: 1px solid rgba(126, 38, 56, 0.15);
  border-radius: 1.25rem;

  box-shadow: 0 1rem 3rem rgba(59, 42, 47, 0.2);
}

.modal-card h2 {
  margin-bottom: 10px;
}

.modal-card .ornament {
  margin-bottom: 25px;
}

.modal-card p {
  margin: 0 auto 25px;
  max-width: 420px;
}

.modal-contact {
  margin-bottom: 25px;
  line-height: 2;
}

.modal-contact a {
  color: var(--bordeaux);
  text-decoration: none;
  font-weight: 500;
}

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

.modal-close {
  position: absolute;

  top: 12px;
  right: 16px;

  border: 0;
  background: transparent;

  color: var(--bordeaux);

  font-size: 2rem;
  line-height: 1;

  cursor: pointer;
}

.modal-close:hover {
  color: var(--bordeaux-dark);
}

body.modal-open {
  overflow: hidden;
}

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

.honeypot input {
  position: absolute;
  left: -9999px;
}

/* =========================================================
 *  RESPONSIVE DESIGN
 *  Tablets & Smartphones
 *  ========================================================= */


/* =========================================================
 *  TABLETS
 *  ca. 701px – 1000px
 *  ========================================================= */

@media (max-width: 1000px) {

  /* ---------- Allgemein ---------- */

  .container {
    width: min(92%, 900px);
  }

  .section {
    padding: 80px 0;
  }


  /* ---------- Navigation ---------- */

  .nav {
    min-height: 80px;
  }

  .toplogo img {
    height: 100px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  .button {
    padding: 13px 20px;
  }

  .button-small {
    padding: 10px 15px;
  }


  /* ---------- Hero ---------- */

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    padding: 55px 25px;
  }

  h1 {
    font-size: clamp(3.2rem, 7vw, 5rem);
  }

  .hero-copy h2 {
    font-size: 1.15rem;
  }

  .lead {
    font-size: 1.3rem;
  }

  .hero-image {
    margin-top: 0;
  }


  /* ---------- Allgemeine 2-Spalten-Bereiche ---------- */

  .two-col,
  .cta-grid {
    gap: 45px;
  }


  /* ---------- Karten ---------- */

  .cards {
    gap: 18px;
  }

  .card {
    padding: 25px;
  }

  .card-icon {
    width: 85px;
    height: 85px;
    font-size: 3rem;
  }


  /* ---------- Benefits ---------- */

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-grid > div:nth-child(2) {
    border-right: 0;
  }

  .benefit-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }


  /* ---------- Offer Hero ---------- */

  .offer-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .offer-copy {
    padding: 55px 25px;
  }

  .offer-copy h1 {
    font-size: clamp(3rem, 6vw, 4rem);
  }

  .offer-image {
    min-height: 480px;
  }


  /* ---------- Offer Support ---------- */

  .offer-support-grid {
    gap: 45px;
  }

  .offer-list {
    gap: 10px 20px;
  }


  /* ---------- Offer Work ---------- */

  .offer-work {
    max-width: 94%;
    padding: 3rem 1.5rem;
  }

  .offer-work-grid {
    gap: 45px;
  }


  /* ---------- CTA ---------- */

  .cta2 {
    max-width: 94%;
    padding: 3rem 1.5rem;
  }

  .cta2 p {
    font-size: 2rem;
  }


  /* ---------- Footer ---------- */

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
  }

  .footer-grid .legal {
    grid-column: 1 / -1;
  }


  /* ---------- Kontakt ---------- */

  .contact-form-card {
    padding: 45px 50px;
  }

}


/* =========================================================
 *  SMARTPHONES
 *  bis 700px
 *  ========================================================= */

@media (max-width: 700px) {

  /* ---------- Allgemein ---------- */

  .container {
    width: 90%;
  }

  .section {
    padding: 65px 0;
  }

  body {
    font-size: 0.92rem;
  }


  /* =====================================================
   *    HEADER / MOBILE NAVIGATION
   *    ===================================================== */

  .nav {
    min-height: 72px;
    position: relative;
  }

  .toplogo img {
    height: 78px;
  }

  .menu-toggle {
    display: block;
    padding: 8px;
    cursor: pointer;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;

    flex-direction: column;
    align-items: stretch;
    gap: 0;

    background: var(--warm-white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    padding: 10px 5%;
    box-shadow: 0 12px 25px rgba(59, 42, 47, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 13px 5px;
    font-size: 0.9rem;
  }

  .nav-links .button {
    text-align: center;
    margin: 8px 0 5px;
  }


  /* =====================================================
   *    TYPOGRAFIE
   *    ===================================================== */

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  h3 {
    font-size: 1.55rem;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  .lead {
    font-size: 1.25rem;
    line-height: 1.5;
  }


  /* =====================================================
   *    BUTTONS
   *    ===================================================== */

  .button {
    padding: 13px 20px;
  }


  /* =====================================================
   *    HERO
   *    ===================================================== */

  .hero-grid {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-copy {
    width: 100%;
    padding: 55px 10px 45px;
  }

  .hero-copy h2 {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .hero-image {
    width: 100%;
    height: 400px;
    min-height: 0;

    margin-top: 0;

    mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      black 4%,
      black 96%,
      transparent 100%
    );

    mask-composite: intersect;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  /* =====================================================
   *    ABOUT
   *    ===================================================== */

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .portrait {
    min-height: 0;
    height: 400px;
  }

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

  .content p {
    max-width: none;
  }

  .signature {
    text-align: center;
    font-size: 2.5rem;
  }


  /* =====================================================
   *    SECTION HEADINGS
   *    ===================================================== */

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2 {
    padding: 0 5px;
  }


  /* =====================================================
   *    ANGEBOTSKARTEN
   *    ===================================================== */

  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 28px 24px;
  }

  .card-icon {
    width: 85px;
    height: 85px;
    font-size: 3rem;
  }

  .card h3 {
    text-align: center;
  }

  .cardh2 {
    font-size: 1.2rem;
  }


  /* =====================================================
   *    BENEFITS
   *    ===================================================== */

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid > div {
    padding: 25px 15px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-grid > div:last-child {
    border-bottom: 0;
  }

  .benefit-grid span {
    font-size: 3rem;
    margin-bottom: 12px;
  }


  /* =====================================================
   *    CTA
   *    ===================================================== */

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-grid > div:first-child {
    text-align: center;
  }

  .cta-grid .ornament {
    justify-content: center;
  }

  .cta-image {
    min-height: 350px;
    height: 350px;
  }


  /* =====================================================
   *    CTA2
   *    ===================================================== */

  .cta2 {
    max-width: 94%;
    padding: 2.5rem 1.2rem;
    border-radius: 18px;
    margin: 1.5rem auto 3rem;
  }

  .cta2 p {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .cta2 .button {
    margin-top: 1.5rem;
  }


  /* =====================================================
   *    OFFER HERO
   *    ===================================================== */

  .offer-hero-grid {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .offer-copy {
    width: 100%;
    padding: 45px 10px 40px;
  }

  .offer-copy h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .offer-copy h2 {
    font-size: 1.3rem;
  }

  .offer-image {
    width: 100%;
    min-height: 380px;
    height: 380px;
  }

  .offer-image::after {
    background: linear-gradient(
      to bottom,
      var(--cream),
                                transparent 30%
    );
  }


  /* =====================================================
   *    BREADCRUMB
   *    ===================================================== */

  .breadcrumb {
    font-size: 0.7rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }


  /* =====================================================
   *    OFFER WORK
   *    ===================================================== */

  .offer-work {
    max-width: 94%;
    padding: 2.5rem 1.2rem;
    border-radius: 18px;
    margin: 1.5rem auto 3rem;
  }

  .offer-work-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .offer-work .content h2 {
    font-size: 2.2rem;
  }

  .offer-work .image-placeholder {
    min-height: 280px;
  }

  .work-image {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
  }


  /* =====================================================
   *    OFFER SUPPORT
   *    ===================================================== */

  .offer-support-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .offer-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .offer-list li {
    padding: 12px 0;
  }

  .offer-quote {
    padding: 28px 22px;
  }

  .offer-quote p {
    font-size: 1.6rem;
  }


  /* =====================================================
   *    KONTAKT
   *    ===================================================== */

  .contact-section {
    padding: 55px 15px;
  }

  .contact-form-card {
    width: 100%;
    padding: 35px 22px;
    border-radius: 14px;
  }

  .contact-form-card h2 {
    font-size: 2.3rem;
  }

  .contact-form-card .ornament {
    margin-bottom: 30px;
  }

  .contact-form-card form {
    gap: 22px;
  }

  .form-group {
    gap: 7px;
  }

  .form-group input,
  .form-group textarea {
    padding: 14px 15px;
    font-size: 0.9rem;
  }

  .form-group textarea {
    min-height: 220px;
  }

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


  /* =====================================================
   *    MODAL
   *    ===================================================== */

  .modal {
    padding: 1rem;
  }

  .modal-card {
    width: 100%;
    max-width: 450px;
    padding: 2.2rem 1.3rem 1.8rem;
    border-radius: 1rem;
  }

  .modal-card h2 {
    font-size: 2.1rem;
  }

  .modal-card p {
    font-size: 0.9rem;
  }

  .modal-close {
    top: 10px;
    right: 13px;
  }

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


  /* =====================================================
   *    FOOTER
   *    ===================================================== */

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 40px 0;
    text-align: center;
  }

  .footer-grid .legal {
    grid-column: auto;
    align-self: auto;
  }

  .footer-bottom {
    text-align: center;
    padding: 14px 5%;
    line-height: 1.5;
  }


  /* =====================================================
   *    IMPRESSUM / DATENSCHUTZ
   *    ===================================================== */

  .legal-page {
    padding: 65px 0 45px;
  }

  .legal-content {
    width: 100%;
  }

  .legal-content h1 {
    font-size: 3rem;
  }

  .legal-content h2 {
    margin-top: 35px;
  }

  .legal-content h3 {
    margin-top: 28px;
  }

  .legal-content p,
  .legal-content li {
    line-height: 1.7;
  }

  .legal-content ul {
    padding-left: 20px;
  }

  .legal-note {
    padding: 15px 18px;
  }

}


/* =========================================================
 *  SEHR KLEINE SMARTPHONES
 *  bis 400px
 *  ========================================================= */

@media (max-width: 400px) {

  .container {
    width: 92%;
  }

  .toplogo img {
    height: 70px;
  }

  .nav {
    min-height: 66px;
  }

  .nav-links {
    top: 66px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    padding-left: 5px;
    padding-right: 5px;
  }

  .hero-image,
  .offer-image {
    height: 320px;
    min-height: 320px;
  }

  .cta2 p {
    font-size: 1.65rem;
  }

  .contact-form-card {
    padding-left: 17px;
    padding-right: 17px;
  }

}


