/*
Theme Name: Terapeut Tema
Author: Naturo
Description: Minimalistisk scrollytelling för samtalsterapi i sand & mjuk olivgrön.
Version: 1.1
*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  color: #272421;
  background-color: #f6f3ee; /* Varm grundsandton */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================
   FROSTAD HEADER (SAND & GLAS)
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 1000;
  background: rgba(246, 243, 238, 0.82); /* Frostat sandglas */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(78, 91, 73, 0.1);
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  color: #272421;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.brand span {
  font-weight: 300;
  color: #60705b; /* Diskret olivgrön touch */
  margin-left: 6px;
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #5c554e;
  font-size: 0.92rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #4e5b49; /* Olivgrön vid hover */
}

/* Mjuk olivgrön knapp i header */
.header-btn {
  text-decoration: none;
  background-color: #4e5b49;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 980px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-btn:hover {
  background-color: #3e493a;
  transform: scale(1.02);
}

/* ==========================================
   MAIN SCENE (SAND & VIDEO)
   ========================================== */
.sand-scene {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f6f3ee;
}

.sand-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sand-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* Tvingar GPU:n i mobilen att låsa bilden så det inte flimrar: */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

/* Mjuk sand-övertoning */
.sand-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(246, 243, 238, 0.28);
  z-index: 2;
}

.sand-text-overlay {
  position: absolute;
  z-index: 3;
  text-align: center;
  max-width: 680px;
  padding: 0 20px; 
  top: 48%;
  transform: translateY(-50%) translateZ(0);
  will-change: transform, opacity;
}

.sand-text-overlay h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 600;
  color: #24221f;
  /* color: #4e5b49; */
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(246, 243, 238, 0.8);
  max-width: 680px;
}

.sand-text-overlay p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #4f4a43;
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 30px;
  background: rgba(246, 243, 238, 0.94);
  padding: 14px 24px;
  border-radius: 14px;
  border: 1px solid rgba(78, 91, 73, 0.12);
  display: inline-block;
  /* Låser grafiken i datorns GPU: */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  max-width: 580px;
}

.sand-text-overlay span{
  transform: translateY(-50%);
  font-weight: 500;
  color: #60705b;
  font-size: 1.92rem;
}

/* Mjuk olivgrön knapp */
.apple-btn {
  display: inline-block;
  background-color: #4e5b49;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 15px 36px;
  border-radius: 980px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(78, 91, 73, 0.2);
}

.apple-btn:hover {
  transform: scale(1.03);
  background-color: #3e493a;
  box-shadow: 0 6px 24px rgba(78, 91, 73, 0.28);
}

/* ==========================================
   SEKTION 2: (KORT)
   ========================================== */
.section-identify {
  background-color: #ffffff;
  padding: 130px 24px;
  position: relative;
  z-index: 10;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px auto;
}

.eyebrow {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #60705b; /* Mjuk olivgrön */
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #272421;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-header p {
  font-size: 1.15rem;
  color: #635c54;
  line-height: 1.6;
  font-weight: 400;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.card {
  background-color: #f6f3ee; /* Varm sandton på korten */
  padding: 44px 34px;
  border-radius: 22px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(78, 91, 73, 0.06);
}

.card:hover {
  transform: translateY(-4px);
  background-color: #ede7de;
  box-shadow: 0 16px 32px rgba(43, 38, 35, 0.05);
}

.card-number {
  font-size: 0.95rem;
  font-weight: 600;
  color: #60705b; /* Olivgrön siffra */
  display: block;
  margin-bottom: 24px;
  font-feature-settings: "tnum";
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #272421;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.card p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #59534c;
}

/* ==========================================
   SEKTION 3: OM TERAPEUTEN
   ========================================== */
.section-about {
  background-color: #ede7de; /* Djupare varm sandton som bryter av */
  padding: 140px 24px;
  position: relative;
  z-index: 10;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 580px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(43, 38, 35, 0.09);
  /* border: 1px solid rgba(78, 91, 73, 0.1); */
  border: 4px solid rgb(78, 91, 73);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-text-col h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #272421;
  margin-bottom: 24px;
  line-height: 1.15;
}

.about-text-col .lead-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #272421;
  font-weight: 400;
  margin-bottom: 18px;
}

.about-text-col .body-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5c554e;
  margin-bottom: 40px;
}

/* ==========================================
   SEKTION 4: TJÄNSTER & SAMTAL
   ========================================== */
.section-services {
  background-color: #fbfaf8;
  padding: 140px 24px;
  position: relative;
  z-index: 10;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 70px;
}

.services-header h2 {
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #272421;
  line-height: 1.2;
  margin-bottom: 18px;
}

.services-header p {
  font-size: 1.18rem;
  color: #635c54;
  line-height: 1.6;
  max-width: 680px;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  padding: 44px 0;
  border-top: 1px solid rgba(78, 91, 73, 0.15); 
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.service-item:last-child {
  border-bottom: 1px solid rgba(78, 91, 73, 0.15);
}

.service-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #272421;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-info p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #59534c;
  margin-bottom: 12px;
  max-width: 580px;
}

.service-meta {
  display: inline-block;
  font-size: 0.88rem;
  color: #60705b; 
  font-weight: 500;
}

.service-action {
  text-align: right;
  min-width: 140px;
}

.service-price {
  font-size: 1.85rem;
  font-weight: 600;
  color: #4e5b49; 
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.service-link {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #272421;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.service-link:hover {
  transform: translateX(4px);
  color: #4e5b49;
}

.services-note {
  margin-top: 44px;
  padding: 22px 28px;
  background: #eef2ec; /* Mjuk dämpad salviabakgrund */
  border-left: 3px solid #60705b;
  border-radius: 0 14px 14px 0;
}

.services-note p {
  font-size: 0.92rem;
  color: #444e40;
  line-height: 1.6;
}

/* ==========================================
   SEKTION 5: VANLIGA FRÅGOR
   ========================================== */
.section-faq {
  background-color: #f6f3ee; /* Sandton */
  padding: 140px 24px;
  position: relative;
  z-index: 10;
}

.faq-header {
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #272421;
  margin-bottom: 16px;
  line-height: 1.2;
}

.faq-header p {
  font-size: 1.15rem;
  color: #635c54;
  line-height: 1.6;
  max-width: 650px;
}

.faq-accordion {
  border-top: 1px solid rgba(78, 91, 73, 0.16);
}

.faq-item {
  border-bottom: 1px solid rgba(78, 91, 73, 0.16);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 600;
  color: #272421;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #4e5b49;
}

.faq-icon {
  font-size: 1.6rem;
  font-weight: 300;
  color: #60705b;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
  margin-left: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #4e5b49;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

.faq-answer p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #59534c;
  padding-bottom: 30px;
  max-width: 720px;
}

/* ==========================================
   SEKTION 6: KONTAKT & BOKNING
   ========================================== */
.section-contact {
  background-color: #ede7de; /* Varm lugnande sandton */
  padding: 140px 24px 110px 24px;
  position: relative;
  z-index: 10;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-info-col h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #272421;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #5c554e;
  margin-bottom: 40px;
}

.direct-booking-box {
  background: #ffffff;
  padding: 34px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 12px 36px rgba(43, 38, 35, 0.04);
  border: 1px solid rgba(78, 91, 73, 0.1);
}

.direct-booking-box h3 {
  font-size: 1.3rem;
  color: #272421;
  margin-bottom: 8px;
}

.direct-booking-box p {
  color: #635c54;
  font-size: 1rem;
  margin-bottom: 20px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.detail-item strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #60705b; /* Olivgrön rubrik */
  margin-bottom: 4px;
}

.detail-item p, .detail-item a {
  font-size: 1.1rem;
  color: #272421;
  text-decoration: none;
}

.detail-item a:hover {
  color: #4e5b49;
  text-decoration: underline;
}

/* Formulärkort */
.form-card {
  background: #ffffff;
  padding: 44px;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(43, 38, 35, 0.06);
  border: 1px solid rgba(78, 91, 73, 0.08);
}

.form-card h3 {
  font-size: 1.6rem;
  color: #272421;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 0.95rem;
  color: #635c54;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #272421;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(78, 91, 73, 0.2);
  background-color: #fbfaf8;
  font-family: inherit;
  font-size: 1rem;
  color: #272421;
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #4e5b49;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(78, 91, 73, 0.12);
}

.form-gdpr {
  font-size: 0.82rem;
  color: #71695f;
  line-height: 1.5;
  margin-bottom: 24px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 980px;
  border: none;
  background-color: #4e5b49; /* Olivgrön skicka-knapp */
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(78, 91, 73, 0.2);
}

.submit-btn:hover {
  background-color: #3e493a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 91, 73, 0.3);
}

/* ==========================================
   FOOTER (SKOGSGRÖN & SAND)
   ========================================== */
.site-footer {
  background-color: #424e3f; /* Nu syns den varma, mjuka olivgröna färgen tydligt! */
  color: #f6f3ee;            /* Varm ljus sandtext för perfekt kontrast */
  padding: 65px 24px;
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand strong {
  color: #ffffff;
}

.footer-brand p {
  color: #d1d9cf;            /* Mjuk dämpad salviagrön */
  margin-top: 4px;
}

.footer-meta {
  text-align: right;
  color: #d1d9cf;
}

.copyright {
  margin-top: 6px;
  font-size: 0.82rem;
}

/* ==========================================
   RESPONSIVITET / MOBILANPASSNING
   ========================================== */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  
  .about-image-wrapper {
    height: 420px;
    max-width: 100%;
  }
  
  .form-card {
    padding: 30px 20px;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-meta {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 700px) {
  .service-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-action {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .service-price {
    margin-bottom: 0;
  }
}

/* ==========================================
   OPTIMERING FÖR MOBIL & IPHONE (14, 15 & NYARE)
   ========================================== */
@media (max-width: 768px) {

  /* 1. Header */
  .site-header {
    height: 56px;
  }
  .header-inner {
    padding: 0 18px;
  }
  .brand {
    font-size: 0.95rem;
  }
  .nav-links {
    display: none;
  }
  .header-btn {
    padding: 7px 14px;
    font-size: 0.8rem;
  }

  /* 2. Hero & Video (Apples dynamiska höjd dvh) */
  .sand-scene {
    height: 100dvh; /* dvh tar hänsyn till Safaris adressfält */
    min-height: -webkit-fill-available;
  }

  .sand-img {
    object-position: center 15%; /* Lyfter upp händerna så de syns fritt */
  }

  /* Placera texten snyggt i nedre halvan så den inte täcker händerna */
  .sand-text-overlay {
    top: auto;
    bottom: 40px;
    transform: none;
    padding: 0 16px;
    width: 100%;
  }

  .sand-text-overlay h1 {
    font-size: 1.85rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .sand-text-overlay p {
    font-size: 0.95rem;
    line-height: 1.45;
    padding: 10px 16px;
    margin-bottom: 20px;
  }

  .apple-btn {
    padding: 13px 28px;
    font-size: 0.95rem;
    width: 100%; /* Helbredd på knappen för enkel tum-klickning */
    max-width: 280px;
  }

  /* 3. Rimliga sektionsavstånd (70px istället för 140px) */
  .section-identify,
  .section-about,
  .section-services,
  .section-faq,
  .section-contact {
    padding: 70px 18px;
  }

  .section-header,
  .services-header,
  .faq-header {
    margin-bottom: 40px;
    text-align: left; /* Mycket mer lättläst på mobil */
  }

  .section-header h2,
  .about-text-col h2,
  .services-header h2,
  .faq-header h2,
  .contact-info-col h2 {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .section-header p,
  .services-header p,
  .faq-header p,
  .contact-lead {
    font-size: 1.02rem;
  }

  /* 4. Sektion 2: Korten */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  /* 5. Sektion 3: Om terapeuten (Runda bilden) */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image-wrapper {
    max-width: 220px; /* Perfekt storlek för mobilen */
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0 auto; /* Centrera bilden i kolumnen */
  }

  /* 6. Sektion 4: Tjänster & Priser */
  .service-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .service-action {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px dashed rgba(78, 91, 73, 0.15);
    padding-top: 12px;
  }

  .service-price {
    margin-bottom: 0;
    font-size: 1.5rem;
  }

  /* 7. Sektion 5: FAQ */
  .faq-question {
    padding: 20px 0;
    font-size: 1.05rem;
  }

  /* 8. Sektion 6: Kontaktformuläret */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .direct-booking-box {
    padding: 24px 20px;
  }

  .form-card {
    padding: 28px 18px;
    border-radius: 20px;
  }

  /* Hindrar iPhone från att fult auto-zooma vid klick i formulärfält */
  .form-group input,
  .form-group textarea {
    font-size: 16px !important; 
    padding: 12px 14px;
  }

  /* 9. Footer */
  .site-footer {
    padding: 45px 18px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .footer-meta {
    text-align: center;
  }
}

/* ==========================================
   SEKTION 6: KONTAKT & BOKNING (BOMBSÄKER MOBILANPASSNING)
   ========================================== */
.section-contact {
  background-color: #ede7de;
  padding: 60px 16px;
  position: relative;
  z-index: 10;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* 1. SOM STANDARD (MOBIL): ALLTID 1 KOLUMN UNDER VARANDRA */
.contact-grid {
  display: flex;
  flex-direction: column; /* Tvingar formuläret under texten */
  gap: 36px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-info-col,
.contact-form-col {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.contact-info-col h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #272421;
  line-height: 1.2;
  margin-bottom: 16px;
  word-break: break-word;
}

.contact-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #5c554e;
  margin-bottom: 30px;
}

/* Kort för direktbokning & formulär */
.direct-booking-box,
.form-card {
  background: #ffffff;
  padding: 24px 18px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(43, 38, 35, 0.05);
  border: 1px solid rgba(78, 91, 73, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.direct-booking-box {
  margin-bottom: 30px;
}

.direct-booking-box h3,
.form-card h3 {
  font-size: 1.3rem;
  color: #272421;
  margin-bottom: 8px;
}

/* Formulärets inmatningsfält */
.minimal-form {
  width: 100%;
  box-sizing: border-box;
}

.form-group {
  margin-bottom: 18px;
  width: 100%;
  box-sizing: border-box;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #272421;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid rgba(78, 91, 73, 0.2);
  background-color: #fbfaf8;
  font-family: inherit;
  font-size: 16px !important; /* Förhindrar att iPhone fult auto-zoomar */
  color: #272421;
}

.form-gdpr {
  font-size: 0.82rem;
  color: #71695f;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Knappar på mobil */
.submit-btn,
.direct-booking-box .apple-btn {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  display: block;
  text-align: center;
  padding: 15px 20px;
}

/* Kontaktuppgifter textbrytning */
.detail-item p,
.detail-item a {
  word-break: break-word;
  overflow-wrap: anywhere;
}


/* ==========================================
   2. ENDAST PÅ DATOR (ÖVER 900PX): DÅ BLIR DET 2 KOLUMNER
   ========================================== */
@media (min-width: 901px) {
  .section-contact {
    padding: 140px 24px 110px 24px;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
  }
  
  .form-card {
    padding: 44px;
  }

  .direct-booking-box .apple-btn {
    width: auto !important;
    display: inline-block;
  }
}

/* ==========================================
   APPLE MOBILMENY & HAMBURGARE
   ========================================== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}




.hamburger-btn {
  display: none; /* Dold på dator */
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 1002;
}

.hamburger-btn .bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #272421;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-cta {
  display: none;
}

/* --- MOBILLÄGE (UNDER 768PX) --- */
@media (max-width: 768px) {
  .hamburger-btn {
    display: flex; /* Visas på mobil */
  }

  .desktop-btn {
    display: none; /* Döljs i topplisten så det inte blir trångt */
  }

  /* Mobilgardinen (Frostat sandglas) */
  .nav-container {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 64px);
    background: rgba(246, 243, 238, 0.97);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 24px 50px 24px;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  /* När menyn är öppen */
  .site-header.menu-open .nav-container {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Länkarna i mobilmenyn */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(78, 91, 73, 0.12);
  }

  .nav-links a {
    display: block;
    padding: 20px 0;
    font-size: 1.35rem;
    font-weight: 500;
    color: #272421;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .nav-links a:active {
    color: #4e5b49;
  }

  /* Knapp i botten av mobilmenyn */
  .mobile-nav-cta {
    display: block;
    margin-top: 20px;
  }

  .mobile-nav-cta .apple-btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* Animera hamburgaren till ett kryss (X) */
  .site-header.menu-open .top-bar {
    transform: translateY(4px) rotate(45deg);
    background-color: #4e5b49;
  }

  .site-header.menu-open .bottom-bar {
    transform: translateY(-4px) rotate(-45deg);
    background-color: #4e5b49;
  }
}