/* ========================================
   ISABELL KLINGERT - Plugin CSS v2
   Pixel-perfekt basierend auf Framer-Original
   ======================================== */

/* === SMOOTH SCROLL === */
html {
  scroll-behavior: smooth;
}

/* === RESET & GLOBALS === */
body {
  background-color: #f5f4f0;
  color: #45362d;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
  letter-spacing: 0.32px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  color: #45362d;
  letter-spacing: -0.03em;
}

h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #45362d;
  letter-spacing: -0.07em;
}

/* Emphasized/italic words = light blue (#b1c9df) */
h1 em, h2 em, h3 em {
  color: #b1c9df;
  font-style: italic;
}

a {
  color: #637a8e;
  text-decoration: none;
}
a:hover {
  color: #526a7c;
}

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

/* === LAYOUT === */
.ik-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}
.ik-narrow {
  max-width: 1100px;
}

/* === SCROLL ENTRANCE ANIMATIONS === */
.ik-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.ik-animate.ik-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.ik-animate-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ik-animate-children.ik-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.ik-animate-children.ik-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.ik-animate-children.ik-visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.ik-animate-children.ik-visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

/* === SHARED ELEMENTS === */
.ik-overline {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.32px;
  color: #637a8e;
  margin-bottom: 12px;
  line-height: 24px;
}
.ik-overline-light {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.32px;
  color: #b5a493;
  margin-bottom: 8px;
  line-height: 24px;
}
.ik-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #45362d;
  letter-spacing: 0.32px;
  line-height: 24px;
  margin-bottom: 16px;
}
.ik-text-large {
  font-family: 'Inter', sans-serif;
  font-size: 20.8px;
  font-weight: 400;
  color: #45362d;
  letter-spacing: 0.208px;
  line-height: 31.2px;
  margin-bottom: 16px;
}
.ik-italic {
  font-style: italic;
  color: #45362d;
}
.ik-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #45362d;
}

/* === CTA & BUTTONS === */
.ik-cta-link {
  display: inline-block;
  margin-top: 12px;
  color: #637a8e;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.48px;
  line-height: 24px;
  border-bottom: 1.5px solid #637a8e;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.ik-cta-link:hover {
  color: #526a7c;
  border-color: #526a7c;
}
.ik-btn-primary {
  display: inline-block;
  background: #637a8e;
  color: #fff;
  padding: 14px 32px;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
}
.ik-btn-primary:hover {
  background: #526a7c;
  color: #fff;
  transform: translateY(-1px);
}
.ik-btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border: 1.5px solid #45362d;
  border-radius: 5px;
  color: #45362d;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  transition: all 0.3s;
  margin-top: 12px;
  text-decoration: none;
}
.ik-btn-outline:hover {
  background: #45362d;
  color: #f5f4f0;
}

/* === SECTION 1: HERO === */
.ik-hero {
  padding: 120px 0 0 0;
  overflow: hidden;
}
.ik-hero .ik-container {
  padding-left: 40px;
  padding-right: 0;
}
.ik-hero-grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.ik-hero-content {
  flex: 1;
  padding-top: 0;
}
.ik-hero-headline {
  font-size: 68.8px;
  line-height: 77.744px;
  font-weight: 400;
  letter-spacing: -2.064px;
  margin-bottom: 24px;
}
.ik-hero-content .ik-text {
  font-size: 20.8px;
  letter-spacing: 0.208px;
  line-height: 31.2px;
}
.ik-hero-image {
  flex: 0 0 670px;
  perspective: 1200px;
}
.ik-hero-image img {
  border-radius: 5px;
  width: 100%;
  object-fit: cover;
}

/* === SECTION 2: MISSION === */
.ik-mission {
  padding: 240px 0;
}
.ik-mission-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 52.8px;
  line-height: 64.944px;
  font-weight: 400;
  letter-spacing: -1.584px;
  text-align: center;
  color: #45362d;
}
.ik-mission-text em {
  color: #b1c9df;
  font-style: italic;
}

/* === SECTION 3: ABOUT === */
.ik-about {
  padding: 0 0 100px;
  scroll-margin-top: 120px;
}
.ik-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.ik-about-images {
  position: relative;
  min-height: 700px;
}
.ik-about-images img:first-child {
  border-radius: 5px;
  width: 310px;
  height: 405px;
  object-fit: cover;
  position: absolute;
  top: 200px;
  left: 0;
  box-shadow: rgba(64, 57, 51, 0.08) 0px 10px 20px;
}
.ik-about-images img:last-child {
  border-radius: 5px;
  width: 380px;
  height: 493px;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
}
.ik-about-content .ik-overline {
  color: #b5a493;
}
.ik-about-content h2 {
  font-size: 68.8px;
  line-height: 77.744px;
  letter-spacing: -2.064px;
  margin-bottom: 24px;
}
.ik-expertise-title {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -1.6px;
  line-height: 41.6px;
  margin-top: 40px;
  margin-bottom: 20px;
}
.ik-expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ik-expertise-card {
  background: #fff;
  padding: 20px 24px;
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: rgba(64, 57, 51, 0.04) 0px 4px 12px;
}
.ik-expertise-card:hover {
  transform: translateY(-2px);
  box-shadow: rgba(64, 57, 51, 0.08) 0px 10px 20px;
}
.ik-expertise-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -1.68px;
  line-height: 24px;
  margin-bottom: 8px;
}
.ik-expertise-card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #b5a493;
  letter-spacing: 0.32px;
  line-height: 24px;
  margin: 0;
}

/* === SECTION 4: QUOTE === */
.ik-quote {
  padding: 200px 0;
  text-align: center;
  min-height: 900px;
  display: flex;
  align-items: center;
}
.ik-quote-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 68.8px;
  line-height: 77.744px;
  font-weight: 400;
  letter-spacing: -2.064px;
  color: #45362d;
  max-width: 1100px;
  margin: 0 auto 20px;
}
.ik-quote-text em {
  color: #b1c9df;
  font-style: italic;
}
.ik-quote-author {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #b5a493;
  letter-spacing: 0.32px;
}

/* === SECTION 5: SERVICES === */
.ik-services {
  padding: 120px 0;
  scroll-margin-top: 120px;
}
.ik-services-header {
  margin-bottom: 80px;
}
.ik-services-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.32px;
  line-height: 24px;
  color: #637a8e;
  margin-bottom: 4px;
}
.ik-services-header h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 68.8px;
  line-height: 77.744px;
  letter-spacing: -2.064px;
  font-weight: 400;
  margin-bottom: 24px;
}
.ik-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.ik-services-image {
  border-radius: 5px;
  overflow: hidden;
}
.ik-services-image img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 5px;
}
.ik-services-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ik-service-card {
  background: #fff;
  padding: 60px 60px 20px;
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: rgba(64, 57, 51, 0.04) 0px 4px 12px;
}
.ik-service-card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(64, 57, 51, 0.1) 0px 15px 30px;
}
.ik-service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 43.2px;
  font-weight: 300;
  letter-spacing: -1.296px;
  line-height: 51.84px;
  margin-bottom: 20px;
}
.ik-service-card p {
  font-family: 'Inter', sans-serif;
  color: #45362d;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 24px;
  margin-bottom: 20px;
}
.ik-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #637a8e;
  cursor: pointer;
  padding: 12px 24px;
  border-top: 1px solid #e0ddd8;
  width: 100%;
  border-radius: 40px;
  transition: color 0.3s, background 0.3s;
}
.ik-card-link:hover {
  color: #45362d;
  background: rgba(99, 122, 142, 0.06);
}

/* === SECTION 6: APPROACH === */
.ik-approach {
  padding: 261px 0;
}
.ik-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.ik-approach-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.ik-approach-content .ik-overline {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -2.8px;
  line-height: 40px;
  text-transform: none;
  color: #45362d;
}
.ik-list {
  list-style: none;
  padding: 0;
}
.ik-list li {
  font-family: 'Inter', sans-serif;
  padding: 8px 0;
  color: #45362d;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 24px;
}
.ik-list li::before {
  content: "\2022";
  color: #637a8e;
  font-size: 20px;
  margin-right: 10px;
}

/* === SECTION 7: EXPERTISE SPLIT === */
.ik-expertise-section {
  padding: 50px 0 200px;
}
.ik-expertise-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.ik-expertise-left h2 {
  font-size: 68.8px;
  line-height: 77.744px;
  letter-spacing: -2.064px;
}

/* === SECTION 8: CONTACT === */
.ik-contact {
  padding: 290px 64px 100px;
  scroll-margin-top: 120px;
}
.ik-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 112px;
  align-items: center;
}
.ik-contact-content h2 {
  font-size: 68.8px;
  line-height: 77.744px;
  letter-spacing: -2.064px;
  margin-bottom: 24px;
}
.ik-form-label {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -1.68px;
  color: #637a8e;
  line-height: 24px;
  margin: 24px 0 16px;
}
.ik-form input,
.ik-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  margin-bottom: 14px;
  background: #fff;
  color: #45362d;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
  letter-spacing: 0.32px;
}
.ik-form input:focus,
.ik-form textarea:focus {
  outline: none;
  border-color: #637a8e;
  box-shadow: 0 0 0 3px rgba(99, 122, 142, 0.1);
}
.ik-form textarea {
  min-height: 120px;
  resize: vertical;
}
.ik-form input::placeholder,
.ik-form textarea::placeholder {
  color: #aaa;
  font-weight: 400;
}
.ik-btn-submit {
  display: block;
  width: 100%;
  background: #45362d;
  color: #f5f4f0;
  padding: 14px 32px;
  border: none;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.ik-btn-submit:hover {
  background: #2d241e;
  transform: translateY(-1px);
}
.ik-contact-image img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}

/* === SECTION 9: BOOKING === */
.ik-booking {
  padding: 120px 0 80px;
}
.ik-booking-inner {
  background: #fff;
  border-radius: 8px;
  padding: 45px 25px;
  text-align: center;
  box-shadow: rgba(64, 57, 51, 0.04) 0px 4px 12px;
  max-width: 700px;
  margin: 0 auto;
}
.ik-booking h3 {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -4.48px;
  line-height: 70.4px;
  margin-bottom: 16px;
}
.ik-booking .ik-text {
  max-width: 500px;
  margin: 0 auto 24px;
}

/* === SECTION 10: FAQ === */
.ik-faq {
  padding: 120px 0;
  scroll-margin-top: 120px;
}
.ik-faq-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 100px;
  align-items: start;
}
.ik-faq-header h2 {
  font-size: 68.8px;
  line-height: 77.744px;
  letter-spacing: -2.064px;
  margin-bottom: 16px;
}
.ik-faq-item {
  border-bottom: 1px solid #e0ddd8;
  padding: 20px 0;
}
.ik-faq-item summary {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s;
}
.ik-faq-item summary:hover {
  color: #637a8e;
}
.ik-faq-item summary::-webkit-details-marker {
  display: none;
}
.ik-faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: #637a8e;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.ik-faq-item[open] summary::after {
  transform: rotate(45deg);
}
.ik-faq-answer {
  padding-top: 12px;
  animation: ik-fadeIn 0.3s ease;
}
@keyframes ik-fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
.ik-faq-answer p {
  font-family: 'Inter', sans-serif;
  color: #45362d;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 24px;
}

/* === SECTION 11: FOOTER CONTACT (Warm Beige) === */
.ik-footer-contact {
  background: #f0ebe2;
  color: #45362d;
  padding: 120px 0;
}
.ik-footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}
.ik-footer-contact-image img {
  border-radius: 5px;
  width: 100%;
  object-fit: cover;
}
.ik-footer-contact h3 {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -4.48px;
  line-height: 70.4px;
  color: #45362d;
  margin-bottom: 32px;
}
.ik-footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.32px;
  color: #b5a493;
  font-weight: 400;
  margin-bottom: 8px;
}
.ik-footer-contact p {
  font-family: 'Inter', sans-serif;
  color: #45362d;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 24px;
}
.ik-footer-contact a {
  color: #45362d;
  border-bottom: 1px solid rgba(69,54,45,0.3);
  transition: border-color 0.3s;
}
.ik-footer-contact a:hover {
  border-color: rgba(69,54,45,0.8);
}
.ik-contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* === KADENCE HEADER OVERRIDE === */
.kadence-sticky-header .site-header-wrap {
  background: rgba(252, 245, 240, 0.85) !important;
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

/* === RESPONSIVE: TABLET === */
@media (max-width: 1024px) {
  .ik-container { padding: 0 40px; }

  .ik-hero .ik-container { padding-left: 40px; padding-right: 40px; }
  .ik-hero-grid {
    flex-direction: column;
    gap: 40px;
  }
  .ik-hero-image { flex: 1; }

  .ik-about-grid,
  .ik-services-grid,
  .ik-approach-grid,
  .ik-expertise-split,
  .ik-contact-grid,
  .ik-footer-contact-grid,
  .ik-faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ik-hero-content { padding-top: 0; }
  .ik-hero-headline { font-size: 48px; line-height: 54px; letter-spacing: -1.44px; }
  .ik-mission { padding: 120px 0; }
  .ik-mission-text { font-size: 38px; line-height: 46px; letter-spacing: -1.14px; }
  .ik-quote { padding: 120px 0; min-height: auto; }
  .ik-quote-text { font-size: 42px; line-height: 50px; letter-spacing: -1.26px; }
  .ik-approach { padding: 120px 0; }
  .ik-expertise-section { padding: 50px 0 120px; }
  .ik-contact { padding: 120px 40px 80px; }
  .ik-contact-grid { gap: 60px; }
  .ik-about-content h2,
  .ik-services-header h3,
  .ik-expertise-left h2,
  .ik-contact-content h2,
  .ik-faq-header h2 { font-size: 42px; line-height: 50px; letter-spacing: -1.26px; }
  .ik-service-card h3 { font-size: 32px; line-height: 38px; letter-spacing: -0.96px; }
  .ik-booking { padding: 80px 0 60px; }
  .ik-booking h3,
  .ik-footer-contact h3 { font-size: 42px; line-height: 48px; letter-spacing: -2.94px; }

  .ik-about-images {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .ik-about-images img:first-child,
  .ik-about-images img:last-child {
    position: static;
    width: 100%;
    height: 300px;
  }
}

/* === RESPONSIVE: MOBILE === */
@media (max-width: 809px) {
  .ik-container { padding: 0 20px; }
  .ik-hero { padding: 100px 0 24px; }
  .ik-hero .ik-container { padding-left: 20px; padding-right: 20px; }
  .ik-hero-headline { font-size: 36px; line-height: 42px; letter-spacing: -1.08px; }
  .ik-hero-content .ik-text { font-size: 16px; line-height: 24px; }
  .ik-mission { padding: 60px 0; }
  .ik-mission-text { font-size: 28px; line-height: 36px; letter-spacing: -0.84px; }
  .ik-quote { padding: 60px 0; min-height: auto; }
  .ik-quote-text { font-size: 30px; line-height: 38px; letter-spacing: -0.9px; }
  .ik-about-content h2,
  .ik-services-header h3,
  .ik-expertise-left h2,
  .ik-contact-content h2,
  .ik-faq-header h2 { font-size: 32px; line-height: 38px; letter-spacing: -0.96px; }
  .ik-service-card h3 { font-size: 26px; line-height: 32px; letter-spacing: -0.78px; }
  .ik-service-card { padding: 30px 24px 16px; }
  .ik-booking { padding: 40px 0; }
  .ik-booking-inner { max-width: 100%; }
  .ik-booking h3,
  .ik-footer-contact h3 { font-size: 36px; line-height: 42px; letter-spacing: -2.52px; }
  .ik-expertise-grid { grid-template-columns: 1fr; }
  .ik-contact-details { grid-template-columns: 1fr; }
  .ik-about-images { grid-template-columns: 1fr; }

  .ik-about,
  .ik-services,
  .ik-approach,
  .ik-expertise-section,
  .ik-contact,
  .ik-faq,
  .ik-footer-contact {
    padding: 60px 0;
  }

  .ik-approach-content .ik-overline {
    font-size: 28px;
    letter-spacing: -1.4px;
    line-height: 32px;
  }

  .ik-cta-link {
    font-size: 18px;
    letter-spacing: -0.36px;
  }

  .ik-form-label {
    font-size: 18px;
    letter-spacing: -1.26px;
  }
}
