:root {
  --accent: #8d6b3b;
  --accent-soft: #ebe3d4;
  --text: #111111;
  --text-soft: #3e3e3e;
  --surface: #ffffff;
  --line: rgba(17, 17, 17, 0.12);
  --hero-overlay: rgba(15, 10, 4, 0.18);
  --container: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
}

body.menu-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

.container {
  width: min(calc(100% - 6rem), var(--container));
  margin: 0 auto;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(244, 223, 170, 0.22), transparent 32rem),
    #ffffff;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 650ms ease,
    visibility 650ms ease;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-mark {
  position: relative;
  display: grid;
  width: 152px;
  height: 152px;
  place-items: center;
}

.preloader-mark::before,
.preloader-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.preloader-mark::before {
  border: 2px solid rgba(141, 107, 59, 0.18);
}

.preloader-mark::after {
  border: 3px solid transparent;
  border-top-color: #8d6b3b;
  border-right-color: #b38845;
  animation: preloader-spin 1100ms linear infinite;
  box-shadow: 0 0 28px rgba(179, 136, 69, 0.18);
}

.preloader-mark img {
  position: relative;
  z-index: 1;
  width: 92px;
  filter: drop-shadow(0 10px 22px rgba(141, 107, 59, 0.22));
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.header-inner {
  min-height: 126px;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 1.35rem 0 1rem;
}

.header-inner-light {
  min-height: 114px;
}

.header-inner-horizontal {
  grid-template-columns: auto 1fr;
  justify-items: start;
  column-gap: 4rem;
}

.brand img {
  width: 128px;
  max-width: 32vw;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.4rem;
  margin-top: 0;
  width: 100%;
}

.site-nav a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid transparent;
}

.header-inner-light .site-nav a {
  color: var(--text);
}

.site-nav a.active {
  color: var(--text);
  border-bottom-color: var(--text);
}

.nav-social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #8d6b3b;
  font-weight: 700;
}

.site-nav .social-link {
  font-size: 0.92rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.site-nav .social-link span:not(.social-icon) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.social-icon {
  display: inline-block;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #f4dfaa, #b8873f 54%, #76562a);
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  padding: 0.43rem;
  box-shadow: 0 8px 18px rgba(142, 104, 49, 0.22);
}

.social-icon path {
  fill: #ffffff;
  stroke: none;
}

.social-icon rect,
.social-icon circle {
  fill: none;
  stroke: #ffffff;
}

.social-link:hover {
  color: #b38845;
}

[data-aos] {
  opacity: 0;
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-aos="text-left"] {
  transform: translate3d(-56px, 0, 0);
}

[data-aos="image-right"] {
  transform: translate3d(56px, 0, 0);
}

[data-aos].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.menu-toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 2rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.26rem auto;
  background: currentColor;
}

.header-inner-light .menu-toggle {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
}

.hero-home {
  min-height: 82vh;
  overflow: hidden;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
}

.hero-slide {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: translate3d(5%, 0, 0) scale(1.03);
  transition:
    opacity 900ms ease,
    transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(82vh - 114px);
  display: grid;
  align-content: space-between;
  justify-items: center;
  text-align: center;
  padding: 3rem 0 2.2rem;
}

.hero-content h1,
.page-banner-inner h1,
.section-heading h2,
.about-copy h2,
.contact-grid h2,
.service-row-copy h2,
.footer-brand h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-content h1 {
  color: #ffffff;
  font-size: clamp(1.25rem, 2.45vw, 2.6rem);
  line-height: 1.08;
  max-width: 100%;
  white-space: nowrap;
  text-transform: uppercase;
  align-self: start;
  margin-top: 0.25rem;
}

.hero-content p,
.page-banner-inner p {
  margin: 1.3rem 0 0;
  color: #ffffff;
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  font-weight: 700;
  justify-content: center;
}

.hero-content p {
  align-self: end;
  margin: 0;
  padding-bottom: 0.35rem;
  max-width: 100%;
  white-space: nowrap;
}

.page-banner {
  padding: 2.3rem 0 1.5rem;
}

.page-banner-inner {
  text-align: center;
}

.page-banner-inner h1 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  color: var(--text);
}

.page-banner-inner p {
  color: var(--text-soft);
  margin-top: 0.85rem;
}

.section {
  padding: 3.5rem 0;
}

.section-tight {
  padding-top: 3.8rem;
}

.section-heading,
.narrow-copy {
  width: min(100%, 960px);
}

.left-heading {
  margin-bottom: 2rem;
}

.section-heading h2,
.about-copy h2,
.narrow-copy h2,
.service-row-copy h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  color: var(--text);
}


.services-intro {
  width: 100%;
  margin-bottom: 3rem;
}

.services-intro p {
  width: 100%;
  max-width: 100%;

  font-size: 1.15rem;
  font-weight: 400; /* remove bold */

  line-height: 1.9;
  color: #3e3e3e;

  text-align: justify;
}

.services-home-heading h2 {
  color: var(--accent);
  font-size: clamp(2.8rem, 4.6vw, 4rem);
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.services-grid-home {
  gap: 1rem;
  align-items: start;
}

.service-item img,
.service-row-image img,
.about-image img,
.about-page-image img {
  width: 100%;
  height: auto;
}

.division-image {
  position: relative;
  overflow: hidden;
}

.division-image::before,
.division-image::after {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition:
    opacity 360ms ease,
    transform 360ms ease;
  pointer-events: none;
}

.division-image::before {
  content: "";
  inset: 0;
  background: rgba(141, 107, 59, 0.72);
}

.division-image::after {
  content: attr(data-title);
  top: 50%;
  padding: 0 1.4rem;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transform: translateY(-42%);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
}

.division-image img {
  transition: transform 420ms ease;
}

.service-item:hover .division-image::before,
.service-item:hover .division-image::after,
.service-row:hover .division-image::before,
.service-row:hover .division-image::after,
.about-image:hover::before,
.about-image:hover::after {
  opacity: 1;
}

.service-item:hover .division-image::after,
.service-row:hover .division-image::after,
.about-image:hover::after {
  transform: translateY(-50%);
}

.service-item:hover .division-image img,
.service-row:hover .division-image img,
.about-image:hover img {
  transform: scale(1.035);
}

.services-grid-home .service-item img {
  aspect-ratio: 1 / 0.96;
  object-fit: cover;
}

.service-item h3,
.footer-column h4,
.contact-details h4 {
  margin: 1.4rem 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 500;
}


.contact-details h3 {
  margin: 1.4rem 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 500;
}
.services-grid-home .service-item h4 {
  color: #8d6b3b; /* change this color */ /* color of 3 title of services */
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1.35rem;
}

.services-grid-home .service-item p {
  color: #000000;
  font-size: 0.97rem;
  line-height: 1.8;
  max-width: 49ch;
  text-align: justify;
}

.service-item p,
.about-copy p,
.narrow-copy p,
.footer-column p,
.footer-brand p,
.contact-copy p,
.contact-form label,
.service-row-copy p,
.about-page-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.about-band,
.about-page-grid,
.contact-grid,
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}





/* ABOUT US SECTION - SAME STYLE AS OUR SERVICES */

.about-page-copy h1 {
  color: var(--accent);
  font-size: clamp(2.8rem, 4.6vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 2rem;
}

.about-page-copy h2 {
  color: var(--accent);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 2rem;
}

.about-page-copy p {
  width: 100%;
  max-width: 100%;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.9;
  color: #000000;
  text-align: justify;
  margin-bottom: 1.5rem;
}

.about-page-grid {
  align-items: center;
  gap: 3rem;
}

.about-page-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center;
}

/* Remove old underline effect */
.about-page-copy h2::after,
.themed-page .about-page-copy h2::after {
  display: none !important;
  content: none !important;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .about-page-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-page-image img {
    height: auto;
  }

  .about-page-copy h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .about-page-copy h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .about-page-copy p {
    font-size: 1rem;
    line-height: 1.8;
  }
}





/* Contact form typed text color */

.home-contact-form input,
.home-contact-form textarea {
    color: #ffffff;
}

/* Placeholder text color */
.home-contact-form input::placeholder,
.home-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Keep text white when typing and focused */
.home-contact-form input:focus,
.home-contact-form textarea:focus {
    color: #ffffff;
    outline: none;
}



/**effecttt */



/*-----------------------------------------*/
/* ============================= */
/* LUXURY BACKGROUND DIVIDER EFFECT */
/* ============================= */

.section-about-services-divider {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f9f6f1 45%,
      #ffffff 100%
    );
}

/* Soft gold glow */
.section-about-services-divider::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(141, 107, 59, 0.12) 0%,
    rgba(141, 107, 59, 0.04) 40%,
    transparent 75%
  );

  filter: blur(20px);
  animation: floatingGlow 10s ease-in-out infinite alternate;
}

/* Second floating blur */
.section-about-services-divider::after {
  content: "";
  position: absolute;
  bottom: -180px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(179, 136, 69, 0.10) 0%,
    rgba(179, 136, 69, 0.03) 45%,
    transparent 80%
  );

  filter: blur(30px);
  animation: floatingGlowReverse 12s ease-in-out infinite alternate;
}

/* Luxury thin lines */
.section-about-services-divider .luxury-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-about-services-divider .luxury-lines::before,
.section-about-services-divider .luxury-lines::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(141, 107, 59, 0.18),
    transparent
  );
}

.section-about-services-divider .luxury-lines::before {
  left: 20%;
}

.section-about-services-divider .luxury-lines::after {
  right: 18%;
}

/* Floating animation */
@keyframes floatingGlow {
  from {
    transform: translateY(0px) translateX(0px);
  }

  to {
    transform: translateY(40px) translateX(30px);
  }
}

@keyframes floatingGlowReverse {
  from {
    transform: translateY(0px) translateX(0px);
  }

  to {
    transform: translateY(-40px) translateX(-25px);
  }
}




/*-------------------------------------------*/



/* ABOUT SECTION SCROLL EFFECTS */

.about-band {
  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-band.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Text animation */
.about-band .about-copy {
  opacity: 0;
  transform: translateX(-70px);
  transition:
    opacity 1.1s ease,
    transform 1.1s ease;
  transition-delay: 0.2s;
}
.about-band .about-copy h2 {
  color: #8d6b3b;      /* same color as Consultation */
  font-size: 1.3rem;   /* same size as Consultation */
  font-weight: 700;    /* same weight as Consultation */
  line-height: 1.4;
  margin-bottom: 1.35rem;
}

.about-band.is-visible .about-copy {
  opacity: 1;
  transform: translateX(0);
}

/* Image animation */
.about-band .about-image {
  opacity: 0;
  transform: translateX(70px) scale(0.96);
  transition:
    opacity 1.3s ease,
    transform 1.3s ease;
  transition-delay: 0.35s;
}

.about-band.is-visible .about-image {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Luxury image hover effect */
.about-band .about-image img {
  transition:
    transform 700ms ease,
    box-shadow 700ms ease,
    filter 700ms ease;
}

.about-band .about-image:hover img {
  transform: scale(1.03);
  filter: brightness(1.04);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

/* Title reveal effect */
.about-band .about-copy h2 {
  position: relative;
  overflow: hidden;
}

.about-band .about-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 1.2s ease;
}

.about-band.is-visible .about-copy h2::after {
  width: 140px;
}

/*finn effect  ------------*/




.about-band {
  grid-template-columns: minmax(380px, 0.88fr) minmax(360px, 0.82fr);
  gap: 3rem;
  align-items: center;
}

.about-copy {
  max-width: 80rem;
  justify-self: start;
}



.about-band .about-copy p {
  margin-top: 2rem;
  color: #000000;
  font-size: 1rem;
  line-height: 2;
  max-width: 150ch;

  text-align: justify;
  text-justify: inter-word;

  letter-spacing: 0.01em;
}

.about-band .about-image {
  justify-self: center;
  width: min(100%, 560px);
}

.about-band .about-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center;
}

.section-contact-intro {
  padding-top: 1.2rem;
}

.service-stack {
  display: grid;
  gap: 3rem;
}

.service-row.reverse .service-row-image {
  order: 2;
}

.service-row.reverse .service-row-copy {
  order: 1;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.9rem 0.95rem;
  font: inherit;
  color: var(--text);
  background: #ffffff;
}

.contact-form button {
  width: fit-content;
  min-width: 110px;
  border: 0;
  padding: 0.9rem 1.3rem;
  background: var(--accent);
  color: #ffffff;
  font: inherit;
  cursor: pointer;
}

.home-contact-grid {
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1fr);
  gap: 4.5rem;
  align-items: start;
}

.home-contact-copy {
  padding-top: 0.35rem;
}

.home-contact-copy h2 {
  margin: 0 0 2rem;
  color: var(--accent);
  font-size: clamp(2.2rem, 3.2vw, 3.1rem);
  font-weight: 400;
}

.home-contact-copy p {
  max-width: 34ch;
  color: #000000;
  font-size: 1rem;
  line-height: 1.95;
}

.home-contact-form {
  gap: 1.5rem;
}

.home-contact-form .form-group {
  display: grid;
  gap: 0.8rem;
}

.form-group-title {
  font-size: 0.95rem;
  color: #000000;
}

.contact-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.home-contact-form label {
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #ffffff;
}

.home-contact-form label span {
  display: inline-block;
}

.home-contact-form em {
  font-style: normal;
  color: #5b5b5b;
}

.home-contact-form input,
.home-contact-form textarea {
  border: 1px solid rgb(255, 255, 255); /*bordure -texte of contact-name*/
  border-radius: 999px;
  padding: 0.95rem 1.3rem;
  background: #a3a3a356; /*square of writing transparenth and color */
}

.home-contact-form textarea {
  min-height: 100px;
  border-radius: 1.9rem;
  resize: vertical;
}

.home-contact-form button {
  min-width: 104px;
  padding: 1rem 1.55rem;
  border-radius: 999px;
  background: #8d6b3b; /* color of button send */
  font-size: 1rem;
}

.contact-details {
  margin-top: 2rem;
}


.section-contact-intro {
  position: relative;
  padding-top: 1.2rem;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.65), /*effect shadow layer BG*/
      rgba(0, 0, 0, 0.65)
    ),
    url('./image/arsilya1.png');

.home-contact-copy h2,
.home-contact-copy p,
.home-contact-form label,
.form-group-title,
.home-contact-form em {
  color: #ffffffa2;
}


  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0;
}

.site-footer {
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.footer-brand h2 {
  font-size: 2rem;
  margin-bottom: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #b38845;
  text-shadow: 0 1px 0 rgba(255, 244, 214, 0.7), 0 8px 18px rgba(179, 136, 69, 0.18);
}

.footer-column h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.footer-social {
  display: grid;
  gap: 0.75rem;
}

.footer-social h4 {
  margin-bottom: 0.2rem;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 0.25rem);
    left: 4vw;
    right: 4vw;
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 17, 17, 0.08);
  }

  .nav-social-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
    margin-left: 0;
    padding-top: 0.5rem;
  }

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

  .site-nav a {
    color: var(--text);
  }

  .services-grid,
  .about-band,
  .about-page-grid,
  .contact-grid,
  .service-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-band {
    gap: 2.5rem;
  }

  .about-band .about-image {
    width: 100%;
  }

  .about-band .about-image img {
    height: auto;
  }

  .about-band .about-copy,
  .about-band .about-copy p,
  .about-band .about-copy h2 {
    max-width: none;
  }

  .home-contact-grid,
  .contact-name-row {
    grid-template-columns: 1fr;
  }

  .home-contact-grid {
    gap: 2.2rem;
  }

  .home-contact-copy p {
    max-width: none;
  }

  .service-row.reverse .service-row-image,
  .service-row.reverse .service-row-copy {
    order: initial;
  }

  .header-inner {
    justify-items: start;
    position: relative;
  }

  .header-inner-horizontal {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .hero-content {
    padding-top: 3rem;
    padding-bottom: 2.2rem;
  }

  .hero-content h1 {
    max-width: 11ch;
    white-space: normal;
  }

  .hero-content p {
    max-width: 24ch;
    white-space: normal;
  }

  [data-aos="text-left"] {
    transform: translate3d(-28px, 0, 0);
  }

  [data-aos="image-right"] {
    transform: translate3d(28px, 0, 0);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 2.5rem), var(--container));
  }

  .brand img {
    width: 104px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-content h1 {
    max-width: 50ch;
    white-space: normal;
  }

  .hero-content {
    min-height: min(78vw, 560px);
    padding-top: 2.2rem;
    padding-bottom: 1.5rem;
  }

  .hero-content p {
    font-size: 0.88rem;
    max-width: 22ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Hero text one-line center adjustment */
.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(82vh - 114px);

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

  text-align: center;
  padding: 1rem 0;
  gap: 0.05rem;
  transform: translateY(+220px); /* distnace i space of hero */


} 

.hero-home {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.65)
    );
}



.hero-content h1 {
  color: #ffffff; /* color of empowering business*/ 
  font-size: clamp(4rem, 2.6vw, 2.8rem);  /*dimesnion size font 4 rem*/ 
  line-height: 1.1;
  max-width: 100%;
  width: 100%;
  white-space: nowrap;
  text-transform: uppercase;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
}

.hero-content p {
  color: #ffffff; /* driving growth trough*/ 
  font-size: clamp(1.8rem, 1.2vw, 1.15rem);  /*dimesnion size font 1.8 rem*/ 
  font-weight: 700;
  line-height: 2.8;
  max-width: 100%;
  width: 100%;
  white-space: nowrap;
  margin: 0 auto;
  padding-bottom: 0;
  text-align: center;  
   transform: translateY(+30px); /*distance betwen p adn h1 */ 

}



/* Tablet hero text one-line adjustment */
@media (max-width: 900px) {
  .hero-content {
    justify-content: center;
    padding: 2.5rem 0;
    gap: 0.65rem;
    transform: translateY(-20px);
  }

  .hero-content h1 {
    max-width: 100%;
    width: 100%;
    white-space: nowrap;
    font-size: clamp(1rem, 4.2vw, 2rem);
  }

  .hero-content p {
    max-width: 100%;
    width: 100%;
    white-space: nowrap;
    font-size: clamp(0.72rem, 2.6vw, 0.95rem);
  }
}

/* Mobile hero text one-line adjustment */
@media (max-width: 640px) {
  .hero-content {
    min-height: min(78vw, 560px);
    justify-content: center;
    padding: 2rem 0;
    gap: 0.55rem;
    transform: translateY(-10px);
  }

  .hero-content h1 {
    max-width: 100%;
    width: 100%;
    white-space: nowrap;
    font-size: clamp(0.78rem, 4.5vw, 1.35rem);
  }

  .hero-content p {
    max-width: 100%;
    width: 100%;
    white-space: nowrap;
    font-size: clamp(0.58rem, 2.6vw, 0.78rem);
  }
}

/* ===============================
   AR / EN FLOATING LANGUAGE SWITCHER
================================ */
.language-switcher {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9998;
  display: grid;
  width: 52px;
  overflow: hidden;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(141, 107, 59, 0.35);
  box-shadow: 0 14px 32px rgba(141, 107, 59, 0.28);
}

.language-switcher button {
  min-height: 44px;
  border: 0;
  background: #ffffff;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.language-switcher button + button {
  border-top: 1px solid rgba(141, 107, 59, 0.18);
}

.language-switcher button:hover {
  background: var(--accent-soft);
  color: #76562a;
}

.language-switcher button.is-active {
  background: linear-gradient(145deg, #f4dfaa, #b8873f 54%, #76562a);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.language-switcher button:focus-visible {
  outline: 3px solid rgba(141, 107, 59, 0.45);
  outline-offset: -3px;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .site-nav {
  direction: rtl;
}

html[dir="rtl"] .nav-social-links {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .page-banner-inner {
  text-align: center;
}

html[dir="rtl"] .services-intro p,
html[dir="rtl"] .service-item p,
html[dir="rtl"] .about-copy p,
html[dir="rtl"] .about-page-copy p,
html[dir="rtl"] .contact-copy p,
html[dir="rtl"] .service-row-copy p,
html[dir="rtl"] .footer-column,
html[dir="rtl"] .footer-brand {
  text-align: right;
}

html[dir="rtl"] .contact-form input,
html[dir="rtl"] .contact-form textarea {
  direction: rtl;
  text-align: right;
}

@media (max-width: 640px) {
  .language-switcher {
    right: 10px;
    width: 46px;
  }

  .language-switcher button {
    min-height: 40px;
    font-size: 0.72rem;
  }
}



/* Hide anti-spam field used by contact forms */
.form-honey {
  display: none !important;
}




/* About + Contact theme heading and scroll animation */
.themed-page .page-banner-inner h1 {
  color: var(--accent);
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.themed-page .page-banner-inner h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width 1.1s ease;
}

.themed-page .page-banner-inner.is-visible h1::after,
.themed-page .page-banner-inner:not([data-aos]) h1::after {
  width: 120px;
}

.themed-page .page-banner-inner p {
  color: #000000;
}

.themed-page .about-page-copy h2,
.themed-page .contact-copy h2,
.themed-page .contact-details h4 {
  color: var(--accent);
  font-weight: 500;
}
/*    -----*/ 
.themed-page .contact-copy h3 {
  color: var(--accent);
  font-weight: 500;
}

.themed-scroll-section {
  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.themed-scroll-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.themed-scroll-section .themed-scroll-copy,
.themed-contact-grid .contact-copy {
  opacity: 0;
  transform: translateX(-70px);
  transition:
    opacity 1.1s ease,
    transform 1.1s ease;
  transition-delay: 0.2s;
}

.themed-scroll-section .themed-scroll-image,
.themed-contact-grid .contact-form {
  opacity: 0;
  transform: translateX(70px) scale(0.96);
  transition:
    opacity 1.3s ease,
    transform 1.3s ease;
  transition-delay: 0.35s;
}

.themed-scroll-section.is-visible .themed-scroll-copy,
.themed-scroll-section.is-visible .themed-scroll-image,
.themed-contact-grid.is-visible .contact-copy,
.themed-contact-grid.is-visible .contact-form {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.themed-page .about-page-copy h2 {
  position: relative;
  overflow: hidden;
}

.themed-page .about-page-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 1.2s ease;
}

.themed-scroll-section.is-visible .about-page-copy h2::after {
  width: 140px;
}

body.rtl .themed-page .about-page-copy h2::after {
  left: auto;
  right: 0;
}

@media (prefers-reduced-motion: reduce) {
  .themed-scroll-section,
  .themed-scroll-section .themed-scroll-copy,
  .themed-scroll-section .themed-scroll-image,
  .themed-contact-grid .contact-copy,
  .themed-contact-grid .contact-form {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.about-page .page-banner-inner h1 {
  font-weight: 800 !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

.about-page .page-banner-inner h1::before,
.about-page .page-banner-inner h1::after {
  display: none !important;
  content: none !important;
}

.contact-page .page-banner-inner h1 {
  font-weight: 400 !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

.contact-page .page-banner-inner h1::before,
.contact-page .page-banner-inner h1::after {
  display: none !important;
  content: none !important;
}

/* ===============================
   SERVICES PAGE - TWO DETAIL BLOCKS
================================ */
.section-services-detail {
  padding-top: 2.2rem;
}

.services-detail-stack {
  display: grid;
  gap: 5rem;
}

.about-band-reverse .about-image {
  order: 2;
}

.about-band-reverse .about-copy {
  order: 1;
}

.section-services-detail .about-band {
  width: 100%;
}

.section-services-detail .about-image img {
  height: 680px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .services-detail-stack {
    gap: 4rem;
  }

  .about-band-reverse .about-image,
  .about-band-reverse .about-copy {
    order: initial;
  }

  .section-services-detail .about-image img {
    height: auto;
  }
}

.section-services-detail {
  padding-top: 2.2rem;
}

.services-grid-detail {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: start;

  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity 1.15s ease,
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-grid-detail.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid-detail .service-item {
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-grid-detail.is-visible .service-item {
  opacity: 1;
  transform: translateY(0);
}

.services-grid-detail.is-visible .service-item:nth-child(2) {
  transition-delay: 0.18s;
}

.services-grid-detail .service-item img {
  aspect-ratio: 1 / 0.96;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.services-grid-detail .service-item p {
  max-width: none;
}

@media (max-width: 900px) {
  .services-grid-detail {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-grid-detail,
  .services-grid-detail .service-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Fix mobile logo/menu */
@media (max-width: 900px) {
  html[dir="rtl"] .header-inner {
    direction: ltr;
  }

  html[dir="rtl"] .header-inner-horizontal {
    grid-template-columns: 1fr;
  }

  html[dir="rtl"] .brand {
    justify-self: start;
  }

  html[dir="rtl"] .menu-toggle {
    left: auto;
    right: 0;
  }

  html[dir="rtl"] .site-nav {
    direction: rtl;
    text-align: right;
  }
}