
:root {
  --charcoal: #1F1A17;
  --charcoal-deep: #120F0D;
  --ivory: #F4ECDD;
  --gold: #D7C2A3;
  --taupe: #8F8377;
  --sand: #CBB9A2;
  --line: rgba(215, 194, 163, 0.32);
  --muted-light: rgba(244, 236, 221, 0.68);
  --muted-dark: rgba(31, 26, 23, 0.68);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 5%, rgba(203,185,162,.055), transparent 34%),
    radial-gradient(circle at 90% 35%, rgba(215,194,163,.035), transparent 30%),
    var(--charcoal);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  z-index: -1;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.012) 3px 4px),
    repeating-linear-gradient(90deg, transparent 0 5px, rgba(255,255,255,.009) 5px 6px);
}
img { max-width: 100%; }
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }

/* Navigation */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 82px;
  border-bottom: 1px solid var(--line);
  background: rgba(18, 15, 13, .94);
  backdrop-filter: blur(14px);
}
.nav-inner {
  width: min(var(--max), calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 225px; height: auto; display: block; }
.nav-panel { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 10px 0;
  transition: color .25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.language-switch { display: flex; gap: 8px; }
.language-switch button,
.menu-toggle {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ivory);
  font: 600 11px var(--body);
  letter-spacing: .12em;
  cursor: pointer;
}
.language-switch button { min-width: 38px; height: 34px; }
.language-switch button:hover, .language-switch button.active {
  color: var(--charcoal);
  background: var(--gold);
  border-color: var(--gold);
}
.menu-toggle { display: none; width: 42px; height: 42px; position: relative; }
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background: var(--gold);
  transition: transform .25s ease, top .25s ease, opacity .25s ease;
}
.menu-toggle::before { top: 13px; }
.menu-toggle span { top: 20px; }
.menu-toggle::after { top: 27px; }
.menu-toggle.open::before { top: 20px; transform: rotate(45deg); }
.menu-toggle.open span { opacity: 0; }
.menu-toggle.open::after { top: 20px; transform: rotate(-45deg); }

/* Typography and common elements */
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.05; }
.eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-title { font-size: clamp(2.6rem, 5vw, 4.6rem); letter-spacing: -.02em; }
.lead { font-size: clamp(1rem, 1.4vw, 1.16rem); color: var(--muted-light); max-width: 720px; }
.gold-rule { width: 76px; height: 1px; background: var(--gold); margin: 28px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ivory);
  text-decoration: none;
  font: 700 11px var(--body);
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s ease;
  cursor: pointer;
}
.btn:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-2px); }
.btn-solid { background: var(--gold); color: var(--charcoal); }
.btn-solid:hover { background: var(--ivory); border-color: var(--ivory); }

/* Home hero */
.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("images/House-and-Tree.png") center/cover no-repeat;
  transform: scale(1.015);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18,15,13,.94) 0%, rgba(18,15,13,.77) 43%, rgba(18,15,13,.26) 75%, rgba(18,15,13,.46) 100%),
    linear-gradient(0deg, rgba(18,15,13,.55), transparent 60%);
}
.hero-content { padding: 88px 0 96px; max-width: 780px; }
.hero h1 { font-size: clamp(4rem, 8vw, 7.8rem); max-width: 780px; letter-spacing: -.03em; color: var(--ivory); }
.hero .lead { margin-top: 24px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }
.hero-mark {
  position: absolute;
  right: max(4vw, 32px);
  bottom: 42px;
  width: 100px;
  opacity: .62;
}

/* Sections */
.section { padding: 110px 0; border-bottom: 1px solid var(--line); }
.section-light { background: var(--ivory); color: var(--charcoal); }
.section-light .eyebrow { color: #8a6f4f; }
.section-light .lead, .section-light p { color: var(--muted-dark); }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: end; margin-bottom: 56px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  position: relative;
  min-height: 280px;
  padding: 34px;
  border: 1px solid rgba(31,26,23,.18);
  background: rgba(255,255,255,.28);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0;
  background: #8a6f4f;
  transition: height .35s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(138,111,79,.5); background: rgba(255,255,255,.55); }
.card:hover::before { height: 100%; }
.card-number { display: block; color: #8a6f4f; font-size: 11px; letter-spacing: .22em; margin-bottom: 52px; }
.card h3 { font-size: 2rem; margin-bottom: 16px; }
.card p { font-size: .95rem; }

.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 76px; align-items: center; }
.about-copy p { color: var(--muted-light); max-width: 650px; }
.about-panel {
  position: relative;
  padding: 48px;
  border: 1px solid var(--line);
  min-height: 420px;
  background: rgba(244,236,221,.025);
}
.about-panel::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(215,194,163,.12);
  pointer-events: none;
}
.about-panel img { position: absolute; right: 34px; top: 34px; width: 115px; opacity: .17; }
.feature-list { list-style: none; position: relative; z-index: 1; margin-top: 105px; }
.feature-list li { display: flex; gap: 18px; align-items: baseline; border-top: 1px solid var(--line); padding: 17px 0; color: var(--muted-light); }
.feature-list li::before { content: ""; width: 26px; height: 1px; background: var(--gold); flex: 0 0 auto; }

.cta { padding: 92px 0; background: var(--gold); color: var(--charcoal); }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta h2 { font-size: clamp(2.8rem, 5vw, 5rem); }
.cta p { color: rgba(31,26,23,.7); margin-top: 10px; }
.cta .btn { border-color: var(--charcoal); color: var(--charcoal); }
.cta .btn:hover { background: var(--charcoal); color: var(--ivory); }

/* Inner page headers */
.page-hero {
  padding: 104px 0 82px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 20%, rgba(215,194,163,.08), transparent 34%),
    linear-gradient(145deg, var(--charcoal-deep), var(--charcoal));
}
.page-hero .section-title { max-width: 850px; }
.page-hero .lead { margin-top: 22px; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  padding: 36px;
  min-height: 290px;
  border: 1px solid var(--line);
  background: rgba(244,236,221,.025);
  transition: transform .3s ease, background .3s ease;
}
.service-card:hover { transform: translateY(-5px); background: rgba(244,236,221,.055); }
.service-card .index { color: var(--gold); font-size: 11px; letter-spacing: .2em; }
.service-card h3 { font-size: 2rem; margin: 48px 0 16px; }
.service-card p { color: var(--muted-light); font-size: .94rem; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid rgba(31,26,23,.2); }
.process-step { padding: 34px 28px; min-height: 230px; border-right: 1px solid rgba(31,26,23,.2); }
.process-step:last-child { border-right: 0; }
.process-step span { color: #8a6f4f; font-size: 12px; letter-spacing: .2em; }
.process-step h3 { font-size: 1.8rem; margin: 38px 0 12px; }
.process-step p { font-size: .92rem; }

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.portfolio-item { border: 1px solid var(--line); background: rgba(244,236,221,.025); overflow: hidden; }
.portfolio-image { position: relative; height: 430px; overflow: hidden; }
.portfolio-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18,15,13,.45), transparent 55%); pointer-events: none; }
.portfolio-image img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.78) contrast(1.02); transition: transform .65s ease, filter .4s ease; }
.portfolio-item:hover img { transform: scale(1.045); filter: saturate(.95) contrast(1.02); }
.portfolio-content { padding: 28px 30px 32px; }
.portfolio-content h3 { font-size: 2rem; }
.portfolio-content p { margin-top: 10px; color: var(--muted-light); font-size: .94rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .9fr 1.35fr; gap: 30px; align-items: start; }
.contact-card, .contact-form { border: 1px solid var(--line); background: rgba(244,236,221,.025); padding: 42px; }
.contact-card .brand-symbol { width: 76px; margin-bottom: 28px; }
.contact-card h2 { font-size: 2.7rem; }
.contact-card > p { color: var(--muted-light); margin-top: 16px; }
.info-box { margin-top: 26px; padding-top: 21px; border-top: 1px solid var(--line); }
.info-box h3 { color: var(--gold); font: 700 11px var(--body); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 7px; }
.info-box p { color: var(--muted-light); }
.phone-ltr { direction: ltr; unicode-bidi: embed; display: inline-block; }

.contact-email {
  color: var(--muted-light);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-email:hover,
.contact-email:focus {
  color: var(--gold);
  text-decoration: underline;
}


.contact-phone {
  color: var(--muted-light);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-phone:hover,
.contact-phone:focus {
  color: var(--gold);
  text-decoration: underline;
}
.whatsapp { margin-top: 30px; }
.contact-form { display: flex; flex-direction: column; }
.contact-form label { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.contact-form input,
.contact-form textarea,
.contact-form select,
.country-selected,
.country-search {
  width: 100%;
  border: 1px solid rgba(215,194,163,.26);
  background: rgba(244,236,221,.045);
  color: var(--ivory);
  padding: 14px 15px;
  font: 400 14px var(--body);
  border-radius: 0;
}
.contact-form input,
.contact-form textarea,
.contact-form select { margin-bottom: 20px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder,
.country-search::placeholder { color: rgba(244,236,221,.42); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.country-selected:focus,
.country-search:focus { outline: none; border-color: var(--gold); }
.contact-form select option { background: var(--charcoal); color: var(--ivory); }
.email-input, .phone-input { direction: ltr; }
html[dir="rtl"] .email-input, html[dir="rtl"] .phone-input { text-align: right; }
.phone-row { display: flex; gap: 12px; margin-bottom: 20px; }
.country-wrapper { width: 290px; position: relative; direction: ltr; }
.country-selected { height: 51px; display: flex; align-items: center; gap: 9px; cursor: pointer; white-space: nowrap; }
.country-selected img, .country-option img { width: 22px; height: 15px; object-fit: cover; border-radius: 1px; }
.country-arrow { margin-left: auto; font-size: 10px; color: var(--gold); }
.country-dropdown { display: none; position: absolute; top: 57px; left: 0; width: 100%; z-index: 100; background: var(--charcoal-deep); border: 1px solid var(--line); max-height: 320px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.country-dropdown.open { display: block; }
.country-search { width: calc(100% - 20px); margin: 10px; }
.country-list { max-height: 250px; overflow-y: auto; }
.country-option { display: flex; align-items: center; gap: 9px; padding: 10px 12px; cursor: pointer; font-size: 13px; color: var(--ivory); }
.country-option:hover { background: rgba(215,194,163,.1); }
.phone-input { flex: 1; }

/* Footer */
.site-footer { background: var(--charcoal-deep); border-top: 1px solid var(--line); padding: 54px 0 28px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.footer-logo { width: 195px; }
.footer-tagline { color: var(--muted-light); font-family: var(--display); font-size: 1.45rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: rgba(244,236,221,.48); font-size: 12px; }

html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .nav-links { direction: rtl; }
html[dir="rtl"] .feature-list li { flex-direction: row-reverse; }
html[dir="rtl"] .country-arrow { margin-left: 0; margin-right: auto; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-panel {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    display: block;
    background: rgba(18,15,13,.985);
    border-bottom: 1px solid transparent;
    transition: max-height .35s ease, border-color .35s ease;
  }
  .nav-panel.open { max-height: 470px; border-color: var(--line); }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; padding: 20px 24px 8px; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(215,194,163,.12); }
  .language-switch { padding: 10px 24px 24px; }
  .section-heading, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid rgba(31,26,23,.2); }
  .portfolio-image { height: 350px; }
}

@media (max-width: 680px) {
  .container, .nav-inner { width: min(100% - 32px, var(--max)); }
  .site-nav { height: 72px; }
  .nav-panel { top: 72px; }
  .brand img { width: 185px; }
  .hero { min-height: calc(100svh - 72px); }
  .hero-content { padding: 72px 0 82px; }
  .hero h1 { font-size: clamp(3.5rem, 17vw, 5.2rem); }
  .hero-mark { display: none; }
  .section, .page-hero { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; gap: 24px; }
  .cards, .service-grid, .portfolio-grid, .process-grid { grid-template-columns: 1fr; }
  .card, .service-card { min-height: auto; }
  .process-step { border-right: 0; border-bottom: 1px solid rgba(31,26,23,.2); }
  .process-step:last-child { border-bottom: 0; }
  .portfolio-image { height: 300px; }
  .about-panel, .contact-card, .contact-form { padding: 30px 24px; }
  .cta-inner { grid-template-columns: 1fr; }
  .phone-row { flex-direction: column; }
  .country-wrapper { width: 100%; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
}
