/* =========================================================
   BASE
   ========================================================= */
html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  background: var(--color-cream);
  color: var(--color-text-on-cream);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

h1, h2, h3 {
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
}

h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-navy);
  outline-offset: 3px;
  border-radius: 4px;
}

.hero :focus-visible,
.cta :focus-visible {
  outline: 3px solid var(--color-cream);
  outline-offset: 3px;
}

/* =========================================================
   SKIP LINK (a11y)
   ========================================================= */
.skip-link {
  position: fixed;
  inset-inline-start: 12px;
  top: 12px;
  z-index: var(--z-skiplink);
  background: var(--color-navy);
  color: var(--color-cream);
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: var(--fw-medium);
  transform: translateY(-150%);
  transition: transform var(--duration-base) var(--ease-standard);
}

.skip-link:focus {
  transform: translateY(0);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  box-sizing: border-box;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: var(--fw-medium);
  font-size: var(--fs-body);
  white-space: nowrap;
  transition: transform var(--duration-fast) var(--ease-standard),
              box-shadow var(--duration-fast) var(--ease-standard),
              background-color var(--duration-fast) var(--ease-standard);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--glass {
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  box-shadow: var(--shadow-drop-btn), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border: 1px solid var(--glass-border-on-photo);
}

.btn--primary {
  background: rgba(var(--color-navy-rgb), 0.72);
  color: var(--color-cream);
}
.btn--primary:hover { background: rgba(var(--color-navy-rgb), 0.85); }

.btn--secondary {
  background: rgba(var(--color-brown-rgb), 0.62);
  color: var(--color-cream);
}
.btn--secondary:hover { background: rgba(var(--color-brown-rgb), 0.78); }

.btn--submit {
  width: 100%;
  background: var(--color-brown);
  color: var(--color-cream);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-drop-btn);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}
.btn--submit:hover { background: #857567; }
.btn--submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(237, 235, 232, 0.4);
  border-top-color: var(--color-cream);
  animation: spin 0.7s linear infinite;
}
.is-loading .btn-spinner { display: inline-block; }
.is-loading .btn-label { opacity: 0.85; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =========================================================
   HEADER
   בסיסי לכל הרוחבים: פינה מעוגלת גדולה יותר, אפקט זכוכית
   (שקיפות + blur) וצל עדין — זהה במובייל ובדסקטופ.
   ========================================================= */
.site-header {
  position: fixed;      /* היה: sticky */
  top: 0;
  left: 0;               /* חדש */
  right: 0;               /* חדש */
  z-index: var(--z-header);
  background: var(--color-navy);
  border-bottom-left-radius: 40px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.22),
    0 3px 8px rgba(0, 0, 0, 0.12);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
  /* ללא max-width של .container — כדי שבמסכים רחבים מאוד הלוגו
     והכפתור ימשיכו להתרווח יחסית לרוחב המסך ולא יישארו "תקועים"
     צמודים זה לזה במרכז. */
  max-width: none;
}

.site-header__logo-link {
  display: inline-flex;
  align-items: center;
}

.site-header__logo {
  height: 50px;
  width: auto;
}
.site-header__cta {
  height: 46px;
  box-sizing: border-box;
  padding-inline: 22px;
  font-size: var(--fs-small);
  background: transparent;
  color: var(--color-cream);
  border: 1.5px solid rgba(237, 235, 232, 0.55);
}
.site-header__cta:hover {
  background: rgba(237, 235, 232, 0.1);
  border-color: var(--color-cream);
}

/* =========================================================
   HERO — BASE (מובייל, ברירת מחדל)
   כותרת + טקסט במרכז למעלה, רווח, כפתורים למטה.
   התמונה משמשת כרקע מלא של הסקשן ותמיד נראית במלואה
   (object-fit: contain — לא נחתכת, לא נמתחת).
   גובה הסקשן נשלט במקום אחד: --hero-height-mobile.
   ========================================================= */
/* =========================================================
   HERO — EDITABLE VALUES
   כאן אפשר לשלוט בקלות על הטיפוגרפיה וגודל התמונה
   ========================================================= */

.hero {
  /* ---------- TYPOGRAPHY ---------- */

  /* רווח בין האותיות */
  --hero-letter-spacing-heading: 0px;
  --hero-letter-spacing-text: 0px;

  /* רווח בין השורות */
  --hero-line-height-heading: 1.15;
  --hero-line-height-text: 1.6;

  /* ---------- IMAGE SIZE ---------- */

  /* הגדלת התמונה במובייל */
  --hero-image-scale-mobile: 1.35;

  /* הגדלת התמונה בדסקטופ */
  --hero-image-scale-desktop: 1.50;
   }

/* =========================================================
   HERO — BASE / MOBILE
   ========================================================= */

.hero {
  position: relative;
  background: var(--color-cream);

  /*
   * גובה הסקשן במובייל
   */
  min-height: 760px;

  display: flex;
  align-items: stretch;
  overflow: hidden;

  /*
   * חשוב:
   * מונע מה-padding להגדיל את האלמנט מעבר לגובה שהוגדר.
   */
  box-sizing: border-box;
}

/* =========================================================
   HERO — IMAGE
   ========================================================= */

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;

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

  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center center;

  /*
   * הגדלת התמונה במובייל.
   * שנה את --hero-image-scale-mobile
   * כדי להגדיל / להקטין.
   */
  transform: scale(var(--hero-image-scale-mobile));
}

/* =========================================================
   HERO — CONTENT
   ========================================================= */

.hero__content {
  position: relative;
  z-index: 2;

  width: 100%;
  min-height: 0;

  /*
   * חשוב מאוד:
   * ה-content מקבל את גובה ה-hero עצמו.
   */
  height: 760px;

  display: flex;
  flex-direction: column;

  /*
   * כותרת למעלה,
   * כפתורים למטה.
   */
  justify-content: space-between;

  padding-block: 34px 3px;

  box-sizing: border-box;
}

.hero__text-col {
  width: 100%;
  text-align: center;
}

.hero__intro {
  display: flex;
  flex-direction: column;
}

.hero__heading {
  font-size: var(--fs-h1);
  color: var(--color-cream);   /* היה: var(--color-brown); */
  margin-block-end: 8px;
  letter-spacing: var(--hero-letter-spacing-heading);
  line-height: var(--hero-line-height-heading);
}

.hero__heading-desktop {
  display: none;
}

.hero__heading-mobile {
  display: block;
}

.hero__subheading {
  font-size: var(--fs-body-lg);
  color: var(--color-cream);   /* היה: var(--color-text-on-cream); */
  max-width: none;
  margin-inline: auto;
  letter-spacing: var(--hero-letter-spacing-text);
  line-height: var(--hero-line-height-text);
}
.desktop-break {
  display: none;
}

@media (min-width: 761px) {
  .desktop-break {
    display: inline;
  }
}

/* =========================================================
   HERO — BUTTONS
   ========================================================= */

.hero__actions {
  position: relative;
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: stretch;

  gap: 10px;

  width: 100%;
  max-width: 320px;

  margin-inline: auto;

  /*
   * הכפתורים יושבים בתחתית הסקשן
   * ונכנסים מעט לתוך התמונה.
   */
transform: translateY(0);}

.hero__actions .btn--primary {
  order: 1;
}

.hero__actions .btn--secondary {
  order: 2;
}
/* =========================================================
   HERO — DESKTOP
   ========================================================= */

@media (min-width: 1025px) {
  .hero {
    direction: ltr;
    height: 820px;
    min-height: 820px;
    max-height: 820px;
    display: flex;
    flex-direction: row;
    align-items: stretch;

    /* חדש — התמונה כרקע מלא של הסקשן */
    background-image: url('../assets/images/hero-desktop.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero__media {
    display: none; /* לא צריך יותר את עמודת התמונה הנפרדת */
  }

  .hero__content {
    order: 1;
    flex: 1 1 100%;      /* היה: flex: 0 0 65%; */
    max-width: 100%;      /* היה: max-width: 65%; */
    min-height: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline:
      clamp(28px, 4vw, 56px)
      clamp(20px, 2.5vw, 40px);
    padding-block: 0;
    box-sizing: border-box;
    direction: rtl;
    /* הוסר: transform: translateX(50px); — לא רלוונטי יותר כשהתוכן תופס רוחב מלא */
  }

  .hero__content .hero__heading-desktop {
    display: inline;
  }

  .hero__content .hero__heading-mobile {
    display: none;
  }
   
.hero__text-col {
  width: 100%;
  max-width: 620px;
  margin-inline-start: 0;      /* היה: auto */
  margin-inline-end: auto;     /* היה: 0 */
  text-align: right;
}

  .hero__intro {
    display: block;
  }

  /* חדש — צבע הטקסט הופך לקרם על גבי התמונה */
  .hero__heading {
    color: var(--color-cream);
  }

  .hero__subheading {
    color: var(--color-cream);
    margin-inline: 0;
    margin-block-end: 30px;
  }

.hero__actions {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: auto;
  max-width: none;
  margin-inline-start: 0;      /* היה: margin-inline: 0; */
  margin-inline-end: auto;     /* חדש */
  transform: none;
  direction: rtl;
}

  .hero__actions .btn--primary {
    order: 1;
  }

  .hero__actions .btn--secondary {
    order: 2;
  }
}

/* =========================================================
   HERO — TABLET / SMALL DESKTOP
   ========================================================= */

@media (min-width: 761px) and (max-width: 1024px) {

  .hero {
    direction: ltr;
    height: calc(100svh - 120px);
    min-height: 520px;
    max-height: none;

    display: flex;
    flex-direction: row;
    align-items: stretch;

    background-image: url('../assets/images/hero-tablet.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero__media {
    display: none;
  }

  .hero__content {
    order: 1;
    flex: 1 1 100%;
    max-width: 100%;
    min-height: 0;

    /* חשוב — לא 760px */
    height: auto;

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

    padding-inline: 28px;
    padding-block: 0;

    box-sizing: border-box;
    direction: rtl;
  }

  .hero__content .hero__heading-desktop {
    display: inline;
  }

  .hero__content .hero__heading-mobile {
    display: none;
  }

  .hero__text-col {
    width: 100%;
    max-width: 480px;

    margin-inline-start: 0;
    margin-inline-end: auto;

    text-align: right;
  }

  .hero__intro {
    display: block;
  }

  .hero__heading {
    color: var(--color-cream);
  }

  .hero__subheading {
    color: var(--color-cream);
    margin-inline: 0;
    margin-block-end: 30px;
  }

  .hero__actions {
    position: relative;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;

    gap: 14px;

    width: auto;
    max-width: none;

    margin-inline-start: 0;
    margin-inline-end: auto;

    transform: none;
    direction: rtl;
  }

  .hero__actions .btn--primary {
    order: 1;
  }

  .hero__actions .btn--secondary {
    order: 2;
  }
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services {
  background: var(--color-cream);
  padding-block: var(--section-padding-block);
}

.services__intro {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
  margin-block-end: 48px;
}

.services__break {
  display: none; /* בדסקטופ: שורה אחת */
}

.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-medium);
  color: var(--color-brown);
  margin-block-end: 10px;
  letter-spacing: 0.02em;
}

.services h2 {
  color: var(--color-brown);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(var(--color-brown-rgb), 0.16);
  border-radius: var(--radius-card);
  padding: 28px 30px;
  box-shadow:
    0 8px 24px rgba(var(--color-brown-rgb), 0.08);
}

.service-card h3 {
  color: var(--color-brown);
  margin-block-end: 10px;
}

.service-card p {
  color: #5A4C42;
  font-size: var(--fs-body);
}

.cta__text {
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
   padding-top: 28px;
  border-top: 1px solid rgba(var(--color-brown-rgb), 0.25);
}

.cta__text h2 {
  color: var(--color-brown);
  margin-block-end: 18px;
  text-align: center;
}
.cta__text p {
  color: var(--color-brown);
  font-size: var(--fs-body-lg);
  max-width: none;
  margin-inline: auto;
  text-align: center;
}


/* =========================================================
   CTA — TABLET + DESKTOP
   ========================================================= */

@media (min-width: 761px) {

  .cta__text h2 {
    white-space: nowrap;
  }

}


.contact-form {
  width: 100%;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: right;
  display: flex;
  flex-direction: column;
}

/* סדר בסיס (מובייל): שם, טלפון, מייל, הודעה, ואז הערת פרטיות/כפתור/סטטוס בסוף */
.form-field--name    { order: 1; }
.form-field--phone   { order: 2; }
.form-field--email   { order: 3; }
.form-field--message { order: 4; }
.contact-form .form-privacy-note { order: 10; }
.contact-form .btn--submit       { order: 11; }
.contact-form .form-status       { order: 12; }

.form-field {
  margin-block-end: 12px;
}

.form-field label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--color-brown);
  margin-block-end: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-field);
  border: 1px solid rgba(var(--color-brown-rgb), 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-brown);
  box-shadow: var(--shadow-inner-field);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(var(--color-brown-rgb), 0.55);
}

.form-field textarea {
  resize: vertical;
  min-height: 96px;
}

.form-field input:invalid[data-touched="true"],
.form-field textarea:invalid[data-touched="true"] {
  border-color: #E29578;
}

.form-error {
  display: block;
  min-height: 1.2em;
  font-size: var(--fs-small);
  color: #F1A98D;
  margin-block-start: 6px;
}

.required-marker {
  color: #F1A98D;
  margin-inline-start: 2px;
}

.form-privacy-note {
  font-size: var(--fs-small);
  color: var(--color-brown);
  background: rgba(255, 255, 255, 0.04);
  border-inline-start: 3px solid rgba(237, 235, 232, 0.4);
  padding: 12px 14px;
  border-radius: 8px;
  margin-block-end: 22px;
  line-height: 1.6;
}

.form-status {
  margin-block-start: 14px;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  min-height: 1.4em;
}

.form-status[data-state="success"] { color: #9FD8B6; }
.form-status[data-state="error"] { color: #F1A98D; }

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

.site-footer {
  background: var(--color-brown);
  padding-block: 48px 28px;
  color: var(--color-cream);
}

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

.site-footer__logo {
  height: 46px;
  width: auto;
   color: var(--color-cream);
}

.site-footer__contact a {
  color: var(--color-cream);
  font-size: var(--fs-small);
  transition: opacity var(--duration-fast);
}

.site-footer__contact a:hover {
  opacity: 0.7;
}

.site-footer__divider {
  border: none;
  border-top: 1px solid rgba(237, 235, 232, 0.25);
  margin-block: 28px;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer__legal-links {
  display: flex;
  gap: 20px;
  font-size: var(--fs-small);
}

.site-footer__legal-links a {
  color: var(--color-cream);
  transition: opacity var(--duration-fast);
}

.site-footer__legal-links a:hover,
.site-footer__legal-links a:focus-visible {
  opacity: 0.65;
  text-decoration: underline;
}

.site-footer__copyright {
  font-size: var(--fs-small);
  color: rgba(237, 235, 232, 0.85);
}

.site-footer__credit {
  font-size: var(--fs-small);
  color: rgba(237, 235, 232, 0.85);
  transition: opacity var(--duration-fast);
}

.site-footer__credit:hover,
.site-footer__credit:focus-visible {
  opacity: 0.65;
  text-decoration: underline;
}
/* =========================================================
   SOCIAL ICONS — exact spec supplied by client, מוקטן ב-2px
   ========================================================= */
.social-row{
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:center;
  gap:14px;
}
.social-btn{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:50%;
background: rgba(237,235,232,0.02);
border: 1px solid rgba(237,235,232,0.28);
  backdrop-filter:blur(4px) saturate(180%);
  -webkit-backdrop-filter:blur(4px) saturate(180%);
  box-shadow:
    0 3px 8px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.15);
  color: var(--color-cream);
  -webkit-tap-highlight-color:
    rgba(237,235,232,0.15);
  transition: transform var(--duration-fast) var(--ease-standard);
}
.social-btn:hover,
.social-btn:focus-visible{
  transform: translateY(-2px);
}
.social-btn svg{
  width:26px;
  height:26px;
  display:block;
  filter:drop-shadow(
    0 2px 4px rgba(0,0,0,0.25)
  );
}
@media (max-height:700px){
  .social-btn{
    width:36px;
    height:36px;
  }
  .social-btn svg{
    width:23px;
    height:23px;
  }
}

/* =========================================================
   LEGAL PAGES (accessibility statement / privacy policy)
   ========================================================= */
.legal-page {
  padding-block: 140px 96px;
}

.legal-page .container {
  max-width: 820px;
}

.legal-page h1 {
  font-size: var(--fs-h1);
  color: var(--color-brown);
  margin-block-end: 12px;
}

.legal-page__updated {
  font-size: var(--fs-small);
  color: rgba(var(--color-brown-rgb), 0.8);
  margin-block-end: 40px;
}

.legal-page section {
  margin-block-end: 36px;
}

.legal-page h2 {
  font-size: 1.35rem;
  color: var(--color-brown);
  margin-block-end: 12px;
}

.legal-page p,
.legal-page li {
  color: #4A4038;
  margin-block-end: 12px;
}

.legal-page ul {
  padding-inline-start: 1.4em;
  list-style: disc;
}

.legal-page .placeholder {
  display: inline-block;
  background: rgba(var(--color-brown-rgb), 0.12);
  border: 1px dashed rgba(var(--color-brown-rgb), 0.5);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.92em;
}

.legal-page__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-block-end: 32px;
  color: var(--color-brown);
  font-weight: var(--fw-medium);
}
.legal-page__back:hover { text-decoration: underline; }

/* =========================================================
   RESPONSIVE — MOBILE (≤760px)
   ========================================================= */
@media (max-width: 760px) {

  .site-header__inner {
    padding-block: 8px 16px;
  }

  .site-header__logo {
    height: 42px;
  }

  .site-header__cta {
    padding: 9px 16px;
    font-size: 0.8rem;
  }

  .services__intro {
    text-align: right;
    margin-inline: 0;
    max-width: none;
  }

  .services__break {
    display: block; /* במובייל: שבירת שורה אחרי הפסיק */
  }

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

  .cta__text p {
     color: var(--color-brown);
    margin-inline: auto;
  }

  .site-footer__logo {
    height: 38px; /* מובייל: 36px + 2px */
  }

  .site-footer__top {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__legal {
    flex-direction: column;
    text-align: center;
  }
  /* HERO — MOBILE ONLY */
  .hero {
    min-height: 790px;
     --hero-line-height-heading: 1.0;
  }

  .hero__content {
    height: 790px;
    padding-block: 88px 0;
    box-sizing: border-box;
  }
.hero__actions {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 320px;
    margin: 0;
  }

.hero__image {
  transform: scale(1.15) translateY(20px);
   }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE (≤390px)
   ========================================================= */
@media (max-width: 390px) {
  :root {
    --container-padding-inline: 16px;
  }

  .btn {
    padding: 13px 22px;
    font-size: 0.92rem;
  }

  .contact-form {
    padding: 22px;
  }

  /* HERO — מסכים קטנים מאוד */

  .hero {
    min-height: 700px;
  }

.hero__content {
    height: 700px;
    padding-block: 28px 0;
  }
}


/* =========================================================
   DESKTOP — CONTACT FORM
   ימין: שם מלא + מייל
   שמאל: טלפון + הודעה
   ========================================================= */

@media (min-width: 761px) {

  .contact-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    direction: rtl;
  }

  .contact-form .form-field {
    flex: 0 0 calc(50% - 5px);
    width: calc(50% - 5px);
    min-width: 0;
    margin-block-end: 0;
    direction: rtl;
  }

  /* -----------------------------------------
     שורה 1
     ימין = שם מלא
     שמאל = טלפון
     ----------------------------------------- */

  .form-field--name {
    order: 1;
  }

  .form-field--phone {
    order: 2;
  }

  /* -----------------------------------------
     שורה 2
     ימין = כתובת מייל
     שמאל = הודעה
     ----------------------------------------- */

  .form-field--email {
    order: 3;
  }

  .form-field--message {
    order: 4;
  }

  /* הודעה גבוהה יותר */
  .contact-form .form-field--message textarea {
    min-height: 150px;
  }

  /* -----------------------------------------
     פרטיות / סטטוס
     ----------------------------------------- */

  .contact-form .form-privacy-note,
  .contact-form .form-status {
    flex-basis: 100%;
  }

  /* -----------------------------------------
     כפתור שליחה
     מתחת לטופס, מיושר לשמאל
     ----------------------------------------- */

.contact-form .btn--submit {
    display: flex;
    flex: 0 0 auto;
    width: auto;
    padding-inline: 40px;
    padding-block: 10px;
    margin-inline-start: auto;
    margin-inline-end: 0;
  }
}

/* =========================================================
   PREVENT HORIZONTAL SCROLL
   ========================================================= */
html,
body {
  max-width: 100%;
}
