:root {
  --green-950: #0b2f25;
  --green-900: #123f31;
  --green-800: #1b503e;
  --sage: #8c975d;
  --gold: #cda363;
  --gold-light: #e4c487;
  --beige: #e9dcd1;
  --cream: #f8f5ef;
  --white: #fffdf9;
  --ink: #17352b;
  --muted: #5f6f68;
  --line: rgba(18, 63, 49, 0.14);
  --shadow: 0 24px 70px rgba(20, 55, 44, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(205, 163, 99, 0.09), transparent 23rem),
    var(--cream);
  font-family: "Graphik Arabic", Tahoma, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-950);
  border-radius: 12px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 108px;
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(18, 63, 49, 0.08);
  background: rgba(248, 245, 239, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 55px;
  height: 55px;
  flex: 0 0 55px;
  overflow: hidden;
  border-radius: 50%;
}

.brand-mark img {
  position: absolute;
  inset-block-start: -1px;
  inset-inline-start: 50%;
  width: 99px;
  max-width: none;
  transform: translateX(50%);
}

.brand-name {
  display: grid;
  gap: 1px;
  line-height: 1.2;
  color: #83672f;
}

.brand-name strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.brand-name small {
  font-size: 10px;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--green-900);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: -7px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 4px;
  background: var(--green-900);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  color: var(--white);
  background: var(--green-900);
  border: 1px solid var(--green-900);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(18, 63, 49, 0.16);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--green-800);
  box-shadow: 0 16px 34px rgba(18, 63, 49, 0.2);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 14px;
}

.button-gold {
  color: var(--green-950);
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.button-gold:hover {
  background: #efd397;
}

.eyebrow {
  margin: 0 0 12px;
  color: #8b6a2c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--gold-light);
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

h1,
h2,
h3 {
  color: var(--green-950);
  line-height: 1.35;
  text-wrap: balance;
}

h1 {
  margin-block-end: 24px;
  font-size: clamp(44px, 7vw, 82px);
  letter-spacing: -0.04em;
}

h2 {
  margin-block-end: 20px;
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -0.025em;
}

h3 {
  margin-block-end: 16px;
  font-size: clamp(27px, 3vw, 36px);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  inset-block-start: 48%;
  inset-inline-start: -360px;
  border: 1px solid rgba(140, 151, 93, 0.25);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(40px, 7vw, 94px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 650px;
  margin-block-end: 30px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.text-link {
  color: var(--green-900);
  font-weight: 800;
  text-underline-offset: 6px;
  text-decoration-color: var(--gold);
}

.scope-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.logo-card {
  position: relative;
  z-index: 2;
  width: min(100%, 455px);
  padding: 48px 40px;
  background: rgba(255, 253, 249, 0.83);
  border: 1px solid rgba(205, 163, 99, 0.26);
  border-radius: 46% 46% 32px 32px;
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.logo-card img {
  width: 100%;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
}

.orbit-one {
  width: 480px;
  height: 480px;
  background: rgba(140, 151, 93, 0.16);
}

.orbit-two {
  width: 590px;
  height: 590px;
  border: 1px solid rgba(205, 163, 99, 0.33);
}

.credibility {
  color: var(--white);
  background: var(--green-900);
  border-block: 1px solid rgba(228, 196, 135, 0.25);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.credibility-grid > div {
  min-height: 142px;
  display: grid;
  place-content: center;
  gap: 3px;
  padding: 24px;
  text-align: center;
}

.credibility-grid > div + div {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.14);
}

.credibility strong {
  color: var(--gold-light);
  font-size: 31px;
  line-height: 1.2;
}

.credibility span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(42px, 8vw, 110px);
}

.section-heading {
  align-self: start;
}

.founder-line {
  margin: -6px 0 0;
  color: #8b6a2c;
  font-weight: 700;
}

.about-content {
  padding-block-start: 8px;
}

.intro-copy {
  margin-block-end: 34px;
  color: var(--green-900);
  font-size: clamp(20px, 2.5vw, 27px);
  font-weight: 600;
  line-height: 1.9;
}

.feature-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 18px 56px 18px 20px;
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  inset-block-start: 24px;
  inset-inline-start: 22px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50% 50% 50% 12%;
  transform: rotate(45deg);
}

.approach {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 85% 12%, rgba(205, 163, 99, 0.16), transparent 26rem),
    var(--green-950);
  overflow: hidden;
}

.approach::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  inset-block-end: -290px;
  inset-inline-end: -90px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(46px, 8vw, 110px);
}

.approach h2 {
  color: var(--white);
}

.approach-copy p:last-child {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
}

.approach-kicker {
  display: grid;
  gap: 14px;
}

.approach-kicker span {
  padding: 19px 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  text-align: center;
}

.approach-kicker span:nth-child(2) {
  margin-inline: 34px -34px;
  border-color: rgba(205, 163, 99, 0.48);
}

.section-heading-centered {
  max-width: 720px;
  margin-inline: auto;
  margin-block-end: 52px;
  text-align: center;
}

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

.service-card {
  position: relative;
  padding: clamp(30px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 55px rgba(18, 63, 49, 0.08);
  overflow: hidden;
}

.service-card-accent {
  background: linear-gradient(155deg, #f1eadf, var(--white));
  border-color: rgba(205, 163, 99, 0.36);
}

.service-number {
  position: absolute;
  inset-block-start: 21px;
  inset-inline-end: 28px;
  color: rgba(18, 63, 49, 0.08);
  font-family: Georgia, serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
}

.service-en {
  position: relative;
  z-index: 1;
  margin-block-end: 10px;
  color: #8b6a2c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card > p:not(.service-en) {
  min-height: 98px;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 10px;
  padding: 24px 0 0;
  margin: 26px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-inline-start: 28px;
}

.service-card li::before {
  content: "";
  position: absolute;
  inset-block-start: 12px;
  inset-inline-start: 3px;
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(140, 151, 93, 0.12);
}

.session-section {
  padding-block-start: 0;
}

.session-card {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 34px;
  padding: clamp(32px, 5vw, 58px);
  background: var(--beige);
  border: 1px solid rgba(205, 163, 99, 0.36);
  border-radius: var(--radius-lg);
}

.session-card h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
}

.session-card p {
  margin: 0;
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 8vw, 100px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 0 23px 48px;
  color: var(--green-900);
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: 10px;
  color: #8b6a2c;
  font-size: 28px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  padding: 0 0 23px;
  margin: 0;
  color: var(--muted);
}

.contact {
  background: linear-gradient(to bottom, var(--white) 50%, var(--cream) 50%);
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: clamp(36px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 12% 20%, rgba(205, 163, 99, 0.18), transparent 20rem),
    var(--green-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  color: var(--white);
}

.contact-card p:last-child {
  margin: 0;
}

.contact-actions {
  flex: 0 0 auto;
  display: grid;
  gap: 13px;
  text-align: center;
}

.phone-link {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  padding-block: 34px;
  background: var(--cream);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  inset-inline-end: 24px;
  inset-block-end: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(18, 63, 49, 0.3);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .site-header {
    background: rgba(248, 245, 239, 0.98);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset-block-start: calc(100% + 1px);
    inset-inline: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(18, 63, 49, 0.08);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav > a:not(.button) {
    padding-block: 12px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .button {
    margin-block-start: 14px;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-grid,
  .approach-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 500px;
  }

  .about-grid,
  .faq-grid {
    gap: 30px;
  }

  .approach-kicker {
    order: 2;
  }

  .approach-kicker span:nth-child(2) {
    margin-inline: 0;
  }

  .session-card {
    grid-template-columns: 1fr 1fr;
  }

  .session-card .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 76px;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-name strong {
    font-size: 16px;
  }

  .brand-name small {
    font-size: 9px;
  }

  .brand-mark {
    width: 49px;
    height: 49px;
    flex-basis: 49px;
  }

  .brand-mark img {
    width: 88px;
  }

  h1 {
    font-size: clamp(39px, 13vw, 58px);
  }

  .hero {
    padding-block-start: 72px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-visual {
    min-height: 390px;
  }

  .logo-card {
    width: min(94%, 360px);
    padding: 34px 28px;
  }

  .orbit-one {
    width: 330px;
    height: 330px;
  }

  .orbit-two {
    width: 390px;
    height: 390px;
  }

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

  .credibility-grid > div {
    min-height: 112px;
  }

  .credibility-grid > div + div {
    border-inline-start: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-grid,
  .session-card {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-radius: 24px;
  }

  .service-card > p:not(.service-en) {
    min-height: auto;
  }

  .session-card .button {
    grid-column: auto;
  }

  .contact-card,
  .footer-inner {
    flex-direction: column;
  }

  .contact-card {
    align-items: stretch;
    border-radius: 24px;
    text-align: center;
  }

  .whatsapp-float {
    inset-inline-end: 14px;
    inset-block-end: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
