:root {
  --bg: #f3efe9;
  --panel: #f9f6f1;
  --card: #fffdf9;
  --sand: #d9c3a5;
  --gold: #b98d4b;
  --gold-deep: #8f6d3d;
  --ink: #171412;
  --muted: #5d564f;
  --line: rgba(23, 20, 18, 0.18);
  --shadow: 0 30px 60px rgba(26, 18, 11, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f0eee9 0%, #e9e5df 100%);
}

body[dir="rtl"] {
  direction: rtl;
}

body[dir="rtl"] .main-nav,
body[dir="rtl"] .nav-wrap,
body[dir="rtl"] .hero-actions,
body[dir="rtl"] .cta-wrap,
body[dir="rtl"] .footer-wrap,
body[dir="rtl"] .faq-question {
  direction: rtl;
}

body.lightbox-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 50;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  margin-bottom: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 239, 233, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23, 20, 18, 0.08);
}

.site-header.is-scrolled .brand-group,
.site-header.is-scrolled .main-nav {
  display: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 18px;
  flex-wrap: wrap;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 420px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: clamp(170px, 22vw, 260px);
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(32, 22, 14, 0.08));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  border: 1px solid rgba(23, 20, 18, 0.16);
  background: rgba(255, 255, 255, 0.35);
  color: var(--ink);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.lang-toggle:hover {
  transform: translateY(-1px);
}

.lang-toggle:focus-visible,
.nav-toggle:focus-visible,
.faq-question:focus-visible,
.cookie-accept:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--muted);
}

.main-nav a {
  position: relative;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 8px 6px;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
  border-radius: 999px;
}

.hero {
  padding: 80px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 46px;
}

.hero-copy h1 {
  max-width: 650px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 5vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.lead {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #d7b77d 100%);
  color: #fff;
  box-shadow: 0 18px 30px rgba(185, 141, 75, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(23, 20, 18, 0.18);
  background: rgba(255, 255, 255, 0.2);
}

.hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 0;
  margin: 0;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-stats strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 2vw + 1.1rem, 3rem);
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1.05;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    #caa76d 0%,
    #b48d4d 20%,
    #f0e7d5 38%,
    #d9b675 62%,
    #b9914b 100%
  );
  box-shadow: 0 28px 70px rgba(67, 52, 30, 0.16);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.24),
    rgba(255, 255, 255, 0.62)
  );
  border: 1px solid rgba(30, 24, 20, 0.14);
}

.visual-scene {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    linear-gradient(
      90deg,
      rgba(137, 99, 62, 0.18) 0 18%,
      transparent 18% 26%,
      rgba(137, 99, 62, 0.16) 26% 30%,
      transparent 30% 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.12)
    ),
    radial-gradient(
      circle at 30% 60%,
      rgba(255, 255, 255, 0.78),
      rgba(255, 255, 255, 0.12) 55%,
      rgba(255, 255, 255, 0) 58%
    ),
    linear-gradient(135deg, #efe7dc 0%, #d9d0c4 42%, #c9b18b 100%);
  overflow: hidden;
}

.visual-scene::before {
  content: "";
  position: absolute;
  left: 18%;
  top: 12%;
  width: 22%;
  height: 58%;
  background: linear-gradient(
    180deg,
    rgba(188, 148, 96, 0.75),
    rgba(124, 87, 49, 0.18)
  );
  border-radius: 0 0 28px 28px;
  box-shadow:
    0 0 0 16px rgba(254, 247, 239, 0.42),
    120px 0 0 rgba(179, 143, 100, 0.15);
}

.visual-scene::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 12%;
  width: 34%;
  height: 26%;
  border-radius: 24px 24px 12px 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.7),
    rgba(179, 143, 100, 0.15)
  );
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.24);
}

.brand-strip {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  overflow: hidden;
}

.strips {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 0;
}

.strips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  flex-shrink: 0;
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading h2,
.section-intro h2,
.contact h2,
.cta-wrap h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 52px;
  align-items: end;
}

.about-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.about-copy p + p {
  margin-top: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(23, 20, 18, 0.08);
  border-radius: 26px;
  padding: 30px 24px;
  box-shadow: 0 18px 35px rgba(40, 31, 23, 0.04);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(185, 141, 75, 0.14),
    rgba(185, 141, 75, 0.33)
  );
  color: var(--gold-deep);
  font-weight: 800;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.process-item {
  background: var(--card);
  border: 1px solid rgba(23, 20, 18, 0.06);
  border-radius: 22px;
  padding: 26px 22px;
}

.process-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(185, 141, 75, 0.12);
  color: var(--gold-deep);
  font-weight: 800;
  margin-bottom: 20px;
}

.process-item h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.process-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.partnership-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 64px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partnership-heading {
  margin-bottom: 0;
}

.partnership-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.partnership-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.partnership-logo-card {
  display: grid;
  place-items: center;
  width: min(40%, 220px);
  aspect-ratio: 1;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.partnership-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.makh-logo-card {
  background: var(--ink);
}

.partnership-divider {
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 600;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.project-card {
  display: flex;
  align-items: flex-end;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card);
}

.project-overlay {
  width: 100%;
  padding: 24px 20px 26px;
}

.project-overlay p {
  margin-bottom: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.project-overlay h3 {
  margin: 0;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--ink);
}

.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;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.project-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.project-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card:hover > img,
.project-card:focus-visible > img {
  transform: scale(1.04);
}

.project-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  min-height: 185px;
  justify-content: flex-end;
  padding: 24px 20px 26px;
  background: linear-gradient(180deg, transparent, var(--ink));
  color: var(--card);
}

.project-overlay p {
  margin-bottom: 8px;
  color: var(--sand);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-overlay h3 {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.project-overlay span {
  color: var(--card);
  font-size: 0.86rem;
  line-height: 1.5;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: var(--ink);
  opacity: 0.88;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(100%, 1080px);
  max-height: calc(100vh - 48px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.lightbox-image {
  width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  border-radius: 12px;
  background: var(--bg);
}

.lightbox-close,
.lightbox-control {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.35rem;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-control:hover,
.lightbox-control:focus-visible {
  background: var(--gold);
  color: var(--card);
}

.lightbox-title {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.testimonial-quote {
  flex: 1;
  margin-bottom: 26px;
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  line-height: 1.2;
}

.testimonial-card strong {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.testimonial-card span {
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: start;
}

.faq-icon {
  flex: 0 0 auto;
  color: var(--gold-deep);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 48px 22px 0;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 25;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--gold);
  color: var(--card);
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  background: var(--gold-deep);
}

body[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 24px;
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent h2,
.cookie-consent p {
  margin-bottom: 6px;
}

.cookie-consent p {
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-accept {
  flex: 0 0 auto;
}

.not-found-page {
  display: grid;
  min-height: calc(100vh - 190px);
  place-items: center;
  text-align: center;
}

.not-found-content {
  max-width: 680px;
  padding: 90px 0;
}

.not-found-content h1 {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.95;
}

.not-found-content p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-band {
  background: linear-gradient(
    180deg,
    rgba(185, 141, 75, 0.08),
    rgba(185, 141, 75, 0.18)
  );
  border-top: 1px solid rgba(23, 20, 18, 0.08);
  border-bottom: 1px solid rgba(23, 20, 18, 0.08);
  padding: 48px 0;
}

.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.contact-copy {
  margin-top: 24px;
  max-width: 560px;
  line-height: 1.9;
  color: var(--muted);
}

.inquiry-card {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(23, 20, 18, 0.08);
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: 0 24px 44px rgba(38, 30, 24, 0.05);
}

.inquiry-form {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(23, 20, 18, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(23, 20, 18, 0.45);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(185, 141, 75, 0.18);
  border-color: rgba(185, 141, 75, 0.4);
}

.info-row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(23, 20, 18, 0.08);
}

.info-row:last-of-type {
  margin-bottom: 22px;
}

.label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}

.info-row a,
.info-row p {
  margin: 0;
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--ink);
}

.social-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(23, 20, 18, 0.08);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(240, 232, 220, 0.7)
  );
  color: var(--ink);
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(31, 23, 18, 0.08);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(185, 141, 75, 0.12);
  color: var(--gold-deep);
}

.social-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.tiktok .social-icon {
  color: #0d0d0d;
}

.instagram .social-icon {
  color: var(--gold-deep);
}

.full-width {
  width: 100%;
}

.form-success {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(29, 123, 75, 0.12);
  border: 1px solid rgba(29, 123, 75, 0.24);
  color: #1a6d45;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.6;
}

.form-success.is-visible {
  display: block;
}

.privacy {
  padding-top: 10px;
  padding-bottom: 80px;
}

.privacy-wrap {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(23, 20, 18, 0.08);
  border-radius: 28px;
  padding: 30px 28px;
}

.privacy-wrap h2 {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.privacy-wrap p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.9;
}

.privacy-wrap p + p {
  margin-top: 16px;
}

.company-details {
  padding-top: 0;
  padding-bottom: 28px;
}

.company-details-wrap {
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(23, 20, 18, 0.08);
  border-radius: 28px;
  padding: 30px 24px;
}

.company-details-header {
  margin-bottom: 20px;
}

.company-details-header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.company-details-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.company-info-card {
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(23, 20, 18, 0.06);
  border-radius: 20px;
  padding: 20px 18px;
}

.company-info-card .label {
  margin-bottom: 12px;
}

.company-info-card a,
.company-info-card p {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.7;
}

.site-footer {
  padding: 28px 0 60px;
}

.footer-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  border-top: 1px solid rgba(23, 20, 18, 0.08);
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-copy {
  display: grid;
  gap: 6px;
}

.footer-copy p,
.made-by {
  margin: 0;
}

.made-by {
  color: var(--gold-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
  text-align: right;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .partnership-wrap,
  .project-grid,
  .testimonial-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-dialog {
    gap: 8px;
    padding: 14px;
  }

  .lightbox-control {
    width: 36px;
    height: 36px;
  }

  .lightbox-close {
    top: 6px;
    right: 6px;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 40px rgba(21, 16, 12, 0.12);
    border: 1px solid rgba(23, 20, 18, 0.08);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .cta-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
  }

  .nav-wrap {
    min-height: 74px;
    gap: 10px;
    padding: 8px 0 10px;
  }

  .brand-group {
    gap: 10px;
    flex-basis: 100%;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
  }

  .brand-logo {
    width: clamp(120px, 36vw, 170px);
  }

  .nav-actions {
    margin-left: auto;
    flex-shrink: 0;
  }

  .brand-strip {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .strips {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 6px;
    white-space: nowrap;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .strips::-webkit-scrollbar {
    display: none;
  }

  .strips span {
    padding: 7px 10px;
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 20vw, 4.8rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats,
  .testimonial-grid,
  .service-grid,
  .process-grid,
  .field-row,
  .company-details-grid,
  .social-row {
    grid-template-columns: 1fr;
  }

  .visual-card {
    width: min(100%, 420px);
  }

  .partnership-wrap {
    gap: 34px;
  }

  .partnership-heading {
    text-align: center;
  }

  .partnership-copy {
    margin-right: auto;
    margin-left: auto;
  }

  .partnership-logo-card {
    width: min(42%, 180px);
  }

  .faq-answer {
    padding-right: 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  body[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 16px;
  }

  .cookie-consent {
    right: 16px;
    bottom: 16px;
    left: 16px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .cookie-accept {
    width: 100%;
  }

  .section {
    padding: 80px 0;
  }

  .cta-wrap h2,
  .section-heading h2,
  .section-intro h2,
  .contact h2 {
    font-size: 2.7rem;
  }

  .company-details-wrap,
  .privacy-wrap,
  .inquiry-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .company-details-grid {
    gap: 12px;
  }

  .company-info-card {
    padding: 16px 14px;
  }

  .company-info-card a,
  .company-info-card p {
    font-size: 0.96rem;
    word-break: break-word;
  }

  .social-row {
    gap: 10px;
  }

  .social-link {
    min-height: 46px;
    font-size: 0.9rem;
  }

  .company-details-header h2 {
    font-size: 2.3rem;
  }

  .site-footer {
    padding-bottom: 42px;
  }
}
