* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body,
.site-shell {
  min-height: 100%;
  background: #0c0c0c;
  color: #d7e2ea;
  font-family: "Kanit", sans-serif;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
}

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

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

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

.site-shell {
  overflow-x: clip;
}

.hero-heading {
  background: linear-gradient(180deg, #646973 0%, #bbccd7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  isolation: isolate;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 10% 8% auto auto;
  width: min(32vw, 420px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(31, 111, 88, 0.34), rgba(12, 12, 12, 0) 68%);
  filter: blur(20px);
  z-index: -1;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 0;
  color: #d7e2ea;
  font-size: clamp(0.875rem, 1.5vw, 1.4rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-bar a {
  transition: opacity 200ms ease;
}

.nav-bar a:hover {
  opacity: 0.7;
}

.hero-heading-wrap {
  width: 100%;
  margin-top: clamp(24px, 3vw, 42px);
  overflow: hidden;
}

.hero-heading-wrap h1 {
  width: 100%;
  white-space: nowrap;
  font-size: clamp(3.8rem, 14vw, 16.5rem);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-portrait {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 10;
  width: clamp(280px, 36vw, 520px);
  transform: translateX(-50%);
}

.hero-portrait img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: center top;
  border-radius: 44px 44px 0 0;
  filter: saturate(0.75) contrast(1.04);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.42);
}

.portrait-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(215, 226, 234, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  inset: 12% -22% 8%;
  transform: rotate(-12deg);
}

.orbit-two {
  inset: 28% -34% 24%;
  border-color: rgba(31, 111, 88, 0.6);
  transform: rotate(14deg);
}

.hero-bottom {
  position: relative;
  z-index: 11;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  padding: 0 24px 34px;
}

.hero-bottom p {
  max-width: 290px;
  color: #d7e2ea;
  font-size: clamp(0.75rem, 1.4vw, 1.5rem);
  font-weight: 300;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  outline: 2px solid #ffffff;
  outline-offset: -5px;
  background: linear-gradient(123deg, #00271e 7%, #1f6f58 38%, #4b9681 72%, #d4a84f 100%);
  box-shadow: 0 4px 4px rgba(31, 111, 88, 0.25), 4px 4px 12px rgba(31, 111, 88, 0.72) inset;
  color: #ffffff;
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.marquee-section {
  padding: clamp(6rem, 12vw, 10rem) 0 3rem;
  background: #0c0c0c;
  overflow: hidden;
}

.marquee-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.marquee-track {
  display: flex;
  gap: 12px;
  min-width: max-content;
  will-change: transform;
}

.row-right .marquee-track {
  animation: drift-right 38s linear infinite;
}

.row-left .marquee-track {
  animation: drift-left 42s linear infinite;
}

.marquee-track article {
  width: 420px;
  height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(215, 226, 234, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 20%, rgba(31, 111, 88, 0.36), transparent 32%),
    linear-gradient(145deg, rgba(215, 226, 234, 0.11), rgba(215, 226, 234, 0.03));
}

.marquee-track strong {
  max-width: 340px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4.3rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.marquee-track span {
  max-width: 260px;
  color: rgba(215, 226, 234, 0.7);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.25;
  text-transform: uppercase;
}

@keyframes drift-right {
  from {
    transform: translateX(-36%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes drift-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-36%);
  }
}

.about-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 5rem 24px;
  overflow: hidden;
}

.about-content {
  width: min(100%, 780px);
  display: grid;
  justify-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  text-align: center;
}

.about-content h2,
.projects-section > h2,
.contact-section h2 {
  font-size: clamp(3rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
}

.reveal-copy {
  max-width: 620px;
  color: #d7e2ea;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.65;
}

.floating-shape {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 226, 234, 0.18);
  background: linear-gradient(145deg, rgba(215, 226, 234, 0.08), rgba(31, 111, 88, 0.24));
  color: rgba(215, 226, 234, 0.82);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.shape-moon {
  top: 6%;
  left: 4%;
  width: clamp(92px, 14vw, 210px);
  aspect-ratio: 1;
  border-radius: 999px;
}

.shape-cube {
  bottom: 9%;
  left: 9%;
  width: clamp(82px, 12vw, 160px);
  aspect-ratio: 1;
  border-radius: 28px;
  transform: rotate(-12deg);
}

.shape-ring {
  top: 8%;
  right: 4%;
  width: clamp(92px, 14vw, 210px);
  aspect-ratio: 1;
  border-radius: 999px;
}

.shape-ring::after {
  content: "";
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(215, 226, 234, 0.2);
  border-radius: inherit;
}

.shape-pillar {
  right: 9%;
  bottom: 9%;
  width: clamp(92px, 14vw, 180px);
  height: clamp(122px, 20vw, 240px);
  border-radius: 999px 999px 32px 32px;
}

.services-section {
  position: relative;
  z-index: 3;
  padding: clamp(5rem, 10vw, 8rem) 24px;
  border-radius: clamp(40px, 5vw, 60px) clamp(40px, 5vw, 60px) 0 0;
  background: #ffffff;
  color: #0c0c0c;
}

.services-section h2 {
  margin-bottom: clamp(4rem, 8vw, 7rem);
  font-size: clamp(3rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.82;
  text-align: center;
  text-transform: uppercase;
}

.service-list {
  width: min(100%, 1060px);
  margin: 0 auto;
  border-top: 1px solid rgba(12, 12, 12, 0.15);
}

.service-list article {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid rgba(12, 12, 12, 0.15);
}

.service-list span {
  font-size: clamp(3rem, 10vw, 8.75rem);
  font-weight: 900;
  line-height: 0.8;
}

.service-list h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1rem, 2.2vw, 2.1rem);
  font-weight: 500;
  text-transform: uppercase;
}

.service-list p {
  max-width: 720px;
  color: rgba(12, 12, 12, 0.62);
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  font-weight: 300;
  line-height: 1.65;
}

.projects-section {
  position: relative;
  z-index: 4;
  margin-top: -3rem;
  padding: clamp(5rem, 10vw, 8rem) 24px;
  border-radius: clamp(40px, 5vw, 60px) clamp(40px, 5vw, 60px) 0 0;
  background: #0c0c0c;
}

.projects-section > h2 {
  margin-bottom: 3rem;
  text-align: center;
}

.experience-section {
  position: relative;
  z-index: 5;
  margin-top: -3rem;
  padding: clamp(5rem, 10vw, 8rem) 24px;
  border-radius: clamp(40px, 5vw, 60px) clamp(40px, 5vw, 60px) 0 0;
  background: #ffffff;
  color: #0c0c0c;
}

.experience-section > h2 {
  margin-bottom: clamp(3rem, 7vw, 6rem);
  font-size: clamp(3rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.82;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(180deg, #0c0c0c 0%, #647169 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.experience-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(12, 12, 12, 0.15);
  border-left: 1px solid rgba(12, 12, 12, 0.15);
}

.experience-grid article {
  min-height: 410px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-right: 1px solid rgba(12, 12, 12, 0.15);
  border-bottom: 1px solid rgba(12, 12, 12, 0.15);
}

.experience-grid span {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: #1f6f58;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.experience-grid h3 {
  max-width: 520px;
  margin-bottom: 0.9rem;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 0.96;
  text-transform: uppercase;
}

.experience-grid p {
  margin-bottom: 1.5rem;
  color: rgba(12, 12, 12, 0.62);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.experience-grid ul {
  display: grid;
  gap: 0.8rem;
  padding-left: 1.1rem;
  color: rgba(12, 12, 12, 0.66);
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  font-weight: 300;
  line-height: 1.45;
}

.project-stack {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.project-card {
  position: sticky;
  top: 5rem;
  min-height: 78vh;
  margin-bottom: 3rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 2px solid #d7e2ea;
  border-radius: clamp(34px, 5vw, 60px);
  background:
    radial-gradient(circle at 76% 16%, rgba(31, 111, 88, 0.18), transparent 28%),
    #0c0c0c;
}

.project-card:nth-child(2) {
  top: 6.7rem;
}

.project-card:nth-child(3) {
  top: 8.4rem;
}

.lifestyle-section {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(5rem, 10vw, 8rem) 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(31, 111, 88, 0.2), transparent 26%),
    #0c0c0c;
}

.lifestyle-image {
  position: relative;
  min-height: clamp(420px, 54vw, 760px);
  overflow: hidden;
  border: 2px solid rgba(215, 226, 234, 0.26);
  border-radius: clamp(34px, 5vw, 60px);
  background: rgba(215, 226, 234, 0.05);
}

.lifestyle-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(10, 28, 43, 0.26), rgba(4, 18, 15, 0.52)),
    radial-gradient(circle at 22% 18%, rgba(31, 111, 88, 0.24), transparent 34%);
  pointer-events: none;
}

.lifestyle-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.08) brightness(0.72);
}

.lifestyle-copy {
  max-width: 660px;
}

.section-label {
  margin-bottom: 1.25rem;
  color: #86c6b0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lifestyle-copy h2 {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
}

.lifestyle-copy p:not(.section-label) {
  margin-bottom: 1.25rem;
  color: rgba(215, 226, 234, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  line-height: 1.58;
}

.interest-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.interest-strip span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 1rem;
  border: 1px solid rgba(215, 226, 234, 0.25);
  border-radius: 999px;
  color: #d7e2ea;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-top {
  display: grid;
  grid-template-columns: 0.36fr 0.52fr minmax(260px, 1fr);
  gap: 1.2rem;
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.6rem);
}

.project-top span {
  color: #d7e2ea;
  font-size: clamp(3rem, 9vw, 8.5rem);
  font-weight: 900;
  line-height: 0.8;
}

.project-top p {
  color: rgba(215, 226, 234, 0.66);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-top h3 {
  color: #ffffff;
  font-size: clamp(1.4rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
}

.project-visuals {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  grid-template-rows: minmax(150px, 0.72fr) minmax(180px, 1fr);
  gap: 14px;
}

.mini-panel,
.large-panel {
  overflow: hidden;
  border-radius: clamp(30px, 4vw, 54px);
  background: linear-gradient(145deg, rgba(215, 226, 234, 0.12), rgba(215, 226, 234, 0.035));
}

.mini-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.mini-panel strong {
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.82;
}

.mini-panel span {
  max-width: 260px;
  color: rgba(215, 226, 234, 0.72);
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  font-weight: 300;
  line-height: 1.25;
  text-transform: uppercase;
}

.mini-panel span + span {
  margin-top: 0.42rem;
}

.growth-panel {
  justify-content: space-between;
  background:
    radial-gradient(circle at 68% 18%, rgba(134, 198, 176, 0.24), transparent 38%),
    linear-gradient(150deg, rgba(215, 226, 234, 0.14), rgba(215, 226, 234, 0.04));
}

.growth-panel strong {
  font-size: clamp(2.5rem, 5.6vw, 5.9rem);
}

.growth-panel p {
  max-width: 330px;
  margin: clamp(1.25rem, 3vw, 2.2rem) 0;
  color: rgba(215, 226, 234, 0.76);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 300;
  line-height: 1.36;
}

.growth-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.growth-panel span {
  width: fit-content;
  max-width: none;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.9rem;
  border: 1px solid rgba(215, 226, 234, 0.18);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.16);
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.growth-panel span + span {
  margin-top: 0;
}

.mini-panel.accent {
  background: #d7e2ea;
  color: #0c0c0c;
}

.mini-panel.accent strong,
.mini-panel.accent span {
  color: #0c0c0c;
}

.image-panel {
  padding: 0;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.large-panel {
  grid-column: 2;
  grid-row: 1 / 3;
  display: grid;
  align-content: end;
  gap: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 65% 14%, rgba(31, 111, 88, 0.34), transparent 36%),
    linear-gradient(145deg, rgba(215, 226, 234, 0.1), rgba(215, 226, 234, 0.025));
}

.large-panel span {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(215, 226, 234, 0.17);
  color: #d7e2ea;
  font-size: clamp(1.5rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.proof-panel {
  align-content: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.proof-panel div,
.proof-panel p {
  border: 1px solid rgba(215, 226, 234, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 70% 18%, rgba(134, 198, 176, 0.14), transparent 42%),
    rgba(215, 226, 234, 0.045);
}

.proof-panel div {
  display: flex;
  min-height: 158px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.proof-panel small {
  color: rgba(215, 226, 234, 0.58);
  font-size: clamp(0.7rem, 1vw, 0.86rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.proof-panel em {
  max-width: 210px;
  color: rgba(215, 226, 234, 0.54);
  font-size: clamp(0.82rem, 1.1vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.25;
}

.proof-panel span {
  padding: 0;
  border-bottom: 0;
  font-size: clamp(1.25rem, 2.25vw, 2.65rem);
  line-height: 0.9;
}

.proof-panel p {
  grid-column: 1 / -1;
  margin: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  color: rgba(215, 226, 234, 0.72);
  font-size: clamp(0.95rem, 1.4vw, 1.18rem);
  font-weight: 300;
  line-height: 1.35;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  padding: clamp(5rem, 10vw, 9rem) 24px;
  background: #0c0c0c;
}

.contact-section > div,
.contact-form {
  width: min(100%, 620px);
}

.contact-section p {
  margin: 2rem 0;
  color: rgba(215, 226, 234, 0.74);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.55;
}

.contact-section a {
  display: block;
  margin-top: 0.8rem;
  color: #86c6b0;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 500;
}

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

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: rgba(215, 226, 234, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(215, 226, 234, 0.22);
  border-radius: 18px;
  background: rgba(215, 226, 234, 0.07);
  color: #ffffff;
}

.contact-form textarea {
  resize: vertical;
}

@media (max-width: 980px) {
  .hero-portrait {
    bottom: 11vh;
    width: min(70vw, 420px);
  }

  .project-top,
  .contact-section,
  .lifestyle-section {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .project-visuals {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .large-panel {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 700px) {
  .nav-bar {
    padding: 24px 18px 0;
    font-size: 0.78rem;
  }

  .hero-heading-wrap {
    margin-top: 42px;
  }

  .hero-heading-wrap h1 {
    font-size: 18vw;
  }

  .hero-portrait {
    top: 46%;
    bottom: auto;
    width: min(73vw, 300px);
    transform: translate(-50%, -50%);
  }

  .hero-portrait img {
    border-radius: 34px;
  }

  .hero-bottom {
    padding: 0 18px 30px;
  }

  .hero-bottom p {
    max-width: 180px;
  }

  .contact-button {
    min-height: 46px;
    padding: 0 24px;
    font-size: 0.72rem;
  }

  .marquee-track article {
    width: 300px;
    height: 200px;
    padding: 22px;
  }

  .floating-shape {
    opacity: 0.52;
  }

  .shape-cube,
  .shape-pillar {
    display: none;
  }

  .services-section,
  .projects-section,
  .experience-section,
  .lifestyle-section,
  .about-section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .project-card {
    min-height: auto;
    position: relative;
    top: auto;
  }

  .project-card:nth-child(2),
  .project-card:nth-child(3) {
    top: auto;
  }

  .project-top {
    gap: 1rem;
  }

  .large-panel {
    min-height: 300px;
  }

  .proof-panel {
    grid-template-columns: 1fr;
  }

  .proof-panel div {
    min-height: 150px;
  }

  .proof-panel span {
    font-size: clamp(1.7rem, 9vw, 2.65rem);
  }

  .experience-grid article {
    min-height: auto;
  }
}
