/* ===== Design tokens ===== */
:root {
  --navy: #1c1a17;
  --navy-dark: #0e0d0b;
  --gold: #a9814a;
  --gold-light: #d8bb85;
  --gold-deep: #7d5f36;
  --gold-gradient: linear-gradient(100deg, #d8bb85 0%, #c69a5c 35%, #a9814a 65%, #8b6b3f 100%);
  --cream: #f7f4ee;
  --paper: #fffdfa;
  --text: #26241f;
  --text-muted: #5b5a54;
  --border: #e6e1d6;
  --radius: 3px;
  --shadow: 0 16px 40px rgba(20, 18, 15, 0.1);
  --max-width: 1180px;
}

* { box-sizing: border-box; }

.skip-link {
  position: absolute;
  right: 12px;
  top: -60px;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius);
  z-index: 1000;
  font-weight: 700;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: "Assistant", "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.7;
  direction: rtl;
}

h1, h2, h3, h4 {
  font-family: "Assistant", "Segoe UI", Tahoma, Arial, sans-serif;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.3;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline-en {
  font-family: "EB Garamond", "Times New Roman", serif;
  font-variant: small-caps;
  letter-spacing: .12em;
  font-size: .85rem;
  color: var(--gold-deep);
}

h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--text-muted); }

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section-alt { background: var(--paper); }

.eyebrow {
  color: var(--gold-deep);
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: .1em;
  font-size: .95rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  height: 1px;
  width: 28px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-head .eyebrow { justify-content: center; }

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold-gradient); color: var(--navy-dark); }
.btn-gold:hover { box-shadow: var(--shadow); filter: brightness(1.06); }
.btn-outline { border-color: rgba(255,255,255,.45); color: #fff; }
.btn-outline:hover { border-color: var(--gold-light); background: rgba(255,255,255,.06); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--gold); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 250, .92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img { height: 68px; width: auto; display: block; flex-shrink: 0; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 14px;
  font-weight: 600;
  color: var(--navy);
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-deep); border-color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { font-weight: 700; color: var(--navy); white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.header-phone .icon { color: var(--gold-deep); display: flex; }
.header-phone .icon svg { width: 17px; height: 17px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
}

@media (max-width: 1150px) {
  .logo-img { height: 54px; }
  .main-nav { gap: 0; }
  .main-nav a { padding: 10px 9px; font-size: .78rem; }
  .header-cta { gap: 10px; }
}

@media (max-width: 900px) {
  .header-inner { padding: 12px 20px; }
  .logo-img { height: 42px; }
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    max-height: calc(100vh - 100%);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
    border-top: 1px solid var(--border);
    box-shadow: 0 16px 30px rgba(0,0,0,.12);
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav a { padding: 14px; text-align: center; font-size: 1.05rem; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: block; }
  .header-cta .header-phone-text { display: none; }
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(176,141,79,.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(176,141,79,.12), transparent 40%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: 110px 24px 100px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.hero h1 { color: #fff; }
.hero p.lead { color: rgba(255,255,255,.82); font-size: 1.15rem; max-width: 640px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-badges {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.65);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-badges span.sep { color: var(--gold); opacity: .5; }

/* Page header (inner pages) */
.page-hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 64px 24px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.78); max-width: 600px; margin: 0 auto; }
.breadcrumb { color: var(--gold-light); font-size: .85rem; margin-bottom: 14px; font-weight: 600; }

/* ===== Cards / Grids ===== */
.grid { display: grid; gap: 28px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 640px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gold-light); }
.card .icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card a.more {
  color: var(--gold-deep); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .04em;
  display: inline-block; margin-top: 10px;
}

/* ===== Two column layout ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.portrait-frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--navy), var(--navy-dark));
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.6);
  text-align: center;
  font-size: .95rem;
  border: 1px solid var(--border);
}
.portrait-frame.has-photo { display: block; }
.portrait-frame .person-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.portrait-frame .photo-caption {
  position: absolute;
  right: 0; left: 0; bottom: 0;
  padding: 32px 24px 20px;
  background: linear-gradient(to top, rgba(12,10,8,.88), transparent);
  color: #fff;
  text-align: right;
}
.portrait-frame .photo-caption strong { display: block; font-size: 1.05rem; }
.portrait-frame .photo-caption span { display: block; color: var(--gold-light); font-size: .85rem; margin-top: 2px; }
.portrait-frame:not(.has-photo) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.logo-mark-img {
  width: 180px;
  max-width: 60%;
  height: auto;
  margin: 0 auto 20px;
}

/* ===== Values strip ===== */
.values { background: var(--navy); color: #fff; }
.values h2, .values .eyebrow { color: #fff; }
.values .eyebrow { color: var(--gold-light); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value-item { text-align: center; }
.value-item .num { font-family: "EB Garamond", serif; font-style: italic; color: var(--gold-light); font-size: 1.8rem; display:block; margin-bottom:8px; }
.value-item p { color: rgba(255,255,255,.75); margin:0; font-size: .93rem; }

/* ===== CTA banner ===== */
.cta-banner {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 52px 24px;
  text-align: center;
}
.cta-banner h2 { color: var(--navy-dark); }
.cta-banner p { color: rgba(14,13,11,.82); }
.cta-banner .btn-navy:hover { background: var(--navy-dark); }
.cta-banner .btn-outline { border-color: var(--navy-dark); color: var(--navy-dark); }
.cta-banner .btn-outline:hover { background: rgba(14,13,11,.08); border-color: var(--navy-dark); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }

/* ===== Footer ===== */
footer.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 60px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.65); font-size: .93rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-logo { display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.footer-logo-img { height: 58px; width: auto; display: block; }
.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease, color .15s ease;
}
.social-links a:hover { background: var(--gold); color: var(--navy-dark); }
.social-links svg { width: 18px; height: 18px; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.disclaimer {
  max-width: var(--max-width);
  margin: 0 auto 20px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}

/* ===== Forms ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 600; font-size: .9rem; color: var(--navy); }
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 13px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold-light); border-color: var(--gold); }
textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--text-muted); margin-top: 10px; }
.form-status { margin-top: 14px; font-weight: 700; }
.form-status.ok { color: #2f7d4f; }

/* ===== Contact info list ===== */
.info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 22px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); border: 1px solid var(--gold); color: var(--gold-light);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.info-list .icon svg { width: 19px; height: 19px; }
.info-list strong { display:block; color: var(--navy); margin-bottom: 2px; }

.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 280px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ===== Blog ===== */
.article-card { display: flex; flex-direction: column; height: 100%; }
.tag {
  align-self: flex-start;
  background: var(--cream);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
/* ===== Article page ===== */
.article-body h3 { margin-top: 32px; }
.article-body p { line-height: 1.85; }

/* ===== Team ===== */
.team-card { text-align: center; }
.team-card .logo-mark-img { width: 150px; }
.team-card .team-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--gold);
  margin: 0 auto 20px;
}
.team-card .role { color: var(--gold-deep); font-weight: 700; font-size: .88rem; margin-bottom: 10px; }

/* ===== Floating WhatsApp ===== */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
  z-index: 200;
  color: var(--gold-light);
  transition: transform .15s ease, border-color .15s ease;
}
.float-whatsapp svg { width: 24px; height: 24px; }
.float-whatsapp:hover { transform: scale(1.06); border-color: var(--gold-light); }

@media (max-width: 640px) {
  .section { padding: 52px 0; }
}
