.filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.filter-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}
.filter-btn.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.project-stack {
  display: grid;
  gap: 20px;
}
.project-panel {
  position: relative;
  min-height: 120px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: min-height 0.7s cubic-bezier(0.22, 0.8, 0.2, 1);
}
.project-panel.is-open {
  min-height: 560px;
}
.project-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(23, 19, 13, 0.82),
    rgba(23, 19, 13, 0.12) 70%
  );
}
.project-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 32px;
  color: #fff;
}
.project-content h2 {
  font-size: clamp(1.8rem, 3vw, 3.8rem);
  font-weight: 400;
  margin: 0;
}
.project-content p {
  max-width: 520px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.45s ease;
  margin: 16px 0 0;
}
.project-panel.is-open .project-content p {
  opacity: 0.86;
  transform: none;
}
.web-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.web-card .card-media {
  aspect-ratio: 16/11;
}
.web-card[data-category="shop"] .card-media img {
  object-fit: contain;
  padding: 26px;
  background: linear-gradient(135deg, #f8f9fb, #eaf0f5);
}
.service-list {
  display: grid;
  gap: 14px;
}
.service-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.service-item:last-child {
  border-bottom: 1px solid var(--line);
}
.service-index {
  color: var(--gold);
}
.service-item h2 {
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 400;
  margin: 0;
}
.service-item p {
  max-width: 610px;
  color: var(--muted);
  margin: 8px 0 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 110px;
}
.about-image img {
  width: 100%;
  height: min(70vh, 740px);
  object-fit: cover;
}
.about-copy {
  display: grid;
  gap: 24px;
}
.about-block {
  padding: 32px;
  border-radius: var(--radius);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
.contact-list {
  display: grid;
  gap: 12px;
}
.contact-link {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
}
.form {
  padding: 30px;
  border-radius: var(--radius);
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 14px 0;
  outline: none;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
}
.cart-items {
  display: grid;
  gap: 14px;
}
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
}
.cart-item img {
  width: 100px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
}
.cart-item .btn {
  min-height: 34px;
  padding: 0 13px;
  font-size: 0.72rem;
  align-self: center;
}
.cart-summary {
  padding: 24px;
  border-radius: 22px;
  height: max-content;
  position: sticky;
  top: 100px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) {
  .about-grid,
  .contact-grid,
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    position: static;
    top: auto;
    margin-top: 25px;
  }
  .about-image {
    position: static;
    width: 80px;
    height: 70px;
  }
  .service-item {
    grid-template-columns: 80px 1fr;
  }
  .service-item > a {
    grid-column: 2;
  }
  .project-panel.is-open {
    min-height: 470px;
  }
  .cart-item {
    grid-template-columns: 80px 1fr;
  }
  .cart-item img {
    width: 80px;
    height: 70px;
  }
  .cart-item button {
    grid-column: 1 / -1;
    justify-self: center;
    height: 20px;
  }
}

/* Refined website cards */
.web-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.web-card .card-body {
  position: relative;
}
.web-card .card-meta {
  margin-bottom: 7px;
}
.web-card h3 {
  margin-bottom: 7px;
}
.web-price {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.88rem;
}
.web-card-details {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  max-height: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease;
}
.web-card-details > div {
  overflow: hidden;
}
.web-card:hover .web-card-details {
  grid-template-rows: 1fr;
  max-height: 150px;
  opacity: 1;
}
.web-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 12px;
  margin: 16px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--muted);
  font-size: 0.74rem;
}
.web-feature-list li::before {
  content: "·";
  color: var(--gold);
  margin-inline-end: 6px;
}
.web-card-actions .btn {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.76rem;
}
.web-card-actions .btn-primary {
  background: linear-gradient(135deg, #ac8444, #ddc594);
}

/* Graphics editorial hero */
.graphics-hero {
  padding: 80px 0 70px;
  overflow: hidden;
}
.graphics-hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 50px;
  align-items: center;
  min-height: 610px;
}
.graphics-hero-copy .lead {
  margin-top: 22px;
}
.graphics-collage {
  position: relative;
  height: 590px;
}
.g-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 25px 65px rgba(93, 66, 24, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.65);
}
.g-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g-shot-a {
  width: 48%;
  height: 64%;
  left: 4%;
  top: 6%;
  transform: rotate(-3deg);
}
.g-shot-b {
  width: 43%;
  height: 52%;
  right: 2%;
  top: 1%;
  transform: rotate(3deg);
}
.g-shot-c {
  width: 42%;
  height: 45%;
  left: 15%;
  bottom: 1%;
  transform: rotate(2deg);
}
.g-shot-d {
  width: 36%;
  height: 42%;
  right: 8%;
  bottom: 7%;
  transform: rotate(-4deg);
}
.graphics-filter-wrap {
  margin-top: 8px;
}
.graphics-filters {
  justify-content: center;
}
.project-stack {
  display: grid;
  gap: 18px;
}
.project-panel {
  min-height: 170px;
}
.project-panel.is-open {
  min-height: 570px;
}
.project-content {
  padding: 34px;
}
.project-panel[hidden] {
  display: none;
}
.project-panel[data-slug="aurelia"] {
  border: 1px solid rgba(174, 132, 58, 0.35);
  box-shadow: 0 30px 80px rgba(139, 96, 30, 0.14);
}

/* Services */
.service-item {
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: start;
  padding: 35px 0;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.service-item.is-visible {
  opacity: 1;
  transform: none;
}
.service-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.76rem;
}
.service-item h2 {
  line-height: 1.05;
}
.service-item p {
  max-width: 740px;
}
.about-block .section-title {
  font-size: clamp(1.9rem, 3.3vw, 3.7rem);
  font-weight: 400;
  background: linear-gradient(100deg, #7f5a24, #c49a51, #7f5a24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Contact signature experience */
.contact-experience {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: stretch;
  padding: 34px;
  border-radius: 34px;
}
.crystal-flow {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-radius: 26px;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(255, 255, 255, 0.94),
    rgba(238, 217, 177, 0.28) 40%,
    transparent 72%
  );
}
.flow-glass {
  position: absolute;
  left: 50%;
  top: 2%;
  width: min(430px, 82%);
  height: auto;
  transform: translateX(-50%) rotate(-2deg);
  object-fit: contain;
  filter: drop-shadow(0 34px 65px rgba(112, 78, 22, 0.18)) brightness(1.04);
  animation: flowPulse 8s ease-in-out infinite;
}
.flow-light {
  position: absolute;
  left: 43%;
  top: -10%;
  width: 14%;
  height: 46%;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 237, 190, 0.88),
    transparent
  );
  filter: blur(13px);
  animation: lightFall 9s ease-in-out infinite;
}
.flow-light-two {
  left: 31%;
  animation-delay: -4.5s;
}
.contact-form-wrap {
  display: flex;
  align-items: center;
}
.contact-form {
  width: 100%;
  padding: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.field {
  margin-bottom: 22px;
}
.field label {
  color: var(--muted);
  font-size: 0.78rem;
}
.field input,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 14px 0;
  outline: none;
  font: inherit;
}
.field textarea {
  width: 100%;
  min-height: 150px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.38);
  padding: 16px;
  outline: none;
  font: inherit;
}
.contact-shortcuts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
}
.contact-shortcuts a {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
}
.contact-shortcuts a:hover {
  border-color: rgba(165, 125, 56, 0.45);
  color: var(--gold);
}
@keyframes lightFall {
  0%,
  100% {
    transform: translateY(-8%);
    opacity: 0.15;
  }
  50% {
    transform: translateY(120%);
    opacity: 0.82;
  }
}
@keyframes flowPulse {
  0%,
  100% {
    transform: translateX(-50%) translateY(4px) rotate(-2deg);
  }
  50% {
    transform: translateX(-50%) translateY(-10px) rotate(2deg);
  }
}
/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.blog-card {
  min-height: 340px;
  padding: 28px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
}
.blog-card > span {
  color: var(--gold);
  font-size: 0.72rem;
}
.blog-card h2 {
  font-size: 1.65rem;
  line-height: 1.15;
  font-weight: 400;
  margin: 18px 0 auto;
}
.blog-card > p:last-child {
  color: var(--muted);
  font-size: 0.78rem;
}
@media (max-width: 900px) {
  .graphics-hero-grid,
  .contact-experience {
    grid-template-columns: 1fr;
  }
  .graphics-collage {
    height: 520px;
  }
  .crystal-flow {
    min-height: 520px;
  }
  .flow-glass {
    width: 30%;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .project-panel.is-open {
    min-height: 470px;
  }
}
@media (max-width: 600px) {
  .graphics-hero {
    padding-top: 55px;
  }
  .graphics-collage {
    height: 400px;
  }
  .g-shot {
    border-radius: 18px;
  }
  .project-panel {
    min-height: 130px;
  }
  .project-panel.is-open {
    min-height: 390px;
  }
  .project-content {
    padding: 22px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form {
    padding: 25px;
  }
  .crystal-flow {
    min-height: 420px;
  }
  .flow-glass {
    width: 38%;
  }
  .web-feature-list {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .flow-light,
  .flow-glass::before,
  .crystal-dust i,
  .crystal-dust b,
  .hero-crystal {
    animation: none !important;
  }
}

/* Graphics cards restored from the original project gallery */
.product-scroll-showcase {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.4rem);
}
.product-scroll-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: clamp(1rem, 2vw, 1.25rem);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.54),
    rgba(205, 218, 236, 0.28)
  );
  box-shadow: 0 22px 60px rgba(56, 65, 78, 0.14);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}
.product-scroll-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 75px rgba(56, 65, 78, 0.18);
}
.product-scroll-copy {
  min-height: 138px;
}
.product-scroll-card h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}
.product-scroll-card p {
  max-width: 94%;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.product-gallery-trigger {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.product-scroll-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.45s ease;
}
.product-scroll-card:hover img {
  transform: scale(1.025);
}
.product-case-link {
  display: inline-flex;
  margin-top: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.contact-experience {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.58),
    rgba(182, 209, 241, 0.34) 55%,
    rgba(228, 218, 198, 0.28)
  );
}
@media (max-width: 720px) {
  .product-scroll-showcase {
    grid-template-columns: 1fr;
  }
  .product-scroll-card {
    min-height: 390px;
  }
  .product-scroll-card img {
    height: 240px;
  }
}

/* Project gallery, cart payment and page scale refinements */
.page-hero .display,
.graphics-hero .display {
  font-size: clamp(2.3rem, 4.9vw, 5rem);
}
html[dir="rtl"] .page-hero .display,
html[dir="rtl"] .graphics-hero .display {
  font-size: clamp(2rem, 4.2vw, 4.15rem);
}
.about-plain-title {
  font-size: clamp(1.9rem, 4.1vw, 3.8rem) !important;
  color: #293241 !important;
}
.about-block .section-title {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.75vw, 2.55rem) !important;
}
.about-grid .page-hero h1 {
  background: linear-gradient(105deg, #29425f, #5f82a8, #b79251);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.service-item h2 {
  color: #35465d;
  font-size: clamp(1.45rem, 2.5vw, 2.45rem);
}
html[dir="rtl"] .service-item h2 {
  font-size: clamp(1.35rem, 2.25vw, 2.15rem);
}
.websites-grid,
.grid.three-col {
  margin-top: -18px;
}
.product-scroll-showcase {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
}
.product-scroll-card {
  min-height: 390px;
}
.product-scroll-copy {
  min-height: 130px;
}
.product-scroll-card img {
  height: 230px;
}
.product-gallery-trigger {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.product-gallery-trigger span {
  position: absolute;
  inset: auto 12px 12px auto;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(27, 38, 55, 0.72);
  color: #fff;
  font-size: 0.7rem;
  opacity: 0;
  transform: translateY(5px);
  transition: 0.25s;
}
.product-gallery-trigger:hover span {
  opacity: 1;
  transform: none;
}
.product-case-link {
  width: max-content;
  color: #405b7b;
  border-bottom: 1px solid rgba(64, 91, 123, 0.28);
}
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(19, 27, 39, 0.82);
  backdrop-filter: blur(16px);
}
.gallery-modal.is-open {
  display: flex;
}
.gallery-modal figure {
  margin: 0;
  max-width: min(1000px, 84vw);
  max-height: 86vh;
  text-align: center;
}
.gallery-modal img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.gallery-modal figcaption {
  margin-top: 10px;
  color: #fff;
  font-size: 0.78rem;
}
.gallery-close,
.gallery-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.gallery-close {
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  font-size: 1.5rem;
}
.gallery-nav {
  top: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  transform: translateY(-50%);
}
.gallery-prev {
  left: 22px;
}
.gallery-next {
  right: 22px;
}
.modal-open {
  overflow: hidden;
}
.project-detail-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  padding: 30px;
  border-radius: 30px;
  align-items: center;
}
.project-detail-cover img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border-radius: 24px;
}
.project-detail-copy {
  padding: 20px;
}
.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.78rem;
}
.cart-summary {
  width: 100%;
}
.summary-total strong {
  color: #3f5d7d;
}
.customization-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.34);
  font-size: 0.78rem;
  color: var(--muted);
}
.customization-check input {
  margin-top: 2px;
}
.cart-direct-actions {
  display: grid;
  gap: 10px;
}
.cart-direct-actions .btn {
  width: 100%;
}
.payment-panel {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.4);
}
.payment-panel p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}
.payment-field {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
}
.payment-field strong {
  min-height: 1.2em;
}
.payment-panel .contact-shortcuts {
  margin-top: 12px;
  padding-top: 12px;
}
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
@media (max-width: 980px) {
  .product-scroll-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .project-detail-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 650px) {
  .product-scroll-showcase {
    grid-template-columns: 1fr;
  }
  .gallery-nav {
    top: auto;
    bottom: 24px;
  }
  .gallery-prev {
    left: calc(50% - 58px);
  }
  .gallery-next {
    right: calc(50% - 58px);
  }
}

/* Gallery, detail, cart and contact refinements */
.gallery-modal figure {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  max-width: min(1000px, 82vw);
  max-height: 84vh;
}
.gallery-close,
.gallery-nav {
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  line-height: 1 !important;
}
.gallery-close {
  top: 50% !important;
  right: clamp(18px, 3vw, 34px) !important;
  transform: translateY(-50%) !important;
}
.gallery-nav {
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
}
.gallery-prev {
  left: clamp(18px, 3vw, 34px) !important;
}
.gallery-next {
  right: clamp(18px, 3vw, 34px) !important;
}
.gallery-modal figcaption {
  display: none !important;
}
.project-detail-copy h2,
.project-detail-copy .section-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem) !important;
  line-height: 1.25 !important;
  overflow: visible !important;
}
.project-detail-copy h1 {
  line-height: 1.25 !important;
  overflow: visible !important;
}
.product-scroll-card h2 {
  line-height: 1.35 !important;
  overflow: visible !important;
}
.payment-panel {
  min-height: 0;
}
.cart-item {
  min-height: 110px;
  align-items: center;
}
.payment-card-slot {
  display: grid;
  gap: 0.65rem;
}
.payment-card-slot > span {
  font-size: 0.75rem;
  color: var(--muted);
}
.payment-card-placeholder {
  width: 150px;
  aspect-ratio: 1.586;
  border: 1px dashed rgba(75, 117, 166, 0.28);
  border-radius: 13px;
  background: linear-gradient(
    135deg,
    rgba(229, 240, 251, 0.72),
    rgba(255, 255, 255, 0.72)
  );
}
.payment-card-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  cursor: zoom-in;
}
.payment-card-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 14, 20, 0.82);
  cursor: zoom-out;
}
.payment-card-lightbox[hidden] {
  display: none;
}
.payment-card-lightbox img {
  width: auto;
  max-width: min(92vw, 760px);
  max-height: 88vh;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  cursor: default;
}
.contact-layout,
.contact-form-wrap {
  margin-top: clamp(1rem, 2vw, 2rem) !important;
}
.service-index {
  color: inherit !important;
}
.contact-hero + .section {
  padding-top: clamp(1rem, 3vw, 2.5rem) !important;
}
@media (max-width: 650px) {
  .gallery-close {
    top: 22px !important;
    right: 18px !important;
    transform: none !important;
  }
  .gallery-nav {
    top: 50% !important;
    bottom: auto !important;
  }
  .gallery-prev {
    left: 10px !important;
  }
  .gallery-next {
    right: 10px !important;
  }
}

/* Stable cards, graphics details and blue contact refinement */
.websites-grid {
  align-items: start !important;
}
.web-card {
  height: 100%;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}
.web-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.web-card-actions {
  margin-top: auto;
}
.web-card-details {
  min-height: 150px;
  max-height: 150px !important;
  opacity: 1 !important;
  grid-template-rows: 1fr !important;
  visibility: hidden;
}
.web-card:hover .web-card-details {
  visibility: visible;
}
.web-feature-list {
  margin-top: 12px;
}
.cart-layout {
  align-items: start !important;
}
.cart-items {
  align-content: start !important;
  grid-auto-rows: minmax(110px, auto);
}
.cart-item {
  height: 110px !important;
  min-height: 110px !important;
}
.cart-summary {
  align-self: start;
}
.payment-panel[hidden] {
  display: none !important;
}
.product-case-link {
  border: 1px solid rgba(63, 99, 140, 0.24) !important;
  border-radius: 999px !important;
  padding: 10px 16px !important;
  text-decoration: none !important;
  width: max-content;
}
.product-case-link:hover {
  background: #315b86 !important;
  color: #fff !important;
}
.gallery-modal {
  padding: 72px 82px !important;
}
.gallery-modal figure {
  max-width: min(1050px, 78vw) !important;
}
.gallery-close {
  top: 22px !important;
  right: 22px !important;
  transform: none !important;
  z-index: 4 !important;
}
.gallery-prev {
  left: 22px !important;
  z-index: 3 !important;
}
.gallery-next {
  right: 22px !important;
  z-index: 3 !important;
}
.gallery-nav {
  top: 50% !important;
  transform: translateY(-50%) !important;
}
.gallery-close,
.gallery-nav {
  background: rgba(25, 48, 73, 0.78) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.project-detail-layout {
  min-height: 520px;
}
.project-detail-copy .eyebrow {
  font-size: 0.92rem !important;
  color: #456b92 !important;
  letter-spacing: 0.12em;
}
.project-detail-code {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 10px;
}
.project-detail-copy .lead {
  white-space: normal !important;
  overflow: visible !important;
}
.project-detail-hero .display {
  font-size: clamp(2.2rem, 5vw, 5.1rem) !important;
  line-height: 1.1 !important;
  overflow: visible !important;
}
.contact-experience {
  background:
    radial-gradient(
      circle at 24% 34%,
      rgba(255, 255, 255, 0.92),
      transparent 28rem
    ),
    linear-gradient(135deg, rgba(235, 247, 255, 0.9), rgba(164, 205, 245, 0.68)) !important;
}
.flow-light {
  background: radial-gradient(
    circle,
    rgba(129, 190, 246, 0.68),
    transparent 70%
  ) !important;
}
.flow-light-two {
  background: radial-gradient(
    circle,
    rgba(191, 225, 255, 0.82),
    transparent 72%
  ) !important;
}
.service-index {
  color: #34597f !important;
}
html[lang="fa"] .service-index {
  font-variant-numeric: normal;
}
@media (max-width: 760px) {
  .web-card {
    min-height: 0;
  }
  .web-card-details {
    min-height: 0;
    max-height: 0 !important;
    visibility: hidden;
  }
  .web-card:hover .web-card-details {
    max-height: 150px !important;
    min-height: 150px;
    visibility: visible;
  }
  .gallery-modal {
    padding: 68px 16px 24px !important;
  }
  .gallery-modal figure {
    max-width: 88vw !important;
  }
  .gallery-prev {
    left: 8px !important;
  }
  .gallery-next {
    right: 8px !important;
  }
  .gallery-close {
    top: 14px !important;
    right: 14px !important;
  }
}

/* Final detail refinements */
.about-hero-lead-small {
  font-size: clamp(0.92rem, 1.25vw, 1.08rem) !important;
  line-height: 1.95 !important;
  max-width: 760px !important;
}
.gallery-prev,
.gallery-next {
  font-family: Arial, sans-serif !important;
  font-size: 1.35rem !important;
  line-height: 1 !important;
  direction: ltr !important;
}

/* Final requested About copy scale */
.about-copy .about-block:first-child .section-title {
  font-size: clamp(1.35rem, 2.25vw, 2.15rem) !important;
  line-height: 1.35 !important;
}
html[dir="rtl"] .about-copy .about-block:first-child .section-title {
  font-size: clamp(1.15rem, 2vw, 1.8rem) !important;
  line-height: 1.65 !important;
}

/* Final Persian service-card type scale */
html[dir="rtl"] .service-item h2 {
  font-size: clamp(1.15rem, 1.9vw, 1.75rem) !important;
}

/* Graphics editorial collage — Lunara-inspired five-image composition */
.graphics-hero {
  padding: clamp(76px, 9vw, 128px) 0 clamp(72px, 8vw, 112px) !important;
  overflow: hidden;
}
.graphics-hero .container {
  width: min(1240px, calc(100% - 40px));
}
.graphics-collage {
  position: relative !important;
  height: clamp(650px, 72vw, 900px) !important;
  max-height: 900px;
  margin-inline: auto;
}
.graphics-center-copy {
  position: absolute;
  left: 50%;
  top: 49%;
  z-index: 4;
  width: min(360px, 31vw);
  text-align: center;
  transform: translate(-50%, -50%);
}
.graphics-center-copy h1 {
  margin: 0;
  font-size: clamp(1.55rem, 2.65vw, 2.85rem);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.graphics-center-copy p {
  max-width: 330px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 1.05vw, 1rem);
  line-height: 1.9;
}
html[dir="rtl"] .graphics-center-copy h1 {
  letter-spacing: 0;
}
.g-shot {
  position: absolute !important;
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 24px 70px rgba(37, 70, 108, 0.13) !important;
  transform: none !important;
  background: rgba(255, 255, 255, 0.22);
}
.g-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.7s ease;
}
.g-shot:hover img {
  transform: scale(1.025);
  filter: saturate(1.04);
}
.g-shot-a {
  width: 26%;
  height: 39%;
  left: 1%;
  top: 4%;
}
.g-shot-b {
  width: 31%;
  height: 28%;
  right: 1%;
  top: 2%;
}
.g-shot-c {
  width: 22%;
  height: 32%;
  left: 8%;
  bottom: 4%;
}
.g-shot-d {
  width: 27%;
  height: 41%;
  right: 4%;
  bottom: 2%;
}
.g-shot-e {
  width: 20%;
  height: 25%;
  left: 40%;
  bottom: 2%;
}
.g-shot-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 18px 14px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(25, 42, 62, 0.62));
  backdrop-filter: blur(0);
  transform: translateY(52%);
  opacity: 0;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    backdrop-filter 0.35s ease;
}
.g-shot:hover .g-shot-overlay,
.g-shot:focus-visible .g-shot-overlay {
  transform: translateY(0);
  opacity: 1;
  backdrop-filter: blur(10px);
}
.g-shot-overlay span {
  font-size: clamp(0.68rem, 0.82vw, 0.82rem);
  line-height: 1.5;
  font-weight: 400;
}
.g-shot-overlay b {
  font-size: 0.82rem;
  font-weight: 400;
}
@media (max-width: 900px) {
  .graphics-collage {
    height: 760px !important;
  }
  .graphics-center-copy {
    width: 38vw;
    top: 48%;
  }
  .g-shot-a {
    width: 31%;
    height: 34%;
    left: 0;
  }
  .g-shot-b {
    width: 34%;
    height: 25%;
    right: 0;
  }
  .g-shot-c {
    width: 28%;
    height: 29%;
    left: 2%;
    bottom: 4%;
  }
  .g-shot-d {
    width: 31%;
    height: 35%;
    right: 0;
    bottom: 2%;
  }
  .g-shot-e {
    width: 24%;
    height: 23%;
    left: 38%;
    bottom: 1%;
  }
}
@media (max-width: 600px) {
  .graphics-hero {
    padding-top: 58px !important;
  }
  .graphics-collage {
    height: 690px !important;
  }
  .graphics-center-copy {
    width: 58%;
    top: 48%;
  }
  .graphics-center-copy h1 {
    font-size: 1.55rem;
  }
  .graphics-center-copy p {
    font-size: 0.78rem;
    margin-top: 9px;
  }
  .g-shot {
    border-radius: 15px !important;
  }
  .g-shot-a {
    width: 39%;
    height: 28%;
    left: 0;
    top: 2%;
  }
  .g-shot-b {
    width: 43%;
    height: 22%;
    right: 0;
    top: 0;
  }
  .g-shot-c {
    width: 35%;
    height: 25%;
    left: 0;
    bottom: 4%;
  }
  .g-shot-d {
    width: 40%;
    height: 30%;
    right: 0;
    bottom: 1%;
  }
  .g-shot-e {
    width: 29%;
    height: 19%;
    left: 36%;
    bottom: 2%;
  }
  .g-shot-overlay {
    padding: 22px 10px 9px;
  }
  .g-shot-overlay span {
    font-size: 0.64rem;
  }
  .g-shot-overlay b {
    font-size: 0.7rem;
  }
}

/* Graphics collage final alignment — compact Lunara-style composition */
.graphics-hero {
  padding: clamp(58px, 6vw, 86px) 0 clamp(46px, 5vw, 72px) !important;
}
.graphics-hero .container {
  width: min(1120px, calc(100% - 36px)) !important;
}
.graphics-collage {
  height: clamp(570px, 61vw, 720px) !important;
  max-height: 720px !important;
}
.graphics-center-copy {
  top: 49% !important;
  width: min(330px, 30vw) !important;
}
.graphics-center-copy h1 {
  font-size: clamp(1.35rem, 2.15vw, 2.15rem) !important;
}
.graphics-center-copy p {
  font-size: clamp(0.76rem, 0.9vw, 0.9rem) !important;
  margin-top: 9px !important;
  line-height: 1.75 !important;
}
.g-shot {
  border-radius: 18px !important;
  border: 1px solid rgba(71, 103, 139, 0.22) !important;
  box-shadow: 0 18px 48px rgba(35, 65, 99, 0.11) !important;
}
.g-shot-a {
  width: 30%;
  height: 47%;
  left: 2%;
  top: 2%;
}
.g-shot-b {
  width: 34%;
  height: 32%;
  right: 2%;
  top: 1%;
}
.g-shot-c {
  width: 27%;
  height: 36%;
  left: 4%;
  bottom: 1%;
}
.g-shot-d {
  width: 31%;
  height: 46%;
  right: 3%;
  bottom: 0;
}
.g-shot-e {
  width: 23%;
  height: 27%;
  left: 38.5%;
  bottom: 0;
}
.g-shot-overlay {
  padding: 24px 13px 10px !important;
}
.g-shot-overlay span {
  font-size: clamp(0.6rem, 0.7vw, 0.72rem) !important;
}
.g-shot-overlay b {
  font-size: 0.7rem !important;
}
.product-scroll-card h2 {
  font-size: clamp(1.08rem, 1.55vw, 1.42rem) !important;
  line-height: 1.5 !important;
}
.product-scroll-card.is-highlighted {
  outline: 1px solid rgba(49, 90, 132, 0.55);
  box-shadow: 0 28px 80px rgba(49, 90, 132, 0.22) !important;
}
@media (max-width: 900px) {
  .graphics-collage {
    height: 650px !important;
  }
  .graphics-center-copy {
    width: 34vw !important;
  }
  .g-shot-a {
    width: 32%;
    height: 42%;
    left: 0;
  }
  .g-shot-b {
    width: 36%;
    height: 29%;
    right: 0;
  }
  .g-shot-c {
    width: 29%;
    height: 32%;
    left: 1%;
    bottom: 2%;
  }
  .g-shot-d {
    width: 33%;
    height: 41%;
    right: 0;
  }
  .g-shot-e {
    width: 24%;
    height: 24%;
    left: 38%;
    bottom: 0;
  }
}
@media (max-width: 600px) {
  .graphics-collage {
    height: 560px !important;
  }
  .graphics-center-copy {
    width: 54% !important;
  }
  .graphics-center-copy h1 {
    font-size: 1.28rem !important;
  }
  .graphics-center-copy p {
    font-size: 0.72rem !important;
  }
  .g-shot-a {
    width: 39%;
    height: 31%;
    left: 0;
  }
  .g-shot-b {
    width: 43%;
    height: 24%;
    right: 0;
  }
  .g-shot-c {
    width: 36%;
    height: 27%;
    left: 0;
    bottom: 2%;
  }
  .g-shot-d {
    width: 40%;
    height: 32%;
    right: 0;
  }
  .g-shot-e {
    width: 28%;
    height: 20%;
    left: 36%;
    bottom: 0;
  }
}

/* Data-driven Lunara collage controls */
.graphics-collage {
  --graphics-gap: 6px !important;
}
.g-shot {
  margin: 0 !important;
}
.g-slot-a {
  width: 30%;
  height: 47%;
  left: 2%;
  top: 2%;
}
.g-slot-b {
  width: 34%;
  height: 32%;
  right: 2%;
  top: 1%;
}
.g-slot-c {
  width: 27%;
  height: 36%;
  left: 4%;
  bottom: 1%;
}
.g-slot-d {
  width: 31%;
  height: 46%;
  right: 3%;
  bottom: 0;
}
.g-slot-e {
  width: 23%;
  height: 27%;
  left: 38.5%;
  bottom: 0;
}
.g-size-small {
  --size-factor: 0.86;
}
.g-size-medium {
  --size-factor: 1;
}
.g-size-wide {
  --size-factor: 1.08;
}
.g-size-tall {
  --size-factor: 1.08;
}
.g-size-large {
  --size-factor: 1.12;
}
.g-shot-overlay span {
  font-size: clamp(0.58rem, 0.66vw, 0.68rem) !important;
}
/* The visual gap is controlled by --graphics-gap above. Keep it at 6px for the current composition. */
@media (max-width: 900px) {
  .g-slot-a {
    width: 32%;
    height: 42%;
    left: 0;
  }
  .g-slot-b {
    width: 36%;
    height: 29%;
    right: 0;
  }
  .g-slot-c {
    width: 29%;
    height: 32%;
    left: 1%;
    bottom: 2%;
  }
  .g-slot-d {
    width: 33%;
    height: 41%;
    right: 0;
  }
  .g-slot-e {
    width: 24%;
    height: 24%;
    left: 38%;
    bottom: 0;
  }
}
@media (max-width: 600px) {
  .g-slot-a {
    width: 39%;
    height: 31%;
    left: 0;
  }
  .g-slot-b {
    width: 43%;
    height: 24%;
    right: 0;
  }
  .g-slot-c {
    width: 36%;
    height: 27%;
    left: 0;
    bottom: 2%;
  }
  .g-slot-d {
    width: 40%;
    height: 32%;
    right: 0;
  }
  .g-slot-e {
    width: 28%;
    height: 20%;
    left: 36%;
    bottom: 0;
  }
}

/* Functional size presets and tighter inward spacing */
.g-shot {
  transform: scale(var(--size-factor, 1)) !important;
}
.g-slot-a {
  left: 3.5%;
  transform-origin: left top;
}
.g-slot-b {
  right: 3.5%;
  transform-origin: right top;
}
.g-slot-c {
  left: 6%;
  transform-origin: left bottom;
}
.g-slot-d {
  right: 5%;
  transform-origin: right bottom;
}
.g-slot-e {
  left: 38.5%;
  transform-origin: center bottom;
}
.g-size-small {
  --size-factor: 0.88;
}

.g-size-wide {
  --size-factor: 1.04;
}
.g-size-tall {
  --size-factor: 1.05;
}
.g-size-large {
  --size-factor: 1.07;
}
@media (max-width: 900px) {
  .g-shot {
    --size-factor: 1 !important;
  }
  .g-slot-a {
    left: 1%;
  }
  .g-slot-b {
    right: 1%;
  }
  .g-slot-c {
    left: 2%;
  }
  .g-slot-d {
    right: 1%;
  }
}
@media (max-width: 600px) {
  .g-shot {
    --size-factor: 1 !important;
  }
  .g-slot-a {
    left: 0;
  }
  .g-slot-b {
    right: 0;
  }
  .g-slot-c {
    left: 0;
  }
  .g-slot-d {
    right: 0;
  }
}

/* SORIEL Shop cover fills the website card media area */
.web-card[data-code="SOR-WEB-005"] .card-media {
  background: #e8eef2 !important;
}
.web-card[data-code="SOR-WEB-005"] .card-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 43% !important;
  padding: 0 !important;
  background: none !important;
}

/* Final SORIEL editorial staircase — follows the approved sketch */
.graphics-hero {
  padding: clamp(52px, 6vw, 84px) 0 clamp(48px, 6vw, 84px) !important;
}
.graphics-hero .container {
  width: min(1320px, calc(100% - 34px)) !important;
}
.graphics-collage {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 2.28fr) !important;
  gap: clamp(24px, 4vw, 64px) !important;
  align-items: start !important;
  height: auto !important;
  max-height: none !important;
  min-height: clamp(690px, 72vw, 940px) !important;
}
.graphics-center-copy {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  width: auto !important;
  text-align: left !important;
  align-self: start !important;
  padding-top: clamp(48px, 9vw, 130px) !important;
  z-index: 3 !important;
}
html[dir="rtl"] .graphics-center-copy {
  text-align: right !important;
}
.graphics-center-copy h1 {
  font-size: clamp(1.45rem, 2.25vw, 2.35rem) !important;
  line-height: 1.28 !important;
}
.graphics-center-copy p {
  margin: 12px 0 0 !important;
  max-width: 300px !important;
  font-size: clamp(0.78rem, 0.92vw, 0.92rem) !important;
}
.graphics-editorial-columns {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  gap: var(--graphics-gap, 10px);
  min-width: 0;
  min-height: clamp(650px, 68vw, 900px);
}
.graphics-editorial-column {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--graphics-gap, 10px);
}
.graphics-editorial-column[data-column="1"] {
  max-width: 14%;
  padding-bottom: 0;
}
.graphics-editorial-column[data-column="2"] {
  max-width: 17%;
  padding-bottom: 1.5%;
}
.graphics-editorial-column[data-column="3"] {
  max-width: 20%;
  padding-bottom: 3%;
}
.graphics-editorial-column[data-column="4"] {
  max-width: 23%;
  padding-bottom: 4.5%;
}
.graphics-editorial-column[data-column="5"] {
  max-width: 26%;
  padding-bottom: 6%;
}
.g-shot {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  transform: none !important;
  transform-origin: center !important;
  border: 2px solid rgba(69, 103, 143, 0.42) !important;
  border-radius: 17px !important;
  box-shadow: 0 16px 42px rgba(39, 67, 102, 0.13) !important;
  aspect-ratio: 1/1.08;
  background: rgba(255, 255, 255, 0.28) !important;
}
.g-size-small {
  aspect-ratio: 1/0.82 !important;
}
.g-size-medium {
  aspect-ratio: 1/1.02 !important;
}
.g-size-wide {
  aspect-ratio: 1.22/1 !important;
}
.g-size-tall {
  aspect-ratio: 0.82/1.16 !important;
}
.g-size-large {
  aspect-ratio: 1/1.28 !important;
}
.g-shot img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.g-shot-overlay {
  padding: 28px 12px 10px !important;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(24, 42, 65, 0.72)
  ) !important;
  transform: translateY(42%) !important;
}
.g-shot:hover .g-shot-overlay,
.g-shot:focus-visible .g-shot-overlay {
  transform: translateY(0) !important;
}
.g-shot-overlay span {
  font-size: clamp(0.56rem, 0.64vw, 0.68rem) !important;
}
.g-shot-overlay b {
  font-size: 0.72rem !important;
}
@media (max-width: 900px) {
  .graphics-collage {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    gap: 28px !important;
  }
  .graphics-center-copy {
    padding-top: 0 !important;
    text-align: center !important;
    justify-self: center !important;
  }
  .graphics-center-copy p {
    margin-inline: auto !important;
  }
  .graphics-editorial-columns {
    min-height: 620px;
    gap: 7px;
  }
  .graphics-editorial-column {
    gap: 7px;
  }
  .g-shot {
    border-width: 1.5px !important;
    border-radius: 13px !important;
  }
}
@media (max-width: 600px) {
  .graphics-editorial-columns {
    min-height: 500px;
    gap: 5px;
    overflow: hidden;
  }
  .graphics-editorial-column {
    gap: 5px;
  }
  .graphics-editorial-column[data-column="1"] {
    max-width: 15%;
  }
  .graphics-editorial-column[data-column="2"] {
    max-width: 18%;
  }
  .graphics-editorial-column[data-column="3"] {
    max-width: 20%;
  }
  .graphics-editorial-column[data-column="4"] {
    max-width: 22%;
  }
  .graphics-editorial-column[data-column="5"] {
    max-width: 25%;
  }
  .g-shot {
    border-width: 1px !important;
    border-radius: 9px !important;
  }
  .g-shot-overlay {
    display: none !important;
  }
}

/* Unified section surfaces and final footer alignment */
.contact-experience {
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 255, 255, 0.76),
      transparent 25rem
    ),
    linear-gradient(
      135deg,
      rgba(216, 226, 250, 0.9),
      rgba(210, 218, 246, 0.8) 52%,
      rgba(194, 219, 248, 0.76)
    ) !important;
}
.flow-light,
.flow-light-two {
  background: radial-gradient(
    circle,
    rgba(151, 176, 233, 0.62),
    transparent 72%
  ) !important;
}

/* Final graphics direction, scale and baseline correction */
.graphics-hero .container {
  width: min(1420px, calc(100% - 34px)) !important;
}
.graphics-collage {
  direction: ltr !important;
  grid-template-columns: minmax(270px, 0.62fr) minmax(0, 2.38fr) !important;
  gap: clamp(34px, 4.5vw, 74px) !important;
  align-items: start !important;
}
.graphics-center-copy {
  grid-column: 1 !important;
  align-self: start !important;
  padding-top: clamp(150px, 18vw, 265px) !important;
  text-align: left !important;
}
html[dir="rtl"] .graphics-center-copy {
  direction: rtl !important;
  text-align: right !important;
}
.graphics-center-copy h1 {
  font-size: clamp(2.25rem, 3.65vw, 4.35rem) !important;
  line-height: 1.08 !important;
  max-width: 430px !important;
}
.graphics-center-copy p {
  margin-top: 18px !important;
  max-width: 390px !important;
  font-size: clamp(0.98rem, 1.25vw, 1.18rem) !important;
  line-height: 1.75 !important;
}
.graphics-editorial-columns {
  grid-column: 2 !important;
  direction: ltr !important;
  min-height: clamp(710px, 72vw, 980px) !important;
  gap: var(--graphics-gap, 15px) !important;
  align-items: flex-end !important;
}
.graphics-editorial-column {
  gap: var(--graphics-gap, 15px) !important;
  padding-bottom: 0 !important;
  justify-content: flex-end !important;
}
.graphics-editorial-column[data-column="1"],
.graphics-editorial-column[data-column="2"],
.graphics-editorial-column[data-column="3"],
.graphics-editorial-column[data-column="4"],
.graphics-editorial-column[data-column="5"] {
  padding-bottom: 0 !important;
}
.graphics-editorial-column[data-column="1"] {
  max-width: 15% !important;
}
.graphics-editorial-column[data-column="2"] {
  max-width: 18% !important;
}
.graphics-editorial-column[data-column="3"] {
  max-width: 20% !important;
}
.graphics-editorial-column[data-column="4"] {
  max-width: 22% !important;
}
.graphics-editorial-column[data-column="5"] {
  max-width: 25% !important;
}
.g-shot {
  border-width: 2px !important;
  border-radius: 18px !important;
}
@media (max-width: 900px) {
  .graphics-collage {
    direction: ltr !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }
  .graphics-center-copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
    padding-top: 24px !important;
    text-align: center !important;
    justify-self: center !important;
  }
  html[dir="rtl"] .graphics-center-copy {
    text-align: center !important;
  }
  .graphics-center-copy h1 {
    font-size: clamp(2rem, 7vw, 3.2rem) !important;
  }
  .graphics-center-copy p {
    font-size: clamp(0.92rem, 2.4vw, 1.08rem) !important;
    margin-inline: auto !important;
  }
  .graphics-editorial-columns {
    grid-column: 1 !important;
    grid-row: 2 !important;
    min-height: 650px !important;
    gap: 10px !important;
  }
  .graphics-editorial-column {
    gap: 10px !important;
  }
}
@media (max-width: 600px) {
  .graphics-editorial-columns {
    min-height: 520px !important;
    gap: 7px !important;
  }
  .graphics-editorial-column {
    gap: 7px !important;
  }
}

/* Authoritative editorial staircase: 1–2–3–4–5 columns, five-item column on the right */
.graphics-collage {
  direction: ltr !important;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 2.22fr) !important;
  align-items: end !important;
}
.graphics-center-copy {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: center !important;
  padding-top: clamp(70px, 10vw, 150px) !important;
}
.graphics-editorial-columns {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-end !important;
  justify-content: flex-end !important;
  gap: var(--graphics-gap, 15px) !important;
  width: 100% !important;
  min-height: clamp(720px, 72vw, 980px) !important;
  overflow: visible !important;
}
.graphics-editorial-column {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-self: stretch !important;
  gap: var(--graphics-gap, 15px) !important;
  padding-bottom: 0 !important;
  min-width: 0 !important;
}
.graphics-editorial-column[data-column="1"] {
  flex: 0 0 14% !important;
  max-width: 14% !important;
}
.graphics-editorial-column[data-column="2"] {
  flex: 0 0 17% !important;
  max-width: 17% !important;
}
.graphics-editorial-column[data-column="3"] {
  flex: 0 0 20% !important;
  max-width: 20% !important;
}
.graphics-editorial-column[data-column="4"] {
  flex: 0 0 22% !important;
  max-width: 22% !important;
}
.graphics-editorial-column[data-column="5"] {
  flex: 0 0 25% !important;
  max-width: 25% !important;
}
.graphics-editorial-column .g-shot {
  flex: 0 0 auto !important;
  width: 100% !important;
  min-height: 0 !important;
}
@media (max-width: 900px) {
  .graphics-collage {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }
  .graphics-center-copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: auto !important;
    padding-top: 24px !important;
  }
  .graphics-editorial-columns {
    grid-column: 1 !important;
    grid-row: 2 !important;
    min-height: 650px !important;
  }
}

/* Final four-column editorial spacing */
.graphics-editorial-columns {
  gap: var(--graphics-gap, 20px) !important;
}
.graphics-editorial-column {
  gap: var(--graphics-gap, 20px) !important;
}

@media (max-width: 900px) {
  .graphics-editorial-columns,
  .graphics-editorial-column {
    gap: 14px !important;
  }
}
@media (max-width: 600px) {
  .graphics-editorial-columns,
  .graphics-editorial-column {
    gap: 10px !important;
  }
}

/* Final verified graphics spacing — 1 / 2 / 3 / 4 / 4 items */
.graphics-editorial-columns,
.graphics-editorial-column {
  gap: var(--graphics-gap, 25px) !important;
}
@media (max-width: 900px) {
  .graphics-editorial-columns,
  .graphics-editorial-column {
    gap: 17px !important;
  }
}
@media (max-width: 600px) {
  .graphics-editorial-columns,
  .graphics-editorial-column {
    gap: 12px !important;
  }
}

/* Final requested refinements */
.graphics-center-copy {
  padding-top: clamp(34px, 5.5vw, 82px) !important;
}
.blog-card h2 {
  font-size: 1.42rem !important;
  line-height: 1.22 !important;
}
.crystal-flow {
  background: radial-gradient(
    circle at 50% 42%,
    rgba(255, 255, 255, 0.96),
    rgba(209, 224, 247, 0.34) 42%,
    transparent 72%
  ) !important;
}
.flow-glass {
  filter: drop-shadow(0 34px 65px rgba(69, 96, 136, 0.16)) brightness(1.04) !important;
}
.flow-light,
.flow-light-two {
  background: radial-gradient(
    circle,
    rgba(151, 176, 233, 0.58),
    transparent 72%
  ) !important;
}
@media (max-width: 900px) {
  .graphics-center-copy {
    padding-top: 18px !important;
  }
}

/* Mobile responsive corrections — Graphics, Contact and footer */
@media (max-width: 700px) {
  .graphics-hero {
    padding: 36px 0 34px !important;
  }
  .graphics-collage {
    gap: 10px !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  .graphics-center-copy {
    padding-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .graphics-center-copy h1 {
    font-size: clamp(2rem, 9vw, 3rem) !important;
    line-height: 1.08 !important;
  }
  .graphics-center-copy p {
    margin-top: 12px !important;
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
  }
  .graphics-editorial-columns {
    width: 100% !important;
    min-height: 500px !important;
    gap: 5px !important;
    padding-inline: 2px !important;
    overflow: hidden !important;
    justify-content: center !important;
  }
  .graphics-editorial-column {
    gap: 5px !important;
    min-width: 0 !important;
  }
  .graphics-editorial-column[data-column="1"] {
    flex: 0 0 12% !important;
    max-width: 12% !important;
  }
  .graphics-editorial-column[data-column="2"] {
    flex: 0 0 16% !important;
    max-width: 16% !important;
  }
  .graphics-editorial-column[data-column="3"] {
    flex: 0 0 19% !important;
    max-width: 19% !important;
  }
  .graphics-editorial-column[data-column="4"] {
    flex: 0 0 22% !important;
    max-width: 22% !important;
  }
  .graphics-editorial-column[data-column="5"] {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
  .graphics-filter-wrap {
    margin-top: 18px !important;
  }
  .graphics-filters {
    gap: 8px !important;
    justify-content: center !important;
  }
  .graphics-filters .filter-btn {
    padding: 9px 14px !important;
    font-size: 0.88rem !important;
  }

  .contact-experience {
    gap: 14px !important;
    padding: 18px !important;
  }
  .crystal-flow {
    min-height: 230px !important;
    border-radius: 22px !important;
  }
  .flow-glass {
    top: 12% !important;
    width: min(180px, 34%) !important;
  }
  .contact-form-wrap {
    margin-top: 0 !important;
  }
  .contact-form {
    padding: 20px 18px !important;
  }

  .signature-footer {
    padding-top: 42px !important;
    padding-bottom: 30px !important;
  }
  .signature-footer .footer-bottom-clean.footer-detached {
    gap: 14px !important;
    margin-bottom: 24px !important;
  }
  .signature-footer .footer-social-wrap {
    margin-top: 0 !important;
  }
}

/* Final mobile alignment fixes — authoritative */
@media (max-width: 700px) {
  /* Graphics: bring the editorial grid closer to its heading */
  .graphics-hero {
    padding-top: 34px !important;
    padding-bottom: 20px !important;
  }
  .graphics-collage {
    row-gap: 0 !important;
    gap: 0 !important;
  }
  .graphics-center-copy {
    margin: 0 auto !important;
    padding: 0 !important;
  }
  .graphics-editorial-columns {
    min-height: 410px !important;
    margin-top: -55px !important;
  }

  /* Contact: prompt on its own row, WhatsApp and Telegram side by side */
  .contact-shortcuts {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    align-items: center !important;
  }
  .contact-shortcuts > span {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 2px !important;
  }
  .contact-shortcuts > a {
    width: 100% !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  /* Footer: remove the staggered layout and center every line */
  .site-footer.signature-footer {
    padding: 28px 0 26px !important;
  }
  .signature-footer .footer-bottom-clean.footer-detached {
    width: min(360px, 88vw) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 0 auto 18px !important;
    padding: 14px 0 0 !important;
    text-align: center !important;
  }
  .signature-footer .footer-bottom-clean.footer-detached span,
  .signature-footer .footer-bottom-clean.footer-detached span:first-child,
  .signature-footer .footer-bottom-clean.footer-detached span:nth-child(2),
  .signature-footer .footer-bottom-clean.footer-detached span:last-child {
    display: inline-flex !important;
    width: auto !important;
    white-space: nowrap !important;
    flex: 0 0 auto !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    inset: auto !important;
    transform: none !important;
    justify-self: auto !important;
    text-align: center !important;
  }
  .signature-footer .footer-social-wrap {
    width: 100% !important;
    margin: 0 auto !important;
  }
  .signature-footer .footer-social-row,
  .signature-footer .footer-social-line {
    width: min(360px, 86vw) !important;
  }
  .signature-footer .footer-social-row {
    justify-content: space-between !important;
  }
}

@media (max-width: 430px) {
  .graphics-editorial-columns {
    min-height: 380px !important;
    margin-top: -2px !important;
  }
}

.payment-field{align-items:center;}
[data-card-number]{white-space:nowrap;display:inline-block;direction:ltr;unicode-bidi:isolate;font-size:.92em;}
.payment-field{grid-template-columns:1fr auto;}
