:root {
  --navy: #1e347a;
  --navy-deep: #10254f;
  --cyan: #42b3d3;
  --green: #2f5e50;
  --terracotta: #b7653c;
  --ochre: #c89a3d;
  --ivory: #f5f0e8;
  --stone: #fbf8f3;
  --brass: #b08a52;
  --ink: #23201c;
  --muted: #6e6a65;
  --line: rgba(35, 32, 28, 0.12);
  --white: #ffffff;
  --shadow-soft: 0 18px 55px rgba(16, 37, 79, 0.08);
  --shadow-card: 0 26px 70px rgba(16, 37, 79, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--stone);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(66, 179, 211, 0.06), transparent 35%),
    radial-gradient(circle at bottom right, rgba(47, 94, 80, 0.06), transparent 30%);
  z-index: -2;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-light {
  background: var(--ivory);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(16, 37, 79, 0.98), rgba(29, 49, 121, 0.96)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.02), transparent);
  color: var(--white);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading-center {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--green);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.heading-line,
.hero-card-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent);
  margin: 24px 0 28px;
}

.heading-line.center {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-solid {
  background: linear-gradient(135deg, var(--navy), #29459f);
  color: var(--white);
  box-shadow: 0 14px 38px rgba(30, 52, 122, 0.24);
}

.btn-solid:hover {
  box-shadow: 0 18px 44px rgba(30, 52, 122, 0.32);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.12);
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled,
.header.menu-open {
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(18px);
  border-color: rgba(176, 138, 82, 0.15);
  box-shadow: 0 18px 40px rgba(16, 37, 79, 0.08);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.35em;
  color: var(--white);
}

.header.scrolled .brand-text strong,
.header.menu-open .brand-text strong {
  color: var(--navy);
}

.brand-text small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header.scrolled .brand-text small,
.header.menu-open .brand-text small {
  color: rgba(30, 52, 122, 0.72);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav > a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header.scrolled .nav > a,
.header.menu-open .nav > a {
  color: rgba(35, 32, 28, 0.86);
}

.nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.25s ease;
}

.nav > a:hover::after,
.nav > a.active::after {
  width: 100%;
}

.nav-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.header.scrolled .lang-switch,
.header.menu-open .lang-switch {
  background: rgba(30, 52, 122, 0.05);
  border-color: rgba(30, 52, 122, 0.1);
}

.lang-switch span {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.66);
}

.lang-btn {
  padding: 6px 10px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.66);
}

.header.scrolled .lang-switch span,
.header.menu-open .lang-switch span,
.header.scrolled .lang-btn,
.header.menu-open .lang-btn {
  color: rgba(35, 32, 28, 0.58);
}

.lang-switch .active {
  background: var(--white);
  color: var(--navy) !important;
}

.counter-plus {
  display: inline-block;
  margin-left: 4px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

html[lang="ar"] body {
  font-family: "Noto Naskh Arabic", "Manrope", sans-serif;
}

html[dir="rtl"] {
  direction: rtl;
}

html[dir="rtl"] .hero-actions,
html[dir="rtl"] .hero-trust,
html[dir="rtl"] .nav,
html[dir="rtl"] .nav-meta {
  direction: rtl;
}

html[dir="rtl"] .hero-card li,
html[dir="rtl"] .service-card li,
html[dir="rtl"] .contact-assurance li {
  padding-right: 18px;
  padding-left: 0;
}

html[dir="rtl"] .hero-card li::before,
html[dir="rtl"] .service-card li::before,
html[dir="rtl"] .contact-assurance li::before {
  right: 0;
  left: auto;
}

html[dir="rtl"] a[href^="tel:"],
html[dir="rtl"] a[href*="wa.me/"] {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

.btn-nav {
  min-height: 48px;
  padding-inline: 22px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.header.scrolled .menu-toggle,
.header.menu-open .menu-toggle {
  border-color: rgba(30, 52, 122, 0.12);
  background: rgba(30, 52, 122, 0.04);
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header.scrolled .menu-toggle span,
.header.menu-open .menu-toggle span {
  background: var(--navy);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 130px;
  background: var(--navy-deep);
  color: var(--white);
  overflow: clip;
}

.hero-media,
.hero-overlay,
.hero-pattern {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-overlay {
  background:
    linear-gradient(105deg, rgba(16, 37, 79, 0.94) 15%, rgba(16, 37, 79, 0.58) 50%, rgba(16, 37, 79, 0.78) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.48));
}

.hero-pattern {
  opacity: 0.12;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 80%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.75fr;
  column-gap: 48px;
  row-gap: 18px;
  align-items: start;
  padding-bottom: 110px;
}

.hero-copy {
  max-width: 760px;
}

.hero-lead {
  margin-top: 24px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  grid-column: 1 / -1;
  list-style: none;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-trust li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 6px;
  row-gap: 10px;
}

.hero-trust .counter-plus {
  margin-left: 0;
  margin-right: 4px;
}

.hero-trust strong {
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--cyan);
  font-family: "Manrope", sans-serif;
}

.hero-trust-label {
  flex-basis: 100%;
  max-width: 140px;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.hero-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.hero-card-label {
  display: inline-block;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  margin-bottom: 14px;
}

.hero-card h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
}

.hero-card p,
.hero-card li {
  color: rgba(255, 255, 255, 0.72);
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.hero-card li {
  position: relative;
  padding-left: 18px;
}

.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ochre);
}

.hero-card-reach {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

.hero-card-reach h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-top: 12px;
}

.hero-card-reach p {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-footer-band {
  position: absolute;
  inset: auto 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 37, 79, 0.68);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.hero-footer-band-inner {
  min-height: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.hero-footer-band-inner span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-intro {
  border-top: 1px solid rgba(176, 138, 82, 0.08);
}

.intro-grid,
.founder-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-grid p + p,
.founder-panel p + p {
  margin-top: 16px;
}

.intro-stack {
  position: relative;
  min-height: 520px;
}

.intro-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.intro-photo img,
.founder-photo img,
.product-card img,
.project-card img {
  height: 100%;
  object-fit: cover;
}

.intro-photo-main {
  width: 78%;
  height: 520px;
}

.intro-photo-side {
  position: absolute;
  right: 0;
  bottom: 32px;
  width: 42%;
  height: 280px;
  border: 12px solid var(--stone);
}

.intro-plaque {
  margin-top: 24px;
  max-width: 340px;
  padding: 24px 26px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--brass);
}

.intro-plaque strong,
.founder-note strong {
  display: block;
  font-size: 1.02rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.founder-section {
  background: linear-gradient(180deg, var(--stone), var(--white));
}

.founder-panel {
  padding: 8px 0;
}

.founder-role {
  margin: 16px 0 26px;
  color: var(--green);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.founder-panel blockquote {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: rgba(47, 94, 80, 0.06);
  border-left: 3px solid var(--green);
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.founder-visual {
  display: grid;
  gap: 18px;
}

.founder-photo {
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.founder-note {
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(30, 52, 122, 0.05), rgba(66, 179, 211, 0.08));
  border: 1px solid rgba(30, 52, 122, 0.08);
}

.founder-note span,
.product-body span,
.project-type,
.contact-cards span,
.form-row span,
.contact-form > label span,
.footer h3 {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.founder-note span,
.product-body span,
.project-type {
  color: var(--terracotta);
  margin-bottom: 10px;
}

.craftsmanship-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.craftsmanship-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 22px;
}

.craftsmanship-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.craftsmanship-steps article {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.craftsmanship-steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(66, 179, 211, 0.16);
  color: var(--cyan);
  font-weight: 800;
}

.craftsmanship-steps h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.craftsmanship-steps p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.services-section {
  background: linear-gradient(180deg, var(--stone), var(--ivory));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 37, 79, 0.07);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.product-card:hover,
.project-card:hover,
.reference-pill:hover {
  transform: translateY(-4px);
}

.service-card:hover {
  border-color: rgba(47, 94, 80, 0.16);
  box-shadow: 0 24px 62px rgba(16, 37, 79, 0.12);
}

.service-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brass);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.service-card h3 {
  margin-bottom: 14px;
  color: var(--navy);
}

.service-card p {
  margin-bottom: 20px;
}

.service-card ul,
.contact-assurance ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.service-card li,
.contact-assurance li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card li::before,
.contact-assurance li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card,
.project-card,
.reference-pill,
.contact-form {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.product-card figure {
  height: 320px;
}

.product-body {
  padding: 28px;
}

.product-body h3 {
  margin-bottom: 14px;
  color: var(--navy);
}

.gallery-header {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: end;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 28px;
}

.filter-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(30, 52, 122, 0.1);
  background: var(--white);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.project-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.project-card.hidden {
  display: none;
}

.project-card figure {
  height: 280px;
}

.project-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.project-card-body h3 {
  color: var(--navy);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.references-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.reference-pill {
  padding: 16px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(16, 37, 79, 0.08);
  box-shadow: var(--shadow-soft);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(16, 37, 79, 0.98), rgba(30, 52, 122, 0.92)),
    radial-gradient(circle at top right, rgba(66, 179, 211, 0.15), transparent 35%);
  color: var(--white);
}

.contact-section h2,
.contact-section p,
.contact-section li,
.contact-section strong,
.contact-section a {
  color: inherit;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 20px;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin: 34px 0;
}

.contact-cards article,
.contact-assurance {
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-cards strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.contact-cards span,
.contact-form span,
.footer h3 {
  color: rgba(255, 255, 255, 0.58);
}

.contact-assurance strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1rem;
}

.contact-assurance li {
  color: rgba(255, 255, 255, 0.74);
}

.contact-assurance li::before {
  background: var(--ochre);
}

.contact-form {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.16);
  color: var(--ink);
}

.contact-form .btn-solid {
  width: 100%;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.contact-form .btn-solid.btn--sending {
  opacity: 0.75;
  cursor: not-allowed;
  pointer-events: none;
}

.contact-form .btn-solid.btn--sending::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.18) 50%,
    transparent 100%);
  background-size: 200% 100%;
  animation: btn-shimmer 1.2s infinite linear;
}

@keyframes btn-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.contact-form .btn-solid.btn--sent {
  background: linear-gradient(135deg, #2f5e50, #3b7a65);
  box-shadow: 0 14px 38px rgba(47, 94, 80, 0.32);
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form > label {
  display: block;
  margin-bottom: 16px;
}

.contact-form span {
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(16, 37, 79, 0.1);
  background: #fcfbf8;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(66, 179, 211, 0.72);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(66, 179, 211, 0.14);
}

.form-note {
  margin-top: 14px;
  color: var(--muted) !important;
  font-size: 0.9rem;
  text-align: center;
}

/* ──────────────────────────────────────────── */
/*              BLOG SECTION STYLES             */
/* ──────────────────────────────────────────── */

.blog-section {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: rgba(30, 52, 122, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 12px 32px rgba(30, 52, 122, 0.08);
  transform: translateY(-2px);
}

.blog-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 0;
}

.blog-category {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(54, 179, 209, 0.08);
  color: var(--cyan);
  border-radius: 6px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  white-space: nowrap;
}

.blog-card time {
  color: var(--gray-medium);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  text-align: right;
}

.blog-card h3 {
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0 0 12px 0;
  color: var(--navy);
  transition: color 0.3s ease;
}

.blog-card:hover h3 {
  color: var(--cyan);
}

.blog-excerpt {
  color: var(--gray-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--gray-medium);
  font-weight: 500;
}

.blog-link {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-link:hover {
  color: var(--navy);
}

/* ──────────────────────────────────────────── */
/*           ARTICLE PAGE STYLES                */
/* ──────────────────────────────────────────── */

.article-hero {
  position: relative;
  height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 80px;
}

.article-hero-media {
  position: absolute;
  inset: 0;
}

.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 22, 54, 0.92) 0%, rgba(14, 22, 54, 0.55) 50%, rgba(14, 22, 54, 0.25) 100%);
}

.article-hero-content {
  position: relative;
  z-index: 2;
  padding: 52px 0;
  max-width: 800px;
}

.article-hero-content .eyebrow {
  color: var(--cyan);
  margin-bottom: 14px;
}

.article-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.article-hero-meta span,
.article-hero-meta time {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-hero-meta .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  display: inline-block;
}

/* Article Content Layout */
.article-content {
  padding: 72px 0;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 72px;
  align-items: start;
}

.article-body {
  max-width: 760px;
}

.article-body h2 {
  font-size: 1.9rem;
  color: var(--navy);
  margin: 52px 0 18px 0;
  padding-top: 0;
  line-height: 1.25;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin: 36px 0 12px 0;
}

.article-body p {
  color: var(--gray-dark);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.article-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.article-body ul li {
  position: relative;
  padding-left: 24px;
  color: var(--gray-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 2px;
  background: var(--cyan);
}

.article-body blockquote {
  border-left: 3px solid var(--cyan);
  padding: 20px 28px;
  margin: 36px 0;
  background: rgba(30, 52, 122, 0.03);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-body blockquote p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--navy);
  font-style: italic;
  margin: 0;
}

/* Article inline images */
.article-figure {
  margin: 40px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article-figure img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.article-figure figcaption {
  padding: 12px 16px;
  background: rgba(30, 52, 122, 0.03);
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
  text-align: center;
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

.article-figure-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 40px 0;
}

.article-figure-half figure {
  border-radius: var(--radius);
  overflow: hidden;
}

.article-figure-half figure img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Highlight box */
.article-highlight {
  background: linear-gradient(135deg, rgba(30, 52, 122, 0.05) 0%, rgba(54, 179, 209, 0.06) 100%);
  border: 1px solid rgba(54, 179, 209, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 40px 0;
}

.article-highlight h4 {
  font-size: 1.05rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  font-weight: 700;
}

.article-highlight ul li {
  color: var(--navy);
  font-weight: 500;
}

/* Article Mid-CTA */
.article-cta-inline {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin: 52px 0;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.article-cta-inline h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 0 8px 0;
}

.article-cta-inline p {
  color: rgba(255,255,255,0.75);
  margin: 0;
  font-size: 0.95rem;
}

.article-cta-inline .btn {
  flex-shrink: 0;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 108px;
}

.sidebar-card {
  background: rgba(30, 52, 122, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.sidebar-card h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 18px;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.sidebar-card ul li:last-child {
  border-bottom: none;
}

.sidebar-cta {
  background: var(--navy);
  color: var(--white);
}

.sidebar-cta h4 {
  color: var(--cyan);
}

.sidebar-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.sidebar-cta .btn {
  width: 100%;
  text-align: center;
}

/* Article final CTA */
.article-final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1e3f 100%);
  color: var(--white);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.article-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(54, 179, 209, 0.12) 0%, transparent 60%),
                    radial-gradient(circle at 70% 50%, rgba(54, 179, 209, 0.08) 0%, transparent 55%);
}

.article-final-cta .container {
  position: relative;
  z-index: 2;
}

.article-final-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.article-final-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.article-final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Related articles */
.related-articles {
  background: var(--off-white, #f9f8f5);
  padding: 72px 0;
}

.related-articles h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 36px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Breadcrumb */
.article-breadcrumb {
  padding: 20px 0;
  background: var(--off-white, #f9f8f5);
  border-bottom: 1px solid var(--line);
}

.article-breadcrumb ol {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
  align-items: center;
}

.article-breadcrumb ol li a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}

.article-breadcrumb ol li a:hover {
  color: var(--cyan);
}

.article-breadcrumb ol li + li::before {
  content: '/';
  margin-right: 8px;
  color: var(--muted);
}

/* Responsive article */
@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .sidebar-card {
    margin-bottom: 0;
  }

  .article-hero {
    height: 480px;
  }

  .article-figure img {
    height: 280px;
  }

  .article-cta-inline {
    flex-direction: column;
    text-align: center;
    padding: 32px 28px;
  }

  .article-figure-half {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────── */

.footer {
  padding: 72px 0 26px;
  background: #101829;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  width: 90px;
  margin-bottom: 18px;
}

.footer-brand p,
.footer li,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.62);
}

.footer h3 {
  margin-bottom: 14px;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
}

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal {
  transform: translateY(32px);
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .gallery-header,
  .craftsmanship-grid,
  .intro-grid,
  .founder-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-side,
  .hero-card,
  .hero-card-reach {
    max-width: 540px;
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 88px 24px auto;
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(251, 248, 243, 0.98);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav > a {
    color: var(--ink) !important;
  }

  .nav-meta {
    margin-left: 0;
    flex-wrap: wrap;
  }

  .lang-switch {
    background: rgba(30, 52, 122, 0.05);
    border-color: rgba(30, 52, 122, 0.08);
  }

  .lang-switch span {
    color: rgba(35, 32, 28, 0.58) !important;
  }

  .hero {
    align-items: center;
  }

  .hero-grid {
    padding-bottom: 140px;
  }

  .hero-trust,
  .craftsmanship-steps,
  .services-grid,
  .products-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust-label {
    max-width: none;
  }

  .intro-stack {
    min-height: 0;
  }

  .intro-photo-main,
  .intro-photo-side,
  .founder-photo {
    width: 100%;
    position: static;
    height: auto;
    min-height: 0;
  }

  .intro-photo-side {
    margin-top: 20px;
    border-width: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 88px 0;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-grid {
    padding-bottom: 128px;
  }

  .hero-actions,
  .hero-trust,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-footer-band-inner {
    justify-content: flex-start;
    padding: 16px 0;
  }

  .services-grid,
  .products-grid,
  .gallery-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .project-card figure,
  .product-card figure {
    height: 240px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════════════
   RGPD / CCPA — Cookie consent banner
   ═══════════════════════════════════════════════════ */

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(16, 37, 79, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 196, 196, 0.25);
  padding: 18px 24px;
  transform: translateY(0);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 1;
}

.consent-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
}

.consent-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.consent-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  flex: 1 1 300px;
}

.consent-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.consent-link {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.consent-link:hover {
  color: #fff;
}

.consent-btn {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}

.consent-btn:hover {
  background: #00e0e0;
  transform: scale(1.03);
}

/* Footer privacy link */
.footer-privacy-link {
  width: 100%;
  text-align: center;
  margin-top: 4px;
}

.footer-privacy-link a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-privacy-link a:hover {
  color: var(--cyan);
}

@media (max-width: 600px) {
  .consent-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .consent-actions {
    width: 100%;
    justify-content: space-between;
  }
}