@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/vazirmatn.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --brand: #067f9c;
  --brand-light: #28a7c5;
  --brand-dark: #045e74;
  --silver: #808285;
  --ink: #102a33;
  --text: #38515a;
  --muted: #71858c;
  --line: #dce8eb;
  --mist: #f3f8f9;
  --paper: #ffffff;
  --soft-blue: #e7f5f8;
  --shadow-sm: 0 10px 30px rgba(28, 71, 84, 0.07);
  --shadow-lg: 0 24px 70px rgba(28, 71, 84, 0.12);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  direction: rtl;
  background:
    radial-gradient(circle at 94% 5%, rgba(40, 167, 197, 0.11), transparent 31rem),
    radial-gradient(circle at 3% 48%, rgba(128, 130, 133, 0.07), transparent 25rem),
    #f7fafb;
  color: var(--text);
  font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: rgba(40, 167, 197, 0.25);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease,
    transform 180ms ease, box-shadow 180ms ease;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-main {
  min-height: 60vh;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 99999;
  top: 12px;
  right: 12px;
  width: auto;
  height: auto;
  clip: auto;
  border-radius: 10px;
  background: var(--ink);
  padding: 10px 15px;
  color: white;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(220, 232, 235, 0.78);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 32px rgba(28, 71, 84, 0.08);
}

.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 11px;
}

.site-brand__mark,
.site-brand__custom {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  overflow: hidden;
  border: 1px solid #d5e7eb;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 8px 24px rgba(6, 127, 156, 0.13);
}

.site-brand__mark {
  background: #fff;
}

.site-brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.site-brand__custom img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-brand:hover .site-brand__mark,
.site-brand:hover .site-brand__custom {
  border-color: rgba(6, 127, 156, 0.4);
  transform: translateY(-1px);
}

.site-brand__text {
  line-height: 1.1;
}

.site-brand__text strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.site-brand__text small {
  display: block;
  margin-top: 6px;
  color: var(--brand);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  direction: ltr;
  unicode-bidi: isolate;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-navigation {
  margin-inline: auto;
}

.primary-menu,
.footer-menu,
.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 1px;
}

.primary-menu a {
  position: relative;
  display: block;
  padding: 11px 9px;
  color: #526a72;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.primary-menu a::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 5px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--brand);
  transition: width 180ms ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
  color: var(--ink);
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current-menu-ancestor > a::after {
  width: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search,
.menu-toggle {
  display: inline-grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  color: var(--ink);
}

.header-search:hover,
.menu-toggle:hover {
  border-color: rgba(6, 127, 156, 0.4);
  background: var(--soft-blue);
  color: var(--brand);
}

.header-search svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 4px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons and shared components */
.button,
.wp-element-button,
button[type="submit"] {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  box-shadow: 0 12px 26px rgba(6, 127, 156, 0.18);
  color: white;
  cursor: pointer;
  font-weight: 800;
  padding: 10px 20px;
}

.button:hover,
.wp-element-button:hover,
button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 32px rgba(6, 127, 156, 0.25);
  color: white;
}

.button--small {
  min-height: 43px;
  border-radius: 13px;
  font-size: 13px;
  padding-inline: 17px;
}

.button--outline {
  border-color: #cfe2e7;
  background: white;
  box-shadow: none;
  color: var(--ink);
}

.button--outline:hover {
  border-color: var(--brand-light);
  background: var(--soft-blue);
  box-shadow: none;
  color: var(--brand-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 99px;
  background: var(--brand-light);
}

.section {
  padding-block: 86px;
}

.section--soft {
  border-block: 1px solid #e5eef0;
  background: rgba(238, 246, 248, 0.74);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 9px 0 0;
  color: var(--ink);
  font-size: clamp(27px, 4vw, 38px);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.section-heading p {
  max-width: 640px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 850;
}

.section-link:hover {
  gap: 12px;
  color: var(--brand-dark);
}

/* Home hero */
.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e1ecef;
  background:
    radial-gradient(circle at 87% 25%, rgba(40, 167, 197, 0.2), transparent 27rem),
    linear-gradient(145deg, #ffffff, #edf7f9 62%, #f8fbfc);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: linear-gradient(rgba(6, 127, 156, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 127, 156, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to left, black, transparent 65%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 680px;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  padding-block: 76px;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 19px 0 0;
  color: var(--ink);
  font-size: clamp(42px, 6.4vw, 72px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1.25;
}

.hero-copy h1 span {
  display: block;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  max-width: 660px;
  margin: 22px 0 0;
  color: #60777f;
  font-size: 17px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 29px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 36px;
  border-top: 1px solid #dbe8eb;
  padding-top: 24px;
}

.hero-stat strong {
  display: block;
  color: var(--ink);
  font-size: 21px;
  font-weight: 950;
}

.hero-stat small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.hero-showcase {
  position: relative;
  max-width: 520px;
  margin-inline: auto;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: -35px;
  border-radius: 999px;
  background: rgba(6, 127, 156, 0.1);
  filter: blur(45px);
}

.hero-panel {
  position: relative;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.hero-art,
.card-art,
.single-visual {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, #dff4f8, #48aec4 54%, #066f89);
}

.hero-art {
  aspect-ratio: 4 / 3;
  border-radius: 22px;
}

.hero-art::before,
.card-art::before,
.single-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -20%;
  left: -15%;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.hero-art::after,
.card-art::after,
.single-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -18%;
  bottom: -32%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(7, 40, 51, 0.24);
}

.hero-art.has-image,
.card-art.has-image,
.single-visual.has-image {
  background-position: center;
  background-size: cover;
}

.hero-art.has-image::before,
.card-art.has-image::before,
.single-visual.has-image::before {
  inset: 0;
  width: auto;
  border-radius: 0;
  background: linear-gradient(to top, rgba(8, 35, 44, 0.76), rgba(8, 35, 44, 0.02) 70%);
}

.visual-grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.34;
  background-image: linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom right, black, transparent 70%);
}

.visual-letter {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(70px, 11vw, 150px);
  font-weight: 950;
  text-shadow: 0 18px 45px rgba(7, 40, 51, 0.2);
}

.hero-art-content {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  color: white;
}

.content-pill {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(18, 57, 69, 0.3);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 10px;
  backdrop-filter: blur(10px);
}

.hero-art-content h2 {
  margin: 7px 0 0;
  color: white;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 950;
  line-height: 1.35;
}

.hero-art-content p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.hero-mini {
  display: grid;
  min-height: 72px;
  place-items: center;
  border-radius: 15px;
  color: white;
  font-size: 11px;
  font-weight: 850;
}

.hero-mini:nth-child(1) { background: linear-gradient(145deg, #8f6cc0, #4b3675); }
.hero-mini:nth-child(2) { background: linear-gradient(145deg, #6d858e, #2e454e); }
.hero-mini:nth-child(3) { background: linear-gradient(145deg, #de8a73, #6c4058); }

.hero-floating-note {
  position: absolute;
  z-index: 5;
  right: -26px;
  bottom: -23px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid white;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
  padding: 12px 15px;
  backdrop-filter: blur(14px);
}

.hero-floating-note span:first-child {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 12px;
  background: var(--soft-blue);
  color: var(--brand);
  font-weight: 950;
}

.hero-floating-note strong {
  display: block;
  color: var(--ink);
  font-size: 11px;
}

.hero-floating-note small {
  display: block;
  color: var(--muted);
  font-size: 9px;
}

/* Cards and grids */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.content-card {
  overflow: hidden;
  border: 1px solid #dfeaec;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.content-card:hover {
  border-color: rgba(6, 127, 156, 0.28);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.content-card__link {
  display: block;
}

.card-art {
  aspect-ratio: 4 / 3;
}

.card-art--violet { background: linear-gradient(145deg, #ede6f7, #886ab6 54%, #463466); }
.card-art--sunset { background: linear-gradient(145deg, #fde7df, #d98269 54%, #6d4057); }
.card-art--mint { background: linear-gradient(145deg, #dcf5f0, #42a994 54%, #1e655b); }
.card-art--steel { background: linear-gradient(145deg, #e5ecef, #748a93 54%, #344a53); }
.card-art--gold { background: linear-gradient(145deg, #fff1d5, #d6a353 54%, #7d5b28); }

.card-art__top {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-art__arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(24, 62, 74, 0.25);
  color: white;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(8px);
}

.content-card:hover .card-art__arrow {
  opacity: 1;
  transform: none;
}

.content-card__body {
  padding: 20px;
}

.content-card__eyebrow {
  margin: 0;
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
}

.content-card h3 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.45;
}

.content-card:hover h3 {
  color: var(--brand-dark);
}

.content-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 9px 0 0;
  color: #70838a;
  font-size: 13px;
  line-height: 1.85;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.content-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 13px;
  margin-top: 15px;
  color: #91a0a5;
  font-size: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #dce9ec;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-sm);
  padding: 25px;
}

.service-card::after {
  content: "";
  position: absolute;
  left: -45px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--soft-blue);
  transition: transform 280ms ease;
}

.service-card:hover {
  border-color: rgba(6, 127, 156, 0.28);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-card:hover::after {
  transform: scale(1.2);
}

.service-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 16px;
  background: var(--soft-blue);
  color: var(--brand);
  font-size: 20px;
  font-weight: 950;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.service-card p {
  position: relative;
  z-index: 2;
  min-height: 74px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.service-card .section-link {
  position: relative;
  z-index: 2;
  margin-top: 13px;
  font-size: 11px;
}

.empty-content {
  grid-column: 1 / -1;
  border: 1px dashed #cbdfe4;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  padding: 45px 25px;
  color: var(--muted);
  text-align: center;
}

.empty-content strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 17px;
}

.home-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid #bcdde5;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #e8f7fa, #ffffff 55%, #edf4f5);
  box-shadow: var(--shadow-sm);
  padding: 42px 45px;
}

.home-cta::after {
  content: "";
  position: absolute;
  left: -80px;
  top: -100px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(40, 167, 197, 0.15);
  filter: blur(20px);
}

.home-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.home-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 4vw, 36px);
  font-weight: 950;
  line-height: 1.45;
}

.home-cta p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* Archive, search, pages */
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e0ebee;
  background: linear-gradient(135deg, white, #ebf6f8);
  padding-block: 78px 66px;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 4%;
  top: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(40, 167, 197, 0.13);
  filter: blur(50px);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1.35;
}

.page-hero p {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.archive-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  border: 1px solid #dce8eb;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-sm);
  padding: 9px;
}

.archive-search {
  position: relative;
  flex: 1;
}

.archive-search input,
.bartar-form input,
.bartar-form textarea,
.bartar-form select,
.search-form input[type="search"] {
  width: 100%;
  border: 1px solid #d7e5e8;
  border-radius: 13px;
  outline: none;
  background: #fbfdfd;
  color: var(--ink);
  padding: 12px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.archive-search input:focus,
.bartar-form input:focus,
.bartar-form textarea:focus,
.bartar-form select:focus,
.search-form input[type="search"]:focus {
  border-color: rgba(6, 127, 156, 0.55);
  background: white;
  box-shadow: 0 0 0 4px rgba(6, 127, 156, 0.08);
}

.archive-count {
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--soft-blue);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 850;
  padding: 12px 15px;
}

.pagination {
  margin-top: 38px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.page-numbers {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--text);
  font-size: 12px;
  font-weight: 750;
  padding-inline: 10px;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
}

.entry-shell {
  width: min(860px, calc(100% - 32px));
  margin-inline: auto;
  padding-block: 70px;
}

.entry-shell--wide {
  width: min(1100px, calc(100% - 32px));
}

.entry-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(35px, 5vw, 56px);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1.35;
}

.entry-content {
  color: #405962;
  font-size: 16px;
  line-height: 2.05;
}

.entry-content > * + * {
  margin-top: 1.25em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.5;
}

.entry-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.entry-content blockquote {
  margin-inline: 0;
  border-right: 4px solid var(--brand-light);
  border-radius: 12px;
  background: var(--soft-blue);
  padding: 18px 22px;
}

/* Single content */
.single-top {
  padding-block: 54px 70px;
}

.single-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 55px;
}

.single-visual {
  aspect-ratio: 16 / 10;
  border: 8px solid white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.single-copy h1 {
  margin: 13px 0 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.3;
}

.single-copy__summary {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 21px;
}

.meta-chip {
  border: 1px solid #d2e3e7;
  border-radius: 999px;
  background: white;
  color: #526b74;
  font-size: 10px;
  font-weight: 750;
  padding: 6px 11px;
}

.single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.single-details {
  border-block: 1px solid #e1ecef;
  background: #eff7f8;
  padding-block: 52px;
}

.single-details__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 55px;
}

.single-details h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 26px;
  font-weight: 950;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.detail-item {
  border: 1px solid #d8e7ea;
  border-radius: 16px;
  background: white;
  padding: 16px;
}

.detail-item small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.detail-item strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 13px;
}

.video-section {
  padding-block: 70px;
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 8px solid white;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 26px;
}

.contact-cards {
  display: grid;
  align-content: start;
  gap: 12px;
}

.contact-card,
.bartar-form {
  border: 1px solid #dce8eb;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-sm);
}

.contact-card {
  padding: 20px;
}

.contact-card strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.contact-card span,
.contact-card a {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.bartar-form {
  padding: 27px;
}

.bartar-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.bartar-form__field {
  display: grid;
  gap: 7px;
}

.bartar-form__field--full {
  grid-column: 1 / -1;
}

.bartar-form label {
  color: #526870;
  font-size: 12px;
  font-weight: 800;
}

.bartar-form textarea {
  min-height: 150px;
  resize: vertical;
}

.bartar-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.bartar-form__note {
  color: var(--muted);
  font-size: 10px;
}

.bartar-alert {
  margin-bottom: 17px;
  border: 1px solid #b8ddd1;
  border-radius: 13px;
  background: #ecfaf5;
  color: #236b57;
  font-size: 12px;
  font-weight: 750;
  padding: 11px 14px;
}

.bartar-alert--error {
  border-color: #efc8c8;
  background: #fff2f2;
  color: #944545;
}

.bartar-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

/* Footer */
.site-footer {
  margin-top: 80px;
  border-top: 1px solid #dce8eb;
  background: #edf5f7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.8fr 0.8fr;
  gap: 45px;
  padding-block: 58px;
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.footer-menu,
.footer-contact {
  display: grid;
  gap: 8px;
  color: #63787f;
  font-size: 11px;
}

.footer-menu--columns {
  grid-template-columns: repeat(2, 1fr);
}

.footer-menu a:hover,
.footer-contact a:hover {
  color: var(--brand);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.social-links a {
  border: 1px solid #d1e2e6;
  border-radius: 10px;
  background: white;
  color: #5c737b;
  font-size: 9px;
  font-weight: 750;
  padding: 6px 9px;
}

.social-links a:hover {
  border-color: var(--brand-light);
  color: var(--brand);
}

.footer-bottom {
  border-top: 1px solid #d7e5e8;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 17px;
  color: #7c9096;
  font-size: 9px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1120px) {
  .main-navigation {
    position: fixed;
    z-index: 999;
    top: 80px;
    right: 16px;
    left: 16px;
    display: none;
    max-height: calc(100vh - 105px);
    overflow-y: auto;
    border: 1px solid #d7e5e8;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    padding: 12px;
  }

  .admin-bar .main-navigation { top: 112px; }
  .main-navigation.is-open { display: block; }
  .primary-menu { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .primary-menu a { border-radius: 11px; background: var(--mist); padding: 11px 13px; }
  .primary-menu a::after { display: none; }
  .primary-menu a:hover { background: var(--soft-blue); }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr 0.9fr; gap: 35px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 850px) {
  .hero-grid,
  .single-grid,
  .single-details__grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid { padding-block: 58px 80px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions,
  .hero-stats { justify-content: center; }
  .hero-showcase { width: min(100%, 550px); }
  .content-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .single-copy { text-align: center; }
  .single-copy .eyebrow,
  .meta-chips,
  .single-actions { justify-content: center; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar .main-navigation { top: 126px; }
}

@media (max-width: 620px) {
  .container,
  .entry-shell,
  .entry-shell--wide { width: min(100% - 20px, 1180px); }
  .header-inner { min-height: 72px; }
  .site-brand__mark,
  .site-brand__custom { width: 44px; height: 44px; flex-basis: 44px; }
  .site-brand__text strong { font-size: 14px; }
  .site-brand__text small { font-size: 7px; }
  .header-search,
  .header-cta { display: none; }
  .main-navigation { top: 72px; right: 10px; left: 10px; }
  .admin-bar .main-navigation { top: 118px; }
  .primary-menu { grid-template-columns: repeat(2, 1fr); }
  .home-hero::before { display: none; }
  .hero-grid { min-height: auto; padding-block: 46px 66px; }
  .hero-copy h1 { font-size: 39px; }
  .hero-copy > p { font-size: 14px; }
  .hero-stats { gap: 22px; }
  .hero-panel { border-radius: 24px; }
  .hero-floating-note { right: -3px; bottom: -29px; }
  .section { padding-block: 63px; }
  .section-heading { display: block; }
  .section-heading .section-link { margin-top: 13px; }
  .content-grid,
  .service-grid,
  .detail-grid,
  .bartar-form__grid,
  .footer-grid { grid-template-columns: 1fr; }
  .content-card__body { padding: 18px; }
  .home-cta { padding: 31px 22px; }
  .home-cta__inner { display: block; text-align: center; }
  .home-cta .button { margin-top: 20px; }
  .page-hero { padding-block: 54px 47px; }
  .page-hero h1 { font-size: 38px; }
  .archive-tools { display: block; }
  .archive-count { display: block; margin-top: 7px; text-align: center; }
  .single-top { padding-block: 35px 50px; }
  .single-copy h1 { font-size: 39px; }
  .single-visual { border-width: 5px; border-radius: 24px; }
  .bartar-form { padding: 20px; }
  .bartar-form__footer { align-items: stretch; flex-direction: column; }
  .bartar-form__footer .button { width: 100%; }
  .footer-grid { gap: 30px; }
  .footer-bottom .container { align-items: flex-start; flex-direction: column; }
  .card-art__arrow { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ================================================================
   خدمات برتر 1.1 — sleek interface and recent-content carousel
   ================================================================ */
:root {
  --brand: #067f9c;
  --brand-light: #18a0be;
  --brand-dark: #075f73;
  --ink: #17272d;
  --text: #435960;
  --muted: #798b91;
  --line: #e1e8ea;
  --mist: #f4f6f7;
  --paper: #ffffff;
  --soft-blue: #eaf5f7;
  --shadow-sm: 0 5px 18px rgba(24, 52, 61, 0.05);
  --shadow-lg: 0 18px 45px rgba(24, 52, 61, 0.11);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
}

body {
  background: #f5f7f8;
  color: var(--text);
  line-height: 1.75;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(6, 127, 156, 0.25);
  outline-offset: 3px;
}

.container {
  width: min(1240px, calc(100% - 40px));
}

.site-header {
  border-bottom-color: rgba(225, 232, 234, 0.92);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(140%);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(24, 52, 61, 0.06);
}

.header-inner {
  min-height: 74px;
}

.site-brand__mark,
.site-brand__custom {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
  border-radius: 11px;
  box-shadow: none;
}

.site-brand__text strong {
  font-size: 16px;
}

.site-brand__text small {
  margin-top: 5px;
  font-size: 7.5px;
}

.primary-menu a {
  padding: 10px 8px;
  color: #586c73;
  font-size: 11.5px;
}

.primary-menu a::after {
  right: 8px;
  bottom: 3px;
}

.header-search,
.menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f8fafb;
}

.button,
.wp-element-button,
button[type="submit"] {
  min-height: 45px;
  border: 0;
  border-radius: 10px;
  background: var(--brand);
  box-shadow: none;
  padding: 9px 18px;
}

.button:hover,
.wp-element-button:hover,
button[type="submit"]:hover {
  background: var(--brand-dark);
  box-shadow: 0 10px 24px rgba(6, 127, 156, 0.18);
  transform: translateY(-1px);
}

.button--small {
  min-height: 40px;
  border-radius: 10px;
  font-size: 12px;
}

.button--outline {
  border: 1px solid #d8e2e5;
  background: white;
  color: var(--ink);
}

.button--outline:hover {
  border-color: #b5d4db;
  background: var(--soft-blue);
  box-shadow: none;
  color: var(--brand-dark);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 17px;
  height: 2px;
  border-radius: 10px;
  background: var(--brand);
}

.section {
  padding-block: 72px;
}

.section--soft {
  border-block-color: var(--line);
  background: #eef2f3;
}

.section-heading {
  margin-bottom: 25px;
}

.section-heading h2,
.recent-heading h2 {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: clamp(25px, 3.5vw, 35px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.section-heading p,
.recent-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12.5px;
}

/* Sleek home hero */
.home-hero {
  border-bottom-color: var(--line);
  background: #eef2f3;
}

.home-hero::before {
  opacity: 0.15;
  background-size: 52px 52px;
}

.hero-grid {
  min-height: 620px;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  padding-block: 64px;
}

.hero-copy h1 {
  margin-top: 15px;
  color: #122329;
  font-size: clamp(43px, 6.1vw, 70px);
  font-weight: 920;
  letter-spacing: -0.065em;
  line-height: 1.18;
}

.hero-copy h1 span {
  margin-top: 5px;
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--brand);
}

.hero-copy > p {
  max-width: 620px;
  margin-top: 19px;
  color: #61747a;
  font-size: 15px;
  line-height: 1.95;
}

.hero-actions {
  margin-top: 25px;
}

.hero-stats {
  gap: 30px;
  margin-top: 30px;
  border-top-color: #d8e0e2;
  padding-top: 20px;
}

.hero-stat strong {
  font-size: 18px;
}

.hero-showcase {
  max-width: 570px;
}

.hero-showcase::before {
  display: none;
}

.hero-panel {
  border: 1px solid #d8e2e5;
  border-radius: 19px;
  background: white;
  box-shadow: 0 22px 55px rgba(24, 52, 61, 0.12);
  padding: 9px;
}

.hero-art {
  aspect-ratio: 16 / 10;
  border-radius: 13px;
  background: linear-gradient(145deg, #4caec3, #067f9c 55%, #075466);
}

.hero-art-content {
  padding: 22px;
}

.hero-art-content h2 {
  font-size: clamp(23px, 3.5vw, 33px);
}

.hero-mini-grid {
  gap: 7px;
  margin-top: 7px;
}

.hero-mini {
  min-height: 60px;
  border-radius: 9px;
  background: #eef2f3 !important;
  color: var(--ink);
}

.hero-mini:hover {
  background: var(--soft-blue) !important;
  color: var(--brand-dark);
}

.hero-floating-note {
  right: -15px;
  bottom: -20px;
  border-color: #dce5e7;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 10px 12px;
}

.hero-floating-note span:first-child {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

/* Recent-content slideshow */
.recent-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: white;
  padding-block: 62px 55px;
}

.recent-section--home {
  border-top: 0;
}

.recent-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.recent-heading > div:first-child {
  max-width: 720px;
}

.recent-controls {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
}

.recent-controls button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #dce4e6;
  border-radius: 9px;
  background: #f7f9f9;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.recent-controls button:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
}

.recent-counter {
  display: inline-flex;
  min-width: 70px;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  direction: ltr;
  color: #9aa8ac;
  font-size: 10px;
}

.recent-counter b {
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.recent-counter i {
  font-style: normal;
}

.recent-carousel {
  position: relative;
}

.recent-viewport {
  overflow-x: auto;
  direction: ltr;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.recent-viewport::-webkit-scrollbar {
  display: none;
}

.recent-track {
  display: flex;
  direction: ltr;
  gap: 15px;
  width: max-content;
  padding: 2px 1px 18px;
}

.recent-slide {
  width: min(380px, calc((100vw - 78px) / 3));
  flex: 0 0 min(380px, calc((100vw - 78px) / 3));
  overflow: hidden;
  direction: rtl;
  scroll-snap-align: start;
  border: 1px solid #dfe6e8;
  border-radius: 14px;
  background: white;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.recent-slide:hover,
.recent-slide[aria-current="true"] {
  border-color: rgba(6, 127, 156, 0.32);
  box-shadow: 0 14px 32px rgba(24, 52, 61, 0.09);
}

.recent-slide:hover {
  transform: translateY(-3px);
}

.recent-slide > a {
  display: grid;
  height: 100%;
  grid-template-columns: 43% 57%;
}

.recent-slide__media {
  position: relative;
  display: grid;
  min-height: 220px;
  overflow: hidden;
  place-items: center;
  background: linear-gradient(145deg, #5bb7c9, #067f9c);
  background-position: center;
  background-size: cover;
  color: white;
}

.recent-slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(11, 39, 47, 0.18));
}

.recent-slide__media > span {
  position: relative;
  z-index: 1;
  font-size: 65px;
  font-weight: 950;
}

.recent-slide__media small {
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(18, 49, 58, 0.36);
  color: white;
  font-size: 8.5px;
  font-weight: 800;
  padding: 4px 8px;
  backdrop-filter: blur(8px);
}

.recent-slide--coral .recent-slide__media { background: linear-gradient(145deg, #de8b79, #96515d); }
.recent-slide--violet .recent-slide__media { background: linear-gradient(145deg, #9d83bd, #55456e); }
.recent-slide--green .recent-slide__media { background: linear-gradient(145deg, #5eb29e, #286d61); }
.recent-slide--slate .recent-slide__media { background: linear-gradient(145deg, #7c9199, #40545c); }
.recent-slide--amber .recent-slide__media { background: linear-gradient(145deg, #d6aa5c, #87652d); }

.recent-slide__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 17px;
}

.recent-slide__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--brand);
  font-size: 8.5px;
  font-weight: 800;
}

.recent-slide__meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recent-slide__meta time {
  flex: 0 0 auto;
  color: #9aa8ac;
  font-weight: 600;
}

.recent-slide h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 9px 0 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.recent-slide__body > p {
  display: -webkit-box;
  overflow: hidden;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.recent-slide__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  color: var(--brand);
  font-size: 9.5px;
  font-weight: 850;
}

.recent-slide__link b {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft-blue);
}

.recent-slide--empty {
  width: min(620px, calc(100vw - 40px));
  flex-basis: min(620px, calc(100vw - 40px));
  border-style: dashed;
}

.recent-empty {
  display: grid;
  min-height: 210px;
  place-items: center;
  align-content: center;
  padding: 30px;
  color: var(--muted);
  text-align: center;
}

.recent-empty > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  background: var(--soft-blue);
  color: var(--brand);
  font-size: 22px;
}

.recent-empty strong {
  margin-top: 11px;
  color: var(--ink);
}

.recent-empty p {
  max-width: 420px;
  margin: 5px 0 0;
  font-size: 11px;
}

.recent-progress {
  height: 2px;
  overflow: hidden;
  border-radius: 10px;
  background: #e7ecee;
}

.recent-progress span {
  display: block;
  width: 10%;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
  transition: width 260ms ease;
}

/* Cleaner cards and service navigation */
.content-grid {
  gap: 17px;
}

.content-card {
  border-color: #e0e7e9;
  border-radius: 14px;
  box-shadow: none;
}

.content-card:hover {
  border-color: rgba(6, 127, 156, 0.3);
  box-shadow: 0 15px 35px rgba(24, 52, 61, 0.08);
  transform: translateY(-3px);
}

.card-art {
  aspect-ratio: 16 / 10;
}

.content-card__body {
  padding: 17px;
}

.content-card h3 {
  font-size: 17px;
}

.content-card__excerpt {
  font-size: 11.5px;
}

.service-grid {
  gap: 13px;
}

.service-card {
  border-color: #dfe6e8;
  border-radius: 14px;
  box-shadow: none;
  padding: 21px;
}

.service-card::after {
  display: none;
}

.service-card:hover {
  border-color: rgba(6, 127, 156, 0.34);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 17px;
}

.service-card h3 {
  margin-top: 14px;
  font-size: 16px;
}

.service-card p {
  min-height: 65px;
  font-size: 11px;
}

.home-cta {
  border-color: #d6e4e7;
  border-radius: 17px;
  background: white;
  box-shadow: none;
  padding: 36px 39px;
}

.home-cta::after {
  width: 220px;
  height: 220px;
  background: rgba(40, 167, 197, 0.09);
}

.home-cta h2 {
  font-size: clamp(24px, 3.5vw, 33px);
}

/* Cleaner archives, pages, and content details */
.page-hero {
  border-bottom-color: var(--line);
  background: #eef2f3;
  padding-block: 65px 57px;
}

.page-hero::after {
  left: -90px;
  top: -210px;
  width: 360px;
  height: 360px;
  background: rgba(6, 127, 156, 0.09);
}

.page-hero h1 {
  margin-top: 8px;
  font-size: clamp(34px, 4.8vw, 51px);
  font-weight: 920;
}

.page-hero p {
  margin-top: 10px;
  font-size: 13px;
}

.archive-tools {
  border-radius: 13px;
  box-shadow: none;
  padding: 7px;
}

.archive-search input,
.bartar-form input,
.bartar-form textarea,
.bartar-form select,
.search-form input[type="search"] {
  border-radius: 9px;
  background: #fafbfb;
}

.archive-count {
  border-radius: 8px;
}

.entry-shell {
  padding-block: 62px;
}

.single-top {
  background: white;
  padding-block: 48px 62px;
}

.single-grid {
  gap: 50px;
}

.single-visual {
  border-width: 5px;
  border-radius: 17px;
  box-shadow: var(--shadow-lg);
}

.single-copy h1 {
  font-size: clamp(37px, 5vw, 56px);
  font-weight: 920;
}

.meta-chip {
  border-radius: 7px;
  background: #f8fafb;
}

.single-details {
  border-block-color: var(--line);
  background: #eef2f3;
}

.detail-item {
  border-radius: 11px;
  box-shadow: none;
}

.video-frame {
  border-width: 5px;
  border-radius: 17px;
}

.contact-card,
.bartar-form {
  border-radius: 14px;
  box-shadow: none;
}

.site-footer {
  margin-top: 68px;
  background: white;
}

.footer-grid {
  padding-block: 50px;
}

.footer-bottom {
  background: #f2f4f5;
}

@media (max-width: 1120px) {
  .main-navigation {
    top: 74px;
    border-radius: 14px;
  }

  .admin-bar .main-navigation {
    top: 106px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.95fr;
    gap: 42px;
  }

  .recent-slide {
    width: calc((100vw - 70px) / 2.15);
    flex-basis: calc((100vw - 70px) / 2.15);
  }
}

@media (max-width: 850px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .recent-slide {
    width: min(520px, calc(100vw - 72px));
    flex-basis: min(520px, calc(100vw - 72px));
  }
}

@media (max-width: 620px) {
  .container,
  .entry-shell,
  .entry-shell--wide {
    width: min(100% - 22px, 1240px);
  }

  .header-inner {
    min-height: 68px;
  }

  .main-navigation {
    top: 68px;
  }

  .admin-bar .main-navigation {
    top: 114px;
  }

  .hero-grid {
    padding-block: 42px 61px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy > p {
    font-size: 13px;
  }

  .recent-section {
    padding-block: 49px 44px;
  }

  .recent-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .recent-controls {
    width: 100%;
  }

  .recent-counter {
    margin-left: auto;
  }

  .recent-slide {
    width: calc(100vw - 42px);
    flex-basis: calc(100vw - 42px);
  }

  .recent-slide > a {
    grid-template-columns: 41% 59%;
  }

  .recent-slide__media {
    min-height: 205px;
  }

  .recent-slide__body {
    padding: 14px;
  }

  .recent-slide h3 {
    font-size: 15px;
  }

  .recent-slide__body > p {
    -webkit-line-clamp: 3;
  }

  .section {
    padding-block: 57px;
  }

  .home-cta {
    padding: 28px 20px;
  }

  .page-hero {
    padding-block: 48px 42px;
  }
}
