:root {
  --color-bg: #f7f5f0;
  --color-surface: #ffffff;
  --color-text: #1f2526;
  --color-muted: #66706f;
  --color-brand: #0f6b63;
  --color-brand-dark: #0a4d47;
  --color-line: rgba(31, 37, 38, 0.12);
  --shadow-soft: 0 18px 45px rgba(15, 37, 35, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 10px 30px rgba(15, 37, 35, 0.06);
  backdrop-filter: blur(14px);
}

.navbar {
  width: min(100% - 32px, var(--container));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-family: "Oswald", sans-serif;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.navbar__brand img {
  width: 168px;
  height: auto;
}

.navbar__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.navbar__link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  padding: 0 14px;
  color: var(--color-muted);
  font-size: 18px;
  font-weight: 600;
  transition: background-color 180ms ease, color 180ms ease;
}

.navbar__link:hover,
.navbar__link:focus-visible,
.navbar__link.is-active {
  background: rgba(177, 151, 119, 0.12);
  color: #b19777;
  outline: none;
}

.navbar__toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  background: var(--color-surface);
  cursor: pointer;
}

.navbar__toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--color-text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.navbar.is-open .navbar__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar.is-open .navbar__toggle span:nth-child(2) {
  opacity: 0;
}

.navbar.is-open .navbar__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  --hero-image: url("../Images/kartResimleri/tamamlananProjeler/vaha-nara-1.jpg");
  --hero-position: center bottom;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(9, 35, 33, 0.64), rgba(9, 35, 33, 0.22)),
    var(--hero-image) var(--hero-position) / cover;
  transition: background-image 600ms ease;
}

.hero__content {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding-left: 44px;
  color: #ffffff;
}

.hero h1 {
  position: relative;
  max-width: 980px;
  margin: 0;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 16px;
  line-height: 1.28;
  text-shadow: 3px 4px 2px rgba(0, 0, 0, 0.32);
  text-transform: uppercase;
  animation-delay: 0.4s;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  font-weight: 700;
}

.hero__description {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
  text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.28);
  animation-delay: 0.5s;
}

.hero__button {
  min-width: 118px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.28);
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.hero__button:hover,
.hero__button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.82);
  outline: none;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.about-section {
  background:
    repeating-linear-gradient(
      90deg,
      #ffffff 0,
      #ffffff 384px,
      rgba(177, 151, 119, 0.14) 385px
    );
  padding: 90px 0 110px;
}

.about-section__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 72px;
}

.about-section__text {
  max-width: 560px;
}

.about-section__text h2 {
  margin: 0 0 34px;
  color: #2b2b2b;
  font-family: "Oswald", sans-serif;
  font-size: 43px;
  font-weight: 400;
  letter-spacing: 11px;
  line-height: 1.16;
  text-transform: uppercase;
}

.about-section__text h2 span {
  display: block;
  color: #b19777;
}

.about-section__text p {
  margin: 0 0 22px;
  color: #858585;
  font-size: 15px;
  line-height: 1.85;
}

.about-section__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 30px 0 0;
}

.about-section__visual::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58%;
  height: 82%;
  border: 1px solid rgba(177, 151, 119, 0.16);
  transform: translate(-30px, 16px);
  z-index: 0;
}

.about-section__frame {
  position: relative;
  z-index: 1;
  width: min(100%, 496px);
}

.about-section__frame img {
  width: 100%;
  aspect-ratio: 496 / 349;
  object-fit: cover;
}

.about-section__caption {
  position: relative;
  z-index: 2;
  min-width: 216px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  margin-top: -16px;
  background: #f4f2f1;
  color: #4f4f4f;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.page-hero {
  min-height: 310px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(9, 35, 33, 0.68), rgba(9, 35, 33, 0.28)),
    url("../Images/background-image/about.jpg") center / cover;
}

.page-hero__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 54px;
  font-weight: 400;
  letter-spacing: 10px;
  line-height: 1.2;
  text-shadow: 3px 4px 2px rgba(0, 0, 0, 0.28);
  text-transform: uppercase;
}

.about-page {
  background:
    repeating-linear-gradient(
      90deg,
      #ffffff 0,
      #ffffff 384px,
      rgba(177, 151, 119, 0.14) 385px
    );
  padding: 90px 0 110px;
}

.about-page__inner {
  width: min(100% - 32px, 920px);
  margin: 0 auto;
}

.about-page h2 {
  margin: 0 0 34px;
  color: #b19777;
  font-family: "Oswald", sans-serif;
  font-size: 43px;
  font-weight: 400;
  letter-spacing: 10px;
  line-height: 1.16;
  text-transform: uppercase;
}

.about-page__content {
  max-width: 760px;
}

.about-page__content p {
  margin: 0 0 24px;
  color: #777777;
  font-size: 16px;
  line-height: 1.9;
}

.about-page__statement {
  margin-top: 34px;
  color: #777777;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
}

.page-hero--contact {
  background:
    linear-gradient(90deg, rgba(9, 35, 33, 0.68), rgba(9, 35, 33, 0.28)),
    url("../Images/iletisim-background-image/VahaNara-Vaziyet-header.jpg") center / cover;
}

.contact-page {
  background:
    repeating-linear-gradient(
      90deg,
      #ffffff 0,
      #ffffff 384px,
      rgba(177, 151, 119, 0.14) 385px
    );
  padding: 86px 0 105px;
}

.contact-page__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.contact-page__intro {
  max-width: 760px;
  margin-bottom: 52px;
}

.contact-page h2,
.contact-form h2 {
  margin: 0 0 22px;
  color: #b19777;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.contact-page__intro p,
.contact-page__details p {
  margin: 0 0 18px;
  color: #777777;
  font-size: 16px;
  line-height: 1.85;
}

.contact-page__details a {
  color: #777777;
  transition: color 180ms ease;
}

.contact-page__details a:hover,
.contact-page__details a:focus-visible {
  color: #b19777;
  outline: none;
}

.contact-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
  gap: 70px;
  align-items: start;
}

.contact-form {
  padding: 0;
}

.contact-form label {
  display: block;
  margin-bottom: 24px;
}

.contact-form span {
  display: block;
  margin-bottom: 8px;
  color: #777777;
  font-size: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(31, 37, 38, 0.1);
  background: transparent;
  color: var(--color-text);
  font: inherit;
  outline: none;
  padding: 8px 0 12px;
  resize: vertical;
  transition: border-color 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b19777;
}

.contact-form button {
  min-width: 128px;
  min-height: 48px;
  border: 0;
  background: #b19777;
  color: #111111;
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: #171717;
  color: #ffffff;
  outline: none;
}

.contact-map {
  margin-top: 58px;
  border: 1px solid rgba(177, 151, 119, 0.18);
  background: #f4f2f1;
}

.contact-map iframe {
  width: 100%;
  height: 340px;
  display: block;
  border: 0;
}

.project-detail-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #171717;
}

.project-detail-hero img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: brightness(0.82);
}

.project-detail-hero__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  background: linear-gradient(180deg, rgba(9, 35, 33, 0.12), rgba(9, 35, 33, 0.66));
  padding: 0 0 76px;
}

.project-detail-hero__content {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  color: #ffffff;
}

.project-detail-hero__content p {
  margin: 0 0 12px;
  color: #b19777;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.project-detail-hero__content h1 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(64px, 10vw, 126px);
  font-weight: 400;
  letter-spacing: 13px;
  line-height: 0.95;
  text-transform: uppercase;
}

.project-detail-hero__content a {
  min-width: 150px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.project-detail-hero__content a:hover,
.project-detail-hero__content a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  outline: none;
}

.project-overview {
  background:
    repeating-linear-gradient(
      90deg,
      #ffffff 0,
      #ffffff 384px,
      rgba(177, 151, 119, 0.14) 385px
    );
  padding: 78px 0 96px;
}

.project-overview__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.project-overview h2 {
  margin: 0 0 46px;
  color: #b19777;
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 9px;
  line-height: 1.16;
  text-transform: uppercase;
}

.project-overview__lead {
  margin: 0 0 56px;
  color: #66706f;
  font-size: 16px;
  line-height: 1.8;
}

.project-overview__lead--compact {
  max-width: 980px;
  margin-top: -34px;
}

.project-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
}

.project-features ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-features li {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: #66706f;
  font-size: 15px;
  line-height: 1.8;
}

.project-features li::before {
  content: "✓";
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(177, 151, 119, 0.22);
  border-radius: 50%;
  color: #b19777;
  font-size: 17px;
  line-height: 1;
}

.project-showcase {
  background: #f4f2f1;
  padding: 74px 0;
}

.project-showcase__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.project-showcase p {
  margin: 0 0 10px;
  color: #b19777;
  font-family: "Oswald", sans-serif;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.project-showcase h2 {
  max-width: 720px;
  margin: 0;
  color: #2b2b2b;
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1.28;
  text-transform: uppercase;
}

.project-showcase a {
  min-width: 132px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b19777;
  color: #111111;
  font-family: "Oswald", sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.project-showcase a:hover,
.project-showcase a:focus-visible {
  background: #171717;
  color: #ffffff;
  outline: none;
}

.projects-section {
  background:
    repeating-linear-gradient(
      90deg,
      #ffffff 0,
      #ffffff 384px,
      rgba(177, 151, 119, 0.14) 385px
    );
  padding: 78px 0 120px;
}

.projects-section__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.projects-section--ongoing {
  padding-top: 0;
}

.projects-section h2 {
  margin: 0 0 28px;
  color: #b19777;
  font-family: "Oswald", sans-serif;
  font-size: 43px;
  font-weight: 400;
  letter-spacing: 11px;
  line-height: 1.16;
  text-transform: uppercase;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.project-card {
  position: relative;
  min-height: 232px;
  overflow: hidden;
  background: #202020;
}

.project-card--large {
  min-height: 382px;
}

.project-card--lower {
  transform: translateY(50px);
}

.project-card--upper {
  transform: translateY(-50px);
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1);
  transition: transform 450ms ease, filter 450ms ease;
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(10, 13, 14, 0.48);
  transition: background-color 280ms ease;
}

.project-card__content {
  text-align: center;
  text-transform: uppercase;
}

.project-card__content p {
  margin: 0 0 6px;
  color: #b19777;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 7px;
}

.project-card__content h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 6px;
}

.project-card__arrow {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, 16px);
  transition: opacity 260ms ease, transform 260ms ease, color 180ms ease;
}

.project-card__arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -16px;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
  transform: translateX(-50%);
  transition: width 650ms ease;
}

.project-card:hover img,
.project-card:focus-within img {
  transform: scale(1.06);
  filter: brightness(0.78);
}

.project-card:hover .project-card__overlay,
.project-card:focus-within .project-card__overlay {
  background: rgba(10, 13, 14, 0.62);
}

.project-card:hover .project-card__arrow,
.project-card:focus-within .project-card__arrow {
  opacity: 1;
  transform: translate(-50%, 0);
}

.project-card:hover .project-card__arrow::before,
.project-card:focus-within .project-card__arrow::before {
  width: min(540px, 88vw);
}

.project-card__arrow:hover,
.project-card__arrow:focus-visible {
  color: #b19777;
  outline: none;
}

.site-footer {
  background: #171717;
  color: #ffffff;
  padding: 58px 0 24px;
}

.site-footer__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__item h2 {
  margin: 0 0 14px;
  color: #b19777;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.site-footer__item a,
.site-footer__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.8;
}

.site-footer__item a {
  transition: color 180ms ease;
}

.site-footer__item a:hover,
.site-footer__item a:focus-visible,
.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: #b19777;
  outline: none;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  color: #ffffff;
  transition: color 180ms ease;
}

.floating-instagram {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 40;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(177, 151, 119, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(15, 37, 35, 0.16);
  color: #b19777;
  transform: translateY(-50%);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.floating-instagram svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-instagram:hover,
.floating-instagram:focus-visible {
  background: #b19777;
  color: #ffffff;
  outline: none;
  transform: translateY(-50%) scale(1.06);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-section__text {
    max-width: 720px;
  }

  .about-section__visual {
    align-items: flex-start;
    padding-right: 0;
  }

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

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-page__layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .project-features {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .project-showcase__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-card--lower,
  .project-card--upper {
    transform: none;
  }
}

@media (max-width: 760px) {
  .navbar {
    width: min(100% - 24px, var(--container));
    min-height: 64px;
    gap: 14px;
  }

  .navbar__brand img {
    width: 128px;
  }

  .navbar__toggle {
    width: 40px;
    height: 40px;
    display: grid;
  }

  .navbar__menu {
    position: absolute;
    top: 64px;
    left: 12px;
    right: 12px;
    display: grid;
    align-items: stretch;
    gap: 2px;
    padding: 8px;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: 6px;
    box-shadow: 0 14px 32px rgba(15, 37, 35, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 30;
  }

  .navbar.is-open .navbar__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar__link {
    width: 100%;
    min-height: 40px;
    justify-content: center;
    padding: 0 12px;
    font-size: 16px;
  }

  .hero {
    min-height: calc(100vh - 64px);
  }

  .hero__content {
    padding-left: 0;
  }

  .hero h1 {
    font-size: 30px;
    margin-bottom: 15px;
    letter-spacing: 9px;
    line-height: 1.35;
  }

  .hero__description {
    max-width: 94%;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero__button {
    min-width: 104px;
    min-height: 42px;
    margin-top: 22px;
    font-size: 14px;
  }

  .about-section {
    padding: 64px 0 76px;
  }

  .about-section__text h2 {
    font-size: 32px;
    letter-spacing: 7px;
  }

  .about-section__text p {
    font-size: 14px;
  }

  .about-section__visual::before {
    display: none;
  }

  .about-section__caption {
    min-width: 180px;
    margin-right: 0;
    letter-spacing: 6px;
  }

  .page-hero {
    min-height: 240px;
  }

  .page-hero h1,
  .about-page h2 {
    font-size: 32px;
    letter-spacing: 7px;
  }

  .about-page {
    padding: 64px 0 76px;
  }

  .about-page__content p {
    font-size: 14px;
  }

  .about-page__statement {
    font-size: 25px;
  }

  .contact-page {
    padding: 64px 0 76px;
  }

  .contact-page h2,
  .contact-form h2 {
    font-size: 25px;
    letter-spacing: 3px;
  }

  .contact-map iframe {
    height: 280px;
  }

  .project-detail-hero {
    min-height: 480px;
  }

  .project-detail-hero__overlay {
    padding-bottom: 48px;
  }

  .project-detail-hero__content h1 {
    letter-spacing: 7px;
  }

  .project-overview {
    padding: 58px 0 72px;
  }

  .project-overview h2 {
    font-size: 32px;
    letter-spacing: 7px;
  }

  .project-overview__lead {
    margin-bottom: 38px;
  }

  .project-showcase h2 {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .projects-section {
    padding: 58px 0 78px;
  }

  .projects-section h2 {
    font-size: 32px;
    letter-spacing: 7px;
  }

  .project-card,
  .project-card--large {
    min-height: 260px;
  }

  .project-card__overlay {
    padding: 24px;
  }

  .project-card__content p {
    letter-spacing: 5px;
  }

  .project-card__content h3 {
    font-size: 22px;
    letter-spacing: 5px;
  }

  .site-footer {
    padding-top: 44px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-instagram {
    right: 14px;
    width: 42px;
    height: 42px;
  }
}
