:root {
  --bg: #ffffff;
  --surface: #f8f7f4;
  --surface-strong: #eef4f1;
  --surface-soft: #f4efe7;
  --text: #0f172a;
  --muted: #5b6473;
  --muted-strong: #243041;
  --border: rgba(15, 23, 42, 0.09);
  --border-strong: rgba(15, 118, 110, 0.2);
  --accent: #0f766e;
  --accent-dark: #115e59;
  --accent-soft: rgba(15, 118, 110, 0.1);
  --accent-warm: #b7791f;
  --shadow-sm: 0 10px 25px rgba(15, 23, 42, 0.05);
  --shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.12);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.06), transparent 28%),
    radial-gradient(circle at 100% 10%, rgba(183, 121, 31, 0.06), transparent 22%),
    linear-gradient(180deg, #fcfcfb 0%, #f7f5f1 34%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 40%);
  opacity: 0.45;
}

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

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

button,
.button {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 5.25rem 0;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 2.4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 118, 110, 0.12);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 7px rgba(15, 118, 110, 0.1);
}

h1,
h2,
h3,
h4 {
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.35rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 12ch;
}

h3 {
  font-size: 1.3rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  font-weight: 700;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.35), transparent 34%),
    linear-gradient(135deg, #0f172a, var(--accent) 78%);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.2);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.nav {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links a {
  position: relative;
  color: var(--muted-strong);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--text);
}

.nav-links a.active::after,
.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  margin: 0.22rem auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.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);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.button:hover,
.button:focus-visible,
.card:hover,
.card:focus-within,
.mini-post:hover,
.contact-card:hover,
.timeline-item:hover {
  transform: translateY(-4px);
}

.button-primary {
  background: linear-gradient(135deg, #0f172a, var(--accent));
  color: #fff;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #111827, var(--accent-dark));
  box-shadow: 0 22px 34px rgba(15, 23, 42, 0.24);
}

.button-secondary {
  border-color: rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(15, 118, 110, 0.24);
  color: var(--accent);
}

.hero {
  position: relative;
  padding: 4.5rem 0 3.25rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 560px;
  background:
    radial-gradient(circle at 18% 14%, rgba(15, 118, 110, 0.11), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(183, 121, 31, 0.08), transparent 28%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 2rem;
  right: 0;
  width: min(42vw, 620px);
  height: 480px;
  border-radius: 40px 0 0 40px;
  background: linear-gradient(160deg, #0f172a 0%, #152235 55%, #0f766e 100%);
  box-shadow: var(--shadow-lg);
  opacity: 0.98;
  pointer-events: none;
}

.hero-grid,
.split-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy p {
  max-width: 610px;
  font-size: 1.08rem;
  color: #465266;
}

.hero-actions,
.contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.9rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.3rem;
}

.stat,
.card,
.contact-card,
.timeline-item,
.mini-post {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.stat::before,
.card::before,
.contact-card::before,
.timeline-item::before,
.mini-post::before,
.about-panel::before,
.cta-panel::before,
.page-hero::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(15, 118, 110, 0.08));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stat {
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 241, 0.96));
}

.stat strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  padding: 1.2rem 0 1.2rem 1.2rem;
}

.hero-card {
  overflow: hidden;
  padding: 1rem;
  border-radius: 32px;
  transform: translateY(0.6rem);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.hero-card img {
  border-radius: 24px;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto 1.05rem 1.05rem;
  height: 40%;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.12));
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  right: -0.5rem;
  bottom: 1.5rem;
  width: min(250px, 78%);
  padding: 1.15rem 1.2rem;
  background: rgba(255, 255, 255, 0.96);
}

.floating-badge strong,
.service-card strong,
.mini-post strong,
.contact-card strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.services-grid,
.blog-grid,
.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  padding: 1.75rem;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.card:hover,
.card:focus-within,
.mini-post:hover,
.contact-card:hover,
.timeline-item:hover {
  border-color: var(--border-strong);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.12);
}

.card-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1.2rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.65), transparent 32%),
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(183, 121, 31, 0.08));
  color: var(--accent);
  border: 1px solid rgba(15, 118, 110, 0.12);
  font-size: 1rem;
  font-weight: 700;
}

.card h3,
.mini-post strong,
.timeline-item strong,
.contact-card strong {
  color: var(--text);
}

.muted-list,
.tag-list,
.simple-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.muted-list li,
.simple-list li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.muted-list li::before,
.simple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.08);
}

.about-panel,
.cta-panel,
.page-hero,
.contact-panel {
  position: relative;
  padding: 2.2rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 247, 244, 0.98));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(21, 34, 53, 0.96) 58%, rgba(15, 118, 110, 0.92) 100%);
  color: #f8fafc;
}

.page-hero p,
.page-hero .meta,
.page-hero .meta span,
.page-hero .eyebrow {
  color: rgba(248, 250, 252, 0.8);
}

.page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.about-panel {
  display: grid;
  gap: 1.5rem;
}

.about-image-panel {
  padding: 0;
  overflow: hidden;
}

.about-image-panel img {
  width: 100%;
  min-height: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.page-hero {
  margin-top: 2rem;
}

.page-hero h1 {
  max-width: 14ch;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.tag-list li {
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--muted-strong);
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  min-width: 2.85rem;
  min-height: 2.85rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
  color: var(--muted-strong);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-3px);
  color: var(--accent);
  border-color: rgba(15, 118, 110, 0.24);
  box-shadow: var(--shadow);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.social-block {
  margin-top: 1.5rem;
}

.blog-card {
  padding: 0;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover img,
.blog-card:focus-within img {
  transform: scale(1.04);
}

.blog-card-content {
  padding: 1.55rem;
}

.blog-card-content .button {
  margin-top: 0.85rem;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
}

.mini-posts {
  display: grid;
  gap: 1rem;
}

.mini-post {
  padding: 1.35rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.84);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  padding: 1.45rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-highlight {
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.15), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 239, 231, 0.96));
}

.contact-card {
  padding: 1.5rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.article-main {
  padding-top: 3rem;
}

.article-shell {
  display: grid;
  gap: 2rem;
}

.article-cover,
.article-content,
.article-aside {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.article-content,
.article-aside {
  padding: 2rem;
}

.article-content h2 {
  max-width: 100%;
  margin-top: 2rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.article-content p + p {
  margin-top: 1rem;
}

.article-content ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.article-content li + li {
  margin-top: 0.65rem;
}

.article-quote {
  margin: 1.75rem 0;
  padding: 1.4rem 1.5rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 20px 20px 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(255, 255, 255, 0.92));
  color: var(--muted-strong);
  font-weight: 500;
}

.article-aside h3 {
  margin-bottom: 1rem;
}

.article-back {
  margin-top: 1.25rem;
}

.work-grid {
  display: grid;
  gap: 1.5rem;
}

.work-card {
  position: relative;
  padding: 1.8rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.work-card p:last-child {
  margin-bottom: 0;
}

.work-note {
  font-size: 0.96rem;
  color: var(--muted);
}

.travel-grid {
  display: grid;
  gap: 1.5rem;
}

.travel-photo-card {
  padding: 0;
  overflow: hidden;
}

.travel-photo-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.travel-photo-card .blog-card-content {
  padding: 1.5rem;
}

.travel-gallery {
  display: grid;
  gap: 1rem;
}

.travel-gallery-card {
  padding: 0;
  overflow: hidden;
}

.travel-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.travel-stat-card {
  padding: 1.6rem;
}

.travel-stat-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  color: var(--text);
}

.travel-stat-card span {
  color: var(--muted);
}

.form-row {
  display: grid;
  gap: 1rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--muted-strong);
}

input,
textarea {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #94a3b8;
}

input:focus,
textarea:focus {
  outline: none;
  background: #fff;
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow:
    0 0 0 4px rgba(15, 118, 110, 0.12),
    inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

textarea {
  min-height: 170px;
  resize: vertical;
}

.site-footer {
  padding: 2.75rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 768px) {
  .hero-grid,
  .split-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .travel-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .article-shell {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }

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

  .footer-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1080px) {
  .section:nth-of-type(even) .section-heading {
    margin-left: 0.25rem;
  }
}

@media (max-width: 767px) {
  body::before {
    opacity: 0.18;
  }

  .section {
    padding: 4.25rem 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  h2,
  .page-hero h1 {
    max-width: 100%;
  }

  .nav-wrap {
    flex-wrap: wrap;
    padding: 0.8rem 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    width: 100%;
    display: none;
    margin-left: 0;
  }

  .nav.open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 0.8rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: var(--shadow);
  }

  .nav-links a.active::after,
  .nav-links a:hover::after,
  .nav-links a:focus-visible::after {
    bottom: -0.2rem;
  }

  .nav-actions .button {
    display: none;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .hero::after {
    width: 100%;
    height: 320px;
    top: auto;
    bottom: 0;
    border-radius: 32px;
    opacity: 0.12;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-card {
    transform: none;
  }

  .article-main {
    padding-top: 2rem;
  }

  .floating-badge {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .about-panel,
  .cta-panel,
  .page-hero,
  .contact-panel,
  .card,
  .stat,
  .contact-card,
  .timeline-item {
    border-radius: 22px;
  }
}
